/* --- 共通スタイル定義 --- */
/* テーブルヘッダーの共通スタイル */
.table1 th,
.table2 th,
.scroll-box th {
    text-align: center;
    vertical-align: middle;
    padding: 0;
    color: #000000;
    background-color: #a4b3bf;
    font-weight: bold;
}

/* box-header (Pros/Cons) の共通スタイル */
.box-header-pros,
.box-header-cons,
.box-header-pros2,
.box-header-cons2 {
    font-weight: bold;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 8px;
}

/* icon-pros/cons の共通非表示スタイル */
.icon-pros,
.icon-cons,
.icon-pros2,
.icon-cons2 {
    display: none !important;
}

/* box-list (共通のリストスタイル) */
.box-list,
.box-list2,
.box-list3 {
    list-style: none !important;
    padding: 10px 15px;
    margin: 0;
    font-size: 0.8em !important;
    line-height: 1.5;
}

/* box-list li 共通スタイル */
.box-list li,
.box-list2 li,
.box-list3 li {
    padding: 4px 0;
    border-bottom: 1px dotted #ccc;
}
.box-list li:last-child,
.box-list2 li:last-child,
.box-list3 li:last-child {
    border-bottom: none;
}

/* box-list li::before 共通スタイル */
.box-list li::before,
.box-list2 li::before,
.box-list3 li::before {
    content: "・";
    color: #333;
    margin-right: 0.5em;
    font-weight: bold;
}

/* pb-btn, pb-btn2 共通のリンクスタイル */
.pb-btn a,
.pb-btn2 a.pb-btn2_link {
    display: flex !important;
    align-items: center !important; /* pb-btn2_linkはflex-startになっているが、ここを揃えて調整 */
    gap: 15px !important;
    color: #333 !important;
    background: #FAFAFA;
    border: 2px solid #777;
    font-size: 16px !important;
    font-weight: 600;
    position: relative;
    transition: all 0.2s;
    text-decoration: none;
    overflow: hidden; /* pb-btn2のみに必要だが共通化 */
    padding: 1.2em 1.5em 1.2em; /* デスクトップ基準のパディング */
}

/* pb-btn, pb-btn2 共通の画像ラッパースタイル */
.pb-btn_image-wrapper,
.pb-btn2_image-wrapper {
    flex-shrink: 0 !important;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px; /* デスクトップ基準の画像幅 */
    height: 90px; /* デスクトップ基準の画像高さ */
}

/* pb-btn, pb-btn2 共通の画像スタイル */
.pb-btn_image-wrapper img,
.pb-btn2_image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* pb-btn, pb-btn2 共通のコンテンツラッパースタイル */
.pb-btn_content,
.pb-btn2_content {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    line-height: 1.5;
}

/* pb-btn, pb-btn2 共通のタイトルスタイル */
.pb-btn_title,
.pb-btn2_title {
    font-weight: bold;
    margin-bottom: 0.2em;
    display: block;
    color: red; /* ここに赤色を追加しました */
    font-size: 1em; /* デスクトップ基準のフォントサイズ */
}

/* pb-btn, pb-btn2 共通のテキストスタイル */
.pb-btn_text,
.pb-btn2_text {
    display: block;
    line-height: 1.5;
    color: #333; /* pb-btn2は#555だが、ここでは#333に揃える */
    margin-top: 0.5em;
    margin-bottom: -15px; /* pb-btn2は0.5emだが、ここでは0に揃える */
    margin-right: -45px;
    font-size: 0.85em; /* デスクトップ基準のフォントサイズ */
}

/* pb-btn, pb-btn2 共通のボタン風要素スタイル */
.pb-btn_button,
.pb-btn2_button {
    display: block !important;
    color: #fff;
    padding: 0.8em 1.5em;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    margin-top: 1em;
    cursor: pointer;
    transition: background-color 0.2s;
    width: fit-content;
}

/* pb-btn, pb-btn2 共通の矢印非表示スタイル */
.pb-btn a:after,
.pb-btn2 a.pb-btn2_link:after {
    display: none !important;
}

/* テーブルデザイン13の左列固定スタイル */
.table_design13 th:first-child,
.table_design13 td:first-child {
    position: sticky;
    left: 0;
    background-color: #f9f9f9;
    color: #333;
    z-index: 15;
    border-right: 1px solid #ddd;
    padding: 10px;
}

/* レートスター共通スタイル */
.rate .st-svg-star,
.rate .st-svg-star-half-o,
.rate .st-svg-star-o {
    font-size: 22px !important;
    width: 20px !important;
    height: 20px !important;
    line-height: 1 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* --- 個別スタイル定義 --- */

h2 {
    line-height: 1.2 !important;
    padding: 20px !important;
}

.my-custom-h2 {
    line-height: 1.2 !important;
    padding: 20px !important;
}

strong {
    font-weight: bold;
    font-style: normal;
}

.table1 td {
    vertical-align: middle;
    color: #000000 !important;
}

.table2 td {
    text-align: center;
    vertical-align: middle;
    color: #000000 !important;
}

.scroll-box td {
    vertical-align: middle;
}

.spacer-bottom {
    display: block !important;
    height: 80px !important;
    clear: both !important;
}

.scroll-box {
    overflow-x: auto;
    position: relative;
    width: 100%;
    padding-bottom: 25px;
    margin-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: #888 #a4b3bf;
}
.scroll-box::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}
.scroll-box::-webkit-scrollbar-track {
    background: #a4b3bf;
    border-radius: 10px;
}
.scroll-box::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.scroll-box::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.scroll-box table {
    table-layout: fixed;
    width: 150%;
}
.scroll-box table td {
    white-space: normal !important;
    word-break: break-all !important;
    padding: 10px;
    border: 1px solid #ddd;
    vertical-align: top;
}
.scroll-box table th {
    position: sticky;
    top: 0;
    background-color: #a4b3bf;
    z-index: 20;
    font-weight: bold;
    text-align: center;
    white-space: normal;
    word-break: break-all;
    padding: 0;
    border: 1px solid #ddd;
    vertical-align: top;
    vertical-align: middle !important;
}
.scroll-box table th:first-child,
.scroll-box table td:first-child {
    position: sticky;
    left: 0;
    background-color: #f9f9f9;
    vertical-align: middle;
    z-index: 15;
    border-right: 1px solid #ddd;
    padding: 0;
}
.scroll-box table th:first-child {
    z-index: 25;
    background-color: #a4b3bf;
    text-align: center;
}
.scroll-box.is-scrolled-left .scroll-box table th:first-child,
.scroll-box.is-scrolled-left .scroll-box table td:first-child {
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}
.scroll-box::after {
    content: '← スクロールできます →';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #F8F8F8;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
    border: 1px solid #ccc;
}
.scroll-box:not(.scrolled)::after {
    opacity: 1;
}
.scroll-box.scrolled::after {
    opacity: 0;
}

.my-source-caption {
    text-align: right;
    font-size: 3px !important;
    color: #333333;
    margin: 1em 0 0.5em;
}
.entry-content .my-source-caption {
    font-size: 0.7em !important;
}

.quote-3 cite {
    display: flex !important;
    align-items: baseline !important;
    justify-content: flex-end !important;
    gap: 0.5em !important;
    color: #737373 !important;
    font-size: 0.8em !important;
    text-align: right !important;
}
.quote-3 cite .source-label {
    order: 1 !important;
    margin-right: 0.3em !important;
}
.quote-3 cite a {
    order: 2 !important;
    text-decoration: underline !important;
}

.profile-info-box {
    background-color: #eefaffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin: 5px 0 !important;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #4a4a4a;
}
.profile-content-inner {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    flex-wrap: nowrap;
}
.profile-image-wrap {
    flex: 0 0 auto;
    margin-right: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
}
.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ddd;
}
.profile-text-content {
    flex: 1;
    min-width: 0;
}
.profile-position {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}
.profile-name-and-role {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.profile-role-badge {
    background-color: #007bff;
    color: #ffffff;
    font-size: 0.8em;
    padding: 3px 8px;
    border-radius: 3px;
    margin-right: 10px;
    white-space: nowrap;
}
.supervisor-badge { background-color: #337ab7; }
.author-badge { background-color: #28a745; }
.profile-name-text {
    font-size: 1.4em;
    font-weight: bold;
    color: #333333;
    line-height: 1.2;
}
.profile-name-text a {
    color: #333333;
    text-decoration: none;
}
.profile-name-text a:hover {
    text-decoration: underline;
}
.profile-text {
    font-size: 10px !important;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 0.4em;
}
.profile-social-links {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.profile-social-links .social-icon {
    font-size: 1.8em;
    color: #337ab7;
    transition: color 0.3s ease;
    text-decoration: none;
}
.profile-social-links .social-icon:hover {
    color: #23527c;
}
.social-icon.x-icon { color: #000000; }
.social-icon.fb-icon { color: #3b5998; }
.social-icon.youtube-icon { color: #ff0000; }
.social-icon.amazon-icon { color: #FF9900; }
.social-icon.website-icon { color: #666666; }
.supervisor-profile-box { }
.author-profile-box { }

@media (max-width: 768px) {
    .profile-content-inner {
        flex-direction: row;
        align-items: flex-start;
        padding: 15px;
    }
    .profile-image-wrap {
        width: 60px;
        height: 60px;
        margin-right: 15px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .profile-text-content {
        flex-grow: 1;
        text-align: left;
        width: auto;
    }
    .profile-position {
        text-align: left;
    }
    .profile-name-and-role {
        justify-content: flex-start;
        margin-bottom: 5px;
    }
    .profile-name {
        text-align: left;
    }
    .profile-social-links {
        justify-content: flex-start;
    }
    .profile-text {
        font-size: 8px !important;
        text-align: left;
    }
}

.st-kaiwa-balloon p {
    margin-bottom: 1em;
}
.st-kaiwa-balloon p:last-child {
    margin-bottom: 0;
}

.custom-pros-box,
.custom-cons-box,
.custom-pros-box2,
.custom-cons-box2 {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.box-header-pros { background-color: #ff99aa; }
.box-header-cons { background-color: #88ccff; }
.box-header-pros2 { background-color: #f88401ff; }
.box-header-cons2 { background-color: #4d9bc2ff; }

.box-list { background-color: #fff; }
.box-list2 { background-color: #fef1e3ff; }
.box-list3 { background-color: #e6f1f6ff; }

.box-list2 li { color: #f88401ff; }
.box-list3 li { color: #4d9bc2ff; }

.accordion-001 {
    margin-bottom: 20px;
    border: 2px solid #1770b9;
    border-radius: 5px;
}
.accordion-001 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0.8em 1.5em;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%231770b9%3B%22%2F%3E%0A%3C%2Fsvg%3E');
    background-position: right calc(1.5em - 7px) center;
    background-size: 22px;
    background-repeat: no-repeat;
    color: #1770b9;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1em !important;
}
.accordion-001 summary::-webkit-details-marker {
    display: none;
}
.accordion-001 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 5px;
    height: 5px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
}
.accordion-001[open] summary::after {
    transform: rotate(225deg);
}
.accordion-001 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 2em 1.5em;
    color: #333333;
    font-size: 0.8em !important;
    line-height: 1.6;
    transition: transform .5s, opacity .5s;
}
.accordion-001[open] p {
    transform: none;
    opacity: 1;
}

.pb-btn {
    margin: 2em auto;
    max-width: 500px;
    width: 80%;
    position: relative;
}
.pb-btn p {
    margin: 0 !important;
    padding: 0 !important;
}
.pb-btn a {
    padding: 0.8em 0.8em 0.8em;;
    padding-right: 2em;
}
.pb-btn .pb-btn_label {
    background: #EE8F81;
    color: #fff;
    display: inline-block;
    padding: 0.8em 0.8em !important;
    font-size: 11px !important;
    line-height: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: absolute;
    top: -15px;
    left: 2.5em;
    z-index: 1;
}
.pb-btn .pb-btn_label:empty {
    display: none;
}
.pb-btn_image-wrapper {
    width: 110px;
    height: 60px;
}
.pb-btn_content {
    justify-content: center;
}
.pb-btn_title {
    font-size: 1em;
    color: red;
}
.pb-btn_text {
    font-size: 0.85em;
}
.pb-btn .pb-btn_add {
    font-size: 12px !important;
    letter-spacing: 0.5px;
    margin: 1em auto 0 !important;
    max-width: 90%;
    color: #EE8F81;
    font-weight: 600;
    text-align: center;
}
.pb-btn a:after {
    position: absolute;
    content: "";
    display: inline-block;
    right: 1.5em;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
}
.pb-btn a:hover {
    border-color: #EE8F81;
    transition: 0.2s;
    text-decoration: none;
    opacity: 1;
}

@media screen and (max-width:600px) {
    .pb-btn {
        width: 90%;
        margin: 1.5em auto;
    }
    .pb-btn a {
        padding: 0.8em 1em; /* bottom padding removed as pb-btn_button handles it */
        font-size: 13px !important;
        padding-right: 4em;
        gap: 10px;
    }
    .pb-btn a:after {
        right: 1em;
        width: 7px;
        height: 7px;
        border-top: 2px solid #333;
        border-right: 2px solid #333;
    }
    .pb-btn .pb-btn_label {
        top: -12px;
        left: 2.5em;
        padding: 0.3em 0.6em !important;
        font-size: 10px !important;
    }
    .pb-btn .pb-btn_add {
        text-align: center;
        margin: 0.8em auto 0 !important;
    }
    .pb-btn_image-wrapper {
        width: 100px;
        height: 70px;
        border-radius: 3px;
    }
    .pb-btn_title { font-size: 0.95em; }
    .pb-btn_text { font-size: 0.8em; }
    .pb-btn_button {
        padding: 0.4em 0.8em;
        font-size: 0.8em;
        margin-top: 0.8em;
        margin-left: auto;
        margin-right: 0;
    }
}

.pb-btn a.pb-btn_link {
    flex-wrap: wrap; /* !important を削除 */
    padding-right: 1.5em;
}
.pb-btn_button {
    background-color: #1770b9;
    margin-right: 1.5em;
}
.pb-btn_button:hover {
    background-color: #0d5a9d;
}

.pb-btn_shadow a {
    box-shadow: 0px 4px 10px rgba(0,0,0,0.09);
}
.pb-btn_shadow:hover { transform: translateY(2px); }
.pb-btn_shadow:hover a { box-shadow: 0px 2px 5px rgba(0,0,0,0.09); }
.pb-btn_shadow:hover .pb-btn_add { transform: translateY(-2px); }

.pb-btn_pink a { background: #ffefef; border-color: #fd9392; }
.pb-btn_pink a:hover { border-color: #fdc44f; }
.pb-btn_pink.pb-btn_shadow a { box-shadow: 0px 4px 10px rgba(237,210,210,0.8); }
.pb-btn_pink.pb-btn_shadow a:hover { box-shadow: 0px 2px 5px rgba(237,210,210,0.8); }
.pb-btn_pink .pb-btn_label { background: #fd9392; }
.pb-btn_pink .pb-btn_add { color: #fd9392; }
.pb-btn_pink .pb-btn_label-2 { color: #fd9392; }
.pb-btn_pink a:after { border-color: #fd9392; }

.pb-btn_yellow a { background: #fef9ed; border-color: #fdc44f; }
.pb-btn_yellow.pb-btn_shadow a { box-shadow: 0px 4px 10px rgba(227,219,201,0.6); }
.pb-btn_yellow.pb-btn_shadow a:hover { box-shadow: 0px 2px 5px rgba(227,219,201,0.6); }
.pb-btn_yellow .pb-btn_label { background: #fdc44f; }
.pb-btn_yellow .pb-btn_add { color: #fdc44f; }
.pb-btn_yellow .pb-btn_label-2 { color: #fdc44f; }
.pb-btn_yellow a:after { border-color: #fdc44f; }

.pb-btn_green a { background: #F2F8E8; border-color: #91c13e; }
.pb-btn_green.pb-btn_shadow a { box-shadow: 0px 4px 10px rgba(225,230,212,0.8); }
.pb-btn_green.pb-btn_shadow a:hover { box-shadow: 0px 2px 5px rgba(225,230,212,0.8); }
.pb-btn_green .pb-btn_label { background: #91c13e; }
.pb-btn_green .pb-btn_add { color: #91c13e; }
.pb-btn_green .pb-btn_label-2 { color: #91c13e; }
.pb-btn_green a:after { border-color: #91c13e; }

.pb-btn_blue a { background: #f0f9fc; border-color: #6fc7e1; }
.pb-btn_blue.pb-btn_shadow a { box-shadow: 0px 4px 10px rgba(197,208,212,0.5); }
.pb-btn_blue.pb-btn_shadow a:hover { box-shadow: 0px 2px 5px rgba(197,208,212,0.5); }
.pb-btn_blue .pb-btn_label { background: #6fc7e1; }
.pb-btn_blue .pb-btn_add { color: #6fc7e1; }
.pb-btn_blue .pb-btn_label-2 { color: #6fc7e1; }
.pb-btn_blue a:after { border-color: #6fc7e1; }

.pb-btn2 {
    margin: 2em auto !important;
    max-width: 500px !important;
    width: 80% !important;
    position: relative;
}
.pb-btn2 a.pb-btn2_link {
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    padding: 1.2em 1.5em 1.2em;
    border-radius: 8px;
    padding-right: 1.5em;
}
.pb-btn2_image-wrapper {
    width: 80px !important;
    height: 80px !important;
}
.pb-btn2_content {
    min-width: 0 !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    flex-basis: 0;
}
.pb-btn2_title { font-size: 1.2em; }
.pb-btn2_text {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 0.5em;
}
.pb-btn2_stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 1em;
    color: #FFC107;
}
.pb-btn2_stars .star { font-size: 1.2em; }
.pb-btn2_stars .star.empty { color: #ccc; }
.pb-btn2_stars .rating-number {
    font-size: 0.9em;
    color: #555;
    margin-left: 5px;
}
.pb-btn2_button {
    background-color: #F87D32;
    padding: 0.8em 1.5em;
    margin: 1em auto !important;
}
.pb-btn2_button:hover { background-color: #e06c27; }
.pb-btn2 a.pb-btn2_link:hover {
    border-color: #F87D32;
    transition: 0.2s;
    text-decoration: none;
    opacity: 1;
}

@media screen and (max-width:600px) {
    .pb-btn2 a.pb-btn2_link {
        align-items: flex-start;
        flex-wrap: nowrap;
        padding: 0.8em 1em;
        font-size: 13px !important;
        padding-right: 1em;
        gap: 10px;
    }
    .pb-btn2_image-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 3px;
    }
    .pb-btn2_content { align-items: flex-start; }
    .pb-btn2_title { font-size: 1.1em; }
    .pb-btn2_text { font-size: 0.85em; }
    .pb-btn2_stars {
        font-size: 0.9em;
        margin-bottom: 0.8em;
    }
    .pb-btn2_button {
        display: block;
        margin: 0.8em auto !important;
        padding: 0.6em 1em;
        font-size: 0.85em;
    }
}
.pb-btn2 + p { display: none !important; }
p > a.pb-btn2_link { display: none !important; }

.grecaptcha-badge { visibility: hidden; }

.my-review-box {
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 5px;
}
.my-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.my-review-title-area {
    display: flex;
    align-items: center;
}
.st-svg-oukan {
    font-size: 24px;
    color: #ffcc00;
    margin-right: 8px;
    line-height: 1;
}
.my-review-title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}
.my-review-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
}
.my-review-image {
    flex-shrink: 0;
    width: 130px !important;
    height: 130px !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    align-self: flex-start !important;
}
.my-review-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    max-width: 100% !important;
    max-height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
}
.my-review-text-and-stars {
    flex-grow: 1;
    min-width: 200px;
}
.my-star-rating {
    font-size: 1.2em !important;
    white-space: nowrap !important;
    display: flex !important;
    position: absolute !important;
    top: 0 !important;
    left: 115px !important;
    z-index: 5 !important;
    margin-top: 0 !important;
    align-items: center !important;
}
.my-star-rating .fa-star.star-filled { color: #FFD700 !important; }
.my-star-rating .fa-star.star-empty { color: #ccc !important; }
.my-star-comment {
    position: absolute;
    top: 25px;
    left: 115px;
    margin: 0;
    font-size: 0.85em;
    color: #666;
    white-space: nowrap;
    z-index: 5;
}
.my-review-text {
    margin: 0;
    padding-top: 35px !important;
    position: relative;
}
.my-review-text p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.9em;
}

@media screen and (max-width: 767px) {
    .my-review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .my-review-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .my-review-image { margin-bottom: 5px; }
    .my-review-text-and-stars {
        width: 100%;
        min-width: unset;
    }
    .my-star-rating {
        position: static !important;
        margin: 5px auto 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        width: fit-content !important;
        padding-top: 0 !important;
    }
    .my-star-comment {
        position: static;
        text-align: center;
        margin: 0 auto 5px auto !important;
        white-space: normal;
    }
    .my-review-text { padding-top: 0 !important; }
    .my-review-text p { text-align: center; }
}

.table_design13 {
    border-collapse: collapse;
    table-layout: fixed;
    font-weight: bold;
    text-align: center;
}
.table-scroll {
    max-width: 900px;
    width: 100%;
    margin: auto;
    overflow-x: auto;
    position: relative;
}
.table_design13 {
    table-layout: fixed;
    width: 120% !important;
}
.table_design13 thead th {
    padding: 1em .8em;
    border-right: 2px solid#fff;
    position: static;
    top: auto;
}
.table_design13 td {
    color: #4d9bc1;
    padding: 1em;
    font-size: .8rem !important;
    text-align: center !important;
    vertical-align: middle !important;
}
.table_design13 thead th:not(:first-child) {
    background: #4d9bc1;
    color: #fff;
    padding: 0.5em;
}
.table_design13 thead th span { font-size: .9rem; }
.table_design13 th:first-child,
.table_design13 td:first-child {
    position: sticky;
    left: 0;
    background-color: #f9f9f9;
    color: #333;
    z-index: 15;
    border-right: 1px solid #ddd;
    padding: 10px;
}
.table_design13 th:first-child {
    z-index: 25;
    background-color: #a4b3bf;
    color: #fff;
    text-align: center;
}
.table-scroll.is-scrolled-left .table_design13 th:first-child,
.table-scroll.is-scrolled-left .table_design13 td:first-child {
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}
.table_design13 thead th.reco-col-header {
    background-color: #f88400;
    position: relative;
    color: #fff;
    padding: 0.5em;
    overflow: visible;
    font-size: 1.3em;
}
.table_design13 thead th.reco-col-header::before {
    content: '' !important;
    width: 100% !important;
    height: 10px !important;
    position: absolute !important;
    background-color: #f88400 !important;
    left: 0 !important;
    bottom: 100% !important;
    z-index: 26 !important;
}
.table_design13 thead th.reco-col-header::after { display: none !important; }
.table_design13 tbody th, .table_design13 tbody td { border: 2px solid #fff; }
.table_design13 tbody th {
    background-color: #4d9bc1;
    color: #fff;
}
.table_design13 tbody td { background-color: #e6f1f6; }
.table_design13 td.reco-col-data {
    color: #f88400;
    background: #fef1e3;
    font-size: .8rem;
    line-height: 1.5;
    text-align: center !important;
    vertical-align: middle !important;
}
.table_design13 td:hover {
    transform: scale(1.05);
    outline: 2px solid #4d9bc1;
}
.table_design13 td.reco-col-data:hover {
    transform: scale(1.05);
    outline: 2px solid #f88400;
}
@media screen and (max-width: 787px) {
    .scroll-box { overflow-x: auto; }
}

.footer-top_key-words-inner ul {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    justify-content: flex-start !important;
}
.footer-top_key-words-inner ul li {
    background-color: #e0eaf3 !important;
    border-radius: 8px !important;
    padding: 8px 15px !important;
    white-space: nowrap !important;
    color: #333 !important;
    font-size: 0.7em !important;
    line-height: 1.2 !important;
    display: block !important;
}
.footer-top_key-words-inner ul li a {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}
.footer-top_key-words-inner ul li:hover {
    opacity: 0.8 !important;
    cursor: pointer !important;
}
.footer-top_key-words .title_aside {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #333 !important;
    margin-bottom: 20px !important;
    text-align: left !important;
}

.logo-with-white-border {
    max-width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 5px auto;
    filter: drop-shadow(0 0 1px white);
}

.rate-wrap {
    display: flex !important;
    width: 330px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 5px !important;
    border: 1.5px solid #e8d8b0 !important;
    margin: 20px auto 0 !important;
    font-weight: bold !important;
    margin-bottom: 0.5px !important;
    margin-top: 0 !important;
    font-size: 0.8em !important;
}
.rate-wrap .rate-label {
    width: 120px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    text-align: left !important;
    margin-right: 10px !important;
    font-size: 1em !important;
}
.rate {
    position: relative !important;
    display: flex !important;
    width: auto !important;
    height: 22px !important;
    font-size: 0 !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    gap: 2px;
}
.rate::before, .rate::after { display: none !important; }
.rate .st-svg-star { color: #ffb906 !important; }
.rate .st-svg-star-half-o { color: #ffb906 !important; }
.rate .st-svg-star-o { color: #c4c4c4 !important; }
.rate-wrap .num {
    width: 40px !important;
    text-align: right !important;
    margin-left: 50px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    font-size: 1em !important;
}

.my-checklist-box {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}
.my-checklist-box h3 {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.your-review-container {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 20px;
    white-space: nowrap;
    position: relative;
    margin-bottom: 3px !important;
}
.your-review-container::before,
.your-review-container::after {
    content: '';
    position: sticky;
    top: 0;
    height: 100%;
    width: 30px;
    pointer-events: none;
    z-index: 1;
}
.your-review-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0));
}
.your-review-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.1), rgba(0,0,0,0));
}
.your-review-card {
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 80vw;
    background-color: #fafafaff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    overflow: hidden;
}
.review-icon-float {
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.review-person-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: top !important;
}
.review-title {
    font-size: 0.9em !important;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    padding-top: 5px;
}
.your-review-card p {
    font-size: 0.9em !important;
    margin-bottom: 8px;
    line-height: 1.6;
}
.your-review-card .source {
    font-size: 0.5em !important;
    text-align: right;
    margin-top: 15px;
}
.scroll-hint-message {
    display: block;
    width: fit-content;
    margin: 3px auto 0;
    font-size: 0.8em;
    color: #fff;
    background-color: #333;
    padding: 6px 11px;
    border-radius: 5px;
    opacity: 0.9;
    text-align: center;
}

.fas.fa-thumbs-up { color: #28A745; }
.fas.fa-thumbs-down { color: #DC3545; }

.review-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.review-rating .rating-number {
    font-size: 0.9em;
    color: #333;
    margin-left: 8px;
}

.graybox {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.annotation-text,
p .annotation-text {
    font-size: 0.7em !important;
    color: #666 !important;
    line-height: 1.1 !important;
}

.align-center-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.align-center-flex .st-minihukidashi { margin: 0 !important; }

.lead-text-style {
    font-size: 0.9em !important;
    color: #3f51b5 !important;
    line-height: 1 !important;
    margin-bottom: 2.2em !important;
    padding: 1.5em !important;
    border: 1px solid #3f51b5 !important;
    border-radius: 4px !important;
    background-color: #ffffff !important;
}

.st-svg-circle-w,
.st-svg-circle-o {
    color: #ee6363 !important;
}

.st-svg-triangle {
    color: #4c84f6 !important;
}

.st-svg-times {
    color: #888 !important;
}

/* pb-btn a.pb-btn_link (これも .pb-btn a に統合されるので個別指定不要) */
/* .pb-btn_button, .pb-btn_button:hover は共通スタイルで定義済み */

/* ★★★ 全体を包むラッパーで中央寄せ ★★★ */
.button-section-wrapper {
    text-align: center !important;
    margin: 10px 0 !important;
}

/* solid015 */
.button_solid015 {
    position: relative;
    display: inline-block !important;
    width: 100%;
    max-width: 330px !important;
    margin: 30px auto !important;
    text-align: center;
}

.button_solid015 p.button-top-text {
    margin-bottom: 5px !important;
    font-weight: 600 !important;
    color: #ff9900 !important;
    letter-spacing: 0.04rem !important;
    display: inline-block !important;
    position: relative !important;
    padding: 0 30px !important;
    background-color: #fff0e0;
    border-radius: 5px;
    line-height: 1.2 !important;
}

.button_solid015 p.button-top-text::before, 
.button_solid015 p.button-top-text::after {
    display: inline-block !important;
    position: absolute !important;
    top: 50% !important;
    width: 20px !important;
    height: 3px !important;
    border-radius: 5px !important;
    background-color: #ff9900 !important;
    content: "" !important;
    transform: translateY(-50%) !important;
}

.button_solid015 p.button-top-text::before {
    left: -10px !important;
    -webkit-transform: rotate( 50deg ) translateY(-50%) !important;
    transform: rotate( 50deg ) translateY(-50%) !important;
}

.button_solid015 p.button-top-text::after {
    right: -10px !important;
    -webkit-transform: rotate( -50deg ) translateY(-50%) !important;
    transform: rotate( -50deg ) translateY(-50%) !important;
}

/* メインボタンのスタイル */
.button_solid015 a {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    
    gap: 10px !important;
    
    margin: 0 auto !important;
    width: fit-content !important;
    max-width: 300px !important;
    padding: 15px 25px !important;
    color: #FFF !important;
    transition: 0.3s ease-in-out !important;
    font-weight: 600 !important;
    background: #f88401 !important;
    filter: drop-shadow(0px 2px 4px #d4d4d4) !important;
    border-radius: 50px !important;
}

/* ホバー時の既存スタイル */
.button_solid015 a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1) !important;
    filter: none !important;
}

/* 右矢印アイコンのスタイル */
.button_solid015 a:after {
    position: relative !important;
    margin-left: auto !important;
    margin-right: 0 !important;

    transition: 0.2s ease-in-out !important;
    content: "\f0da" !important;
    font-family: "stsvg" !important;
    font-weight: normal !important;
    color: #FFF !important;
    font-size: 1.2em !important;
    text-decoration: none !important; 
    text-decoration-line: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.st-mybutton-box .st-mybutton.custom-sumokka-button .st-btn-text {
    white-space: normal !important;
}

.button_solid015 a {
    text-decoration: none !important; 
}