/* Google Fonts「Hind Guntur」の読み込み */
@import url('https://fonts.googleapis.com/css2?family=Hind+Guntur:wght@600&display=swap');

/* ==========================================================================
   1. 変数 & 基本スタイル
   ========================================================================== */
:root {
   --font-main: 'Zen Maru Gothic', sans-serif; /* 基本の丸ゴシック */
    --font-mincho: 'Shippori Mincho', serif;   /* 見出し用の明朝体 */
    --font-en: 'Hind Guntur', sans-serif;
    --site-width: 1300px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    width: 100%;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}
a:hover {
    opacity: 0.8;
}
/* ==========================================================================
   2. 共通クラス
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 20px;
}
.sp-only {
    display: none !important;
}
.pc-only {
    display: block !important;
}
/* ==========================================================================
   3. メディアクエリ
   ========================================================================== */
@media screen and (max-width: 767px) {
    .sp-only {
        display: block !important;
    }
    .pc-only {
        display: none !important;
    }
}

/* ====================================================
   スマホ画像・表示セット（青色指定 #0099EB）
   ==================================================== */
.header-sp-only {
    display: none;
}
@media screen and (max-width: 767px) {
    .site-header {
        position: absolute !important;
        top: 40px !important;
        left: 0;
        width: 100% !important;
        height: 60px !important;
        background-color: transparent !important;
        z-index: 10;
    }
    .site-main, #page {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    .header-sp-container {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 60px;
    }
    .header-sp-left img {
        height: 35px !important;
        width: auto;
        margin-left: 15px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    #hamburger-btn {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 20px;
        right: 0;
        width: 60px;
        height: 60px;
        background: #D0CBBA !important;
        border: none;
        border-radius: 0;
        cursor: pointer;
        z-index: 10000;
        padding: 10px;
        gap: 4px;
        box-shadow: none;
    }
    #hamburger-btn span {
        display: block !important;
        background-color: #fff !important;
        transition: all 0.3s;
        border-radius: 1px;
    }
    #hamburger-btn span:nth-child(3) {
        margin-bottom: 3px !important;
    }
    #hamburger-btn .menu-text {
        width: auto !important;
        height: auto !important;
        background: none !important;
        background-color: transparent !important;
        color: #FFF;
        font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
        font-size: 10px;
        font-weight: 600;
        margin-top: 2px;
        letter-spacing: 0.5px;
    }
    
}
body.single .site-header,
body.page .site-header,
body.archive .site-header,
body.error404 .site-header {
    position: relative; 
    background-color: #B6B09F; 
    border-bottom: 1px solid #eeeeee;
    
}
/* ==========================================================================
   Main Content
   ========================================================================== */
.main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ==========================================================================
   Footer
   ========================================================================== */
.footer-top-section {
    background-color: #D0CBBA;
    padding: 40px 20px;
}
.footer-top-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.footer-column {
    display: flex;
    flex-direction: column;
}
.footer-section-title {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
}
.footer-section-content {
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 20px;
    flex: 1;
}
.footer-article-list,
.footer-company-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-article-list li,
.footer-company-links li {
    line-height: 1.5;
}
.footer-article-list a,
.footer-company-links a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    display: block;
    transition: opacity 0.2s ease;
}
.footer-article-list a:hover,
.footer-company-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
}
.footer-no-content {
    color: #666;
    font-size: 14px;
    margin: 0;
    text-align: center;
    padding: 20px 0;
}
@media (max-width: 767px) {
    .footer-top-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-section-title {
        font-size: 16px;
    }
    .footer-section-content {
        padding: 15px;
    }
    .footer-article-list a,
    .footer-company-links a {
        font-size: 13px;
    }
}
.site-footer {
    background-color: #D0CBBA;
    color: var(--color-white);
    padding: 40px 0 20px;
    margin-top: 0;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    gap: 20px;
}
.footer-logo {
    text-align: center;
}
.footer-title-en {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: bold;
    color: var(--color-white);
    margin: 0;
}
.footer-navigation {
    width: 100%;
    text-align: center;
    color: #fff;
}
.footer-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.footer-menu a {
    color: var(--color-white);
    font-size: 14px;
}
.footer-bottom {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-disclaimer {
    color: #FFF;
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}
.copyright {
    color: #FFF;
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}
@media (max-width: 767px) {
    .footer-content {
        gap: 15px;
    }
    .footer-menu {
        flex-direction: column;
        gap: 10px;
    }
}
/* ==========================================================================
   Utility Classes
   ========================================================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.text-center {
    text-align: center;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mt-40 {
    margin-top: 40px;
}


/* Mobile (480px and below) */
@media (max-width: 480px) {
    .company-introduction-wrapper {
        padding: 0 10px;
        margin: 20px auto;
    }
    .company-header-section {
        padding: 15px 10px;
        overflow: hidden;
        max-width: 100%;
    }
    /* company-1.pngバッジを中央配置（小さいサイズ） */
    .company-number-badge {
        width: 100px;
        display: block;
        margin: 0 auto 10px;
    }
    .company-title-group {
        gap: 10px;
        width: 100%;
    }
    /* タイトル部分を横並び表示（「湘南の気候に詳しい」を1行で） */
    .company-title-line-1 {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 4px;
    }
    .shonan-title {
        font-size: clamp(20px, 6vw, 28px);
        width: auto;
        height: auto;
        padding: 4px 8px;
        flex-shrink: 0;
    }
    .title-normal {
        font-size: clamp(12px, 3.5vw, 16px);
        text-align: center;
        white-space: nowrap;
        flex-shrink: 0;
    }
    /* local-business-badgeをフルワイド対応 */
    .local-business-badge {
        gap: 1px;
        margin-top: 0;
        width: auto;
        justify-content: center;
        flex-shrink: 0;
    }
    .local-business-badge .char {
        font-size: clamp(14px, 4vw, 18px);
        width: clamp(20px, 5.5vw, 28px);
        height: clamp(24px, 6.5vw, 32px);
    }
    .company-subtitle-1 {
        font-size: clamp(12px, 3.5vw, 16px);
        text-align: center;
        width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    .company-subtitle-2 {
        font-size: clamp(16px, 4.5vw, 20px);
        text-align: center;
        width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .company-name-large {
        font-size: 18px;
        word-break: break-word;
    }
    .company-name-section {
        padding: 10px 15px;
        text-align: center;
        box-sizing: border-box;
        max-width: 100%;
    }
    .company-screenshot-section {
        padding: 15px 5px 30px 5px;
        /* 左右の余白を最小限に、下に余白追加 */
        box-sizing: border-box;
        max-width: 100%;
        width: 100%;
        overflow: visible;
        /* 影が見えるように */
        position: relative;
    }
    .company-screenshot {
        max-width: calc(100% - 10px);
        /* 影の分を確保 */
        width: calc(100% - 10px);
        height: auto;
        position: relative;
        z-index: 1;
        margin-bottom: 15px;
        /* 引用元との余白 */
    }
    /* 画像の影 - スマホ用調整 */
    .company-screenshot-section::before {
        top: calc(15px + 10px);
        left: calc(5px + 10px);
        width: calc(100% - 10px - 10px);
        /* padding分 + 横ずれ分を引く */
        height: calc(100% - 45px - 24px - 15px);
        /* padding + caption + margin */
    }
    .company-strengths-section {
        padding: 30px 15px;
    }
    .strengths-title {
        font-size: 20px;
        margin-bottom: 20px;
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 15px;
        width: calc(100% + 30px);
        height: 44px;
        line-height: 44px;
    }
    .strength-card-content {
        padding: 15px 8px;
    }
    .company-cta-buttons .company-btn {
        font-size: 14px;
        height: 55px;
    }
    .reviews-title {
        font-size: 20px;
        padding: 10px 20px;
    }
    .reviews-cta .company-btn {
        font-size: 14px;
    }
    .results-title {
        font-size: 20px;
        padding: 10px 20px;
    }
    .results-cta .company-btn {
        font-size: 14px;
    }
    .result-card-title {
        font-size: 13px;
    }
    .overview-title {
        font-size: 20px;
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 15px;
        width: calc(100% + 30px);
        height: 44px;
        line-height: 44px;
    }
    .overview-table th {
        font-size: 13px;
        width: 100px;
        padding: 12px;
    }
    .overview-table td {
        font-size: 13px;
        padding: 12px;
    }
    .overview-cta .company-btn {
        font-size: 14px;
        height: 55px;
    }
    .overview-map-wrapper iframe {
        height: 300px;
    }
    .strength-card-title {
        font-size: 18px;
    }
    .strength-card-description {
        font-size: 13px;
    }
    /* Sidebar adjustments */
    .widget-search {
        padding: 15px;
    }
    .widget-search-box form {
        flex-direction: column;
    }
    .widget-search-box input[type="submit"] {
        width: 100%;
    }
    .widget-title.bg-blue {
        font-size: 18px;
    }
    .content-list {
        padding: 15px;
    }
    .content-list a {
        font-size: 16px;
        padding: 8px;
    }
    .articles-list {
        padding: 15px;
    }
    .article-card {
        margin-bottom: 15px;
    }
    .article-thumbnail {
        height: 120px;
    }
    .article-rank {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .article-title {
        font-size: 13px;
        padding: 10px 12px;
    }
}
 
/* ==========================================================================
   工務店一覧セクション (1カラム中央配置)
   ========================================================================== */
.company-list-section {
    margin: 100px auto;
    max-width: 1000px;
    padding: 0 20px;
    clear: both;
}
.company-list-header {
    text-align: center;
    margin-bottom: 50px;
}
.company-list-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.6;
    margin: 0;
    color: #1b1b1b;
}
.company-list-title .text-gold {
    color: #D79748;
}
.relative-wrap-red {
    position: relative;
    display: inline-block;
}
.title-accessory-red {
    position: absolute;
    top: -8px;
    right: -14px;
    width: 35px;
    height: auto;
    transform: rotate(10deg);
    pointer-events: none;
}
.company-list-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.company-list-card {
    width: calc(33.333% - 14px);
    background: #fff;
    border-radius: 10px;
    border: 1px solid #E5E5E5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.company-list-btn {
    background-color: #B6B09F;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}
.company-list-btn:hover {
    opacity: 0.8;
}
.btn-text-wrapper .btn-text-line1 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}
.btn-text-wrapper .btn-text-line2 {
    margin: 5px 0 0 0;
    font-size: 12px;
    color: #ccc;
}
/* --- カード本文（説明文） --- */
.company-list-description {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    flex-grow: 1;
    margin: 0;
}
/* --- ★ マップエリア --- */
.company-list-map {
    padding: 0 20px 15px;
    width: 100%;
    box-sizing: border-box;
}
.company-list-map iframe {
    border-radius: 5px;
    display: block;
}
.company-list-info {
    padding: 0 20px 20px;
}
.company-info-item {
    margin-bottom: 12px;
}
.company-info-item:last-child {
    margin-bottom: 0;
}
.info-label {
    display: inline-block;
    color: #202020;
    border: 1px solid #000000;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
}
.info-value {
    display: block;
    font-size: 14px;
    color: #1b1b1b;
    line-height: 1.4;
    font-weight: bold;
}
.company-list-more-wrapper {
    text-align: center;
    margin-top: 40px;
}
.company-list-more-btn {
    background-color: #AFAA9C;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 0 #B6B09F;
    transition: all 0.2s ease;
    margin-bottom: 6px;
}
.company-list-more-btn:hover {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #B6B09F;
}
/* 4件目以降を隠すクラス */
.company-card-hidden {
    display: none;
}
@media (max-width: 768px) {
    .company-list-grid {
        display: flex;
        flex-direction: column; 
        gap: 20px;
    }
    
    .company-list-card {
        width: 100%;
    }

    .company-list-btn {
        padding: 14px 16px;
        min-height: 60px;
    }
    .company-list-btn .btn-text-line1 {
        font-size: 15px;
    }
    .company-list-btn .btn-text-line2 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .company-list-btn {
        padding: 12px 14px;
        min-height: 55px;
    }
    .company-list-btn .btn-text-line1 {
        font-size: 14px;
    }
    .company-list-btn .btn-text-line2 {
        font-size: 13px;
    }
}
/* =========================================
   🚨 業者一覧：リンクなしのカードはクリック感を消す
========================================= */
.company-list-btn.no-link {
    cursor: default !important;
}
.company-list-btn.no-link:hover {
    opacity: 1 !important; /* もしホバーで薄くなる設定があれば打ち消す */
}
/* ==========================================================================
   Fixed Right Elements - トップに戻るボタン & 追従バナー
   ========================================================================== */
.fixed-right-elements {
    position: fixed;
    bottom: 130px ;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 9998;
}
/* トップに戻るボタン */
.scroll-to-top-btn {
    width: 50px;
    height: 50px;
    background-color: #B6B09F;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px #AFAA9C;
}
.scroll-to-top-btn .top-text {
    color: #FFF;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}
.scroll-to-top-btn .top-arrow {
    width: 20px;
    height: 20px;
}
.scroll-to-top-btn .top-arrow path {
    stroke: #FFF;
}
/* 追従バナー */
.fixed-banner {
    position: relative;
    width: 471px;
    height: 122px;
    aspect-ratio: 471/122;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    overflow: visible;
    margin-top: 5px;
}
.fixed-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.fixed-banner a {
    display: block;
    line-height: 0;
}
.fixed-banner img {
    width: 100%;
    height: auto;
    display: block;
}
/* バナー閉じるボタン */
.close-banner-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background-color: #333;
    border: 2px solid #FFF;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 2;
}
.close-banner-btn:hover {
    background-color: #E63939;
    transform: scale(1.1);
}
.close-banner-btn svg {
    width: 10px;
    height: 10px;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .fixed-right-elements {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
    }
    .scroll-to-top-btn .top-text {
        font-size: 9px;
    }
    .scroll-to-top-btn .top-arrow {
        width: 18px;
        height: 18px;
    }
    .fixed-banner {
        width: auto;
        height: auto;
        max-width: 425px;
    }
    .close-banner-btn {
        width: 22px;
        height: 22px;
        top: -8px;
        right: -8px;
    }
    .close-banner-btn svg {
        width: 9px;
        height: 9px;
    }
}
@media (max-width: 480px) {
    .fixed-right-elements {
        bottom: 85px;
        right: 10px;
        gap: 10px;
    }
    .scroll-to-top-btn {
        width: 42px;
        height: 42px;
    }
    .scroll-to-top-btn .top-text {
        font-size: 8px;
    }
    .scroll-to-top-btn .top-arrow {
        width: 16px;
        height: 16px;
    }
    .fixed-banner {
        width: auto;
        height: auto;
        max-width: 340px;
    }
    .close-banner-btn {
        width: 20px;
        height: 20px;
        top: -6px;
        right: -6px;
    }
    .close-banner-btn svg {
        width: 8px;
        height: 8px;
    }
    #fixed-banner {
    margin-bottom: 40px !important; 
    }
}
.company-list-empty {
    text-align: center;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    color: #666;
    padding: 40px 20px;
}

.company-list-empty {
    text-align: center;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    color: #666;
    padding: 40px 20px;
}
/* 業者一覧セクション レスポンシブ */
@media (max-width: 1024px) {
    .company-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .company-list-section {
        padding: 0 16px 20px;
    }
    .company-list-title {
        font-size: 22px;
    }
    .company-list-title .title-decoration {
        width: 20px;
        top: -5px;
        right: -14px;
    }
    .company-list-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .company-list-btn {
        padding: 14px 16px;
    }
    .company-list-btn .btn-text {
        font-size: 15px;
    }
    .company-list-description {
        padding: 14px 16px;
        font-size: 13px;
    }
    .company-list-info {
        padding: 14px 16px;
    }
    .company-list-more-btn {
        padding: 14px 40px;
        font-size: 16px;
    }
}

/* ==========================================================================
   Area Column Single Page
   ========================================================================== */
.area-column-article {
    background: #FFF;
    margin-bottom: 60px;
}
.article-header {
    margin-bottom: 30px;
}
.article-header .article-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    margin: 0 0 15px 0;
    display: block;
    overflow: visible;
    white-space: normal;
    word-wrap: break-word;
}
.area-column-article .article-header .article-title {
    display: block;
    overflow: visible;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.article-category-tag {
    display: inline-block;
    background: #AFAA9C;
    color: #FFF;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 4px;
}
.article-dates {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    color: #666;
}
.article-dates .article-published,
.article-dates .article-updated {
    margin-right: 15px;
}
.article-eyecatch {
    width: 100%;
    margin-bottom: 30px;
    background: #D9D9D9;
}
.article-eyecatch img {
    width: 100%;
    height: auto;
    display: block;
}
.article-content {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}
.article-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #AFAA9C;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #AFAA9C;
}
.article-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 30px 0 15px;
}
.article-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 25px 0 12px;
}
.article-content p {
    margin: 0 0 20px;
}
.article-content ul,
.article-content ol {
    margin: 0 0 20px;
    padding-left: 25px;
}
.article-content li {
    margin-bottom: 8px;
}
.article-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}
.article-content a {
    color: #AFAA9C;
    text-decoration: underline;
}
.article-content a:hover {
    opacity: 0.7;
}
.article-content blockquote {
    background: #F5F5F5;
    border-left: 4px solid #AFAA9C;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
}
.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
}
.article-areas {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.areas-label {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.area-tag {
    display: inline-block;
    background: #F5F5F5;
    color: #333;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.area-tag:hover {
    background: #E0E0E0;
    opacity: 1;
}
.related-articles-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #E0E0E0;
}
.related-articles-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0 0 25px 0;
}
.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
/* ==========================================================================
   Area Column Sidebar
   ========================================================================== */
.area-column-sidebar {
    width: 353px;
    flex-shrink: 0;
    background: #fff;
    padding: 0;
}
/* Sidebar Banner */
.sidebar-banner-widget {
    padding: 0;
    margin: 0;
}
.sidebar-banner-widget a {
    display: block;
    line-height: 0;
}
.sidebar-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Area Column Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .area-column-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .area-column-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .area-column-sidebar {
        width: 100%;
        max-width: 100%;
    }
    .area-column-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .article-header .article-title {
        font-size: 22px;
        display: block;
        overflow: visible;
    }
    /* タブレット用：より詳細度の高いセレクタで確実に適用 */
    .area-column-article .article-header .article-title {
        display: block;
        overflow: visible;
        font-size: 22px;
    }
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .article-content h2 {
        font-size: 20px;
    }
    .article-content h3 {
        font-size: 18px;
    }
    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .related-articles-title {
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    .breadcrumb-nav {
        font-size: 12px;
        padding: 15px 0;
    }
    .breadcrumb-separator {
        margin: 0 5px;
    }
    .article-header .article-title {
        font-size: 20px;
        display: block;
        overflow: visible;
    }
    /* スマホ用：より詳細度の高いセレクタで確実に適用 */
    .area-column-article .article-header .article-title {
        display: block;
        overflow: visible;
        font-size: 20px;
    }
    .article-category-tag {
        font-size: 12px;
        padding: 5px 12px;
    }
    .article-dates {
        font-size: 12px;
    }
    .area-column-card-title {
        font-size: 14px;
    }
    .area-column-card-date {
        font-size: 12px;
    }
}
/* ==========================================================================
   SP Layout Styles
   ========================================================================== */
/* PC時はSP用要素を非表示 */
.hero-banner-sp,
.hero-cta-sp {
    display: none;
}
/* PC時はハンバーガーメニュー関連を非表示 */
.hamburger-btn {
    display: none;
}
.mobile-menu {
    display: none;
}
.mobile-menu-close {
    display: none;
}
.mobile-menu-overlay {
    display: none;
}
/* ==========================================================================
   Tablet/Mobile Navigation (1024px以下)
   ========================================================================== */
@media (max-width: 1024px) {
    /* タブレット・モバイル共通：トップバー固定分のpadding調整 */
    #page {
        padding-top: 20px;
        /* トップバー(20px)のみ */
    }
    body.admin-bar #page {
        padding-top: 20px;
    }
    /* ヘッダーを非表示（タブレット以下） */
    .site-header {
        display: none;
    }
    /* 1024px以下でヘッダー右側（ナビゲーション・バナー）を非表示 */
    .header-banner-02 {
        display: none;
    }
    .header-right {
        display: none;
    }
    .main-navigation {
        display: none;
    }
    /* SP Hamburger Menu Button - 紫背景・白アイコン */
    .hamburger-btn {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 20px;
        /* トップバーの高さ(20px)のすぐ下 */
        right: 0;
        width: 60px;
        height: 60px;
        background: #D0CBBA;
        border: none;
        border-radius: 0;
        cursor: pointer;
        z-index: 10000;
        padding: 10px;
        gap: 4px;
        box-shadow: none;
    }
    /* WordPress管理バー対応 - ハンバーガーメニュー位置調整（タブレット：782px以上） */
    body.admin-bar .hamburger-btn {
        top: 52px;
        /* admin-bar(32px) + top-bar(20px) */
    }
    .hamburger-btn span {
        display: block !important;
        width: 26px;
        height: 3px;
        background-color: #FFF !important;
        transition: all 0.3s ease;
        border-radius: 1px;
    }
    .hamburger-btn span.menu-text {
        width: auto !important;
        height: auto !important;
        background: none !important;
        background-color: transparent !important;
        color: #FFF;
        font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
        font-size: 10px;
        font-weight: 600;
        margin-top: 2px;
        letter-spacing: 0.5px;
    }
    /* Hamburger Active State (X mark) - 3本ライン対応 */
    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg);
        position: absolute;
        top: 22px;
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
        position: absolute;
        top: 22px;
    }
    .hamburger-btn.active span.menu-text {
        position: absolute;
        bottom: 10px;
        transform: none;
    }
    /* Mobile Menu - ハンバーガーボタンと同じ位置から開始 */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 20px;
        right: 0;
        width: 75%;
        max-width: 300px;
        height: calc(100vh - 20px);
        background-color: #D0CBBA;
        z-index: 10001;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        visibility: hidden;
        border-radius: 0;
    }
    .mobile-menu.active {
        transform: translateX(0);
        visibility: visible;
    }
    /* WordPress管理バー対応 - モバイルメニュー位置調整（タブレット：782px以上） */
    body.admin-bar .mobile-menu {
        top: 52px;
        /* admin-bar(32px) + top-bar(20px) */
        height: calc(100vh - 52px);
    }
    /* 閉じるボタン - ハンバーガーボタンと同じ位置・スタイル */
    .mobile-menu-close {
        display: flex !important;
        position: fixed;
        top: 20px;
        right: 0;
        width: 60px;
        height: 60px;
        background: #D0CBBA;
        border: none;
        border-radius: 0;
        cursor: pointer;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
        gap: 4px;
        z-index: 10002;
    }
    .mobile-menu-close .close-icon {
        position: relative;
        width: 26px;
        height: 26px;
    }
    .mobile-menu-close .close-icon::before,
    .mobile-menu-close .close-icon::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 26px;
        height: 3px;
        background-color: #FFF;
        border-radius: 1px;
    }
    .mobile-menu-close .close-icon::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .mobile-menu-close .close-icon::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .mobile-menu-close .close-text {
        color: #FFF;
        font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    /* WordPress管理バー対応 - 閉じるボタン位置調整（タブレット：782px以上） */
    body.admin-bar .mobile-menu-close {
        top: 52px;
        /* admin-bar(32px) + top-bar(20px) */
    }
    .mobile-menu-content {
        padding: 80px 0 30px;
    }
    .mobile-nav {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .mobile-nav li {
        border-bottom: none;
    }
    .mobile-nav a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 16px 25px;
        color: #FFF;
        font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
        font-size: 17px;
        font-weight: 600;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    .mobile-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        opacity: 1;
    }
    .mobile-nav .arrow {
        display: inline-block;
        margin-left: 12px;
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 8px solid #FFF;
    }
    .mobile-menu-banner {
        margin: 25px 15px;
        position: relative;
    }
    .mobile-menu-banner-pr {
        position: absolute;
        top: -8px;
        left: 0;
        background: #D0CBBA;
        color: #FFF;
        font-size: 10px;
        font-weight: 600;
        padding: 2px 8px;
        z-index: 2;
    }
    .mobile-menu-banner img {
        width: 100%;
        height: auto;
        border-radius: 0;
    }
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }
    .mobile-menu-overlay.active {
        display: block;
    }
    
    
}
/* ==========================================================================
   SP Layout Styles (Mobile)
   ========================================================================== */
@media (max-width: 767px) {
    /* Hero Section - SP */
    .hero-section {
        margin-bottom: 0;
        position: relative;
        height: 530px;
        max-height: 530px;
        overflow: hidden;
    }
    .hero-content {
        background-image: url('../images/mv-sp.avif');
        background-size: cover;
        background-position: center top;
        height: 530px !important;
        max-height: 530px;
        padding: 20px 15px 30px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
    }
    /* PC用画像を非表示 */
    .hero-icon {
        display: none;
    }
    .hero-cta {
        display: none;
    }
    /* SP用バナー・CTA */
    .hero-banner-sp {
        display: block;
        width: 100%;
        max-width: 350px;
        margin-top: 80px;
        opacity: 0;
        animation: fadeSlideDown 0.8s ease-out 0.3s forwards;
    }
    .hero-banner-sp img {
        width: 100%;
        height: auto;
    }
    .hero-cta-sp {
        display: block;
        width: 100%;
        max-width: 350px;
        margin-top: 30px;
        opacity: 0;
        animation: fadeSlideUp 0.8s ease-out 0.6s forwards;
        transition: transform 0.3s ease;
    }
    .hero-cta-sp:hover {
        transform: scale(1.02);
    }
    .hero-cta-sp img {
        width: 100%;
        height: auto;
    }
    /* Top Bar - 固定表示・スクロール追従 */
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 20px;
        padding: 0;
        display: flex;
        align-items: center;
        z-index: 9999;
    }
    /* WordPress管理バー対応 - トップバー位置調整 */
    body.admin-bar .top-bar {
        top: 46px;
    }
    /* トップバー固定分のpadding調整 */
    #page {
        padding-top: 20px;
    }
    body.admin-bar #page {
        padding-top: 20px;
    }
    .top-bar-inner {
        padding: 0 10px;
        gap: 8px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: center;
    }
    .pr-label {
        width: 28px;
        height: 13px;
        font-size: 10px;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .top-bar-text {
        font-size: 11px;
        white-space: nowrap;
        overflow: visible;
        display: inline;
    }
    /* SP: 短縮テキスト表示、PC用テキスト非表示 */
    .top-bar-text-pc {
        display: none;
    }
    .top-bar-text-sp {
        display: inline;
    }
    /* Header - SP */
    .site-header {
        display: none;
    }
    .header-left {
        display: none;
    }
   
}


/* ==========================================================================
   Privacy Policy Page
   ========================================================================== */
.privacy-policy-page {
    background-color: #FFF;
    padding-bottom: 60px;
}
.privacy-policy-article {
    background: #FFF;
}
/* Page Header */
.policy-header {
    margin-bottom: 40px;
}
.policy-page-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFF;
    background: #AFAA9C;
    padding: 20px 30px;
    margin: 0;
    text-align: center;
    border-radius: 4px;
}
/* Introduction */
.policy-intro {
    background: #F8F9FA;
    border-left: 4px solid #AFAA9C;
    padding: 25px 30px;
    margin-bottom: 40px;
    border-radius: 0 4px 4px 0;
}
.policy-intro p {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin: 0;
}
/* Policy Sections */
.policy-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #E0E0E0;
}
.policy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
    padding-bottom: 0;
}
.policy-section-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0A3077;
    margin: 0 0 20px 0;
    padding-left: 15px;
    border-left: 4px solid #0A3077;
    line-height: 1.4;
}
.policy-section-content {
    padding-left: 5px;
}
.policy-section-content p {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.9;
    margin: 0 0 15px 0;
}
.policy-section-content p:last-child {
    margin-bottom: 0;
}
.policy-section-content a {
    color: #0A3077;
    text-decoration: underline;
}
.policy-section-content a:hover {
    opacity: 0.7;
}
/* Subsection Title */
.policy-subsection-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px 0;
    padding: 8px 12px;
    background: #F5F5F5;
    border-radius: 4px;
    display: inline-block;
}
.policy-subsection-title:first-child {
    margin-top: 0;
}
/* Policy Note */
.policy-note {
    font-size: 14px !important;
    color: #666 !important;
    margin-top: 10px !important;
}
/* Footer */
.policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #0A3077;
    text-align: right;
}
.policy-updated {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}
/* ==========================================================================
   Privacy Policy Page Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .policy-page-title {
        font-size: 24px;
        padding: 15px 20px;
    }
    .policy-intro {
        padding: 20px;
    }
    .policy-intro p {
        font-size: 14px;
    }
    .policy-section {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    .policy-section-title {
        font-size: 17px;
        padding-left: 12px;
    }
    .policy-section-content p {
        font-size: 14px;
        line-height: 1.8;
    }
    .policy-subsection-title {
        font-size: 15px;
    }
    .policy-footer {
        margin-top: 40px;
        padding-top: 20px;
    }
    .policy-updated {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .policy-page-title {
        font-size: 20px;
        padding: 12px 15px;
    }
    .policy-intro {
        padding: 15px;
        margin-bottom: 30px;
    }
    .policy-intro p {
        font-size: 13px;
    }
    .policy-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .policy-section-title {
        font-size: 16px;
        padding-left: 10px;
        margin-bottom: 15px;
    }
    .policy-section-content {
        padding-left: 0;
    }
    .policy-section-content p {
        font-size: 13px;
    }
    .policy-subsection-title {
        font-size: 14px;
        padding: 6px 10px;
    }
    .policy-footer {
        margin-top: 30px;
        padding-top: 15px;
        text-align: center;
    }
    .policy-updated {
        font-size: 12px;
    }
}
/* ==========================================================================
   Sitemap Page
   ========================================================================== */
.sitemap-page {
    background-color: #FFF;
    padding-bottom: 60px;
}
.sitemap-article {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.sitemap-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
}
.sitemap-page-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFF;
	background: #0099EB;
	padding: 20px 30px;
    margin: 0;
	text-align: center;
	border-radius: 4px;
}
.sitemap-intro {
    margin-bottom: 40px;
}
.sitemap-intro p {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}
.sitemap-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e0e0e0;
}
.sitemap-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.sitemap-section-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0099EB;
    margin: 0 0 20px 0;
    padding-left: 15px;
    border-left: 4px solid #0099EB;
    line-height: 1.4;
}
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sitemap-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    position: relative;
    padding-left: 20px;
}
.sitemap-list li:last-child {
    border-bottom: none;
}
.sitemap-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #0099EB;
    border-radius: 50%;
}
.sitemap-list li a {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}
.sitemap-list li a:hover {
    color: #0099EB;
    padding-left: 5px;
}
/* Sitemap Page Responsive */
@media (max-width: 768px) {
    .sitemap-article {
        padding: 25px 20px;
    }
    .sitemap-page-title {
        font-size: 22px;
    }
    .sitemap-intro p {
        font-size: 14px;
    }
    .sitemap-section {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    .sitemap-section-title {
        font-size: 17px;
        padding-left: 12px;
    }
    .sitemap-list li {
        padding: 10px 0;
        padding-left: 18px;
    }
    .sitemap-list li a {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .sitemap-article {
        padding: 20px 15px;
    }
    .sitemap-page-title {
        font-size: 20px;
    }
    .sitemap-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .sitemap-section-title {
        font-size: 16px;
        padding-left: 10px;
        margin-bottom: 15px;
    }
    .sitemap-list li {
        padding: 8px 0;
        padding-left: 16px;
    }
    .sitemap-list li::before {
        width: 6px;
        height: 6px;
    }
    .sitemap-list li a {
        font-size: 13px;
    }
}
/* ===============================
   横スクロールヒント（スマホ用）
   =============================== */
.scroll-hint {
    display: none;
}
@media screen and (max-width: 768px) {
    .scroll-hint {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-bottom: 10px;
        padding-right: 15px;
    }
    .scroll-hint-text {
        font-size: 12px;
        color: #666;
        font-weight: 500;
    }
    .scroll-hint-text::after {
        content: " →";
        animation: scrollArrowHint 1.5s ease-in-out infinite;
        display: inline-block;
    }
    @keyframes scrollArrowHint {
        0%, 100% {
            transform: translateX(0);
            opacity: 1;
        }
        50% {
            transform: translateX(5px);
            opacity: 0.6;
        }
    }
}

/* ==========================================================================
   厳選3選セクション（FV下）
   ========================================================================== */
@media screen and (max-width: 768px) {
    
    .company-card-hidden {
        display: none !important;
    }
    .company-list-more-wrapper {
        text-align: center !important;
        margin-top: 10px !important;
        margin-bottom: 40px !important;
        width: 100% !important;
    }
    /* 「続きを見る」ボタンのデザイン */
    .company-list-more-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: rgb(160, 0, 0) !important;
        color: #fff !important;
        border: none !important;
        border-radius: 50px !important;
        padding: 16px 40px !important;
        font-size: 15px !important;
        font-weight: bold !important;
        box-shadow: 0 4px 0 rgb(122, 0, 0) !important;
        width: 80% !important;
        margin: 0 auto !important;
    }
    .company-list-more-btn .btn-icon {
        margin-left: 10px !important;
        display: flex !important;
        align-items: center !important;
        margin-top: 2px !important;
    }
    
}
/* ==========================================================================
    固定ページ（ブロックエディタ出力エリア）の共通デザイン
   ========================================================================== */
.post-content {
    padding: 20px 0;
}
.post-content h2 {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0099EB !important;
    margin: 40px 0 20px 0 !important;
    padding-left: 15px !important;
    border-left: 4px solid #0099EB !important;
    line-height: 1.4 !important;
}
.post-content h3 {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 20px 0 10px 0 !important;
    padding: 8px 12px !important;
    background: #F5F5F5 !important;
    border-radius: 4px !important;
    display: inline-block !important;
}
.post-content p {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif !important;
    font-size: 15px !important;
    color: #333 !important;
    line-height: 1.9 !important;
    margin: 0 0 15px 0 !important;
}
.post-content a {
    color: #0A3077 !important;
    text-decoration: underline !important;
}
.post-content a:hover {
    opacity: 0.7 !important;
}

/* スマホ用（768px以下） */
@media screen and (max-width: 768px) {
    .post-content h2 {
        font-size: 17px !important;
        padding-left: 12px !important;
        margin-top: 30px !important;
    }
    .post-content h3 {
        font-size: 15px !important;
    }
    .post-content p {
        font-size: 14px !important;
        line-height: 1.8 !important;
    }
}

/* ==========================================================================
    固定ページ：テーブル（表）の共通デザイン(ok)
   ========================================================================== */
.policy-intro table,
.post-content table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 30px 0 !important;
    background-color: #fff !important;
    border: 1px solid #ccc !important;
}

.policy-intro table th,
.post-content table th {
    background-color: #f5f5f5 !important;
    color: #333 !important;
    font-weight: bold !important;
    padding: 15px !important;
    border: 1px solid #ccc !important;
    text-align: center !important;
    width: 30% !important; 
}

.policy-intro table td,
.post-content table td {
    padding: 15px !important;
    border: 1px solid #ccc !important;
    color: #333 !important;
    line-height: 1.6 !important;
}
/* スマホ用（768px以下） */
@media screen and (max-width: 768px) {
    .policy-intro table th,
    .post-content table th,
    .policy-intro table td,
    .post-content table td {
        padding: 10px !important;
        font-size: 13px !important;
    }
}
/* =========================================================
   404エラーページ (ok)
========================================================= */
.error-404-container {
    padding: 80px 20px;
    background-color: #f9f9f9;
}
.error-404-content {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}
.error-404-title {
    font-size: 80px;
    font-weight: 900;
    color: #e0e0e0; 
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: 5px;
}
.error-404-subtitle {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.error-404-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}
.error-404-search {
    margin-bottom: 40px;
}
.error-404-search h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}
.error-404-search form {
    display: flex;
    justify-content: center;
}
.error-404-search form input[type="text"],
.error-404-search form input[type="search"] {
    width: 350px;       
    padding: 15px 15px; 
    font-size: 16px;    
}
.error-404-search form input[type="submit"],
.error-404-search form button[type="submit"] {
    padding: 9px 25px; 
    font-size: 16px;
}
.error-404-links {
    margin-bottom: 40px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}
.error-404-links h3 {
    font-size: 16px;
    margin-bottom: 15px;
}
.error-404-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.error-404-links li {
    margin-bottom: 10px;
}
.error-404-links li:last-child {
    margin-bottom: 0;
}
.error-404-links li a {
    color: #0056b3; 
    text-decoration: underline;
    transition: 0.3s;
}
.error-404-links li a:hover {
    opacity: 0.7;
}
.error-404-cta {
    margin-top: 20px;
}
.btn-home {
    display: inline-block;
    background-color: #AFAA9C; 
    color: #ffffff !important;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-home:hover {
    background-color: #AFAA9C;
    transform: translateY(-2px);
}
.floating-line-overlap {
    position: absolute !important;
    bottom: -30px !important;
    left: 70px !important;
    width: 60px !important;
    height: auto !important;
    z-index: 100 !important;
    transition: transform 0.2s !important;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3)) !important;
}

.floating-line-overlap img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.floating-line-overlap:hover {
    transform: scale(1.1) !important;
}

@media screen and (max-width: 768px) {
    .floating-line-overlap {
        width: 45px !important;
        bottom: -25px !important;
        left: 55px !important;
    }
 .error-404-search form {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 95%;
        margin: 0 auto;
    }
    
    .error-404-search form input[type="search"] {
    width: 250px;
    padding: 15px 15px;
    font-size: 16px;
}
    .error-404-search form button.search-submit,
    .error-404-search form input[type="submit"] {
        width: auto; 
        min-width: 70px;
        padding: 0 15px;
        font-size: 14px;
        white-space: nowrap;
        color: #333;
        border: 1px solid #333;
        border-radius: 0 4px 4px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
}

/* ==========================================================================
   SP Layout Styles
   ========================================================================== */
/* PC時はSP用要素を非表示 */
.hero-banner-sp,
.hero-cta-sp {
    display: none;
}
/* PC時はハンバーガーメニュー関連を非表示 */
.hamburger-btn {
    display: none;
}
.mobile-menu {
    display: none;
}
.mobile-menu-close {
    display: none;
}
.mobile-menu-overlay {
    display: none;
}
/* ==========================================================================
   Tablet/Mobile Navigation (1024px以下)
   ========================================================================== */
@media (max-width: 1024px) {
    /* タブレット・モバイル共通：トップバー固定分のpadding調整 */
    #page {
        padding-top: 20px;
        /* トップバー(20px)のみ */
    }
    body.admin-bar #page {
        padding-top: 20px;
    }
    /* ヘッダーを非表示（タブレット以下） */
    .site-header {
        display: none;
    }
    /* 1024px以下でヘッダー右側（ナビゲーション・バナー）を非表示 */
    .header-banner-02 {
        display: none;
    }
    .header-right {
        display: none;
    }
    .main-navigation {
        display: none;
    }
    /* SP Hamburger Menu Button - 紫背景・白アイコン */
    .hamburger-btn {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 20px;
        /* トップバーの高さ(20px)のすぐ下 */
        right: 0;
        width: 60px;
        height: 60px;
        background:  #D0CBBA;
        border: none;
        border-radius: 0;
        cursor: pointer;
        z-index: 10000;
        padding: 10px;
        gap: 4px;
        box-shadow: none;
    }
    /* WordPress管理バー対応 - ハンバーガーメニュー位置調整（タブレット：782px以上） */
    body.admin-bar .hamburger-btn {
        top: 52px;
        /* admin-bar(32px) + top-bar(20px) */
    }
    .hamburger-btn span {
        display: block !important;
        width: 26px;
        height: 3px;
        background-color: #FFF !important;
        transition: all 0.3s ease;
        border-radius: 1px;
    }
    .hamburger-btn span.menu-text {
        width: auto !important;
        height: auto !important;
        background: none !important;
        background-color: transparent !important;
        color: #FFF;
        font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
        font-size: 10px;
        font-weight: 600;
        margin-top: 2px;
        letter-spacing: 0.5px;
    }
    /* Hamburger Active State (X mark) - 3本ライン対応 */
    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg);
        position: absolute;
        top: 22px;
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
        position: absolute;
        top: 22px;
    }
    .hamburger-btn.active span.menu-text {
        position: absolute;
        bottom: 10px;
        transform: none;
    }
    /* Mobile Menu - ハンバーガーボタンと同じ位置から開始 */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 20px;
        right: 0;
        width: 75%;
        max-width: 300px;
        height: calc(100vh - 20px);
        background-color: #D0CBBA;
        z-index: 10001;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        visibility: hidden;
        border-radius: 0;
    }
    .mobile-menu.active {
        transform: translateX(0);
        visibility: visible;
    }
    /* WordPress管理バー対応 - モバイルメニュー位置調整（タブレット：782px以上） */
    body.admin-bar .mobile-menu {
        top: 52px;
        /* admin-bar(32px) + top-bar(20px) */
        height: calc(100vh - 52px);
    }
    /* 閉じるボタン - ハンバーガーボタンと同じ位置・スタイル */
    .mobile-menu-close {
        display: flex !important;
        position: fixed;
        top: 20px;
        right: 0;
        width: 60px;
        height: 60px;
        background: #D0CBBA;
        border: none;
        border-radius: 0;
        cursor: pointer;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
        gap: 4px;
        z-index: 10002;
    }
    .mobile-menu-close .close-icon {
        position: relative;
        width: 26px;
        height: 26px;
    }
    .mobile-menu-close .close-icon::before,
    .mobile-menu-close .close-icon::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 26px;
        height: 3px;
        background-color: #FFF;
        border-radius: 1px;
    }
    .mobile-menu-close .close-icon::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .mobile-menu-close .close-icon::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .mobile-menu-close .close-text {
        color: #FFF;
        font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    /* WordPress管理バー対応 - 閉じるボタン位置調整（タブレット：782px以上） */
    body.admin-bar .mobile-menu-close {
        top: 52px;
        /* admin-bar(32px) + top-bar(20px) */
    }
    .mobile-menu-content {
        padding: 80px 0 30px;
    }
    .mobile-nav {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .mobile-nav li {
        border-bottom: none;
    }
    .mobile-nav a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 16px 25px;
        color: #FFF;
        font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
        font-size: 17px;
        font-weight: 600;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    .mobile-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        opacity: 1;
    }
    .mobile-nav .arrow {
        display: inline-block;
        margin-left: 12px;
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 8px solid #FFF;
    }
    .mobile-menu-banner {
        margin: 25px 15px;
        position: relative;
    }
    .mobile-menu-banner-pr {
        position: absolute;
        top: -8px;
        left: 0;
        background: #0099EB;
        color: #FFF;
        font-size: 10px;
        font-weight: 600;
        padding: 2px 8px;
        z-index: 2;
    }
    .mobile-menu-banner img {
        width: 100%;
        height: auto;
        border-radius: 0;
    }
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }
    .mobile-menu-overlay.active {
        display: block;
    }
}
/* ==========================================================================
   Company Introduction Section
   ========================================================================== */
.company-introduction-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0px auto;
    padding: 0 20px;
    align-items: flex-start;
}
.company-main-content {
    flex: 1;
    min-width: 0;
}
.company-detail-card {
    background: #FFF;
    border-radius: 8px;
    overflow: hidden;
}
.company-header-section {
    padding: 30px;
    background: #FFF;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
/* ==========================================================================
   Company Introduction Sidebar
   ========================================================================== */
.company-intro-sidebar {
    width: 353px;
    flex-shrink: 0;
    background: #FFF;
    padding: 0;
    max-height: fit-content;
}
.sidebar-widget {
    margin-bottom: 0;
    background: #fff;
}
.sidebar-widget:last-child {
    margin-bottom: 0;
}
/* ==========================================================================
   Search Widget (検索ボックス)
   ========================================================================== */
.widget-search {
    padding: 0 0 20px 0;
    border: none;
}
.widget-search-box {
    width: 100%;
}
.search-form-custom {
    width: 100%;
}
.search-input-wrapper {
    position: relative;
    width: 100%;
}
.search-input-wrapper .search-field {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: none;
   border-bottom: 3px solid #EAEAEA;
    font-size: 18px;
    box-sizing: border-box;
    color: #333;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    transition: box-shadow 0.3s ease;
}

 .search-input-wrapper .search-field:focus {
    outline: none;
    border-bottom: 3px solid #AFAA9C !important; 
}
.search-input-wrapper .search-field::placeholder {
    color: #999;
    font-size: 18px;
}

.search-submit-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-submit-icon img {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}
.search-submit-icon:hover {
    opacity: 0.8;
}
/* ==========================================================================
   Content List Widget (コンテンツ一覧)
   ========================================================================== */
.widget-content-list {
    padding: 0;
    margin-bottom: 10px;
    border: none;
}
.widget-title.bg-blue {
    color: #FFF;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    font-weight: bold;
    background: #AFAA9C; 
    text-align: center;
    padding: 16px 0;
    margin: 0;
    letter-spacing: 0.1em;
}
.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: none;
}
.content-list li {
    margin: 0;
    border-bottom: 2px solid #070707; 
}
.content-list li:last-child {
    border-bottom: none;
}
.content-list a {
    color: #333 !important;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 18px !important;
    font-weight: bold;
    text-decoration: none;
    display: block;
    padding: 24px 10px !important; 
    background: #FFF;
    text-align: center;
    transition: background-color 0.3s ease;
}

.content-list a:hover {
    background: #F9F9F9;
}
/* ==========================================================================
   新着記事 ウィジェット
   ========================================================================== */
.widget-title.bg-blue-custom {
    background-color: #AFAA9C; 
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 16px 0;
    margin: 0;
    letter-spacing: 0.1em;
}
.widget-latest-articles .article-card {
    border: 2px solid #333;
    border-top: none;
    padding: 15px;
    background-color: #fff;
}
.widget-latest-articles .article-card a {
    text-decoration: none;
    color: #333;
}
.widget-latest-articles .article-thumbnail {
    margin-bottom: 15px;
}
.widget-latest-articles .article-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}
.widget-latest-articles .article-title {
    font-size: 14px;
    line-height: 1.6;
    font-weight: bold;
    margin: 0;
}
.widget-popular-articles,
.widget-latest-articles {
    padding: 0;
    margin-bottom: 40px;
    border: none;
}
.widget-popular-articles:last-child,
.widget-recent-articles:last-child {
    border-bottom: none;
}
.articles-list {
    padding: 20px 0 0 0; 
}
.article-card {
    position: relative;
    margin-bottom: 25px;
    background: #FFF;
    border-radius: 0; 
    overflow: hidden;
    box-shadow: none; 
    border: none !important; 
    transition: opacity 0.3s ease;
}
.widget-latest-articles .article-card {
    padding: 0; 
}
.article-card:last-child {
    margin-bottom: 0;
}
.article-card:hover {
    opacity: 0.7; 
    transform: none; 
}
.article-card a {
    text-decoration: none;
    display: block;
}
.article-thumbnail {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; 
    overflow: hidden;
    margin-bottom: 12px;
}
.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-rank {
    position: absolute;
    top: 0;
    left: 0;
    background: #333333; 
    color: #FFF;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: bold;
    z-index: 2;
}
.article-title {
    color: #333;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* サイドバー上部（バナー＆ナビゲーション */
.widget-sidebar-nav {
    margin-bottom: 20px;
    margin-top: 10px;
    border: none;
    padding: 0;
}
.sidebar-banner-box {
    background-color: #AFAA9C;
    padding: 12px 12px 0 12px;
    margin-bottom: 20px;
}
.sidebar-banner-link {
    display: block;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}
.sidebar-banner-link:hover {
    opacity: 0.8; 
}
.sidebar-banner-link img {
    width: 100%;
    height: auto;
    display: block;
}
.banner-click-text {
    display: block;
    color: #FFF;
    font-size: 22px; 
    font-weight: bold;
    text-align: center;
    margin-top: 8px; 
    padding-bottom: 5px;
    letter-spacing: 1px;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}
.sidebar-guide-title {
    background-color: #AFAA9C; 
    color: #FFF;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 16px 0;
    margin: 0;
    letter-spacing: 0.1em;
}
.sidebar-guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid #333; 
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
}
.sidebar-guide-list li {
    margin: 0;
    border-bottom: 2px solid #333; 
}
.sidebar-guide-list li:last-child {
    border-bottom: none;
}
.sidebar-guide-list a {
    color: #333;
    font-size: 20px; 
    font-weight: bold;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    background: #FFF;
    position: relative;
    transition: background-color 0.3s ease;
}
.sidebar-guide-list a:hover {
    background: #F5F5F5;
}
.sidebar-guide-list .arrow {
    position: absolute;
    right: 20px; 
    font-size: 12px;
}
/* Popular & Recent Post Titles */
.popular-post-title,
.recent-post-title {
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    padding: 8px 0;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Responsive Design - Company Introduction Section */   
@media (max-width: 480px) {
   
    .widget-search {
        padding: 15px;
    }
    .widget-search-box form {
        flex-direction: column;
    }
    .widget-search-box input[type="submit"] {
        width: 100%;
    }
    .widget-title.bg-blue {
        font-size: 18px;
    }
    .content-list {
        padding: 15px;
    }
    .content-list a {
        font-size: 16px;
        padding: 8px;
    }
    .articles-list {
        padding: 15px;
    }
    .article-card {
        margin-bottom: 15px;
    }
    .article-thumbnail {
        height: 120px;
    }
    .article-rank {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .article-title {
        font-size: 13px;
        padding: 10px 12px;
    }
}
/* ==========================================================================
   Sitemap Page
   ========================================================================== */
.sitemap-page {
    background-color: #FFF;
    padding-bottom: 60px;
}
.sitemap-article {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.sitemap-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #AFAA9C;
}
.sitemap-page-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
	background: #AFAA9C;
	padding: 20px 30px;
    margin: 0;
	text-align: center;
	border-radius: 4px;
}
.sitemap-intro {
    margin-bottom: 40px;
}
.sitemap-intro p {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}
.sitemap-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e0e0e0;
}
.sitemap-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.sitemap-section-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #AFAA9C;
    margin: 0 0 20px 0;
    padding-left: 15px;
    border-left: 4px solid #AFAA9C;
    line-height: 1.4;
}
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sitemap-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    position: relative;
    padding-left: 20px;
}
.sitemap-list li:last-child {
    border-bottom: none;
}
.sitemap-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #AFAA9C;
    border-radius: 50%;
}
.sitemap-list li a {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}
.sitemap-list li a:hover {
    color: #AFAA9C;
    padding-left: 5px;
}
/* Sitemap Page Responsive */
@media (max-width: 768px) {
    .sitemap-article {
        padding: 25px 20px;
    }
    .sitemap-page-title {
        font-size: 22px;
    }
    .sitemap-intro p {
        font-size: 14px;
    }
    .sitemap-section {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    .sitemap-section-title {
        font-size: 17px;
        padding-left: 12px;
    }
    .sitemap-list li {
        padding: 10px 0;
        padding-left: 18px;
    }
    .sitemap-list li a {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .sitemap-article {
        padding: 20px 15px;
    }
    .sitemap-page-title {
        font-size: 20px;
    }
    .sitemap-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .sitemap-section-title {
        font-size: 16px;
        padding-left: 10px;
        margin-bottom: 15px;
    }
    .sitemap-list li {
        padding: 8px 0;
        padding-left: 16px;
    }
    .sitemap-list li::before {
        width: 6px;
        height: 6px;
    }
    .sitemap-list li a {
        font-size: 13px;
    }
}

/* 盛岡サイトスタート！ */
/* ==========================================================================
   Site Header (WOW WORKS Refactored)
   ========================================================================== */

.site-header {
    width: 100%;
    position: absolute; 
    top: 30px;          
    left: 0;
    z-index: 9998;
    background-color: transparent; 
    height: 100px;     
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}
.header-container {
    width: 100%;
    max-width: 1380px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-left {
    display: flex;
    align-items: center;
}
.header-logo {
    color: #fff !important;
    font-family: var(--font-mincho);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.2); 
}
.header-right {
    display: flex;
    align-items: center;
}
.main-navigation ul {
    display: flex;
    gap: 60px;         
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-navigation li {
    border-left: none;  
    padding-left: 0;
}
.main-navigation a {
    color: #fff !important;
    font-family: var(--font-mincho); 
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 40px;
    text-align: right;
}
body.admin-bar .top-bar {
    top: 32px;
}
body.admin-bar .site-header {
    top: 35px; 
}
@media screen and (max-width: 767px) {
    .header-container {
        padding: 0 20px;
    }
    .main-navigation {
        display: none; 
    }
    .site-header {
        display: none;
    }
}
/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: #fff;
    height: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.top-bar-inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: flex-end;
}
.top-bar-text {
    color: #000;
    font-family: var(--font-mincho);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
}
.top-bar-text-pc {
    display: inline;
}
.top-bar-text-sp {
    display: none;
}
.top-bar a.top-bar-inner {
    text-decoration: none;
    color: inherit;
}
.top-bar a.top-bar-inner:hover {
    opacity: 0.8;
}
.hero-section {
    position: relative;
    width: 100%;
    height: 750px; 
    background-color: var(--bg-beige-light); 
    overflow: hidden;
}
.hero-overlay-slanted {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #D0CBBA; 
    clip-path: polygon(0 0, 40% 0, 20% 100%, 0% 100%);
    z-index: 1;
}
.hero-bg {
    position: absolute;
    top: 100px;
    right: 0;
    width: 80%;
    height: 560px;
    z-index: 2;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-text-group {
    position: absolute;
    top: 85%;           
    left: 5%;         
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none; 
}
.hero-main-title {
    color: #fff;
    font-size: 80px;
    font-family: var(--font-mincho);
    line-height: 1.1;
    margin-top: 8px;
}
.hero-sub-title {
    font-size: 32px;
    color: #fff;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 20px;
}
.hero-cta-badge {
    position: absolute;
    bottom: 10px;
    right: 4%;
    width: 485px;         
    height: 70px;        
    padding: 0 15px 0 120px; 
    background: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 2;
}
.cta-check-group {
    position: absolute;
    left: -80px; 
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
}
.cta-left {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 25px;
}
.cta-label {
    font-size: 18px;
    font-weight: bold;
    padding-right: 12px; 
}
.cta-line {
    width: 200px; 
    height: 2px;
    background: #333;
}
.cta-text {
    line-height: 1;     
    max-width: 400px;    
    text-align: left;
    margin-left: 20px;   
}
.txt-lg {
    font-size: 24px;
    font-weight: 900;
    margin-right: 5px;
}
.num-lg {
    font-size: 32px;
    font-weight: 900;
}
.cta-arrow {
   margin-left: 10px;
    font-size: 30px;
}
.content-index {
    width: 100%;
    background-color: #fff;
}
.index-container {
    max-width: 1440px; 
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
.index-item {
    position: relative; 
    min-height: 120px;   
    padding: 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #ddd;
    background-color: #fff;
    transition: background-color 0.3s ease;
    font-family: var(--font-mincho);
    text-decoration: none;
}
.index-item span, 
.index-title {
    font-size: 14px; 
    font-weight: 900;
    color: #333;
    line-height: 1.6;
}
.index-title {
    font-size: 20px; 
    letter-spacing: 0.1em;
}
.index-item::after {
    content: "";
    position: absolute;
    bottom: 15px; 
    right: 15px;  
    width: 16px;   
    height: 8px;
    background-color: #333; 
}
.index-item:first-child::after { display: none; }

.index-item:hover {
    background-color: #fcfaf7; 
}
@media screen and (max-width: 767px) {
    .hero-section {
        height: auto; 
        display: flex;
        flex-direction: column; 
    }
    .hero-bg {
        position: relative; 
        top: 0;
        width: 100%;
        height: 300px; 
        order: 1; 
    }
    .hero-overlay-slanted {
        display: none; 
    }
    .hero-text-group {
        position: relative;
        top: -25px;
        left: 0;
        transform: none;
        padding:30px 20px 10px;
        order: 2;
        text-align: center; 
    }
    .hero-main-title {
        font-size: 24px; 
        color: #fff;    
    }
    .hero-sub-title {
        font-size: 16px;
        padding-bottom: 5px;
    }
    .hero-cta-badge {
        position: relative;
        bottom: 20px;
        right: 0;
        width: 90%; 
        margin: 0 auto 40px;
        order: 3;
        transform: scale(1);
        padding: 15px 15px;
    }
    .cta-check-group {
        left: -80px;
        top: 108%;
    }
    .cta-label {
        font-size: 14px;
    }
    .cta-text {
        margin-left: 0;
    }
    .txt-lg {
        font-size: 18px;
    }
    .num-lg {
        font-size: 24px;
    }
    .cta-arrow {
    margin-left: 2px;
    font-size: 24px;
    }
    .index-container {
        grid-template-columns: 1fr; 
        border-left: none;
        border-right: none;
    }
    .index-item {
        justify-content: center; 
        text-align: center;      
        padding: 20px;           
        border-right: none;     
        border-bottom: 1px solid #ddd; 
    }
    .index-item:last-child {
        border-bottom: none;
    }
    .index-title {
        background-color: #fcfaf7;
        justify-content: center;
        text-align: center;
    }
    .index-item::after {
        bottom: 10px;
        right: 20px;
    }
}
.free-design-section {
    background-color: #E9E5DD;
    min-height: 750px; 
    display: flex;
    align-items: center; 
    padding: 100px 0; 
    position: relative;
    overflow: hidden;
}
.fd-bg-title {
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: 'Abhaya Libre', serif;
    font-size: 128px; 
    color: #F9F7F3; 
    line-height: 1;
    z-index: 1;
}
.fd-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    z-index: 5;
}

.fd-frame-outline {
    position: absolute;
    top: 15%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 1136px;
    height: 360px;
    border: 1px solid #333; 
    z-index: 2;
}
.fd-text-content {
    position: relative;
    top: -100px;
    z-index: 10;
    max-width: 600px;
    line-height: 2.0;
    color: #333;
}
.fd-img {
    position: absolute;
    z-index: 15;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.fd-img img { width: 100%; height: 100%; object-fit: cover; }
.img-arch {
    top: -20px;
    left: -75%;
    width: 327px;
    height: 329px;
}
.img-plant {
    top: -175px;
    right: -73%;
    width: 405px;
    height: 270px;
}
.img-kitchen {
    bottom: -190px;
    left: 30%;
    width: 549px;
    height: 192px;
}
.fd-img::before {
    content: "";
    position: absolute;
    border: 1px solid #333; 
    width: 100%;
    height: 100%;
    z-index: -1; 
    top: 15px;
    left: 15px;
    background: transparent;
}
.img-arch::before {
    content: "";
    position: absolute;
    border: 1px solid #333; 
    width: 564px;
    height: 269px;
    z-index: -1; 
    background: transparent;
    top: 100px;
    left: -200px;
}
.img-plant::before {
    content: "";
    position: absolute;
    border: 1px solid #333; 
    width: 437px;
    height: 266px;
    z-index: -1; 
    background: transparent;
    top: -50px;
    left: 75px;
}
.img-kitchen::before {
    content: "";
    position: absolute;
    border: 1px solid #333; 
    width: 547px;
    height: 126px;
    z-index: -1; 
    background: transparent;
    top: 90px;
    left: 40px;
}
@media screen and (max-width: 767px) {
    .free-design-section {
        min-height: 645px; 
        padding: 80px 0;
    }
    .fd-bg-title {
        font-size: 60px;
        top: 25px;
        left: 10px;
    }
    .fd-container {
        position: relative;
        height: 100%;
    }
    .fd-frame-outline {
        display: none;
    }
    .fd-text-content {
        position: relative;
        z-index: 10; 
        max-width: 90%;
        margin: 0 auto;
        padding: 40px 20px;
        background: rgba(249, 247, 243, 0.8); 
        text-align: left;
        font-size: 13px;
        line-height: 1.8;
        top: 0;
    }
    .fd-img {
        position: absolute;
        z-index: 5; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .img-arch {
        top: -40px;
        left: -5%;
        width: 160px;
        height: 160px;
    }
    .img-plant {
        top: 110px;
        right: -5%;
        width: 180px;
        height: 140px;
    }
    .img-kitchen {
        bottom: -100px;
        left: -5%;
        width: 240px;
        height: 130px;
    }
    .fd-img::before,
    .img-arch::before,
    .img-plant::before,
    .img-kitchen::before {
        width: 100% !important;
        height: 100% !important;
        top: 8px !important;
        left: 8px !important;
        border: 1px solid #333;
    }
}
.selection-section {
    padding: 100px 0;
}
.selection-header {
    position: relative; 
    text-align: center;
    padding-top: 10px; 
    padding-bottom: 20px;
}
.selection-header .sub-title{
    font-family: var(--font-mincho);
    font-size: 24px;
    font-weight: 650;
    border-bottom: 1px solid #333;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    display: inline-block;
}
.selection-header .main-title {
    font-family: var(--font-mincho);
    line-height: 1.6;
    color: #333;
}
.selection-header .main-title .line-1 {
    font-size: 32px;
    display: inline-block;
    background: linear-gradient(transparent 70%, #EAE4D5 50%);
    padding: 0 10px;
    margin-bottom: 10px;
}
.selection-header .main-title .line-2 {
    font-size: 48px;
    font-weight: 700;
   display: inline-block;
    background: linear-gradient(transparent 65%, #EAE4D5 50%);
    letter-spacing: 0.05em;
}
.selection-header .txt-lg{
    font-family: var(--font-mincho);
    font-size: 32px;
    font-weight: 700;
}
.selection-header .bg-text {
    position: absolute;
    top: -15%; 
    left: 75%;
    transform: translateX(-50%); 
    font-family: 'Abhaya Libre', serif;
    font-size: 140px; 
    font-weight: 500;
    color: #F2F2F2; 
    line-height: 1;
    z-index: -1;
    pointer-events: none; 
}
/* ==========================================================================
   Selection Section (3社比較) - Cleaned Version
   ========================================================================== */
.companies-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1320px; 
    margin: 40px auto;
}
.company-wrapper {
    width: 31%;
    min-width: 320px;
    max-width: 400px;
    display: flex; 
}
.company-card {
    background-color: #E9E5DD;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
}
.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.card-tag {
    font-family: var(--font-mincho);
    padding: 30px 20px 15px;
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
}
.company-name {
    font-family: var(--font-mincho);
    font-size: 30px;
    padding: 20px 0;
    margin: 0 20px;
    border-top: 1px solid #333;
    text-align: center;
    letter-spacing: 0.05em;
}
.text-maru {
    font-family: var(--font-maru); 
}
.selection-section .company-image-wrapper {
    position: relative ; 
    padding: 0 15px;    
    line-height: 0;                
}
.selection-section .company-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 2px; 
}
.selection-section .screenshot-caption {
    position: absolute ; 
    right: 20px ; 
    bottom: -14px ; 
    margin: 0 ;
    width: auto ;
    z-index: 30 ;  
    text-align: right;
    font-size: 12px;
}
.screenshot-caption a:hover {
    opacity: 0.6;
    text-decoration: underline;
}
.feature-white-box {
    background: #fff;
    margin: 30px 25px 25px;
    padding: 30px 20px 10px; 
    border-radius: 4px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.feature-label {
    font-family: var(--font-maru);
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}
.feature-list-box {
    flex-grow: 0; 
}
.feature-checklist {
    list-style: none;
    padding: 0;
    margin: 10px 0 10px 0;
}

.feature-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-family: var(--font-maru);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.1;
}
.feature-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-color: #333;
    border-radius: 50%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
}
.spec-area-box {
    margin-top: auto; 
    font-family: var(--font-maru);
    border-top: 1px solid #E9E5DD;
    width: calc(100% + 40px);
    margin-left: -20px;
}
.spec-area {
    margin-top: auto !important; 
    border-top: 1px solid #E9E5DD;
    width: calc(100% + 40px);
    margin-left: -20px;
}
.spec-row {
   display: flex ;
    align-items: center ; 
    min-height: 100px ; 
    padding: 10px 15px ;
    border-bottom: 1px solid #E9E5DD;
}
.spec-row:last-child {
    border-bottom: none ;
}
.spec-name {
    width: 35%;
    font-weight: bold;
    font-size: 13px;
    text-align: left;
    padding-left: 5px;
}
.spec-value {
    width: 65%;
    text-align: center;
    font-size: 11px;
    line-height: 1.4;
    padding: 0 5px;
}
.spec-value small {
    display: block;
    margin-top: 4px;
    color: #333;
    transform: scale(0.95); 
}
.mark-circle, .mark-double-circle, .mark-triangle,
 .mark-x {
    font-size: 20px;
    color: #F45F1A;
    display: block;
}
.selection-section .card-buttons {
    background: transparent; 
    padding: 15px 50px 50px;
    margin-top: 0 ;
}
.btn-main, .btn-sub {
    display: block;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    font-family: var(--font-mincho);
    font-weight: bold;
    box-shadow: 4px 4px 0px #333;
    transition: all 0.2s;
}
.btn-main {
    background: #8B2E2E;
    color: #fff;
    margin-bottom: 15px;
    display: block ;
    background: #8B2E2E ;
    color: #fff ;
    text-align: center;
    padding: 18px ;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-mincho);
    margin-bottom: 15px ;
    /* 🪄 カンプの「ズレた影」 */
    box-shadow: 4px 4px 0px #333;
}
.btn-sub {
    display: block ;
    background: #F2F2F2;
    color: #333 ;
    text-align: center;
    padding: 18px ;
    text-decoration: none ;
    font-family: var(--font-mincho);
    font-size: 13px;
    box-shadow: 4px 4px 0px #333 ;
}
.btn-main:active, .btn-sub:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #333;
}
@media screen and (max-width: 768px) {
    .selection-section {
        position: relative !important;
        padding:  20px 0;
    }
    .selection-header {
        padding-top: 75px;
        margin-bottom: -50px;
    }
    .selection-header .bg-text {
        font-size: 60px;
        top: 10px;
        left: 195px;
    }
    .selection-header .txt-lg {
        font-size: 24px;
    }
    .selection-header .main-title {
        font-size: 16px;
    }
    .selection-header .sub-title {
        font-size: 15px;
    }
    .selection-header .main-title .line-1 { font-size: 20px; }
    .selection-header .main-title .line-2 { font-size: 20px; }
    .companies-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;            
        scroll-snap-type: x mandatory; 
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        gap: 15px !important;
        padding: 20px 0 40px !important; 
        scrollbar-width: none; 
    }
    .companies-grid::-webkit-scrollbar {
        display: none; 
    }
    .company-wrapper {
        flex: 0 0 calc(100vw - 90px) !important; 
        width: calc(100vw - 90px) !important;
        max-width: calc(100vw - 90px) !important;
        min-width: calc(100vw - 90px) !important;
        flex-shrink: 0;
        scroll-snap-align: center; 
        margin-bottom: 0 !important;
    }
    .company-wrapper:first-child { margin-left: 15px; }
    .company-wrapper:last-child { margin-right: 15px; }
    .card-tag {
        min-height: 70px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .company-name {
        font-size: 22px !important;
        margin: 0 25px !important; 
        padding: 15px 0 !important;
        width: auto !important;
        display: block !important; 
        text-align: center !important;
        font-size: 20px !important; 
        line-height: 1.4;
        border-top: 1px solid #333 !important;
    }
    .company-image-wrapper {
        height: 160px !important;
    }
    .company-image-wrapper img {
        height: 100%;
        object-fit: cover;
    }
    .selection-section .screenshot-caption {
        bottom: 5px;
    }
    .feature-white-box {
        margin: 10px ;
        padding: 20px 15px ;
    }
    .spec-row {
        min-height: 75px ; 
    }
    .spec-value {
        width: 83%;
    }
    .card-buttons {
        width: 100% !important;
        padding: 10px 20px 30px !important; 
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 0 !important;
        background: transparent !important;
    }
    .btn-main, .btn-sub {
        height: 64px !important; 
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 10px !important; 
        box-sizing: border-box !important;
        text-align: center !important;
        line-height: 1.2 !important; 
        font-weight: bold !important;
        box-shadow: 4px 4px 0px #333 !important;
    }
    .btn-main {
        background: #8B2E2E !important;
        color: #fff !important;
        margin-bottom: 0 !important;
    }
    .btn-sub {
        font-size: 16px !important; 
        background: #fff !important;
        color: #333 !important;
        border: 1px solid #333 !important;
    }
    .swipe-guide {
        display: flex !important ;
        align-items: center;
        position: absolute ;
        bottom: 3%; 
        left: 0;
        z-index: 100;
        background: #fff;
        padding: 8px 15px 8px 0; 
        border-radius: 0 100px 100px 0;
        box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
        pointer-events: none; 
    }
    .swipe-text {
        font-size: 11px;
        letter-spacing: 0.1em;
        color: #333;
        text-transform: uppercase;
        margin: 0;
        padding-left: 10px; 
    }
    .swipe-arrow {
        font-size: 14px;
        color: #333;
        margin-left: 5px; 
        animation: swipeArrow 1.5s infinite;
    }
    @keyframes swipeArrow {
        0% {
            transform: translateX(0);
            opacity: 0;
        }
        20% {
            opacity: 1;
        }
        80% {
            opacity: 1;
            transform: translateX(8px); 
        }
        100% {
            transform: translateX(8px);
            opacity: 0;
        }
    }
}
.sp-only {
    display: none;
}
@media screen and (max-width: 768px) {
    .sp-only { display: flex; }
}
.points-section {
    background-color: #AFAA9C;
    color: #fff;
    padding: 120px 0 80px;
    overflow: hidden; 
}
.points-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; 
    position: relative;
}
.points-main-title {
    text-align: center;
    font-size: 40px;
    line-height: 1.6;
    margin-bottom: 100px;
    letter-spacing: 0.15em;
}
.points-section .bg-text{
    font-size: 48px;
}
.point-item {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    margin-bottom: 150px; 
}
.point-item:last-child {
    margin-bottom: 0;
}
.point-item.is-point02 {
    flex-direction: row-reverse;
}
.point-text-box {
    position: relative;
    z-index: 5;
}
.point-title {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 30px;
    position: relative;
    padding: 20px 0;
    display: inline-block; 
    width: 100%;
    text-align: center;
}
.point-title::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    border: 2px solid #fff;
    z-index: -1;
}
.point-item:not(.is-point02) .point-title::after {
    left: calc( (100vw - 100%) / -2 - 40px ); 
    right: -20px;
}
.is-point02 .point-title::after {
    left: -20px;
    right: calc( (100vw - 100%) / -2 - 40px );
}
.point-desc {
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
    font-family: var(--font-mincho);
    color: #fff;
    font-weight: 600;
}
.point-image {
    position: relative;
}
.point-image img {
    width: 100%;
    height: 500px; 
    display: block;
    object-fit: cover;
    max-width: none;
}
.point-item:not(.is-point02) .point-image {
    margin-right: calc( (100vw - 100%) / -2 - 40px );
}
.is-point02 .point-image {
    margin-left: calc( (100vw - 100%) / -2 - 40px );
}
.is-point01 .point-text-box { width: 45%; }
.is-point01 .point-image { width: 60%; }
.is-point02 .point-text-box { width: 42%; }
.is-point02 .point-image { width: 65%; }
.is-point03 .point-text-box { width: 48%; }
.is-point03 .point-image { width: 57%; }
@media screen and (max-width: 768px) {
    .points-main-title {
        font-size: 17px;
        margin-bottom: 50px;
        letter-spacing: 1px;
    }
    .points-section .bg-text{
        font-size: 20px;
    }
    .points-section { padding: 60px 0; }
    .point-desc {
        font-size: 14px;
        line-height: 1.6;
    }
    .point-item, .point-item.is-point02 {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
    }
    .point-text-box, .point-image {
        width: 100% !important;
        margin: 0 !important; 
    }
    .point-title::after {
        left: -20px !important;
        right: -20px !important;
    }
    .point-image img {
        height: 250px;
    }
}
/* --- 3社紹介セクション全体 --- */
.company-details-section {
    padding: 95px 0;
    background-color: #fff; 
    position: relative;
    overflow: hidden;
}
.company-details-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.intro-main-header {
    position: relative;
    text-align: center;
    margin-bottom: 100px; 
}
.recommend-bg {
    position: absolute;
    top: -20%;
    left: 35%;
    transform: translate(-50%, -50%);
    z-index: 11; 
    color: #EAE4D5;
    white-space: nowrap;
    pointer-events: none;
    font-size: 128px;
}
.title-double-box {
    position: relative;
    transform-style: preserve-3d; 
    z-index: 1; 
    display: block;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #fff; 
    border: 1px solid #333;
}
.title-double-box::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 35px;
    width: 100%;
    height: 100%;
    border: 1px solid #333;
    transform: translateZ(-1px); 
    pointer-events: none;
}
.title-inner-content {
    padding: 15px 20px; 
}
.intro-title {
    font-size: 48px;
    line-height: 1.5;
    letter-spacing: 1.2px;
    color: #333;
    margin: 0;
}
.intro-title .title-sub {
    font-size: 40px;
    display: inline-block;
    margin-bottom: 10px;
}
.double-separator {
    width: 100%;
    height: 20px;
    border-top: 5px solid #333;
    border-bottom: 1px solid #333;
    margin: 80px 0 40px;
}
.company-intro {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
    position: relative;
}
.intro-photo {
    width: 50%;
    position: relative;
}
.intro-text {
    width: 50%;
    position: relative;
    transform-style: preserve-3d; 
    z-index: 10;
}
.bg-name-en {
    position: absolute;
    top: 55%;
    left: 20px; 
    transform: translateY(-50%) translateZ(-1px); 
    opacity: 0.6;
    font-family: 'Abhaya Libre', serif; 
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 96px; 
    color: #E9E5DD; 
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
}
#ichijyo .bg-name-en {
    font-size: 70px;
}
.catch-copy {
    color: #696464;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: var(--font-mincho);
    text-align: center;
}
.company-full-name {
    font-size: 48px;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1; 
    top: -35px;
    text-align: center;
}
.section-box-title {
    border: 1px solid #333;
    padding: 10px 30px;
    display: block;
    box-sizing: border-box;  
    width: 100%;
    text-align: center;
    font-size: 30px;
    margin-bottom: 100px;
}
.features-area {
   margin-bottom: -90px;
}
.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 60px; 
    margin-bottom: 50px;
}
.feature-row.is-feature01 {
    gap: 120px;
}
.feature-row.is-reverse {
    flex-direction: row-reverse;
}
.is-feature01 .feature-text { width: 50%; }
.is-feature01 .feature-photo {
     width: 60%;
    transform: translate(0, -50px);
 }
.is-feature02 .feature-text { 
    width: 50%; 
    padding-left: 20px; 
}
.is-feature02 .feature-photo { 
    width: 40%;
    transform: translate(-50px, -50px);
}
.is-feature03 .feature-text { width: 50%; }
.is-feature03 .feature-photo { 
    width: 50%;
    transform: translate(0, -130px);
 }
.feature-title {
    font-size: 24px;
    margin-bottom: 15px; 
    line-height: 1.3;
}
.feature-body {
    font-size: 15px;
    line-height: 1.7; 
    text-align: justify;
}
.feature-title {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.4;
}
.accent-color { color: #C09933; }
.feature-body {
    font-family: var(--font-maru);
    font-size: 20px;
    font-weight: 500;
    line-height: 2.3;
}
.citation-link {
    display: block;
    font-size: 10px;
    color: #101010;
    text-align: right;
    margin-top: 5px;
    text-decoration: none;
}
.company-details-section .company-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 100px;
    width: 100%; 
    margin-bottom: 80px;
}
.company-details-section .company-cta-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 0 0 380px; 
    width: 380px; 
    min-height: 80px;
    padding: 15px 20px;
    font-size: 18px;
    line-height: 1.4;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
    box-sizing: border-box; 
}
.company-details-section .company-cta-buttons a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.company-details-section .btn-main {
    background-color: #8F2A20; 
    color: #fff !important;
    margin-bottom: 0;
}
.company-details-section .btn-sub {
    background-color: #E9E5DD; 
    color: #333 !important;
}
.company-details-section .company-cta-buttons a::after {
    content: "▶";
    font-size: 10px;
    position: absolute;
    right: 20px;
}
.company-gallery .section-box-title {
    display: block ;
    width: auto ;
    margin-left: -200px ;
    margin-right: -200px ;
    box-sizing: border-box ;
    border: 1px solid #333 ;
    padding: 10px 30px ;
    text-align: center ;
    margin-bottom: 40px ;
}
.company-gallery {
    background-color: #E9E5DD;
    padding: 80px 0;
    width: 100vw; 
    margin-left: calc(50% - 50vw);  
    margin-right: calc(50% - 50vw); 
}
.gallery-inner {
    max-width: 1000px; 
    margin: 0 auto;    
    padding: 0 40px;
}
.main-slider-wrapper {
    position: relative; 
    width: 100%;
}
.main-slider {
    width: 100%;
    margin-bottom: 20px;
}
.main-slider .swiper-slide img {
    width: 100%;
    height: 550px; 
    object-fit: cover;
}
.main-slider-wrapper .swiper-button-prev {
    left: -50px; 
}
.main-slider-wrapper .swiper-button-next {
    right: -50px; 
}
.swiper-button-next::after, 
.swiper-button-prev::after {
    font-size: 30px; 
    color: #333;    
}
.thumb-slider {
    width: 100%;
    margin-bottom: 10px; 
}
.thumb-slider .swiper-slide {
    cursor: pointer;
    opacity: 0.5; 
    transition: opacity 0.3s;
}
.thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
}
.thumb-slider img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.thumb-slider .swiper-slide {
    cursor: pointer;
    opacity: 0.4; 
    transition: all 0.3s;
}

.thumb-slider .swiper-slide-thumb-active {
    opacity: 1; 
    border: 2px solid #8F2A20; 
}
.citation-text {
    text-align: center;
    font-size: 10px;
    color: #999;
    margin-bottom: 50px; 
}
.company-gallery .company-cta-buttons {
    margin-bottom: 0 !important; 
}
.company-gallery .company-cta-buttons .btn-sub {
    background-color:  #F2F2F2;
}
.company-reviews-area .section-box-title {
    display: block ;
    width: auto ;
    margin-left: -200px ;
    margin-right: -200px ;
    box-sizing: border-box ;
    border: 1px solid #333 ;
    padding: 10px 30px ;
    text-align: center ;
    margin-bottom: 40px ;
}
.company-reviews-area {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
}
.single-review-container {
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 50px; 
    margin-bottom: 60px;
    max-width: 900px; 
    margin-left: auto;
    margin-right: auto;
}
.review-avatar {
    flex-shrink: 0; 
    width: 280px; 
    height: 280px;
}
.review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.review-detail-card {
    background: #fff;
    border: 1.5px solid #333;
    border-radius: 50px 0px 50px 0px;
    padding: 45px;
    margin-left: 20px;
    flex-grow: 1
}
.review-catchphrase {
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
}
.review-divider {
    width: 100%;
    height: 1px;
    background-color: #333;
    margin-bottom: 25px;
}
.review-text-box {
    position: relative;
    padding-left: 25px; 
    margin-bottom: 30px;
}
.quote-mark {
    position: absolute;
    top: -5px; 
    left: 0;
    font-size: 30px;
    font-family: "Georgia", serif;
    color: #333;
    line-height: 1;
}
.review-body {
    font-size: 14px;
    line-height: 1.8;
}
.review-source {
    text-align: right;
    font-size: 10px;
    color: #666;
}
.company-reviews-area .company-cta-buttons .btn-sub {
    background-color:  #F2F2F2;
}
.company-info-area {
    background-color: #E9E5DD;
    padding: 80px 0;
    margin-top: 80px; 
    width: 100vw; 
    margin-left: calc(50% - 50vw); 
    margin-right: calc(50% - 50vw); 
}
.overview-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}
.company-info-area .section-box-title {
    display: block ;
    width: auto ; 
    margin-left: -200px ; 
    margin-right: -200px ;
    box-sizing: border-box ;
    border: 1px solid #333 ;
    padding: 15px 0 ;
    text-align: center ;
    margin-bottom: 50px;
}
.overview-content {
    display: flex;
    gap: 50px; 
    align-items: stretch; 
    margin-bottom: 60px; 
    margin-left: -40px;
    margin-right: -40px;
}
.overview-map {
    width: calc(50% - 25px); 
    min-height: 350px; 
    box-sizing: border-box; 
}
.overview-map iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 350px;
    display: block;
}
.overview-table {
    width: calc(50% - 25px); 
    border-collapse: collapse;
    background-color: #fff;
    border: 1px solid #ccc; 
    height: 100%; 
    box-sizing: border-box; 
}
.overview-table th,
.overview-table td {
    border: 1px solid #ccc; 
    padding: 25px 30px;
    font-size: 15px; 
    line-height: 1.8; 
    vertical-align: middle;
}
.overview-table th {
    width: 30%; 
    background-color: #B6B09F; 
    font-weight: normal;
    text-align: center;
    color: #333;
}
.overview-table td {
    background-color: #fff;
    color: #333;
}
.overview-table td a {
    color: #333;
    text-decoration: underline;
}
.overview-table td a:hover {
    opacity: 0.7;
}
.company-info-area .company-cta-buttons {
    margin-bottom: 0 !important;
}
.company-info-area .company-cta-buttons .btn-sub {
    background-color:  #F2F2F2
}
/* =========================================
   📱 SP（スマホ）用レスポンシブ
   ========================================= */
@media screen and (max-width: 768px) {
    .company-details-section {
        padding: 60px 0;
    }
    .company-details-inner,
    .gallery-inner,
    .overview-inner {
        padding: 0 20px;
    }
    .company-gallery .section-box-title,
    .company-reviews-area .section-box-title,
    .company-info-area .section-box-title,
    .section-box-title {
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: 20px;
        padding: 10px 15px !important;
        margin-bottom: 25px;
    }
    .intro-main-header { margin-bottom: -35px; }
    .recommend-bg { font-size: 40px; top: -30%; left: 50%; }
    .intro-title { font-size: 17px; }
    .intro-title .title-sub { font-size: 14px; }
    .title-double-box::before {top: 12px; left: 16px;}
    .company-intro {
        flex-direction: column; 
        gap: 20px;
        margin-bottom: 10px;
    }
    .intro-photo, .intro-text { width: 100%; text-align: center;}
    .bg-name-en { font-size: 48px; top: 50%; left: 16px; }
    .catch-copy { font-size: 15px; margin-bottom: 24px; }
    .company-full-name { font-size: 26px; top: -30px; }
    .feature-row,
    .feature-row.is-feature01,
    .feature-row.is-reverse {
        flex-direction: column; 
        gap: 30px;
        margin-bottom: 40px;
    }
    .is-feature01 .feature-text, .is-feature01 .feature-photo,
    .is-feature02 .feature-text, .is-feature02 .feature-photo,
    .is-feature03 .feature-text, .is-feature03 .feature-photo {
        width: 100%;
        transform: none; 
        padding-left: 0;
    }
    .feature-title { font-size: 18px; text-align: center; }
    .feature-body { font-size: 15px; line-height: 1.8; }

    .features-area {
        margin-bottom: 40px !important; 
    }
    
    .is-feature03 .feature-photo {
        margin-bottom: 0 !important;
    }
    .company-gallery {
        padding: 40px 0;
    }
    .main-slider .swiper-slide img {
        height: 300px; 
    }
    .main-slider-wrapper .swiper-button-prev { left: 10px; }
    .main-slider-wrapper .swiper-button-next { right: 10px; }
    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 20px;
        color: #fff; 
        text-shadow: 0 0 5px rgba(0,0,0,0.5); 
    }
    .thumb-slider img { height: 80px; }
    .company-reviews-area {
        margin-top: 40px;
        margin-bottom: -25px;
    }
    .single-review-container {
        flex-direction: column;
        gap: 20px;
    }
    .review-avatar {
        width: 120px;
        height: 120px;
    }
    .review-detail-card {
        margin-left: 0;
        padding: 30px 20px;
        border-radius: 20px 0px 20px 0px; 
    }
    .company-info-area {
        padding: 40px 0;
    }
    .overview-content {
        flex-direction: column;
        gap: 30px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }
    .overview-map, .overview-table { width: 100%; }
    .overview-map iframe {
        width: 100% !important;
        max-width: 100%;
        display: block;
    }
    .overview-table th, .overview-table td {
        display: block;
        width: 100%;
        padding: 15px;
    }
    .overview-table th { text-align: left; }

    .company-details-section .company-cta-buttons {
        flex-direction: column; 
        align-items: center;    
        gap: 15px;
        margin-bottom: 45px;
    }
    .company-details-section .company-cta-buttons a {
        flex: unset; 
        width: 100%;
        max-width: 320px;
        min-height: 60px; 
        margin: 0 auto;
        padding: 15px;    
    }
    #mokusousya .double-separator,
    #ichijyo .double-separator {
    margin: 15px 0 20px;
}
#ichijyo .bg-name-en {
    font-size: 34px;
}
}
/* =========================================
   FAQ（よくある質問）セクション
   ========================================= */
.faq-section {
    background-color: #fff;
}

.faq-inner {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 40px;
}

.faq-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    line-height: 3;
    border-bottom: 1.5px solid #707070;
}
.faq-item {
    padding: 0;
    margin-bottom: 30px; /
}
.faq-q {
    display: flex;
    align-items: center; 
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 15px; 
    border-bottom: 1px solid #707070; 
    margin-bottom: 15px;
}

.q-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #333;
    border-radius: 50%;
    font-family: "Georgia", serif; 
    font-size: 16px;
    flex-shrink: 0; 
}
.q-text {
    line-height: 1.5;
}
.faq-a {
    margin: 0;
    padding-left: 45px; 
}

.faq-a p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* =========================================
   📱 SP（スマホ）用レスポンシブ
   ========================================= */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-inner {
        padding: 0 20px;
    }
    .faq-title {
        font-size: 20px;
        margin-bottom: 40px;
    }
    .faq-item {
        padding: 0;
        margin-bottom: 30px;
    }
    .faq-q {
        font-size: 16px;
        align-items: flex-start;
    }
    .q-icon {
        margin-top: 2px; 
    }
    .faq-a {
        padding-left: 45px; 
    }
    .faq-a p {
        font-size: 14px;
    }
}
/* ==========================================================================
   【共通】アーカイブ・シングル共通レイアウト（エリア記事・業者一覧）
   ========================================================================== */
.area-column-archive,
.area-column-single {
    background-color: #FFF;
    padding-bottom: 60px;
    padding-top: 40px;
}

.area-column-container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.area-column-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.area-column-main {
    flex: 1;
    min-width: 0;
}

.area-column-sidebar {
    width: 353px;
    flex-shrink: 0;
    background: #fff;
    padding: 0;
}

/* ==========================================================================
   【共通】パンくずリスト・ページネーションなど
   ========================================================================== */
.breadcrumb-nav {
    padding: 20px 0;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    color: #333;
}
.breadcrumb-nav a {
    color: #333;
    text-decoration: none;
}
.breadcrumb-nav a:hover {
    text-decoration: underline;
    opacity: 1;
}
.breadcrumb-separator {
    margin: 0 8px;
    color: #666;
}
.breadcrumb-current {
    color: #666;
}
.area-column-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.area-column-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}
.area-column-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    color: #333;
    background: #FFF;
    border: 1px solid #DDD;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}
.area-column-pagination .page-numbers:hover,
.area-column-pagination .page-numbers.current {
    background: #AFAA9C;
    color: #FFF;
    border-color: #AFAA9C;
    opacity: 1;
}

.no-posts-message {
    text-align: center;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    color: #666;
    padding: 60px 20px;
}

/* ==========================================================================
   【業者一覧】アーカイブページ (リスト型デザイン)
   ========================================================================== */
.company-archive-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}
.company-archive-item {
    background-color: #ffffff;
    border: 2px solid #1B1B1B;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.08);
}
.company-archive-title {
    font-size: 22px;
    font-weight: 900;
    color: #1b1b1b;
    margin: 0 0 15px 0;
    border-bottom: 2px dashed #ccc;
    padding-bottom: 15px;
    line-height: 1.5;
}
.company-archive-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 25px;
}
.company-archive-btn-area {
    display: flex;
    justify-content: flex-end;
}
.company-archive-btn-area .archive-read-btn {
    display: inline-flex;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: opacity 0.3s;
}
.company-archive-btn-area .archive-read-btn:hover {
    opacity: 0.8;
}
.company-archive-btn-area .btn-arrow {
    margin-left: 10px;
    font-size: 10px;
}

/* ==========================================================================
   【エリア記事】アーカイブページ (3カラムグリッド型)
   ========================================================================== */
.area-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.area-column-card {
    background: #FFF;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.area-column-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.area-column-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.area-column-card-link:hover {
    opacity: 1;
}
.area-column-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #D9D9D9;
}
.area-column-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.area-column-card:hover .area-column-card-image img {
    transform: scale(1.05);
}
.area-column-card-content {
    padding: 15px;
}
.area-column-card-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.area-column-card-date {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 13px;
    color: #666;
    display: block;
}

/* ==========================================================================
   📱 レスポンシブ (スマホ・タブレット用)
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* 共通レイアウトを縦並びに */
    .area-column-content-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    .area-column-main,
    .area-column-sidebar {
        width: 100%;
    }

    /* エリア記事のグリッドを1列に */
    .area-column-grid {
        grid-template-columns: 1fr;
    }

    /* 業者一覧のリスト調整 */
    .company-archive-item {
        padding: 20px 15px !important; 
        box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.08) !important; 
    }
    .company-archive-title {
        font-size: 18px !important; 
        padding-bottom: 12px !important;
        margin-bottom: 12px !important;
    }
    .company-archive-text {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }
    .company-archive-btn-area {
        justify-content: center !important; 
    }
    .company-archive-btn-area .archive-read-btn {
        width: 100% !important; 
        justify-content: center !important;
        padding: 12px 0 !important;
    }
	.cta-check-group {
		display: none;
	}
}

.article-content table {
    border-collapse: collapse !important;
    width: 100% !important;
    border: 2px solid #77BEB8 !important;
    border-left: 2px solid #ffffff !important; 
}

.article-content table th,
.article-content table td {
    border: 1px solid #77BEB8 !important;
    padding: 12px 15px !important;
    vertical-align: middle !important;
}

.article-content table tr td:first-child,
.article-content table tr th:first-child {
    background-color: #77BEB8 !important;
    color: #ffffff !important;
    font-weight: bold !important;
    text-align: center !important;
    width: 30% !important;
    
    border-top: 1px solid #ffffff !important;
    border-bottom: 1px solid #ffffff !important;
    border-left: 2px solid #ffffff !important;
    border-right: 1px solid #77BEB8 !important; 
}

.article-content table tr td:nth-child(2) {
    background-color: #ffffff !important;
    color: #333333 !important;
    text-align: left !important;
}