@charset "UTF-8";

/* ==================================================
共通
======================================================= */
/* ===== BASE STYLE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Inter', -apple-system, sans-serif;
    background: #FFFFFF;
    color: #1A1A1A;
    margin: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--color-lightGray);
    overflow-wrap: break-word;
}

img {
    vertical-align: bottom;
}

/* ===== 変数 ===== */
:root {
    --color-red: #EA2D63;
    --color-lightYellow: #FFFAE6;
    --color-yellow: #FFFF00;
    --color-smokyBlue: #B0C2D1;
    --color-smokyBlue2: #7C8E99;
    --color-lightGreen: #E4F9F9;
    --color-emeraldGreen: #00cbcb;
    --color-lightBlue: #00C7D6;
    --color-lightBlue2: #00C1D4;
    --color-gray: #DFE7ED;
    --color-lightGray: #F4F6F8;
    --color-lightGray2: #F2F6F9;
    --color-lightBlack: #808080;
    --icon-arrow-right: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.875 6.97509C7.875 7.20509 7.78499 7.42509 7.61499 7.59509L1.49499 13.7151C1.15499 14.0551 0.595 14.0551 0.255 13.7151C-0.085 13.3751 -0.085 12.8151 0.255 12.4751L5.74499 6.9851L0.255 1.49499C-0.085 1.15499 -0.085 0.595 0.255 0.255C0.595 -0.085 1.15499 -0.085 1.49499 0.255L7.61499 6.375C7.78499 6.545 7.875 6.77499 7.875 6.99499V6.97509Z' fill='white'/%3E%3C/svg%3E%0A");
    --icon-arrow-bottom: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.99499 7.875C6.76499 7.875 6.545 7.78499 6.375 7.61499L0.255 1.49499C-0.085 1.15499 -0.085 0.595 0.255 0.255C0.595 -0.085 1.15499 -0.085 1.49499 0.255L6.98498 5.74499L12.475 0.255C12.815 -0.085 13.375 -0.085 13.715 0.255C14.055 0.595 14.055 1.15499 13.715 1.49499L7.59497 7.61499C7.42497 7.78499 7.19497 7.875 6.97497 7.875H6.99499Z' fill='%237C8E99'/%3E%3C/svg%3E%0A");
}

/* ===== PC RESPONSIVE BASE ===== */
.pc-layout {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pc-sidebar {
    display: none;
}

.pc-content-wrapper {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.pc-main {
    padding: 20px;
    background: #fff;
}

.pc-main.pdlr0 {
    padding-left: 0;
    padding-right: 0;
}

.pc-main.bg-none {
    background: none;
    padding-bottom: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HEADER ===== */
.header,
.header-spLogo .sp-fixed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}

.header-spLogo {
    display: block;
    position: static;
    padding: 70px 0 20px;
    border: 0;
}

.header-spLogo .sp-fixed {
    position: fixed;
    left: 0;
    width: 100%;
}

.logo img {
    width: 80px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-icon {
    width: 22px;
    height: 22px;
    color: #636E72;
    cursor: pointer;
    transition: color 0.15s;
}

.login-btn {
    padding: 7px 16px;
    border-radius: 20px;
    background: #1A1A1A;
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
}

.header-auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-btn-login,
.auth-btn-register {
    width: 92px;
    line-height: 26px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    transition: opacity 0.2s;
}

.auth-btn-login {
    box-shadow: inset 0 0 0 1px #000;
    color: #333;
}

.auth-btn-register {
    background-color: #000;
    color: #ffffff !important;
}

.header-in {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== ロゴ ===== */
.sp-logo,
.pc-logo {
    display: flex;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 0;
    align-items: flex-end;
    width: fit-content;
}

.sp-logo {
    margin-bottom: 0;
}

.pc-logo {
    display: none;
}

.sp-logo span,
.pc-logo span {
    color: #fff;
    position: relative;
    padding: 0 26px 0 14px;
    font-size: 14px;
    font-weight: 600;
    transform: translateX(8px);
    margin-bottom: 14px;
}

.sp-logo span::before,
.pc-logo span::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--color-lightBlue);
    clip-path: polygon(0% 0%, 86% 0%, 100% 100%, 0% 100%);
}

.sp-logo span::after,
.pc-logo span::after {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    position: absolute;
    right: 22px;
    top: calc(100% - 1px);
    background: var(--color-lightBlue);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 0%);
}

.sp-logo img,
.pc-logo img {
    width: 80px;
    transform: translateX(-8px);
    position: relative;
}

@media screen and (min-width : 651px) {
    .sp-logo {
        display: none;
    }

    .pc-logo {
        display: flex;
    }
}

/* ===== パンくず ===== */
.breadcrumb {
    padding: 0 20px;
    height: 40px;
    white-space: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    display: flex !important;
    align-items: center;
    gap: 4px;
    scrollbar-width: none;
    background: #FFF;
    margin-top: 20px;
    text-overflow: ellipsis;
}

.breadcrumb::-webkit-scrollbar {
    display: none;
}

.breadcrumb a,
.breadcrumb span {
    flex-shrink: 0;
    font-size: 12px;
    color: var(--color-lightBlack);
    text-decoration: none;
}

.breadcrumb-sep {
    flex-shrink: 0;
    margin: 0 8px;
    color: #B2BEC3;
    font-size: 12px;
    user-select: none;
}

/* ===== COMMON COMPONENTS ===== */
.section-divider {
    height: 8px;
    background: #F8F9FA;
    margin: 24px 0;
}

.section-more {
    cursor: pointer;
    width: 210px;
    line-height: 46px;
    display: block;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 100px;
    box-shadow: inset 0 0 0 1px #000;
    color: #333;
    position: relative;
    font-size: 14px;
    font-weight: 700;
}

.section-more::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(../images/bt-yaji.svg) no-repeat center / contain;
}

#new-q-list+.section-more {
    text-indent: -12px;
}


/* ===== SEARCH MODAL ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.search-overlay.active {
    display: flex;
}

.search-modal {
    width: 90%;
    max-width: 350px;
    background: #FFF;
    border-radius: 24px;
    padding: 24px;
    position: relative;
    animation: modalUp 0.3s ease;
}

@keyframes modalUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    color: #B2BEC3;
    cursor: pointer;
    border: none;
    background: none;
}

.modal-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/* ===== hover ===== */
@media (hover: hover) {

    a:hover,
    button:hover,
    .back-btn:hover,
    .switch-link:hover,
    .btn-google:hover::before {
        opacity: 0.6;
        transition: opacity 0.3s;
    }

    .more-btn:hover,
    .submit-btn[disabled]:hover,
    #post-submit-btn[disabled]:hover,
    .btn-google:hover {
        opacity: 1;
    }

    .btn-google:hover {
        background: #f2f5f8;
        color: #696c6f;
        border-color: #696c6f;
        transition: background 0.3s, color 0.3s, border-color 0.3s;
    }

    .login-btn:hover {
        background: #2D3436;
    }

    .header-icon:hover {
        color: #1A1A1A;
    }

    #detail-category:hover {
        background: var(--color-lightBlue);
        color: #fff;
        opacity: 1;
    }

    .genre-card:hover {
        transform: translateY(-2px);
        background: #F0F1F3;
    }

    .creator-card:hover {
        background: #F0F1F3;
        transform: translateY(-2px);
    }

    .btn-reply-minimal:hover {
        background: var(--color-lightBlue);
        color: #fff;
        opacity: 1;
    }

    #supplement-section .btn-reply-minimal:hover {
        background: #B2BEC3;
        color: #fff;
    }

    .report-link:hover {
        color: #FF3B30;
        opacity: 1;
    }

    .report-link:hover .icon-violation {
        border-color: #FF3B30;
    }

    .report-link:hover .icon-violation::before {
        background: #FF3B30;
    }

    .profile-icon-change-btn:hover {
        background: #afc2d3;
        color: #fff;
    }

    .edit-userName:hover {
        background: url(../images/icon-pen-w.svg) no-repeat center / 13px #afc2d3;
        opacity: 1;
    }

    .sns-item:hover {
        border-color: #CBD5E1;
    }
}

/* ===== 見出し ===== */
.page-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 26px;
}

.section-title,
.cat-group-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.section-title::before,
.cat-group-title::before,
.new-questions-lead::before,
.section-category h2::before,
.section-qa h2::before,
.page-title-categoryList::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}

.section-category h2::before,
.section-qa h2::before,
.page-title-categoryList::before {
    background-position: center;
}

.icon-cate::before,
.section-category h2::before,
.page-title-categoryList::before {
    background-image: url(../images/h-icon-category.svg);
}

.icon-seen::before,
.cat-group-title::before,
#cat-popular-section .section-title::before,
.section-qa h2::before {
    background-image: url(../images/h-icon-yokuaruqa.svg);
}

.icon-respondent::before,
#answer-header::before {
    background-image: url(../images/h-icon-answer.svg);
}

.icon-newQuestion::before,
.new-questions-lead::before {
    background-image: url(../images/h-icon-new.svg);
}

.icon-notice::before {
    background-image: url(../images/h-icon-notice.svg);
}

.icon-status::before {
    background-image: url(../images/h-icon-status.svg);
}

.icon-alignment::before {
    background-image: url(../images/h-icon-alignment.svg);
}

.icon-question::before {
    background-image: url(../images/h-icon-question.svg);
}

.icon-questions::before {
    background-image: url(../images/h-icon-questions.svg);
}

.icon-pen::before {
    background-image: url(../images/h-icon-pen.svg);
}

.icon-b-report::before {
    background-image: url(../images/h-icon-b-report.svg);
}

.pc-main.pdlr0 .section-title {
    margin-left: 20px;
    margin-right: 20px;
}

.pc-main.pdlr0 .card-white .section-title {
    margin-left: 0;
    margin-right: 0;
}

.form-label,
.report-section-title-blue,
.supplement-replyTitle,
.note-modalStep {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
}

.form-label,
.supplement-replyTitle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1A1A1A;
}

.form-label.form-label-addIcon,
.report-section-title-blue,
.supplement-replyTitle,
.note-modalStep {
    color: var(--color-smokyBlue2);
}

.supplement-replyTitle {
    margin-bottom: 12px;
}

.note-modalStep {
    margin: 40px 0 4px;
}

.form-label.form-label-addIcon::before,
.supplement-replyTitle::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}

.icon-g-question::before {
    background-image: url(../images/h-icon-g-question.svg);
}

.icon-g-pen::before {
    background-image: url(../images/h-icon-g-pen.svg);
}

.icon-g-cate::before {
    background-image: url(../images/h-icon-g-cate.svg);
}

.icon-g-write::before {
    background-image: url(../images/h-icon-g-write.svg);
}

@media screen and (max-width : 431px) {
    .pc-main.pdlr0 .section-title {
        margin-left: 14px;
        margin-right: 14px;
    }
}

@media screen and (max-width : 391px) {
    .pc-main.pdlr0 .section-title {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* ===== 余白 ===== */
.mt0 {
    margin-top: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.mb10 {
    margin-bottom: 10px;
}

.mb14 {
    margin-bottom: 14px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mt30 {
    margin-top: 30px !important;
}

.mt70 {
    margin-top: 70px;
}

#home-q-list,
#new-q-list {
    padding: 0 20px;
    margin-bottom: 30px;
}

#popular-all-container>.q-item {
    margin-left: 20px;
    margin-right: 20px;
}

.bg-none .page-title {
    padding-left: 20px;
    margin-bottom: 20px;
}

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

    #home-q-list,
    #new-q-list {
        padding: 0 24px;
    }

    #popular-all-container>.q-item {
        margin-left: 24px;
        margin-right: 24px;
    }
}

@media screen and (max-width : 431px) {
    .bg-none .page-title {
        padding-left: 14px;
    }
}

@media screen and (max-width : 391px) {
    .bg-none .page-title {
        padding-left: 10px;
    }
}

/* ===== フォント ===== */
.roboto {
    font-family: "Roboto", sans-serif;
}

.outfit {
    font-family: "Outfit", sans-serif;
}

/* ===== フォーム関連 ===== */
.form-card {
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.badge-required,
.badge-optional {
    color: #FFF;
    font-size: 10px;
    width: 44px;
    line-height: 18px;
    text-align: center;
    border-radius: 30px;
}

.badge-required {
    background: var(--color-red);
}

.badge-optional {
    background: var(--color-smokyBlue2);
}

.form-control {
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    border: 0;
    font-size: 14px;
    color: #1A1A1A;
    background: var(--color-lightGray);
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.form-control::placeholder {
    color: var(--color-smokyBlue);
}

.form-control:focus {
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 290px;
    padding: 20px;
    line-height: 1.5;
}

select.form-control {
    appearance: none;
    background-image: var(--icon-arrow-bottom);
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 15px;
    padding-right: 40px;
    cursor: pointer;
    width: fit-content;
    min-width: 75%;
}

.agreement-box {
    margin-bottom: 24px;
    text-align: center;
}

.agreement-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #1A1A1A;
    cursor: pointer;
}

.agreement-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1A1A1A;
    cursor: pointer;
}

.agreement-label a {
    color: var(--color-lightBlue);
    text-decoration: underline;
}

.submit-btn,
#post-submit-btn {
    width: 380px;
    max-width: 100%;
    padding: 16px 20px;
    background: var(--color-lightBlue);
    color: #FFF;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.submit-btn::after,
#post-submit-btn::after {
    content: '';
    position: absolute;
    right: 20px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    mask: var(--icon-arrow-right) no-repeat center / contain;
    -webkit-mask: var(--icon-arrow-right) no-repeat center / contain;
}

.submit-btn:disabled,
#post-submit-btn:disabled {
    background: #E5E5EA;
    color: #8E8E93;
    cursor: not-allowed;
}

.submit-btn:disabled::after,
#post-submit-btn:disabled::after {
    background-color: #8E8E93;
}

.success-banner {
    display: none;
    background: #E1F5FE;
    border: 1px solid #007AFF;
    color: #007AFF;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.error-message {
    color: var(--color-red);
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    padding-left: 4px;
    display: none;
}

.error-message::before {
    content: '';
    display: inline-block;
    width: 5.4px;
    height: 10px;
    border-bottom: 2px solid var(--color-red);
    border-right: 2px solid var(--color-red);
    transform: rotate(45deg);
    margin-right: 8px;
}

.input-error {
    box-shadow: inset 0 0 0 1px var(--color-red);
}


/* ===== カードデザイン_囲い ===== */
.card-white {
    padding: 28px 20px 34px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 2%);
    overflow: hidden;
    margin-bottom: 25px;
}

.card-white:last-child {
    margin-bottom: 0;
}

/* ===== カードデザイン_リンク ===== */
.q-item,
.related-item,
.q-popular-card,
.qa-item {
    display: block;
    padding: 20px;
    border: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.2s;
    box-shadow: 0 0 4px rgba(82, 101, 117, 0.10);
    margin-bottom: 20px;
    position: relative;
    background: #fff;
}

.q-item:has(.q-item-cat) {
    padding-top: 32px;
    padding-bottom: 16px;
}

.q-item:has(.q-status-top),
.q-item:has(.q-cat-tag) {
    padding-top: 10px;
    padding-bottom: 14px;
}

.qa-item {
    padding-top: 22px;
    padding-bottom: 14px;
    margin-bottom: 0;
}

.q-item:last-child,
.related-item:last-child,
.q-popular-card:last-child,
.qa-item:last-child {
    margin-bottom: 0;
}

.q-item h3,
.related-title,
.q-popular-title,
.qa-title {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
    line-height: 1.4;
}

.qa-title {
    margin-bottom: 12px;
    overflow-wrap: break-word;
    word-break: break-all;
}

.q-item-cat {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--color-smokyBlue);
    color: #fff;
    font-size: 10px;
    padding: 0 22px;
    line-height: 18px;
}

.q-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 6px;
}

.q-meta {
    font-size: 11px;
    color: #B2BEC3;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ans-avatars {
    display: inline-flex;
    align-items: center;
    margin-right: 4px;
    flex-direction: row-reverse;
}

.ans-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #FFF;
    margin-left: -8px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #eee;
    box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.05);
}

.ans-avatar:last-child {
    margin-left: 0;
}

.meta-sep {
    margin: 0 2px;
    color: #E9ECEF;
}

.meta-text {
    color: #8E8E93;
}

#detail-category {
    color: var(--color-lightBlue);
    border: 1px solid var(--color-lightBlue);
    border-radius: 30px;
    padding: 2px 10px;
    line-height: 1;
    background: #fff;
    transition: 0.3s;
}

.recent-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 6px;
}

.recent-status.answered {
    color: #34C759;
}

.recent-status.unanswered {
    color: #FF9500;
}

.recent-status .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.q-item-hidden {
    display: none;
}

.q-status-top,
.q-cat-tag {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    width: 70px;
    line-height: 18px;
    border-radius: 30px;
}

.q-cat-tag {
    width: fit-content;
    padding: 0 20px;
}

.status-answered {
    background: var(--color-red);
    color: #fff;
}

.status-unanswered,
.q-cat-tag {
    color: var(--color-smokyBlue);
    background: var(--color-lightGray2);
}

/* アバターアイコンスタック */
.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-mini {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #FFF;
    background: #F2F2F7;
    margin-left: -6px;
    background-size: cover;
    background-position: center;
}

.avatar-mini:first-child {
    margin-left: 0;
}

.questioner-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
    background: url(../images/gnavi-icon-mypage.svg) no-repeat center / 25px #F8FAFC;
}

/* ===== TAB BAR ===== */
.tab-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 390px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 0 28px;
    border-top: 0.5px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #B2BEC3;
    text-decoration: none;
    padding: 4px 12px;
}

.tab-item.active {
    color: #0984E3;
}

.tab-item.active .tab-label {
    color: #0984E3;
}

.tab-icon svg {
    width: 22px;
    height: 22px;
    color: #B2BEC3;
}

.tab-item.active .tab-icon svg {
    color: #0984E3;
}

.tab-label {
    font-size: 10px;
    font-weight: 500;
}

.tab-item.create-tab .tab-icon {
    width: 44px;
    height: 44px;
    background: #1A1A1A;
    border-radius: 14px;
    margin-top: -14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.tab-item.create-tab .tab-icon svg {
    color: #FFF;
    width: 24px;
    height: 24px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 36px 0 30px;
    text-align: center;
}

.footer .logo img {
    width: 110px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin: 24px 0 20px;
}

.footer-link {
    font-size: 12px;
    color: var(--color-lightBlack);
    font-weight: 500;
    transition: color 0.15s;
}

.copyright {
    font-size: 10px;
    color: #B3B3B3;
    font-family: 'Inter', sans-serif;
}

/* ==================================================
共通_レスポンシブ
======================================================= */
@media screen and (max-width : 650px) {
    .pc-content-wrapper:has(.header-spLogo) .pc-main {
        padding-top: 10px;
    }

    .pc-content-wrapper:has(.header-spLogo) .pc-main.bg-none {
        padding-top: 20px;
    }

    .card-white {
        border-radius: 0;
    }

    .footer {
        padding: 28px 0 22px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 28px 86px;
        text-align: left;
    }
}

@media screen and (max-width : 500px) {

    .q-item,
    .related-item,
    .q-popular-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .qa-item {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width : 431px) {

    .pc-main,
    .card-white {
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media screen and (max-width : 391px) {

    .pc-main,
    .card-white {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 651px) {
    .pc-layout {
        max-width: 1000px;
        margin: 0 auto;
        gap: 40px;
        justify-content: center;
        align-items: flex-start;
        padding: 0 20px;
    }

    .pc-sidebar {
        display: block;
        flex-shrink: 0;
        position: sticky;
        top: 0;
        padding: 32px 0;
        max-height: 100vh;
        overflow-y: auto;
        max-width: 240px;
    }

    .pc-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: fit-content;
        margin: 0 auto;
    }

    .pc-nav-item {
        display: flex;
        align-items: center;
        gap: 25px;
        padding: 14px 16px 14px 26px;
        color: #333;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s;
    }

    .pc-nav-item::before {
        content: '';
        display: block;
        width: 16px;
        height: 16px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .pc-nav-item.gnavi-icon-home::before {
        background-image: url(../images/gnavi-icon-home.svg);
    }

    .pc-nav-item.gnavi-icon-search::before {
        background-image: url(../images/gnavi-icon-search.svg);
    }

    .pc-nav-item.gnavi-icon-mypage::before {
        background-image: url(../images/gnavi-icon-mypage.svg);
    }

    .pc-ask-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
        padding: 16px;
        background: #1A1A1A;
        color: #FFF;
        border: none;
        border-radius: 14px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        width: 100%;
    }

    .pc-content-wrapper {
        max-width: 680px;
        margin: 0;
        width: calc(100% - 240px);
        flex-grow: 1;
    }

    .tab-bar {
        display: none;
    }

    .header {
        padding: 24px;
    }

    .header-spLogo {
        position: sticky;
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
    }

    .header-spLogo .sp-fixed {
        position: static;
        padding: 0;
        border: 0;
    }

    .pc-main {
        padding-bottom: 50px;
    }
}

@media screen and (min-width: 651px) and (max-width: 850px) {
    .pc-layout {
        padding: 0;
        gap: 0;
    }

    .pc-sidebar {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (min-width: 800px) {
    .logo img {
        width: 110px;
    }

    .auth-btn-login,
    .auth-btn-register {
        width: 120px;
        line-height: 36px;
    }
}

/* ==================================================
ディレクトリごとのトップページ
======================================================= */
/* ===== HERO AREA ===== */
.hero {
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #333;
    line-height: 1.6;
}

.hero h1 .speech-bubble {
    display: block;
    background: var(--color-lightBlue);
    color: #fff;
    padding: 2px 10px;
    margin-bottom: 12px;
}

.green {
    color: var(--color-lightBlue);
}

.hero h1 .outfit {
    font-size: 28px;
    margin: 0 2px;
}

.hero h1 .roboto {
    font-size: 22px;
    font-weight: 500;
    margin: 0 1px;
}

.hero h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    background: url(../images/fv-img-01.svg) no-repeat left center / contain, url(../images/fv-img-02.svg) no-repeat right center / contain;
    margin: 12px auto 0;
    position: relative;
    z-index: 2;
}

.hero-sub {
    background-color: var(--color-lightGray2);
    color: var(--color-lightBlack);
    font-weight: 600;
    font-size: 14px;
    clip-path: polygon(0% 0%, 92% 0%, 100% 100%, 0% 100%);
    width: 400px;
    max-width: calc(100% - 40px);
    margin: -6px auto 0;
    text-align: center;
    line-height: 40px;
    text-indent: -30px;
}

/* ===== SEARCH ===== */
.search-wrapper {
    padding: 0 30px;
    max-width: 540px;
    margin: 0 auto 50px;
}

input::placeholder {
    color: #c5c5c5;
}

.search-box input {
    outline: none;
    font-size: 14px;
    font-family: inherit;
    color: inherit;
    width: 100%;
    padding: 13px 16px;
    background: url(../images/icon-search.svg) no-repeat left 14px center / 16px #fcfcfc;
    padding-left: 40px;
    box-shadow: 0 0 0 1px var(--color-lightBlue);
    border: 0;
    border-bottom: 0;
    border-radius: 100px;
}

/* ===== CATEGORY GRID & CARDS ===== */
.category-wrapper {
    position: relative;
    margin: 0 20px 70px;
    overflow: hidden;
    border-radius: 10px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 16px;
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: var(--color-lightGray);
    padding: 16px;
}

.category-grid.expanded {
    max-height: 2000px;
}

.cat-item {
    background: #fff;
    border-radius: 8px;
    padding: 0 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.cat-item .img-wrap {
    height: 70px;
    width: 100%;
    border-bottom: 1px solid #f8f7fc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cat-item .img-wrap img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.cat-item .name-wrap {
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    line-height: 1.3;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(245 246 248) 85%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
}

.more-btn {
    background: #FFF;
    border: 0;
    border-radius: 14px 14px 0 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-lightBlue);
    pointer-events: auto;
    cursor: pointer;
    transition: 0.2s;
    width: calc(100% - 50px);
    box-shadow: 0 -3px 5px 2px rgba(0, 0, 0, 3%);
    line-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.more-btn::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../images/bt-motomiru-g.svg) no-repeat center / contain;
}

.category-wrapper.is-expanded .category-overlay {
    display: none;
}

.genre-scroll {
    padding: 0 20px;
    overflow-x: auto;
    display: flex;
    gap: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.genre-scroll::-webkit-scrollbar {
    display: none;
}

.genre-card {
    min-width: 120px;
    padding: 16px 14px;
    border-radius: 16px;
    background: #F8F9FA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
}

.genre-card.active {
    background: linear-gradient(135deg, #0984E3, #6C5CE7);
    color: #FFF;
}

.genre-emoji {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.genre-name {
    font-size: 13px;
    font-weight: 600;
}

/* Popular Section In Category */
.popular-card {
    background: #FFF;
    border: 1.5px solid #0984E3;
    border-radius: 16px;
    padding: 16px;
    margin: 0 20px 12px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(9, 132, 227, 0.06);
    text-decoration: none;
    display: block;
    color: inherit;
}

.popular-label {
    position: absolute;
    top: -10px;
    left: 16px;
    background: #0984E3;
    color: #FFF;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 10px;
}

/* Pager */
.pager {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 24px 20px;
}

.pager-btn {
    padding: 8px 14px;
    border-radius: 8px;
    background: #F8F9FA;
    color: #1A1A1A;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-flex;
}

.pager-btn.active {
    background: #1A1A1A;
    color: #FFF;
}

.pager-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

/* ===== RANKING & CREATOR ========================= */
.ranking-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    border-bottom: 0.5px solid #f0f0f0;
}

.rank-badge {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.rank-1 {
    color: #FFD700;
}

.rank-2 {
    color: #C0C0C0;
}

.rank-3 {
    color: #CD7F32;
}

.rank-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.rank-info {
    flex: 1;
}

.rank-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.rank-count {
    font-size: 11px;
    color: #0984E3;
    font-weight: 700;
}

.creators-scroll {
    padding: 0 20px;
    overflow-x: auto;
    display: flex;
    gap: 12px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.creators-scroll::-webkit-scrollbar {
    display: none;
}

.creator-card {
    min-width: 130px;
    padding: 18px 14px;
    border-radius: 16px;
    background: #F8F9FA;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.2s;
    display: block;
    color: inherit;
}

.creator-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.creator-name {
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.creator-handle {
    font-size: 11px;
    color: #8E8E93;
    margin-bottom: 6px;
}

.creator-stats {
    font-size: 10px;
    color: #B2BEC3;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.creator-x-icon {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.creator-x-icon svg {
    width: 10px;
    height: 10px;
    color: #636E72;
}

/* 回答者一覧：YouTubeアイコンを含む横並びデザイン */
.responder-list-container {
    padding: 0 20px;
    overflow: hidden;
    max-height: 1180px;
    /* 【改修】16人目が少しだけ見える高さに調整 */
    transition: max-height 0.5s ease;
    position: relative;
    /* 【改修】グラデーション配置の基準点 */
}

.responder-list-container:not(.expanded)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 1));
    z-index: 2;
    pointer-events: none;
}

.responder-list-container.expanded {
    max-height: none;
}

.responder-row {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 18px 14px;
    border-radius: 5px;
    border: 5px solid var(--color-lightGray);
    margin-bottom: 18px;
    gap: 10px;
}

.responder-row:last-child {
    margin-bottom: 0;
}

.responder-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F8F9FA;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.responder-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.responder-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.responder-sns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.sns-link-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.sns-link-icon img {
    width: 14px;
}

.sns-link-icon.youtube img {
    width: 22px;
}

.more-responders-wrapper {
    text-align: center;
    margin-top: -150px;
    position: relative;
    z-index: 10;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255 255 255) 85%);
}

.more-responders-wrapper:has(.btn-more-responders[style="display: none;"]) {
    display: none;
}

.load-more-container {
    text-align: center;
    margin-top: 30px;
}

#qBodyDetail+.load-more-container {
    margin-top: -20px;
    margin-bottom: 20px;
}

.btn-more-responders,
.btn-load-more {
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    width: 210px;
    line-height: 46px;
    background: var(--color-lightGray);
    border: 0;
    color: #333;
    position: relative;
    text-indent: 16px;
}

.btn-more-responders::before,
.btn-load-more::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(../images/bt-motomiru.svg) no-repeat center / contain;
}

.meta-item-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    color: #8E8E93;
}

.meta-item {
    font-size: 11px !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #8E8E93;
}

.meta-item.ans-count {
    font-weight: inherit;
    color: inherit;
}

.meta-item svg {
    display: none;
}

.meta-item::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.meta-item.view-icon::before {
    background-image: url(../images/meta-item-icon1.svg);
}

.meta-item.ans-count::before {
    background-image: url(../images/meta-item-icon2.svg);
    transform: translateY(1px);
}

.meta-item.time-icon svg {
    display: block;
    width: 12px;
}

.meta-item.time-icon::before {
    display: none;
}

.mobile-bottom-overlay,
.floating-overlay-banner,
.tab-bar,
.fab-answer-btn {
    display: none !important;
}

.value-section-wrap {
    background: var(--color-lightBlue);
    padding: 24px 20px 20px;
    margin: 70px 20px 70px;
    border-radius: 24px;
    position: relative;
    z-index: 0;
}

.ask-banner {
    text-align: center;
    color: #fff;
}

.ask-banner::before {
    content: '';
    display: block;
    width: 100%;
    height: 26px;
    background: url(../images/qa-h.svg) no-repeat center / contain;
    margin-bottom: 10px;
}

.ask-banner h2 {
    font-size: 23px;
}

.ask-banner-btn,
.pc-ask-btn,
.btn-answer {
    background: #fff;
    border-radius: 5px;
    box-shadow: inset 0 0 0 2px #0b8ea0;
    width: 180px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #333;
    font-size: 17px;
    font-weight: 700;
    margin: 20px auto 0;
}

.pc-ask-btn {
    box-shadow: inset 0 0 0 1px #333;
}

.btn-answer {
    width: 284px;
}

.ask-banner-btn::before,
.pc-ask-btn::before,
.btn-answer::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/icon-qa.svg) no-repeat center / contain;
}

.btn-answer::before {
    background: url(../images/icon-answer-g.svg) no-repeat center / contain;
}

.value-section {
    background: #fff;
    border-radius: 14px;
    margin-top: 22px;
    padding: 28px 0 60px;
    position: relative;
}

.value-section::before,
.value-section::after {
    content: '';
    display: block;
    position: absolute;
    bottom: calc(100% - 4px);
    z-index: -1;
    height: 85px;
}

.value-section::before {
    width: 53px;
    background: url(../images/qa-img-01.svg) no-repeat center top / 100%;
    left: 0;
}

.value-section::after {
    width: 70px;
    background: url(../images/qa-img-02.svg) no-repeat center top / 100%;
    right: -10px;
}

.value-title {
    position: relative;
    width: 210px;
    line-height: 44px;
    text-align: center;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #333;
}

.value-title::before,
.value-title::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    border-top: 2px solid #b0c2d0;
    border-left: 2px solid #b0c2d0;
}

.value-title::before {
    left: 0;
    top: 0;
}

.value-title::after {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

.value-cards {
    padding-left: calc(50% - 10px);
}

.value-card {
    position: relative;
    margin-bottom: 66px;
}

.value-card:last-child {
    margin-bottom: 0;
}

.value-card h3 {
    font-size: 14px;
    margin-bottom: 8px;
}

.value-card h3::before {
    display: block;
    font-size: 10px;
    color: var(--color-lightBlue);
}

.value-card:nth-of-type(1) h3::before {
    content: 'Trust';
}

.value-card:nth-of-type(2) h3::before {
    content: 'Specialty';
}

.value-card:nth-of-type(3) h3::before {
    content: 'About';
}

.value-card-text p {
    font-size: 12px;
    color: #636363;
    line-height: 1.5;
}

.value-icon {
    position: absolute;
    width: 116px;
    height: 116px;
    object-fit: contain;
    right: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
}

/* ==================================================
ディレクトリごとのトップページ_レスポンシブ
======================================================= */
@media screen and (max-width: 500px) {
    .search-box input {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 431px) {

    #home-q-list,
    #new-q-list,
    .responder-list-container {
        padding: 0 14px;
    }

    .category-wrapper,
    .value-section-wrap {
        margin-left: 14px;
        margin-right: 14px;
    }
}

@media screen and (max-width : 400px) {
    .value-section::before {
        width: 16%;
        background-position: bottom;
    }

    .value-section::after {
        width: 20%;
        bottom: calc(100% - 8px);
    }

    .ask-banner-btn {
        width: 56%;
    }

    .value-icon {
        width: 26vw;
        height: 26vw;
    }
}

@media screen and (max-width : 391px) {
    .hero-sub {
        text-indent: -5%;
    }

    #home-q-list,
    #new-q-list,
    .responder-list-container {
        padding: 0 10px;
    }

    .category-wrapper,
    .value-section-wrap {
        margin-left: 10px;
        margin-right: 10px;
    }

    .category-grid {
        gap: 10px 12px;
        padding: 14px;
    }
}

@media screen and (max-width : 376px) {
    .value-card p {
        font-size: 11px !important;
    }
}

@media screen and (max-width : 361px) {
    .hero h1 {
        font-size: 21px;
    }

    .hero-sub {
        font-size: 13px;
    }

    .search-box input {
        font-size: 13px;
    }

    .value-card h3 {
        font-size: 13px;
    }
}

@media screen and (min-width : 415px) {
    .value-section::before {
        left: calc(50% - 168px);
    }

    .value-section::after {
        right: calc(50% - 178px);
    }
}

@media screen and (min-width : 651px) {
    .hero {
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.4;
    }

    .hero h1 .speech-bubble {
        font-size: 22px;
        min-width: 330px;
        width: fit-content;
        margin: 0 auto 12px;
        position: relative;
    }

    .hero h1 .speech-bubble::after {
        content: '';
        display: block;
        width: 14px;
        height: 14px;
        position: absolute;
        left: calc(50% - 150px);
        top: calc(100% - 1px);
        background: var(--color-lightBlue);
        clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 100%);
    }

    .search-wrapper {
        padding: 0 24px;
        margin-bottom: 40px;
    }

    .genre-scroll,
    .creators-scroll {
        padding: 0 24px;
    }

    .trending-list,
    .recent-list {
        padding: 0 24px;
    }

    .category-wrapper {
        margin-left: 24px;
        margin-right: 24px;
    }

    .genre-scroll {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .creators-scroll {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .genre-card {
        flex: 1;
        min-width: calc(25% - 8px);
        padding: 24px 10px;
    }

    .creator-card {
        flex: 1;
        min-width: calc(33.33% - 8px);
    }

    .header-auth-buttons {
        gap: 20px;
    }
}

@media screen and (min-width : 800px) {
    .hero {
        position: relative;
    }

    .hero::before,
    .hero::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        z-index: 2;
    }

    .hero::before {
        width: 50px;
        height: 130px;
        left: calc(50% - 240px);
        background: url(../images/fv-img-01.svg) no-repeat center / contain;
    }

    .hero::after {
        width: 60px;
        height: 130px;
        right: calc(50% - 260px);
        background: url(../images/fv-img-02.svg) no-repeat center / contain;
    }

    .hero h1::after {
        display: none;
    }

    .hero-sub {
        font-size: 12px;
        margin-top: 10px;
        width: 430px;
        line-height: 30px;
        text-indent: -20px;
    }

    .search-box input {
        padding: 10px 16px 10px 40px;
    }

    .search-wrapper {
        margin-bottom: 70px;
    }

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        max-height: 380px;
    }

    .cat-item .img-wrap {
        height: 94px;
    }

    .cat-item .name-wrap {
        height: 36px;
        font-size: 11px;
    }

    .more-btn {
        font-size: 12px;
        width: 230px;
        line-height: 50px;
        border-radius: 20px 20px 0 0;
    }

    .more-btn::before {
        width: 10px;
        height: 10px;
    }
}

@media screen and (min-width : 950px) {
    .value-section::before {
        width: 114px;
        height: 180px;
        left: 20px;
        background-size: contain;
        bottom: calc(100% - 10px);
    }

    .value-section::after {
        right: 14px;
        width: 120px;
        height: 150px;
    }

    .ask-banner::before {
        margin-bottom: 16px;
    }

    .value-section {
        padding-bottom: 50px;
    }

    .value-title {
        margin-bottom: 34px;
    }

    .value-cards {
        padding-left: 0;
        display: flex;
        justify-content: center;
        gap: 7%;
    }

    .value-card {
        margin: 0;
    }

    .value-icon {
        display: none;
    }

    .value-card-text {
        display: flex;
        flex-direction: column;
    }

    .value-card h3 {
        order: 1;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        margin-bottom: 16px;
    }

    .value-card-text::before {
        content: '';
        display: block;
        width: 100%;
        height: 100px;
        order: 2;
        margin-bottom: 16px;
    }

    .value-card:nth-of-type(1) .value-card-text::before {
        background: url(../images/qa-reason-img-01.svg) no-repeat center / contain;
    }

    .value-card:nth-of-type(2) .value-card-text::before {
        background: url(../images/qa-reason-img-02.svg) no-repeat center / contain;
    }

    .value-card:nth-of-type(3) .value-card-text::before {
        background: url(../images/qa-reason-img-03.svg) no-repeat center / contain;
    }

    .value-card-text p {
        order: 3;
        text-align: center;
    }
}

/* ==================================================
質問投稿ページ
======================================================= */
.ask-text-count-wrap {
    margin-left: auto;
    font-weight: 400;
}

#ngWord-error {
    text-align: center;
}

/* ==================================================
質問回答モーダル
======================================================= */
.question-preview {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.preview-label {
    font-size: 11px;
    font-weight: 800;
    color: #8E8E93;
    margin-bottom: 8px;
    display: block;
}

.preview-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.preview-title-acd summary {
    list-style: none;
    cursor: pointer;
    width: 210px;
    background-color: var(--color-lightGray);
    padding: 20px 40px 20px 20px;
    border-radius: 8px;
    font-size: 14px;
    position: relative;
}

.preview-title-acd summary::-webkit-details-marker {
    display: none;
}

.preview-title-acd summary::after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background: var(--icon-arrow-bottom) no-repeat center / contain;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.preview-title-acd[open] summary::after {
    transform: rotate(180deg);
}

.preview-title-acd-cont p {
    padding-top: 10px;
    line-height: 1.7;
}


/* ==================================================
違反報告ページ
======================================================= */
/* 報告対象のビジュアル再現エリア */
.reported-visual-card {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 28px;
    background: #FFFFFF;
    background: var(--color-lightGray);
}

.reported-visual-card .ans-body-text {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    margin: 12px 0 0;
    font-weight: 600;
}

.violation-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 54px;
}

.violation-list:has(.error-message[style="display: block;"]) input[type="radio"] {
    box-shadow: inset 0 0 0 1px var(--color-red), inset 0 0 0 3px #fff;
}

.violation-list .error-message {
    margin-top: -10px;
}

.violation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #FFFFFF;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: inset 0 0 0 1px #f6f6f6;
}

.violation-item:has(input:checked) {
    box-shadow: none;
    background: var(--color-lightGreen);
}

.violation-item input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    box-shadow: inset 0 0 0 1px #1A1A1A, inset 0 0 0 3px #fff;
    border-radius: 50%;
    cursor: pointer;
}

.violation-item input[type="radio"]:checked {
    background: var(--color-emeraldGreen);
}

.violation-item span {
    font-size: 14px;
    font-weight: 500;
}

.url-display-box {
    font-size: 12px;
    color: #8E8E93;
    word-break: break-all;
    background: #F8F9FA;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 28px;
    border: 1px solid #E5E5EA;
}

.notice-box {
    border: 1px solid var(--color-red);
    padding: 22px 16px 16px;
    margin-bottom: 66px;
    position: relative;
}

.notice-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-red);
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    left: 12px;
    top: 0;
    transform: translateY(-50%);
    padding: 0 16px 0 12px;
    background: #fff;
}

.notice-title::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../images/icon-exclamation-tri.svg) no-repeat center / contain;
    transform: translateY(1px);
}

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

.notice-list li {
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 3px;
    position: relative;
    padding-left: 14px;
    font-weight: 500;
}

.notice-list li::before {
    content: "・";
    position: absolute;
    left: 0;
}

/* メタ情報のセパレーター */
.meta-divider {
    width: 1px;
    height: 10px;
    background: #E5E5EA;
    margin: 0 4px;
}


/* ==================================================
カテゴリー詳細ページ
======================================================= */
#cat-popular-section,
#cat-q-list {
    background: var(--color-lightYellow);
    padding: 24px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#cat-q-list {
    background: var(--color-lightGray);
    margin-bottom: 30px;
}

.q-popular-card {
    padding-top: 10px;
}

.q-popular-badge {
    background: url(../images/icon-attention.svg) no-repeat center / 74% var(--color-red);
    color: #FFF;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    width: 54px;
    line-height: 20px;
    text-align: center;
    position: relative;
    margin-bottom: 8px;
}


@media screen and (max-width : 500px) {

    #cat-popular-section,
    #cat-q-list {
        padding: 20px 15px;
    }
}

/* ==================================================
よく見られる質問ページ
======================================================= */
.cat-group-title {
    gap: 5px;
    margin-bottom: 26px;
}

.cat-group-name {
    background: var(--color-lightBlue);
    color: #fff;
    padding: 2px 10px;
}


/* ==================================================
検索結果ページ
======================================================= */
#search-query-text {
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

#search-query-text::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url(../images/h-icon-search.svg) no-repeat center / contain;
}

.search-query-name {
    font-size: 16px;
}


/* ==================================================
新着質問一覧ページ
======================================================= */
.new-questions-lead {
    background: var(--color-smokyBlue);
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 30px;
    margin-bottom: 18px;
    padding-left: 10px;
}


/* ==================================================
質問詳細ページ
======================================================= */
.reply-supplement {
    background: var(--color-lightGray);
    border-radius: 8px;
    padding: 13px 16px;
    line-height: 1.8;
    font-size: 12px;
    font-weight: 600;
    margin-top: 16px;
}

/* 返信セクションのデザイン */
.reply-section {
    margin-top: 12px;
    padding: 0 0 10px 0;
}

.reply-thread {
    margin-bottom: 12px;
}

.reply-item {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 6px;
    color: #1A1A1A;
    position: relative;
    padding-bottom: 8px;
}

.reply-item:last-child {
    margin-bottom: 0;
}

.reply-item::before {
    content: '';
    display: block;
    width: 2px;
    height: calc(100% - 36px);
    position: absolute;
    top: 36px;
    left: 15px;
    background: #b0c1d1;
    transform: translateX(-50%);
}

.reply-item-header {
    margin-bottom: 4px;
}

.reply-item-header .creator-row {
    margin-bottom: 8px;
    gap: 6px;
}

.reply-item-header .avatar-small {
    width: 30px;
    height: 30px;
}

.reply-item-header .creator-info {
    gap: 0;
}

.reply-item-header .creator-name {
    font-size: 10px;
    margin-bottom: 0;
}

.reply-item-header .meta-item {
    font-size: 9px !important;
}

.reply-item-header .meta-item.time-icon svg {
    width: 10px;
    transform: translateY(-1px);
}

.btn-cancel-reply,
.btn-cancel-answer {
    flex-shrink: 0;
    border: none;
    color: var(--color-smokyBlue);
    background: var(--color-lightGray2);
    font-size: 10px;
    font-weight: 300;
    cursor: pointer;
    padding: 2px 10px 2px 8px;
    border-radius: 30px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-close {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--color-smokyBlue);
    position: relative;
}

.icon-close::before,
.icon-close::after {
    content: '';
    display: block;
    width: 6px;
    height: 1px;
    background: var(--color-smokyBlue);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.icon-close::before {
    transform: rotate(45deg);
}

.icon-close::after {
    transform: rotate(-45deg);
}

.reply-item-content {
    display: block;
    padding-left: 36px;
    font-size: 12px;
    font-weight: 500;
}

.reply-action-row {
    display: flex;
    justify-content: flex-start;
    padding: 0;
    margin-top: 12px;
}

.btn-reply-minimal {
    background: #fff;
    color: var(--color-lightBlue);
    border: 1px solid var(--color-lightBlue);
    border-radius: 30px;
    font-size: 10px;
    padding: 2px 12px 2px 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 0;
    transition: 0.3s;
}

.btn-reply-minimal svg {
    transform: translateY(1px);
}

#supplement-section .btn-reply-minimal {
    color: #B2BEC3;
    border-color: #B2BEC3;
}

.reply-form {
    margin-top: 12px;
    padding-left: 0;
    display: none;
}

.reply-input-wrapper {
    display: flex;
    gap: 8px;
    background: #FCFCFC;
    padding: 4px;
    border-radius: 8px;
    border: 1px solid #D1D1D6;
}

.reply-field {
    flex: 1;
    padding: 8px;
    border: none;
    background: transparent;
    font-size: 13px;
    outline: none;
}

.reply-submit-btn {
    padding: 0 12px;
    background: #1A1A1A;
    color: #FFF;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

#related-questions-list {
    background: var(--color-lightGray);
    padding: 20px;
    border-radius: 8px;
}

.category-grid-blue {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 14px;
}

.category-grid-blue-item {
    background: var(--color-lightBlue);
    color: #fff;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    padding: 0 10px;
    word-break: break-all;
}

#detail-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 17px;
    border-bottom: 1px solid #eff3f6;
    margin-bottom: 17px;
    margin-top: 14px;
}

.question-body,
.ans-body-text {
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 34px;
    font-size: 16px;
}

p.question-body {
    white-space: pre-wrap;
}

.sort-toggle-btn {
    margin-left: auto;
}

.sort-toggle-btn {
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    color: var(--color-smokyBlue2);
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.sort-toggle-btn svg {
    width: 12px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.sort-toggle-btn svg.sort-icon-up {
    transform: rotate(180deg);
}

.answer-number {
    background: #333;
    border-radius: 30px;
    color: #fff;
    padding: 0 14px;
    line-height: 28px;
    font-weight: 500;
    font-size: 16px;
}

.report-link {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-left: auto;
    font-size: 11px;
    color: #B2BEC3;
    text-decoration: none;
    margin-top: 8px;
    transition: 0.2s;
    gap: 5px;
}

.icon-violation {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--color-smokyBlue);
    position: relative;
    transition: 0.2s;
}

.icon-violation::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-smokyBlue);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    transform: rotate(45deg);
    transition: 0.2s;
}

.card-white.question-details-answer {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    padding-bottom: 28px;
}

.question-details-answer #answer-header {
    margin-bottom: 30px;
}

.answer-action-area {
    position: relative;
    background: var(--color-lightBlue);
    padding: 40px 20px;
    border-radius: 24px;
    margin: 54px 0 64px;
    z-index: 0;
    overflow: hidden;
}

.answer-action-area::before,
.answer-action-area::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    height: 160px;
    z-index: -1;
    background-size: 100%;
    background-position: center top;
    background-repeat: no-repeat;
}

.answer-action-area::before {
    left: 30px;
    width: 106px;
    background-image: url(../images/qa-img-01.svg);
}

.answer-action-area::after {
    right: 16px;
    width: 128px;
    background-image: url(../images/answer-img-human.svg);
}

.answer-action-text {
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
}

.related-questions-section {
    margin-bottom: 40px;
}

.creator-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.avatar-small {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.creator-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
}

.creator-cta {
    background: var(--color-lightGray);
    border-radius: 0 10px 10px 10px;
    padding: 15px;
    margin-top: 58px;
    position: relative;
    display: flex;
    gap: 10px;
}

.profile-label {
    font-size: 11px;
    color: #1A1A1A;
    font-weight: 700;
    padding: 12px 20px 4px;
    text-align: center;
    position: absolute;
    line-height: 1;
    left: 0;
    bottom: calc(100% - 1px);
    border-radius: 10px 10px 0 0;
    background: var(--color-lightGray);
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 0 10px 0 14px;
    height: 36px;
    background: #FFFFFF;
    border-radius: 5px;
    color: inherit;
    transition: 0.2s;
    box-shadow: inset 0 0 0 1px #3d3e40;
    width: calc((100% - 20px) / 3);
    font-size: 12px;
    font-weight: 500;
}

.cta-link::before {
    content: '';
    display: block;
    width: 18px;
    height: 20px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.cta-link--x::before {
    background-image: url(../images/logo-x-black.png);
    background-size: 16px;
}

.cta-link--note::before {
    background-image: url(../images/logo-note.svg);
    background-size: 14px;
}

.cta-link--youtube::before {
    background-image: url(../images/logo-youtube.svg);
}

.cta-link::after {
    content: '';
    display: block;
    width: 5px;
    height: 10px;
    margin-left: auto;
    flex-shrink: 0;
    background-color: #000;
    mask: var(--icon-arrow-right) no-repeat center / contain;
    -webkit-mask: var(--icon-arrow-right) no-repeat center / contain;
}

.cta-link--youtube {
    border-color: #FF0000;
}

.cta-link--youtube .cta-icon {
    background: #FF0000;
}

.cta-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 14px;
}

.solve-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: #F0F9F1;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 12px;
    margin-bottom: 12px;
}

.solve-btn.active {
    background: #2E7D32;
    color: #FFF;
    border-color: #2E7D32;
}

.ans-item-block {
    margin-bottom: 52px;
    border-bottom: 2px dashed var(--color-gray);
    padding-bottom: 32px;
}

.follow-answerBtn {
    position: fixed;
    width: 74px;
    height: 74px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    right: calc(50% - 552px);
    bottom: 20px;
    z-index: 10;
    cursor: pointer;
    border-radius: 50%;
    border: 4px solid #F4F6F8;
    background: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2px;
    font-size: 10px;
}

.follow-answerBtn::before {
    content: '';
    width: 100%;
    height: 26px;
    background: url(../images/icon-answer-b.svg) no-repeat center / contain;
}

@media screen and (max-width : 1120px) {
    .follow-answerBtn {
        right: 10px;
    }
}

@media screen and (max-width : 950px) {

    .answer-action-area::before,
    .answer-action-area::after {
        height: 110px;
    }

    .answer-action-area::before {
        width: 72px;
        left: calc(50% - 240px);
    }

    .answer-action-area::after {
        right: calc(50% - 262px);
        width: 100px;
    }
}

@media screen and (max-width : 820px) {
    .cta-link {
        gap: 8px;
        padding-left: 10px;
    }
}

@media screen and (max-width : 780px) {
    .btn-answer {
        width: 220px;
    }

    .answer-action-area::before,
    .answer-action-area::after {
        height: 92px;
    }

    .answer-action-area::before {
        width: 60px;
        left: calc(50% - 190px);
    }

    .answer-action-area::after {
        right: calc(50% - 202px);
        width: 74px;
    }
}

@media screen and (max-width : 770px) {
    .cta-link {
        font-size: 11px;
    }
}

@media screen and (max-width : 750px) {
    .creator-cta {
        flex-direction: column;
    }

    .cta-link {
        width: 100%;
        gap: 14px;
        padding-left: 14px;
        font-size: 12px;
    }
}

@media screen and (max-width : 500px) {
    #related-questions-list {
        padding: 15px;
    }
}

@media screen and (max-width : 450px) {
    .btn-answer {
        width: 56%;
    }

    .answer-action-area::before {
        left: 6%;
    }

    .answer-action-area::after {
        right: 3%;
    }

    .category-grid-blue {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media screen and (max-width : 415px) {
    .answer-action-text {
        font-size: 22px;
    }
}

@media screen and (max-width : 376px) {
    .answer-action-text {
        font-size: 21px;
    }

    .answer-action-area::before {
        left: 5%;
    }

    .answer-action-area::after {
        right: 2%;
    }
}

/* ==================================================
マイページ
======================================================= */
.page-title-mypage {
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-title-mypage::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background: url(../images/gnavi-icon-mypage.svg) no-repeat center / contain;
}

.profile-section {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    margin-bottom: 32px;
    text-align: center;
    border: 5px solid var(--color-lightGray2);
    border-radius: 5px;
}

/* Profile Box */
.profile-icon {
    width: 114px;
    height: 114px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: url(../images/gnavi-icon-mypage.svg) no-repeat center / 40px #F8FAFC;
}

.profile-icon:has(#iconPreview[style*="block"]) {
    background: none;
}

.profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-icon-change-btn {
    width: 96px;
    margin: 0 auto 16px;
    color: #afc2d3;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 0;
    text-align: center;
    border-radius: 999px;
    cursor: pointer;
    user-select: none;
    transition: 0.2s;
    border: 1px solid #afc2d3;
    width: 70px;
}

.profile-name-container {
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.profile-name {
    font-size: 18px;
    font-weight: 800;
    word-break: break-all;
}

.profile-email {
    font-size: 14px;
    color: #8E8E93;
}

.edit-userName {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid #afc2d3;
    background: url(../images/icon-pen.svg) no-repeat center / 13px #fff;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
    transform: translateY(1px);
}

#userNameEdit {
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

#userNameInput {
    padding: 0 12px;
    height: 36px;
    border: 1px solid #D1D1D6;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    width: 200px;
    color: #1A1A1A;
    font-family: inherit;
    background: #FCFCFC;
}

#userNameEdit button {
    background: #1A1A1A;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 12px;
    line-height: 36px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.section-box {
    margin-bottom: 50px;
}

/* ===== お知らせセクション ===== */
.notice-card-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.notice-card {
    position: relative;
    background: var(--color-lightGray2);
    border-radius: 8px;
    padding: 16px;
    box-shadow: inset 0 0 0 1px #e3e7ea;
}

.status-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    box-shadow: -1px 1px rgba(82, 101, 117, 0.10);
    background: var(--color-red);
    border-radius: 50%;
    display: inline-block;
}

.notice-card .status-dot {
    border-color: var(--color-lightGray2);
}

.notice-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.notice-badge {
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    border-radius: 4px;
    width: 70px;
    line-height: 20px;
    text-align: center;
}

.notice-badge--info {
    background: #808080;
}

.notice-badge--answer {
    background: #57bed1;
}

.notice-badge--reply {
    background: #01c475;
}

.notice-date {
    font-size: 11px;
    color: #858688;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.notice-date svg {
    width: 12px;
    display: block;
}

.notice-card-title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
}

.notice-body {
    font-size: 13px;
    color: #7e7f81;
    line-height: 1.7;
    font-weight: 600;
}

/* ===== ステータスセクション ===== */
.current-status-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.current-status {
    display: flex;
    flex-direction: column;
    padding-left: 26px;
    border-radius: 8px;
    height: 60px;
    justify-content: center;
    position: relative;
    gap: 1px;
}

.current-status.status-green {
    background: var(--color-lightGray2);
    box-shadow: inset 0 0 0 1.5px #04c8d4;
}

.current-status.status-red {
    background: #FFF5F5;
    box-shadow: inset 0 0 0 1.5px #ffc0d8;
    height: 70px;
}

.current-status::after {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
}

.current-status.status-green::after {
    box-shadow: inset 0 0 0 4px var(--color-lightBlue);
}

.current-status.status-red::after {
    background: url(../images/icon-exclamation.svg) no-repeat center / 4px var(--color-red);
}

.current-status-text {
    font-size: 14px;
    font-weight: 800;
}

.current-status-notice {
    color: #ec2a69;
    font-size: 12px;
    font-weight: 500;
}

/* ===== SNS連携セクション ===== */
.guide-card {
    margin-bottom: 24px;
}

.guide-card h3 {
    font-size: 13px;
    margin-bottom: 6px;
}

.guide-card p {
    font-size: 12px;
    color: #808a8b;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 24px;
}

.guide-card-img {
    display: block;
    margin: 0 auto;
    width: 450px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 5%);
}

.sns-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sns-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px 0 20px;
    background: var(--color-lightGray2);
    transition: 0.2s;
    height: 80px;
}

.sns-note-wrap {
    background: var(--color-lightGray2);
    transition: 0.2s;
    overflow: hidden;
}

.sns-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sns-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.sns-x img {
    width: 16px;
}

.sns-note img {
    width: 14px;
}

.sns-youtube img {
    width: 22px;
}

.sns-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2px;
}

.sns-text p {
    font-size: 12px;
    color: var(--color-smokyBlue2);
    font-weight: 500;
}

.btn-link {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    line-height: 30px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: 0.2s;
    width: 120px;
    position: relative;
}

.btn-link::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.btn-link.unlinked {
    background: var(--color-lightBlue2);
    color: #fff;
}

.btn-link.unlinked::before {
    background-image: url(../images/icon-alignment.svg);
}

.btn-link.linked {
    background: var(--color-gray);
    color: var(--color-smokyBlue);
}

.btn-link.linked::before {
    background-image: url(../images/icon-alignment-blue.svg);
}

/* ===== noteアコーディオン ===== */
#noteAccordion {
    display: none;
    padding: 0 25px 16px 20px;
    border-top: 1px dashed #E2E8F0;
}

#noteAccordion.is-open {
    display: block;
}

.note-accordion__body {
    padding-top: 16px;
}

.note-accordion__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-smokyBlue2);
    margin-bottom: 12px;
}

.note-step {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}

.note-step:last-child {
    margin-bottom: 0;
}

.note-step__badge {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1A1A1A;
    color: white;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.note-step__content {
    flex: 1;
    padding-top: 2px;
}

.note-step__heading {
    font-size: 13px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.note-step__input-row {
    margin-left: 32px;
    margin-bottom: 16px;
    display: flex;
    gap: 8px;
}

.note-step__input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    font-size: 13px;
}

.note-accordion__auth-btn {
    background: #1A1A1A;
    color: white;
    border: none;
    border-radius: 20px;
    line-height: 30px;
    height: 30px;
    font-size: 12px;
    font-weight: 500;
    width: 120px;
    cursor: pointer;
}

/* ===== 質問一覧セクション ===== */
.section-box .btn-load-more {
    margin-left: auto;
    margin-right: auto;
    display: block;
    background: #fff;
}

.qa-list-wrap {
    background: var(--color-lightGray);
    padding: 20px 20px 30px;
    border-radius: 4px;
}

.qa-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    gap: 10px;
}

.qa-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qa-date {
    font-size: 10px;
    font-weight: 600;
    color: #818181;
}

.qa-tag {
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    background: var(--color-smokyBlue);
    padding: 4px 6px;
    line-height: 1;
}

.qa-item .status-dot {
    background: #55c5d1;
}

.my-answer-wrap {
    position: relative;
}

.btn-cancel-answer {
    position: absolute;
    right: 10px;
    bottom: 14px;
}

@media screen and (max-width : 500px) {
    .qa-list-wrap {
        padding: 15px 15px 25px;
    }
}

@media screen and (max-width : 431px) {
    .sns-info {
        gap: 16px;
    }
}


/* ==================================================
会員登録ページ、ログインページ
======================================================= */
.pc-main:has(.auth-container) {
    padding-bottom: 20px;
}

.auth-container {
    background: #dfe6ee;
    padding: 32px 24px;
    border-radius: 14px;
}

.auth-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.auth-subtitle {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

#register-initial-buttons,
#login-initial-buttons {
    position: relative;
    z-index: 0;
    max-width: 346px;
    margin: 0 auto;
}

.auth-container {
    position: relative;
    z-index: 0;
}

.auth-container::before {
    content: '';
    display: block;
    width: 74px;
    height: 120px;
    background: url(../images/auth-img-human.svg) no-repeat center top / contain;
    position: absolute;
    top: 22px;
    right: calc(50% - 166px);
    z-index: -1;
}

.btn-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 18px;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    gap: 10px;
}

/* Googleカラーのボタン */
.btn-google {
    background: #fff;
    color: #1A1A1A;
    box-shadow: inset 0 0 0 1px #3a3b3d;
}

.btn-email {
    background: #000;
    color: #fff;
}

.btn-auth::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.btn-google::before {
    background-image: url(../images/logo-google.svg);
}

.btn-email::before {
    background-image: url(../images/icon-mail.svg);
    transform: translateY(1px);
}

.btn-primary {
    background: #000;
    color: #fff;
    width: 70%;
    max-width: 346px;
    margin: 0 auto;
}

.btn-primary::before {
    display: none;
}

.email-form-area {
    display: none;
    text-align: left;
}

.divider-text {
    font-size: 12px;
    color: #8E8E93;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.divider-text::before,
.divider-text::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #E5E5EA;
}

.switch-mode {
    margin-top: 24px;
    font-size: 13px;
    color: var(--color-smokyBlue2);
    text-align: center;
}

.switch-link {
    color: var(--color-lightBlue);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.back-btn {
    display: block;
    text-align: center;
    margin: 16px auto 0;
    font-size: 12px;
    color: var(--color-smokyBlue2);
    cursor: pointer;
    width: fit-content;
}

.back-btn.mr0 {
    margin-right: 0;
}

.email-form-area .form-control {
    padding-top: 16px;
    padding-bottom: 16px;
    background: #fff;
}

@media screen and (max-width : 415px) {
    .auth-container {
        padding: 32px 15px;
    }
}

@media screen and (max-width : 391px) {
    .auth-container::before {
        right: 20px;
    }
}


/* ==================================================
補足・返信モーダル
======================================================= */
.supplement-replyWrap {
    border-radius: 8px;
    padding: 20px;
    background: var(--color-lightGray);
    margin-bottom: 20px;
}

.supplement-replyText {
    background: #fff;
    padding: 14px 16px;
    border-radius: 8px;
    line-height: 1.7;
}

@media screen and (max-width: 500px) {
    .supplement-replyWrap {
        padding: 20px 15px;
    }
}


/* ==================================================
note連携時モーダル
======================================================= */
.modal-titleCenter {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
    padding-top: 20px;
    margin-bottom: 50px;
}

.code-copy {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-radius: 8px;
    background: var(--color-lightGray);
    font-weight: 600;
}

.code-copy input {
    background: none;
    border: none;
    outline: none;
    border-radius: 0;
    box-shadow: none;
    background: none;
    border: 0;
    font-size: 16px;
    flex-grow: 1;
    font-family: 'Noto Sans JP', 'Inter', -apple-system, sans-serif;
    font-weight: 600;
    max-width: calc(100% - 84px);
}

.copy-button,
#copyCodeBtn {
    flex-shrink: 0;
    background: #1A1A1A;
    color: #fff;
    border-radius: 100px;
    border: 0;
    cursor: pointer;
    padding: 5px 0;
    width: 76px;
    text-align: center;
    font-family: 'Noto Sans JP', 'Inter', -apple-system, sans-serif;
    font-weight: 600;
    font-size: 12px;
    margin-left: auto;
}

#copyCodeBtn {
    background: var(--color-lightBlue);
}

.supplement-text {
    font-size: 12px;
    color: #808a8b;
    line-height: 1.7;
    font-weight: 500;
    margin: 8px 0 20px;
}

.notice-box2 {
    background: #fdf6f7;
    padding: 20px 20px 18px;
    border-radius: 8px;
    margin-top: 20px;
}

.notice-box2 .notice-title {
    position: static;
    background: none;
    transform: none;
    padding: 0;
    margin-bottom: 14px;
}

.cta-link.your-noteLink {
    width: 210px;
    margin: 30px auto 16px;
}


/* ==================================================
回答者登録訴求モーダル
======================================================= */
.snsRegist-modalTitle-br {
    display: none;
}

.alignment-supplementText {
    font-size: 12px;
    color: #808a8b;
    line-height: 1.7;
    font-weight: 500;
    margin: -10px 0 14px;
}

@media screen and (max-width : 431px) {
    .snsRegist-modalTitle-br {
        display: block;
    }
}


/* ==================================================
全体のトップページ
======================================================= */
.page-top .pc-main {
    padding-bottom: 80px;
}

.page-top section {
    max-width: 640px;
    margin: 0 auto 70px;
    position: relative;
}

.page-top section:last-child {
    margin-bottom: 0;
}

.page-top section.section-fv {
    margin-bottom: 50px;
}

.page-top section.section-about {
    max-width: 760px;
    background: var(--color-lightBlue);
    border-radius: 24px;
    padding: 24px;
}

.english-deco {
    color: var(--color-lightBlue);
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    text-align: center;
    font-weight: 600;
    margin-top: 3px;
    margin-bottom: 30px;
}

.english-deco .roboto {
    font-size: 10px;
}

.fv-headWrap {
    width: fit-content;
    margin: 0 auto;
}

.sns-iconDeco {
    display: flex;
    gap: 12px;
    padding-left: 16px;
    margin-bottom: 2px;
}

.sns-iconDeco img {
    width: 22px;
    opacity: 0;
    animation:
        decoFadeIn 0.4s ease forwards var(--deco-delay),
        decoBounceLoop 1.5s ease-in-out calc(1.4s + var(--bounce-offset)) infinite;
    pointer-events: none;
}

.sns-iconDeco .deco-imgN {
    --deco-delay: 0s;
    --bounce-offset: 0s;
}

.sns-iconDeco .deco-imgX {
    --deco-delay: 0.5s;
    --bounce-offset: 0.5s;
}

.sns-iconDeco .deco-imgY {
    --deco-delay: 1s;
    --bounce-offset: 1s;
}

@keyframes decoFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes decoBounceLoop {
    0% {
        transform: translateY(0);
    }

    16.666% {
        transform: translateY(-5px);
    }

    33.333%,
    100% {
        transform: translateY(0);
    }
}

.section-fv h1 {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #333;
    display: inline-block;
    min-height: 56px;
    letter-spacing: 3px;
    line-height: 1;
}

.section-fv h1 .outfit {
    font-size: 42px;
    font-weight: 700;
}

.section-fv h1 .roboto {
    font-weight: 600;
}

.section-fv .lead {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-lightBlack);
}

.spacing0 {
    letter-spacing: 0;
}

.section-fv .search-wrapper {
    margin-top: 30px;
    margin-bottom: 0;
    padding: 0 15px;
}

@keyframes fadeInAndSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[class*="qa-animeQ"],
[class*="qa-animeA"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.section-fv [class*="qa-animeQ"],
.section-fv [class*="qa-animeA"],
.section-category .qa-animeQ4.animate,
.section-category .qa-animeA4.animate,
.section-qa .qa-animeQ5.animate,
.section-qa .qa-animeA5.animate {
    animation: fadeInAndSlideUp 0.8s ease-out forwards;
}

.section-fv [class*="qa-animeQ"] {
    animation-delay: 1.5s;
}

.section-fv [class*="qa-animeA"] {
    animation-delay: 2s;
}

.section-fv .qa-animeQsp,
.section-fv .qa-animeAsp {
    display: none;
}

.section-fv .qa-animeQ1 {
    width: 120px;
    top: -4px;
    left: -146px;
}

.section-fv .qa-animeA1 {
    width: 130px;
    top: 16px;
    left: -260px;
}

.section-fv .qa-animeQ2 {
    width: 124px;
    top: 6px;
    right: -180px;
}

.section-fv .qa-animeA2 {
    width: 134px;
    top: 146px;
    right: -264px;
}

.section-fv .qa-animeQ3 {
    width: 90px;
    top: 150px;
    left: -156px;
}

.section-fv .qa-animeA3 {
    width: 96px;
    top: 162px;
    left: -226px;
}

.section-category .qa-animeQ4 {
    width: 100px;
    top: 84px;
    left: -280px;
}

.section-category .qa-animeA4 {
    width: 126px;
    top: 130px;
    left: -230px;
}

.section-qa .qa-animeQ5 {
    width: 90px;
    top: 108px;
    right: -254px;
}

.section-qa .qa-animeA5 {
    width: 96px;
    top: 120px;
    right: -190px;
}

.section-about h2 {
    margin-bottom: 16px;
    text-align: center;
}

.section-about h2 img {
    width: 170px;
}

.section-about h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
    text-align: center;
}

.yellow {
    color: var(--color-yellow);
}

.section-about p {
    color: #fff;
    font-weight: 500;
    width: fit-content;
    margin: 0 auto;
}

.about-img {
    display: block;
    background: #fff;
    border-radius: 14px;
    margin-top: 36px;
    overflow: hidden;
    aspect-ratio: 4 / 2.07;
    padding: 30px 30px 0;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.section-category h2,
.section-qa h2,
.page-title-categoryList {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

.top-category-grid {
    display: grid;
    gap: 20px 28px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 30px;
}

.top-category-grid a {
    background: var(--color-lightGray);
    height: 120px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
}

.top-category-grid a img {
    display: block;
    height: 50px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    object-position: center;
}

@media screen and (max-width : 1200px) {
    .page-top section.section-fv {
        margin-bottom: 30px;
    }

    [class*="qa-animeQ"],
    [class*="qa-animeA"] {
        display: none;
    }

    .qa-animeImg-wrap {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 5px;
        margin-top: 34px;
    }

    .section-fv .qa-animeQ1,
    .section-fv .qa-animeA1,
    .section-fv .qa-animeQsp,
    .section-fv .qa-animeAsp {
        display: block;
        position: relative;
    }

    .section-fv [class*="qa-animeQ"] {
        animation-delay: 0s;
    }

    .section-fv [class*="qa-animeA"] {
        animation-delay: 0.5s;
    }

    .section-fv .qa-animeQ1 {
        order: 2;
        top: 8px;
        left: auto;
        width: 110px;
        max-width: 27.23%;
    }

    .section-fv .qa-animeA1 {
        order: 1;
        margin-right: -15px;
        z-index: 2;
        top: 6px;
        left: auto;
        width: 120px;
        max-width: 29.7%;
    }

    .section-fv .qa-animeQsp {
        order: 4;
        width: 90px;
        top: 24px;
        max-width: 22.28%;
    }

    .section-fv .qa-animeAsp {
        order: 3;
        width: 84px;
        max-width: 20.79%;
    }
}

@media screen and (max-width : 700px) {
    .sns-iconDeco {
        justify-content: center;
        padding-left: 0;
        margin-bottom: 8px;
        gap: 15px;
    }

    .sns-iconDeco img {
        width: 26px;
    }

    .section-fv h1 {
        min-height: auto;
    }

    .section-fv h1 .green {
        display: block;
        min-height: 56px;
        margin-top: 8px;
    }
}

@media screen and (max-width : 600px) {
    .top-category-grid {
        grid-template-columns: repeat(2, 130px);
        justify-content: center;
        gap: 20px 24px;
    }
}

@media screen and (max-width : 550px) {
    .about-img {
        padding: 20px 0 0 20px;
        aspect-ratio: 2 / 2.93;
    }

    .about-img img {
        width: 128%;
    }
}

@media screen and (max-width : 500px) {
    .section-fv h1 {
        font-size: 30px;
    }

    .section-fv h1 .outfit {
        font-size: 38px;
    }

    .section-fv h1 .green {
        min-height: 52px;
    }

    .section-fv .lead {
        font-size: 13px;
    }

    .section-fv .search-wrapper {
        max-width: 370px;
        margin-top: 24px;
    }

    .section-about h3 {
        white-space: nowrap;
        font-size: calc(3.6364vw + 1.8182px);
    }
}

@media screen and (max-width : 431px) {
    .page-top .pc-main {
        padding-bottom: 70px;
    }

    .page-top section {
        margin-bottom: 50px;
    }

    .page-top section.section-about {
        padding: 24px 16px 16px;
        border-radius: 20px;
    }

    .about-img {
        margin-top: 24px;
    }
}

@media screen and (max-width : 415px) {
    .section-about p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media screen and (max-width : 361px) {
    .section-fv .lead {
        font-size: 12px;
    }
}


/* ==================================================
全体のカテゴリー一覧
======================================================= */
.pc-main:has(.page-title-categoryList) {
    padding-top: 30px;
}

.category-wrapper:has(.category-wrapper-heading) {
    background: var(--color-lightGray);
    padding: 16px;
    margin: 0 0 36px;
}

.category-wrapper:has(.category-wrapper-heading):last-child {
    margin-bottom: 0;
}

.category-wrapper:has(.category-wrapper-heading) .category-grid {
    background: none;
    max-height: none;
    padding: 0;
}

.category-wrapper-heading {
    margin-bottom: 14px;
}

.category-wrapper-heading a {
    display: flex;
    align-items: center;
    background: #fff;
    position: relative;
    gap: 14px;
    padding: 0 14px;
    height: 60px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.3;
}

.category-wrapper-heading img {
    width: 30px;
    max-height: 36px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
}

.category-wrapper-heading a::after {
    content: '';
    display: block;
    width: 16px;
    height: 20px;
    background-color: var(--color-gray);
    mask: var(--icon-arrow-right) no-repeat left center / 8px, var(--icon-arrow-right) no-repeat right center / 8px;
    -webkit-mask: var(--icon-arrow-right) no-repeat left center / 8px, var(--icon-arrow-right) no-repeat right center / 8px;
    margin-left: auto;
}

@media screen and (max-width: 391px) {
    .category-wrapper:has(.category-wrapper-heading) {
        padding: 14px;
    }
}


/* ==================================================
追加調整0623
======================================================= */
@media (hover: hover) {

    .q-item[onclick]:hover,
    .btn-answer:hover {
        opacity: 0.6;
        transition: opacity 0.3s;
        cursor: pointer;
    }
}

.creator-info .meta-item {
    font-size: 11px !important;
}

#sns-required-modal .back-btn {
    font-size: 12px;
}

.pc-main.pdlr0>.section-more {
    margin-top: 30px;
    margin-bottom: 50px;
}

.pc-main p a:not([class]) {
    color: var(--color-lightBlue);
    text-decoration: underline;
}

.btn-answer {
    border: 0;
    min-width: 230px;
}

.btn-answer svg {
    display: none;
}

.pc-main:has(.page-title-mypage)>div:first-child {
    margin-bottom: 20px;
}

#userNameInput,
#userNameEdit button {
    vertical-align: middle;
}

#userNameInput {
    margin-right: 4px;
}

#reply-modal .agreement-box {
    margin-top: 20px;
}

.btn-link.unlinked {
    background: #999;
}

.btn-link.unlinked[type="submit"] {
    background: var(--color-lightBlue2);
}

.meta-item-wrap a.meta-item {
    font-size: 12px !important;
    font-weight: normal;
    color: #fff !important;
    background: var(--color-smokyBlue);
    padding: 4px 6px;
    line-height: 1;
}

.meta-item-wrap a.meta-item::before {
    display: none;
}

/*ヘッダー*/
.header,
.header-spLogo .sp-fixed {
    justify-content: flex-start;
    gap: 10px;
}

.header-auth-buttons {
    gap: 10px;
}

.header .logo {
    margin-right: auto;
}

.header-icon {
    width: 18px;
    height: 18px;
}

.header-icon svg {
    display: none;
}

.header-icon::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #1A1A1A;
    -webkit-mask-image: url(../images/gnavi-icon-search.svg);
    mask-image: url(../images/gnavi-icon-search.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

@media (min-width: 651px) {
    .header-icon {
        display: none;
    }
}


/*全体トップ*/
.top-category-grid {
    grid-template-columns: repeat(3, minmax(0, 140px));
    justify-content: center;
}

.top-category-grid a {
    height: auto;
    aspect-ratio: 7 / 6;
}

@media screen and (max-width: 470px) {
    .top-category-grid {
        gap: 20px 10px;
    }
}

@media screen and (max-width: 376px) {
    .top-category-grid a {
        font-size: 11px;
    }
}

/*マイページ ログアウトボタン*/
form[action*="/logout"] {
    margin-top: 60px;
    text-align: center;
}

form[action*="/logout"] button[type="submit"] {
    border: 0 !important;
    border-radius: 100px !important;
    color: #fff !important;
    background: #000 !important;
    width: 200px !important;
    padding: 12px !important;
}

@media screen and (max-width: 650px) {
    form[action*="/logout"] {
        padding-bottom: 20px;
    }
}


/*ディレクトリごとのTOPページ カードデザイン左右余白*/
.pc-main.pdlr0>.q-item {
    margin-left: 20px;
    margin-right: 20px;
}

@media screen and (max-width: 431px) {
    .pc-main.pdlr0>.q-item {
        margin-left: 14px;
        margin-right: 14px;
    }
}

@media screen and (max-width: 391px) {
    .pc-main.pdlr0>.q-item {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media screen and (min-width: 651px) {
    .pc-main.pdlr0>.q-item {
        margin-left: 24px;
        margin-right: 24px;
    }
}


/*回答者登録訴求モーダル*/
@media screen and (max-width : 460px) {
    #sns-required-modal .snsRegist-modalTitle-br {
        display: block;
    }
}

@media screen and (max-width : 431px) {
    #sns-required-modal .sns-item {
        padding-right: 20px;
    }
}

@media screen and (max-width : 391px) {
    #sns-required-modal .sns-item {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width : 376px) {
    #sns-required-modal .sns-item {
        padding-left: 10px;
        padding-right: 10px;
    }

    #sns-required-modal .btn-link {
        width: 100px;
        padding-left: 14px;
    }
}


/*会員登録・ログイン*/
.auth-container:has(.email-form-area[style*="block"])::before,
.auth-container:has(form[action*="/password/email"])::before {
    display: none;
}

#email-login-form .btn-auth~div:has(.switch-link) {
    text-align: center !important;
}

.email-form-area {
    border-bottom: 1px solid #ccd8e7;
    padding-bottom: 24px;
}

.email-form-area[style*="block"]+.switch-mode {
    margin-top: 18px;
}

.auth-title {
    font-size: 24px;
}

.auth-subtitle {
    font-size: 14px;
}

.switch-mode {
    font-size: 14px;
}

.btn-auth.btn-primary+div .switch-link {
    font-size: 14px !important;
}

.btn-auth {
    font-size: 16px;
    height: 50px;
}

.btn-primary {
    width: 100%;
    margin-top: 30px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.back-btn::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--color-smokyBlue2);
    mask: var(--icon-arrow-right) no-repeat center / contain;
    -webkit-mask: var(--icon-arrow-right) no-repeat center / contain;
    transform: scaleX(-1) translateY(1px);
}


/*画像アップロード、添付画像関連*/
#previews {
    margin-bottom: 30px;
}

#answer-image-previews,
#reply-image-previews,
.posts-images-wrapper:has(img) {
    margin-bottom: 20px;
    gap: 8px !important;
    display: flex;
}

.posts-images-wrapper:has(img):last-child {
    margin-bottom: 0;
}

.reply-supplement .posts-images-wrapper:has(img) {
    margin-top: 10px;
}

#previews>div,
.uploaded-image-item,
.posts-images-wrapper>img {
    width: calc((100% - 24px) / 4) !important;
    background: #000;
    max-height: 150px !important;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 !important;
    position: relative;
}

.uploaded-image-item {
    max-height: 110px !important;
}

#previews img,
.uploaded-image-item img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    max-height: none !important;
    max-width: none !important;
    border-radius: 0 !important;
}

.uploaded-image-item button {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.6) !important;
    color: rgb(255, 255, 255) !important;
    border-width: medium !important;
    border-style: none !important;
    border-color: currentcolor !important;
    border-image: initial !important;
    border-radius: 50% !important;
    width: 28px !important;
    height: 28px !important;
    cursor: pointer !important;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Noto Sans JP', 'Inter', -apple-system, sans-serif;
    margin: 0 !important;
}

#image-modal {
    position: fixed;
    z-index: 3000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    background: rgba(88, 88, 88, 0.502);

    img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width : 650px) {

    #previews>div,
    .posts-images-wrapper>img {
        max-height: 23vw !important;
    }
}

@media screen and (max-width : 550px) {
    .uploaded-image-item {
        max-height: 20vw !important;
    }
}

/*カードデザイン関連*/
.q-item,
.related-item,
.q-popular-card,
.qa-item {
    box-shadow: 0 0 3px rgba(54, 90, 120, 0.35);
}

.q-item h3,
.related-title,
.q-popular-title,
.qa-title {
    font-size: 16px;
    margin-bottom: 15px;
}

.meta-item {
    font-size: 14px !important;
}

.meta-item.view-icon::before {
    width: 14px;
}

.meta-item-wrap .avatar-mini {
    width: 24px;
    height: 24px;
}

.q-cat-tag {
    background: var(--color-smokyBlue);
    color: #fff;
}

.q-cat-tag,
.q-item-cat {
    font-weight: normal;
    letter-spacing: 1px;
}

.q-status-top,
.q-cat-tag {
    margin-bottom: 12px;
}

.q-item:has(.q-status-top),
.q-item:has(.q-cat-tag) {
    padding-top: 15px;
    padding-bottom: 20px;
}

.q-popular-card {
    padding-top: 15px;
}

.qa-list-wrap:has(.qa-list:last-child) {
    padding-bottom: 20px;
}

.qa-list-wrap .qa-list:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 500px) {
    .qa-list-wrap:has(.qa-list:last-child) {
        padding-bottom: 15px;
    }

    .meta-item {
        font-size: 12px !important;
    }

    .q-item:has(.q-status-top),
    .q-item:has(.q-cat-tag) {
        padding-bottom: 15px;
    }
}


/* ==================================================
追加調整0624
======================================================= */

/*会員登録・ログイン*/
.auth-container .form-group label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    display: block;
}

/*お問い合わせページ*/
.formrun-system-show {
    color: var(--color-red);
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    padding-left: 4px;
}

.formrun-system-show::before {
    content: '';
    display: inline-block;
    width: 5.4px;
    height: 10px;
    border-bottom: 2px solid var(--color-red);
    border-right: 2px solid var(--color-red);
    transform: rotate(45deg);
    margin-right: 8px;
}

.form-control.formrun-has-error {
    box-shadow: inset 0 0 0 1px var(--color-red);
}


/*サンクスページ*/
.pc-main:has(.thanks-title) {
    padding-top: 70px;
    padding-bottom: 70px;
}

.thanks-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.thanks-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border-radius: 50%;
    border: 2px solid var(--color-lightBlue);
}

.thanks-icon::before {
    content: '';
    display: block;
    width: 7px;
    height: 12px;
    border-bottom: 2px solid var(--color-lightBlue);
    border-right: 2px solid var(--color-lightBlue);
    transform: rotate(45deg);
}

.t-center {
    text-align: center;
}

.thanks-supplement {
    font-size: 14px;
    color: #808a8b;
    line-height: 1.6;
    margin: 30px 0 80px;
}

.return-Btn {
    border-radius: 100px;
    color: #fff;
    background: #000;
    width: 200px;
    padding: 12px;
    display: block;
    text-align: center;
    margin: 0 auto;
    position: relative;
}

.return-Btn::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-color: #fff;
    mask: var(--icon-arrow-right) no-repeat center / contain;
    -webkit-mask: var(--icon-arrow-right) no-repeat center / contain;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: scaleX(-1) translateY(-50%);
}
#note-link-btn.btn-link.unlinked {
    background: var(--color-lightBlue);
}

/* ==================================================
追加調整0626
======================================================= */
.follow-answerBtn{
background: var(--color-lightBlue);
}
.follow-answerBtn::before{
background: none;
background-color: #fff;
mask: url(../images/icon-answer-b.svg) no-repeat center / contain;
-webkit-mask: url(../images/icon-answer-b.svg) no-repeat center / contain;
}

/*リンク*/
.ans-body-text a:not([class]),.reply-supplement a:not([class]),.reply-item-content a:not([class]){
color: var(--color-lightBlue);
text-decoration: underline;
}

/*モーダル*/
#reply-modal-submit,#modal-submit,#answer-confirm-submit{
background: var(--color-lightBlue)!important;
border-radius: 6px!important;
font-size: 15px!important;
font-weight: 700!important;
padding: 16px!important;
position: relative;
}
#reply-modal-submit::after,#modal-submit::after,#answer-confirm-submit::after{
content: '';
position: absolute;
top: 0;
bottom: 0;
right: 20px;
margin: auto;
width: 16px;
height: 16px;
background-color: #fff;
mask: var(--icon-arrow-right) no-repeat center / contain;
-webkit-mask: var(--icon-arrow-right) no-repeat center / contain;
}
#confirm-images > img{
width: calc((100% - 24px) / 4) !important;
height: auto!important;
background: #000;
object-fit: contain!important;
aspect-ratio: 1/1;
}
#reply-confirm-previews .uploaded-image-item,#answer-confirm-previews .uploaded-image-item{
max-height: 90px!important;
}
#reply-confirm-previews:has(.uploaded-image-item),#answer-confirm-previews:has(.uploaded-image-item){
margin-bottom: 32px!important;
}

@media screen and (max-width : 450px) {
#reply-confirm-modal .uploaded-image-item,#answer-confirm-previews .uploaded-image-item {
max-height: 18vw!important;
}
}

@media screen and (max-width : 415px) {
#reply-confirm-previews:has(.uploaded-image-item),#answer-confirm-previews:has(.uploaded-image-item){
margin-bottom: 24px!important;
}
}


/*会員登録直後のモーダル*/
#userNameEdit.profile-setup-name-edit-setup_modal{
display: flex!important;
}
#userNameEdit.profile-setup-name-edit-setup_modal #userNameInput{
flex: 1;
}
#userNameEdit.profile-setup-name-edit-setup_modal button{
flex-shrink: 0;
}


/*SNS連携モーダル*/
#userNameInput{
font-weight: normal;
}
#userNameEdit.sns-info{
width: 100%;
margin: 0;
}
#userNameEdit.sns-info .sns-text{
display: flex;
width: 100%;
gap: 4px;
}
#userNameEdit.sns-info .sns-text #userNameInput{
flex: 1;
}
#userNameEdit.sns-info .sns-text button{
flex-shrink: 0;
}


/*違反報告*/
.reported-visual-card .ans-body-text[style="font-weight:700;"]{
font-size: 16px;
}
.reported-visual-card .ans-body-text {
font-weight: 400;
margin-top: 5px;
}


/*基本*/
table{
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
background: #fff;
}
th,td{
border: 1px solid var(--color-gray);
padding: 12px 16px;
vertical-align: middle;
line-height: 1.5;
font-size: 14px;
}
li{
list-style: none;
}


/*外部送信先一覧等（.pc-main > div.content-wrapper）*/
.pc-main > div.content-wrapper h2{
font-size: 18px;
margin: 24px 0 10px;
}
.pc-main > div.content-wrapper h3{
font-size: 16px;
margin: 20px 0 8px;
}
.pc-main > div.content-wrapper p:not(:last-child){
margin-bottom: 8px;
}
.document-wrapper{
border-radius: 10px;
padding: 20px;
margin: 10px 0 20px;
line-height: 1.6;
background: var(--color-lightGray);
}
.document-wrapper > *:last-child{
margin-bottom: 0!important;
}


/*パンくず*/
.breadcrumb{
background: none;
height: 50px;
margin: 0 0 20px;
border-bottom: 1px solid #e5e5e5;
}


/* ==================================================
追加調整0630
======================================================= */
.pc-main > div[style="background:#E8F5E9; color:#2E7D32; padding:12px 20px; font-size:13px; font-weight:600;"]:first-child{
margin-bottom: 20px;
}
.page-top section{
margin-bottom: 80px;
}
.section-category h2, .section-qa h2, .page-title-categoryList{
font-size: 24px;
}
.english-deco{
margin-bottom: 40px;
}
.auth-btn-login, .auth-btn-register{
font-size: 14px;
}
.search-box input,.form-control,.preview-title-acd summary,.auth-container .form-group label,input[type="file"],.agreement-label,.pc-nav-item{
font-size: 16px;
}
.form-label, .report-section-title-blue, .supplement-replyTitle, .note-modalStep,.submit-btn, #post-submit-btn{
font-size: 18px;
}
.form-label,.report-section-title-blue{
margin-bottom: 10px;
}
.notice-title{
font-size: 12px;
}
.form-group {
margin-bottom: 25px;
}
.badge-required, .badge-optional{
font-size: 12px;
line-height: 20px;
font-weight: 600;
width: 50px;
transform: translateY(1px);
}
.pc-main,.card-white.question-details-answer{
padding-bottom: 50px;
}
.pc-main.pdlr0>.section-more{
margin-bottom: 70px;
}
.value-section-wrap:last-child{
margin-bottom: 20px;
}
#cat-q-list:last-child{
margin-bottom: 0;
}
.profile-icon-change-btn{
font-size: 12px;
width: 90px;
padding: 3px 0;
}
#userNameEdit button{
font-size: 14px;
}
.guide-card h3 {
font-size: 16px;
margin-bottom: 8px;
}
.guide-card p{
font-size: 14px;
}
#answer-modal-title{
font-size: 20px!important;
}
.ask-text-count-wrap{
font-size: 16px;
}
.modal-title{
font-size: 18px;
}
#search-query-text{
font-size: 16px;
flex-wrap: wrap;
}
.search-query-name {
font-size: 18px;
}
.btn-link{
font-size: 14px;
width: 130px;
line-height: 32px;
}
.btn-reply-minimal{
font-size: 12px;
}

@media screen and (max-width: 650px) {
.header-spLogo:not(:has(.sp-logo)){
padding: 66px 0 0;
}
body:has(.page-title-categoryList) .header-spLogo:not(:has(.sp-logo)){
padding: 80px 0 0;
}
body:has(.auth-container) .header-spLogo:not(:has(.sp-logo)) {
padding: 60px 0 0;
}
}

@media screen and (max-width: 413px) {
#sns-required-modal .btn-link{
width: 120px;
font-size: 12px;
}
}

@media screen and (max-width: 391px) {
#answer-modal .form-label{
font-size: 16px;
}
#answer-modal .ask-text-count-wrap {
font-size: 14px;
}
}

@media screen and (max-width: 376px) {
#sns-required-modal .btn-link{
width: 100px;
}
}


/*cardデザイン*/
.q-item-cat{
position: static;
margin-bottom: 12px;
padding: 0 20px;
border-radius: 30px;
display: block;
width: fit-content;
}
.q-item:has(.q-item-cat) {
padding-top: 15px;
padding-bottom: 20px;
}
.q-item h3, .related-title, .q-popular-title, .qa-title{
font-size: 18px;
}
.q-cat-tag,.q-item-cat,.q-status-top,.q-popular-badge{
font-size: 14px;
font-weight: 400;
line-height: 24px;
}
.q-status-top{
width: 90px;
}
.q-popular-badge{
width: 70px;
}
.q-cat-tag,.q-item-cat{
background: var(--color-lightBlue);
}
.meta-item-wrap,.qa-meta{
font-size: 14px;
flex-wrap: wrap;
gap: 8px 14px;
}
.meta-item-wrap a.meta-item,.qa-tag,#detail-category{
font-size: 14px !important;
background: none;
color: var(--color-lightBlue)!important;
border: 1px solid var(--color-lightBlue);
font-weight: normal;
border-radius: 0;
padding: 4px 6px;
transition: 0.3s;
}
.qa-date{
display: inline-flex;
align-items: center;
gap: 4px;
color: #8E8E93;
font-size: 14px;
font-weight: normal;
}
.qa-date::before{
content: "";
display: inline-block;
width: 12px;
height: 12px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238E8E93' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 18 12'%3E%3C/polyline%3E%3C/svg%3E");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}

@media (hover: hover) {
.meta-item-wrap a.meta-item:hover,#detail-category:hover{
background: var(--color-lightBlue);
color: #fff!important;
opacity: 1;
}
}

@media screen and (max-width: 500px) {
.q-item:has(.q-item-cat) {
padding-bottom: 15px;
}
.meta-item-wrap{
font-size: 12px;
}
.meta-item-wrap a.meta-item,.qa-tag,#detail-category,.qa-date{
font-size: 12px!important;
}
}


/*質問詳細ページ*/
.reply-supplement{
font-size: 16px;
font-weight: normal;
}
#thread-supplement .reply-supplement::before{
content: '補足';
display: block;
width: 100px;
line-height: 30px;
border-radius: 5px;
background: #fff;
color: #666;
text-align: center;
margin-bottom: 10px;
}
.question-details-answer:not(:has(~ .card-white)) {
margin-bottom: 0;
}
.creator-name{
font-size: 18px;
}
.reply-item-header .creator-name{
font-size: 16px;
}
.creator-info .meta-item {
font-size: 14px !important;
}
.profile-label{
font-size: 16px;
}
.report-link{
font-size: 12px;
}
.icon-violation{
transform: translateY(1px);
}
.questioner-avatar,.reply-item-header .avatar-small {
width: 40px;
height: 40px;
}
.reply-item::before{
left: 20px;
top: 48px;
height: calc(100% - 46px);
}
.reply-item-content{
font-size: 14px;
padding-left: 46px;
}
.reply-item-header .meta-item.time-icon svg {
width: 12px;
transform: none;
}
.card-white:has(#detail-title) {
margin-bottom: 20px;
}
.cta-link{
font-size: 16px;
height: 50px;
gap: 10px;
white-space: nowrap;
}

@media screen and (max-width: 950px) {
.cta-link{
font-size: calc(2.0202vw - 4.1919px);
}
}

@media screen and (max-width: 750px) {
.cta-link{
font-size: 16px;
gap: 14px;
}
}

@media screen and (max-width: 650px) {
.card-white:has(#detail-title) {
margin-left: 20px;
margin-right: 20px;
border-radius: 8px;
}
}


/*違反報告ページ*/
.violation-list .error-message{
display:block ;
}
.violation-list:has(.error-message) input[type="radio"]:not(:checked) {
box-shadow: inset 0 0 0 1px var(--color-red), inset 0 0 0 3px #fff;
}
.reported-visual-card .ans-body-text{
font-size: 16px;
}
.reported-visual-card .ans-body-text[style="font-weight:700;"] {
    font-size: 18px;
}

/*全体トップ*/
.top-category-grid {
grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 600px) {
.top-category-grid {
grid-template-columns: repeat(2, 130px);
gap: 20px 24px;
}
.top-category-grid a {
height: 120px;
aspect-ratio: auto;
font-size: 12px;
}
}


/*利用規約ページ、プライバシーポリシーページ*/
.pc-main > div.content-wrapper ul{
margin: 10px 0 20px;
}
ul.indent-1 li,p.indent-1{
padding-left: 1em;
text-indent: -1em;
}
ul.indent-2 li{
    padding-left: 2.5em;
    text-indent: -1.5em;
}
.pc-main > div.content-wrapper p.indent-1:not(:last-child){
margin-bottom: 0;
}
.pc-main > div.content-wrapper > b{
display: block;
margin: 14px 0 8px;
}
.table-scroll{
overflow: hidden;
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
overscroll-behavior-x: contain;
margin-bottom: 20px;
}
.table-scroll table{
margin: 0;
min-width: 110%;
}
.table-scroll th{
white-space: nowrap;
}

/* ==================================================
追加調整0702
======================================================= */
input[type="file"]{
max-width: 100%;
}
.responder-name{
font-size: 16px;
}
.new-questions-lead {
font-size: 12px;
height: auto;
padding: 5px 10px;
}
.new-questions-lead::before{
flex-shrink: 0;
}
.notice-card-title{
font-size: 16px;
}
.cta-link.your-noteLink{
width: fit-content;
font-size: 16px;
gap: 14px;
}
.code-copy{
align-items: center;
font-size: 18px;
}
#copyCodeBtn{
font-size: 14px;
}
.btn-cancel-reply, .btn-cancel-answer{
font-size: 12px;
}
.ans-body-text,.reply-item-content-text,.reply-supplement-text{
white-space: pre-wrap;
}
.btn-reply-minimal svg {
fill: currentColor;
}
.section-about h2 img {
width: 200px;
}
.top-category-grid a[href*="/money"] {
letter-spacing: 2px;
}
.cat-item .name-wrap{
font-size: 12px;
line-height: 1.2;
}
.notice-box{
padding: 20px 10px 12px;
}
.notice-list li{
font-size: 12px;
letter-spacing: -0.2px;
}
.supplement-replyWrap{
background: none;
padding: 0;
}
.supplement-replyText {
background: none;
padding: 0 20px;
border-radius: 0;
}
#reply-modal-title{
padding-left: 0;
margin-bottom: 26px;
}
.q-cat-tag, .q-item-cat, .q-status-top, .q-popular-badge,.notice-badge{
font-size: 13px;
}
.q-cat-tag, .q-item-cat{
padding: 0 13px;
}
.q-status-top {
width: 80px;
}
.notice-badge{
border-radius: 100px;
font-weight: 400;
line-height: 24px;
width: 80px;
}
.notice-date{
font-size: 12px;
}
.notice-card-title{
font-size: 18px;
font-weight: 700;
}
.notice-body{
font-size: 16px;
}
.current-status-text {
font-size: 16px;
font-weight: 700;
}
.current-status{
gap: 3px;
}
.cat-group-title{
flex-wrap: wrap;
}
.guide-card-img{
width: 550px;
}
.preview-title-acd summary {
    background: #808d97;
    color: #fff;
    width: fit-content;
    padding: 6px 40px 6px 20px;
    border-radius: 100px;
    font-size: 14px;
}
.preview-title-acd summary::after{
	width: 14px;
	height: 14px;
	background: none;
    background-color: #fff;
    mask: var(--icon-arrow-bottom) no-repeat center / contain;
    -webkit-mask: var(--icon-arrow-bottom) no-repeat center / contain;
    transform: translateY(2px);
}
.preview-title-acd-cont p {
    font-size: 14px;
    font-weight: 600;
}


@media screen and (min-width: 800px) {
.more-btn{
font-size: 14px;
width: 250px;
}
.more-btn::before {
width: 12px;
height: 12px;
}
}

@media screen and (max-width : 940px) {
.notice-list li{
letter-spacing: 0;
}
}

@media screen and (max-width : 800px) {
.follow-answerBtn{
bottom: 100px;
}
}

@media screen and (max-width : 650px) {
.follow-answerBtn{
bottom: 130px;
}
}

@media screen and (max-width : 389px) {
.new-questions-lead{
font-size: 11px;
}
}


/*画像拡大に×表示*/
#image-modal .image-modalInner{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#image-modal .image-modalInner img{
position: static;
transform: none;
}
#image-modal .image-modalInner::before{
position: absolute;
content: '×';
left: 100%;
bottom: 100%;
background: #fff;
border-radius: 50%;
color: #333;
width: 40px;
line-height: 40px;
text-align: center;
pointer-events: none;
}

@media screen and (max-width : 800px) {
#image-modal .image-modalInner::before{
left: 50%;
bottom: auto;
top: calc(100% + 10px);
transform: translateX(-50%);
}
#image-modal .image-modalInner img{
max-height: calc(100svh - 110px)!important;
}
}

.btn-answer[style*="color"] {
background: #dcdddd;
color: #3f8c9e!important;
border: dashed 2px #fff;
box-shadow: none;
pointer-events: none;
cursor: default;
}
.btn-answer[style*="color"]::before {
background: url(../images/icon-kaitouzumi.svg) no-repeat center / contain;
}
/* ==================================================
追加調整0715
======================================================= */


.pc-main.pdlr0.bg-none:has(.card-white #detail-title) .category-search-section ~ .section-title.icon-respondent.mt70{
margin-top: 40px;
}
.card-white .responder-list-container,.page-top section .responder-list-container{
padding: 0;
}
.page-top section h2.icon-respondent{
margin-bottom: 40px;
}
.page-top section h2.icon-respondent::before {
content: '';
display: block;
width: 22px;
height: 22px;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
background-image: url(../images/h-icon-answer.svg);
}
.page-top section h2.icon-respondent::after{
content: 'Respondent';
color: var(--color-lightBlue);
font-family: "Outfit", sans-serif;
font-size: 12px;
text-align: center;
font-weight: 600;
margin-top: -2px;
}
.card-white > .meta-item + .meta-item{
margin-left: 10px;
}

.question-body-report-link {
    margin-top: 0px;
}
/* ==================================================
追加調整0715
======================================================= */
.search-other-genres {
    margin-top: 70px;
}
.other-genre-wrapper {
    background: var(--color-lightGray);
    padding: 5px 16px;
    margin: 0 18px;
    border-radius: 10px;
    position: relative;
}
.other-genre-item {
    border-radius: 10px;
    margin: 10px;
    background: #fff;
    padding: 10px;
    line-height: 2;
    font-weight: bold;
    display: flex;
}
.other-genre-wrapper img {
    width: 30px;
    height: 36px;
    max-height: 36px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
}

.other-genre-item::before {
    content: "\00BB"; /* » */
    position: absolute;
    right: 50px;
    color: var(--color-lightBlack);
}

.ans-body-text,
.question-body,
.reply-item-content-text,
.reply-supplement-text {
    text-align: justify;
}

.questioner-row {
    display: flex;
    line-height: 2.5;
}

a.pc-logo {
    margin: 0 auto 0 0;
}

@media screen and (max-width: 650px) {
    a.sp-logo {
        display: block;
    }
}

a.sp-logo img {
    margin-left: 20px;
}
/* ==================================================
追加調整0717
======================================================= */
.pc-sidebar .logo,.pc-sidebar .pc-logo{
margin: 0 auto 20px;
display: block;
width: fit-content;
transform: translateX(-8px);
}
.pc-sidebar .logo img,.pc-sidebar .pc-logo img{
width: 80px;
transform:none;
}
.other-genre-wrapper{
padding: 16px;
display: flex;
flex-direction: column;
gap: 10px;
margin: 0 20px;
}
.other-genre-item{
margin: 0;
align-items: center;
position: relative;
gap: 14px;
padding: 0 14px;
height: 60px;
border-radius: 8px;
font-size: 16px;
line-height: 1.3;
}
.other-genre-item .img-wrap{
flex-shrink: 0;
}
.other-genre-item::before{
display: none;
}
.other-genre-item::after{
content: '';
display: block;
width: 16px;
height: 20px;
background-color: var(--color-gray);
mask: var(--icon-arrow-right) no-repeat left center / 8px, var(--icon-arrow-right) no-repeat right center / 8px;
-webkit-mask: var(--icon-arrow-right) no-repeat left center / 8px, var(--icon-arrow-right) no-repeat right center / 8px;
margin-left: auto;
}
*:not(.meta-item-wrap) > .meta-item + .meta-item{
margin-left: 10px;
}
.questioner-row {
align-items: center;
gap: 8px;
margin-bottom: 6px;
font-weight: 600;
}

@media screen and (max-width: 431px) {
.other-genre-wrapper{
margin: 0 14px;
}
}

@media screen and (max-width: 391px) {
.other-genre-wrapper{
margin: 0 10px;
padding: 14px;
}
}
/* ==================================================
追加調整0717_2
======================================================= */
@media screen and (max-width: 650px) {
.header-spLogo {
position: sticky;
top: 0;
padding: 0;
}
.header-spLogo .sp-fixed {
position: static;
}
.header-spLogo:not(:has(.sp-logo)),body:has(.page-title-categoryList) .header-spLogo:not(:has(.sp-logo)),body:has(.auth-container) .header-spLogo:not(:has(.sp-logo)) {
padding: 0;
}
.pc-content-wrapper:has(.header-spLogo) .pc-main{
padding-top: 20px;
}
.pc-content-wrapper:has(.page-title-categoryList) .pc-main{
padding-top: 30px;
}
.pc-content-wrapper:has(.header-spLogo) .pc-main:has(.hero){
padding-top: 30px;
}
/* ==================================================
追加調整0723
======================================================= */
.card-white .other-genre-wrapper{
margin-left: 0;
margin-right: 0;
}
.card-white .search-other-genres {
margin-top: 40px;
}