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

/* ==========================================================================
   1. 変数 & 基本スタイル
   ========================================================================== */
:root {
    --color-text-dark: #333333;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-bg-light: #F5F5F5;
    --color-bg-dark: #2C2C2C;
    --color-border: #E0E0E0;
    --color-tag-bg: #F5F3EC;
    --font-main: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    --font-en: 'IBM Plex Sans Thai', 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;
    }
}
/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: #333;
    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;
}
.pr-label {
    background-color: #BEC32A;
    color: #333;
    width: 33px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 300;
    flex-shrink: 0;
}
.top-bar-text {
    color: #fff;
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 12px;
    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;
}
/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    height: 60px;
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 20px;
    left: 0;
    z-index: 9998;
}
.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
.header-left {
    display: flex;
    align-items: center;
    height: 100%;
}
.header-banner-02 {
    height: 60px;
    width: auto;
    display: block;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}
.main-navigation {
    display: flex;
    align-items: center;
    height: 100%;
}
.main-navigation ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-navigation li {
    border-left: 1px solid #093077;
    padding-left: 25px;
}
.main-navigation a {
    color: #093077;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}
.header-banner-01 {
    height: 60px;
    width: auto;
    display: block;
}
.header-right a {
    display: inline-block;
    line-height: 0;
}
.header-right a:hover {
    opacity: 0.8;
}
#page {
    padding-top: 80px;
}
body.admin-bar .top-bar {
    top: 32px;
}
body.admin-bar .site-header {
    top: 52px;
}
body.admin-bar #page {
    padding-top: 80px;
}
.header-sp-only {
    display: none;
}
/* ====================================================
   スマホ画像・表示セット（青色指定 #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: #0099EB !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;
    }
    #page {
        padding-top: 20px !important;
    }
}
/* ==========================================================================
   Hero Section 
   ========================================================================== */
.hero-container {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center; 
    justify-content: center;
}
.hero-container::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    z-index: 5;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1); 
    z-index: 2;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5% 40px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}
.hero-area-label {
    background-color: #FF9215;
    color: #fff;
    font-weight: 600;
    font-size: 36px;
    padding: 3px 15px;
    margin-bottom: 25px;
    letter-spacing: 6px;
}
.hero-title-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 10px; 
    margin-bottom: 10px;
}
.title-word-group {
    display: flex;
    gap: 10px; 
}
.title-char-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #0099EB;
    font-size: 80px;
    font-weight: 600;
    width: 110px;
    height: 110px;
    line-height: 1;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    padding-bottom: 6px; 
    box-sizing: border-box;
}
.hero-main-title {
    color: #fff;
    font-size: 58px;
    font-weight: bold;
    letter-spacing: 10px;
    text-shadow: 0 4px 6px rgba(0,0,0,0.4);
}
.hero-underline {
    width: 100%;
    max-width: 1200px;
    height: 5px;
    background-color: #fff;
    margin:  auto 12px auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.hero-sub-title {
    color: #E5ECED;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 50px;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}
.hero-description-box {
    width: 69%;
    margin-right: 650px;
    background: rgba(255, 255, 255, 0.85);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: left;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.hero-cta-wrapper {
    position: absolute;
    right: -5%;
    bottom: 40px;
    width: 580px;
    z-index: 20;
    transition: transform 0.3s ease;
}
.hero-cta-wrapper:hover {
    transform: translateY(-5px);
}
.hero-cta-wrapper img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}
/* ==========================================================================
   スマホ用調整 (max-width: 767px)
   ========================================================================== */
@media screen and (max-width: 767px) {
    .hero-container {
        min-height: auto;
        height: auto;
        overflow: visible;
    }
    .hero-container::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    z-index: 5;
    pointer-events: none;
}

    .hero-content {
        padding-top: 80px;
        padding-bottom: 50px; 
    }
    .hero-area-label {
        font-size: 10px;
        padding: 2px 4px;
        margin-top: 10px;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }
    .hero-title-boxes {
        gap: 6px; 
        flex-wrap: nowrap; 
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    .title-word-group {
        gap: 3px; 
    }
    .title-char-box {
        font-size: 22px; 
        width: 32px; 
        height: 32px; 
        border-radius: 3px;
        padding-bottom: 3px;
        align-items: center;
        justify-content: center;
    }
    .hero-main-title {
        font-size: 20px;
        letter-spacing: 2px;
        margin-bottom: -4px;
    }
    
     .hero-underline {
        display: block ;
        width: 80%;
        height: 2px; 
        flex-shrink: 0; 
        margin: 5px auto 5px auto; 
    }
    .hero-sub-title {
        font-size: 12px;
        letter-spacing: 0px;
        margin-bottom: 20px;
        width: 100%;
        line-height: 1.4;
    }
     .hero-description-box {
        position: relative;
        width: 80%;
        margin: auto 6px 0;
        font-size: 8px;
        padding: 10px;
        box-sizing: border-box;
    }
    
     .hero-cta-wrapper {
        position: relative;
        right: auto;
        bottom: auto;
        width: 80%;
        max-width: 350px;
        margin: 15px 20px 10px;
    }
}
/* ==========================================================================
   Main Content
   ========================================================================== */
.main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ==========================================================================
   INDEX Section
   ========================================================================== */

.content-index {
    background-color: #fff;
    width: 100%;
    margin-bottom: 0; 
}

.index-container {
    max-width: 1200px; 
    margin: 0 auto;
    display: flex;
    border-top: 1px solid #0A3077; 
    border-bottom: 1px solid #0A3077;
    border-left: 1px solid #0A3077; 
}
.index-item {
    flex: 1;
    padding: 25px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 2px solid #0A3077; 
    background-color: #fff;
    transition: background-color 0.3s ease;
}
.index-item:hover {
    background-color: #f4f9ff; 
}
.index-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin: 0;
    letter-spacing: 2px;
}
.index-item span {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    color: #333;
}
@media screen and (max-width: 767px) {
    .index-container {
        flex-direction: column; 
        border-top: 2px solid #0A3077; 
        border-bottom: 2px solid #0A3077;
        border-left: none ;
        border-right: none ;
    }
    .index-item {
        border-right: none ; 
        border-bottom: 1px solid #ccc ; 
        padding: 18px 15px;
    }
    .index-title-item {
        border-bottom: 2px solid #0A3077 ; 
    }
    .index-item:last-child {
        border-bottom: none;
    }
}
/* ====================================================
   厳選工務店3選セクション：PC版メインスタイル
   ==================================================== */
.recommended-companies {
background-image: url('../images/3sen_bg.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 100px 0;
text-align: center;
}
.section-header {
text-align: center;
}
.title-text-group {
    text-align: center; 
}
.recommended-companies .area-list-yokohama {
background: #DCBD6C;
width: 685px;
height: 47px;
line-height: 47px;
color: #fff;
font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
font-size: 28px;
font-weight: 600;
display: inline-block;
text-align: center;
letter-spacing: 2px;
}
.recommended-companies .section-title {
    color: #E5ECED;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.text-gold {
color: #E6D8B3;
font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
font-size: 1.3em;
font-style: normal;
font-weight: 600;
}
.num-wrapper {
position: relative;
display: inline-block;
margin-left: 30px;
}
.title-num-group {
    display: flex;
    align-items: baseline;
    position: relative;
    margin-top: 42px;
}
.highlight-num {
display: inline-block;
vertical-align: middle;
line-height: 1;
color: #DCBD6C;
font-size: 100px;
font-weight: 500 ;
}
.unit {
color: #E5ECED;
font-size: 45px;
margin-left: 10px;
}
.title-accent {
position: absolute;
top: -28px;
right: -4px;
width: 65px;
height: auto;
z-index: 10;
}
.sp-br {
display: none;
}
.companies-grid-wrapper {
width: 100%;
max-width: 1280px;
margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .recommended-companies .section-header { 
        padding: 0 15px; 
        text-align: center; 
        
    }
    .recommended-companies .area-list-yokohama {
        width: auto;        
        height: auto;        
        line-height: 1.4;    
        font-size: 11px; 
        padding: 6px 12px;  
        display: inline-block; 
        box-sizing: border-box;
        margin-bottom: 15px;
        white-space: normal;
        word-break: normal;  
    }
    .recommended-companies .section-title {
        display: flex;
        flex-direction: column; 
        gap: 0px; 
        margin-top: 10px;
        width: 100%; 
        padding: 0 10px; 
        box-sizing: border-box;
    }
    .title-text-group {
        text-align: left; 
        align-self: flex-start; 
        font-size: 24px; 
        line-height: 1.4;
    }
       .title-num-group {
        display: flex;
        align-items: baseline;
        position: relative;
        width: fit-content;
        margin: -65px 5px 0 auto;
    }
    .highlight-num {
        font-size: 70px; 
        line-height: 1;
    }
    .unit {
        font-size: 22px;
        margin-left: 2px;
    }
        .title-accent {
        position: absolute;
        width: 35px;
        top: -12px;
        left: 45px;
    }
}
/* ====================================================
工務店カード・グリッドレイアウト
==================================================== */
.company-card,
.company-card * {
box-sizing: border-box;
}
.companies-grid {
display: flex ;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
max-width: 1200px;
width: 100%;
margin: 0 auto;
padding-top: 40px ;
}
.company-wrapper {
width: 31% ;
min-width: 320px ;
max-width: 400px ;
margin-bottom: 40px ;
position: relative ;
z-index: 1;
display: block ;
flex-shrink: 1 ;
}
.company-card {
background-color: #ffffff ;
border-radius: 16px ;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) ;
display: flex ;
flex-direction: column ;
justify-content: space-between ;
width: 100% ;
height: 100% ;
min-height: 500px ;
padding: 0 ;
overflow: visible;
position: relative ;
z-index: 10 ;
border: none ;
transition: all 0.3s ease;
}
.company-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
/* ====================================================
各パーツのスタイル
==================================================== */
.company-tag-gold {
background-color: #DCBD6C ;
color: #ffffff;
border-radius: 16px 16px 0 0 ;
width: 100% ;
margin: 0 ;
height: 150px ;
min-height: 150px;
display: flex ;align-items: center;
justify-content: center ;
padding: 10px 10px;
font-size: 22px ;
font-weight: 600 ;
line-height: 1.4 ;
text-align: center ;
}
.company-info {
width: 100% ;
padding: 0 20px ;
margin: 0 ;
flex-grow: 1 ;
display: flex ;
flex-direction: column ;
}

.company-name {
display: inline-block ;
position: relative;
font-size: 24px ;
font-weight: bold ;
line-height: 1.4 ;
z-index: 2 ;
text-align: center;
white-space: nowrap ;
}
 .company-header {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px; 
    position: relative; 
    padding: 20px 75px; 
}
.company-header::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 80px;
    height: 110px;
    background-image: url(../images/crown-left.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
.company-header::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 80px;
    height: 110px;
    background-image: url(../images/crown-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
.company-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin: 0 0 15px 0;
    padding: 0;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media screen and (max-width: 768px) {
    .company-tag-gold {
        height: 75px;       
        min-height: 75px;   
        font-size: 13px;    
        padding: 5px 10px; 
        line-height: 1.3;
    }
    .company-header {
        min-height: 90px;
        padding: 15px 50px; 
    }
    .company-name {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 18px;
        line-height: 1.4;
        white-space: normal; 
        word-break: normal;
        overflow-wrap: anywhere;
        margin: 0;
    }
    .company-name .name-sub {
        font-size: 11px;
        font-weight: normal;
        color: #555;
        margin-top: 4px;
        line-height: 1.2;
    }
    .company-header::before,
    .company-header::after {
        height: 70px;
    }
    .company-image-wrapper {
        height: 160px;
        margin: 0 0 15px 0;
    }
   
    .companies-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        scrollbar-width: none; 
        gap: 15px;
        padding: 15px 0 20px;
    }
    .companies-grid::-webkit-scrollbar {
        display: none; 
    }
    .company-wrapper {
        flex: 0 0 calc(100vw - 90px); 
        width: calc(100vw - 90px);
        max-width: calc(100vw - 90px);
        min-width: calc(100vw - 90px);
        flex-shrink: 0;
        scroll-snap-align: center;
        margin-bottom: 0;
    }
    .company-wrapper:first-child {
        margin-left: 15px;
    }
    .company-wrapper:last-child {
        margin-right: 15px;
    }
}
/* ====================================================
ボタンエリア
==================================================== */
.card-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px 20px 25px 20px;
    margin-top: auto;
    background: #fff;
    border-radius: 0 0 16px 16px; 
}
.btn-base {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 55px; 
    border-radius: 50px;
    font-size: 15px;
    font-weight: bold;
    color: #fff !important; 
    text-decoration: none;
    box-shadow: 0 4px 0 #000; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.company-btn::before,
.company-btn::after {
display: none ;
}
.arrow-icon {
width: 12px;
height: auto ;
}
.btn-base:hover {
    transform: translateY(4px);
    box-shadow: 0 0 0 #000;
}
.btn-base .arrow-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}
.btn-red {
    background-color: #A11E0F; 
    box-shadow: 0px 6px 0px rgb(122, 0, 0);
}
.btn-orange {
    background-color: #FF8D0F; 
    box-shadow: 0px 6px 0px #D96B00;
}
@media screen and (max-width: 768px) {
.btn-base {
font-size: 12px;
height: 40px;
border-radius: 30px;


}
}
/* ====================================================
   よくあるトラブルセクション
   ==================================================== */
.trouble-section {
    background-image: url('../images/trouble_bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
}
.trouble-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.trouble-title {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}
.trouble-title .title-sub {
    display: block;
    font-size: 38px;
    margin-bottom: 10px;
}
.trouble-title .title-main {
    display: block;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 2px;
}
.trouble-cards-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.trouble-card {
    background: #fff;
    flex: 1; 
    padding: 30px 20px;
    text-align: center;
    border-radius: 5px;
}
.trouble-text {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
    min-height: 4.8em; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.trouble-img-box {
    width: 100%;
    aspect-ratio: 1 / 1; 
    border-radius: 50%;  
    overflow: hidden;    
    margin: 0 auto;
    background-color: #f5f5f5; 
}
.trouble-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.3s ease-in-out; 
    transform: scale(1); 
}
.trouble-card:hover .trouble-img-box img {
    transform: scale(1.1); 
}
.trouble-bottom-banner {
    background-color: #DCBD6C;
    padding: 5px;
    text-align: center;
    color: #fff;
}
.banner-text {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 10px;
}

.banner-text .text-highlight {
    font-size: 1.2em; 
}
.marker-orange {
   background: linear-gradient(transparent 70%, #FF840B 40%); 
    color: #fff; 
    padding: 2px 8px; 
    line-height: 1.8; 
}
.sp-only {
    display: none; 
}
.banner-text .arrow-icon {
    font-size: 40px;
    line-height: 1;
    margin-right: 22px;
}

@media screen and (max-width: 768px) {
    .trouble-section {
        padding: 50px 0;
        background-size: auto;
    }

    .trouble-title .title-sub {
        font-size: 18px;
    }

    .trouble-title .title-main {
        font-size: 20px;
        line-height: 1.4;
    }

    .trouble-cards-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
        margin-bottom: 30px;
    }
    .trouble-card {
        padding: 20px 10px; 
    }
    .trouble-text {
        font-size: 13px; 
        min-height: 4em;
    }
    .banner-text {
        display: block; 
        font-size: 13px; 
        line-height: 2.2; 
        letter-spacing: -0.05em; 
    }
    .banner-text .text-highlight {
        font-size: 1.1em;
    }
    .sp-only {
        display: block; 
    }
    .marker-orange {
        display: inline; 
        padding: 4px 6px;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
    }
    .banner-text .arrow-icon {
        display: inline-block;
        font-size: 16px; 
        vertical-align: middle; 
        margin-right: 4px;
        margin-bottom: 3px; 
    }
}
/* ====================================================
   業者選びに失敗しないための5つの対策セクション
   ==================================================== */
.countermeasures-section {
    padding: 80px 0;
   
}
.countermeasures-section .section-title {
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #333;
    letter-spacing: 2px;
}
.countermeasures-section .cards-wrapper {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}
.measure-card {
    background: #fff;
    width: calc(33.333% - 17px);
    min-width: 280px; 
    border: 2px solid #DCBD6C; 
    border-radius: 12px; 
    padding: 25px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative; 
    margin-top: 20px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.measure-card .card-num {
    position: absolute; 
    top: -18px; 
    left: 20px; 
    background-color: #fdfaf4; 
    padding: 0 10px; 
    color: #DCBD6C;
    font-size: 32px; 
    font-family: "Georgia", serif;
    line-height: 1;
    margin-bottom: 0;
}
.measure-card .card-text-block {
    min-height: 140px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 15px; 
}
.measure-card .card-title {
    color: #0099EB; 
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: auto; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.measure-card .card-desc {
    font-size: 13px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 0;
    font-family: hiragino sans, "Noto Sans JP", sans-serif;
    font-weight: bold;
}
.measure-card .card-img {
    margin-bottom: 20px;
    border-radius: 6px; 
    overflow: hidden;   
}
.measure-card .card-img img {
    width: 100%;
    height: auto;
    display: block; 
    transition: transform 0.3s ease-in-out; 
    transform: scale(1); 
}
.measure-card:hover .card-img img {
    transform: scale(1.1);
}
.measure-card .card-box {
    margin-top: auto;
    margin-bottom: 15px;
}
.measure-card .point-box {
    margin-bottom: 0; 
}
.measure-card .box-title {
    background-color: #DCBD6C;
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 6px 0;
    margin-bottom: 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}
.measure-card .box-list {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
    padding-left: 1.5em; 
    color: #333;
}
.measure-card .box-list li {
    margin-bottom: 5px;
    text-align: left;
}
.measure-card .box-text {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
    color: #333;
    text-align: left;
}
.big-text {
    font-size: 60px;
}
@media screen and (max-width: 768px) {
    .countermeasures-section {
        padding: 50px 15px;
    }
    .countermeasures-section .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .countermeasures-section .highlight-num {
        font-size: 45px;
    }
    .measure-card {
        width: 100%; 
    }
    .measure-card .card-title {
        min-height: auto; 
    }
    .big-text {
        font-size: 30px;
    }
}
/* ====================================================
   おすすめ3社について詳しく解説 セクション（大枠）
   ==================================================== */
.detail-section {
    position: relative ;
    z-index: 1 ;        
    overflow: visible ;
}
.company-detail-block {
    background-size: 100% auto; 
    background-position: top center;
    background-repeat: no-repeat;
    margin-top: 20px;
}
.details-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.details-main-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}
.details-main-title .num-large {
    font-size: 58px; 
    line-height: 1;
    margin: 0 5px;
}
.details-sub-title {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    display: inline-block;
    border-bottom: 6px double #fff;
    padding-bottom: 0px;
}
.company-intro-zone {
    padding: 80px 0 100px;
    position: relative;
}
.intro-flex {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    position: relative;
    width: 100%; 
}
.bg-number-watermark {
    position: absolute;
    left: 0;
    top: 105%;
    transform: translateY(-50%);
    font-size: 400px;
    font-family: 'Hind Guntur', sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}
.details-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10; 
}
.company-head {
    margin-bottom: 20px;
}
.company-title-box .company-name-large {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
     white-space: nowrap;
    color: #333;
    margin: 0;
     display: block;
      font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W6", "メイリオ", sans-serif !important;
    box-shadow: none;
    background: transparent;
    padding: 0;
     line-height: 1.2;
}
.company-name-large span {
    display: block;  
    font-size: 0.8em; 
    margin-top: 10px; 
    font-family: "BIZ UDPMincho", "Sawarabi Mincho", "MS P明朝", serif !important;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.company-main-visual {
    width: 65%; 
    position: relative;
    z-index: 2;
    margin-right: 50px; 
}
.company-main-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0; 
    box-shadow: 8px 8px 0px rgba(20, 20, 20, 0.9); 
}
.main-visual-source {
    text-align: right; 
    margin-top: 5px; 
}
.main-visual-source a {
    font-size: 15px;
    color: #666;
    font-weight: bold;
    text-decoration: none; 
}
.main-visual-source a:hover {
    text-decoration: underline;
    color: #333;
}
.company-title-box {
    position: absolute;
    left: 0; 
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    padding: 45px 35px 30px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
    z-index: 5;
    width: 45%; 
    max-width: 380px;
    border: 2px solid #333;
}
.company-title-box .tag-green {
    position: absolute;
    top: -40px;
    left: 100px;
    background-color: #B1C264;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    padding: 10px 18px;
    letter-spacing: 1px;
    border-radius: 0;
}
.detail-section {
    padding: 80px 40px;
    position: relative; 
    z-index: 1; 
}
.detail-section.bg-left::before,
.detail-section.bg-right::before {
    content: '' !important;
    position: absolute !important;
    z-index: -1 !important;
    top: 80px !important; 
    bottom: 0 !important; 
    width: 90% !important; 
    background-size: contain !important;
    background-repeat: no-repeat !important;
}
.bg-left::before {
    left: -10px !important;
    background-position: left top !important;
}
.bg-right::before {
    right: -20px !important;
    background-position: right top !important;
}
.company-content-box {
    position: relative !important;
    z-index: 10 !important; 
}
.points-section.bg-left::before {
    background-image: url(../images/GBSjirei-bg.png) !important; 
}

.works-section.bg-left::before {
    background-image: url(../images/GBSjirei-bg.png) !important; 
}

.reviews-section.bg-right::before,
.overview-section.bg-right::before {
    background-image: url(../images/GBSreviews-bg.png) !important; 
}
.detail-block-title {
    font-size: 50px;
    font-weight: bold;
    text-align: left;
    margin-top: 70px;
    margin-bottom: -45px;
    margin-left: 70px;
    color: #333;
    letter-spacing: 1px;
}
.detail-block-title .s-text {
    font-size: 32px;
    font-weight: bold;
    text-align: left;
    margin-top: 70px;
    margin-bottom: -45px;
    color: #333;
    letter-spacing: 1px;
}
.points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 825px;
    margin-left: 65px;
    margin-right: auto;
    margin-bottom: 75px;
    margin-top: 80px;
}
.point-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column; 
}
.point-head {
    background-color: #D3B269; 
    color: #fff;
    padding: 15px 10px; 
    align-items: center; 
    gap: 15px;
    display: flex ;
    justify-content: center ;
    position: relative ;
    min-height: 100px ;
}
.point-head .point-num {
    font-size: 26px; 
    font-family: 'Hind Guntur', sans-serif; 
    font-weight: 600;
    line-height: 1;
    position: absolute ;
    left: 15px ; 
    top: 40% ;
}
.point-head .point-title {
    font-size: 20px;
    width: 100%;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    padding-left: 45px ; 
    padding-right: 45px;
    
}
.point-card img {
    width: calc(100% - 40px); 
    height: auto;
    display: block;
    margin: 20px auto 0; 
    border-radius: 8px; 
}
.point-desc {
    padding: 15px 20px 20px; 
    font-size: 16px;
    font-family: hiragino sans, "Noto Sans JP", sans-serif;
    font-weight: bold;
    line-height: 1.6;
    color: #333;
    margin: 0;
}
.points-section .detail-btn-wrap {
    max-width: 825px !important; 
    margin-left: 60px !important; 
    margin-right: auto !important;
}
.reviews-section {
    position: relative; 
    padding-bottom: 60px; 
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    margin-bottom: 60px; 
    align-items: stretch !important; 
}
.reviews-section .reviews-grid,
.reviews-section .detail-btn-wrap {
    max-width: 1000px; 
    margin-left: 300px; 
    margin-right: 0; 
}
.reviews-section .detail-block-title {
    margin-bottom: 25px;
    margin-left: 300px;
    margin-top: 30px;
}
.reviews-section .detail-btn-wrap {
    justify-content: center;
}
.review-card {
    background: #fff;
    border: 2px solid #333;
    border-radius: 10px;      
    padding: 30px 25px; 
    display: flex;
    flex-direction: column;
    height: 100% !important; 
    min-height: 0 !important; 
    padding-bottom: 20px !important;
}
.review-user {
    display: flex;
    align-items: center; 
    gap: 15px;
    margin-bottom: 20px;
}
.user-info .review-title {
    font-size: 13px; 
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 5px;
    min-height: 58px; 
}
.review-card .review-text::before {
    content: "“";
    font-size: 32px; 
    color: #ccc; 
    font-family: "Georgia", serif;
    margin-bottom: 0px; 
    vertical-align: top;
    margin-right: 5px;
    position: absolute ; 
    top: 0 ; 
    left: 0 ; 
    display: block ;
    line-height: 1 ;
}
.review-card .review-text::after {
    content: "”";
    font-size: 32px;
    color: #ccc;
    font-family: "Georgia", serif;
    position: absolute; 
    bottom: -20px ; 
    right: 0; 
    display: block ;
    line-height: 1 ;
    margin-left: 0 ;
}
.review-source {
    margin-top: auto; 
    text-align: right;
    font-size: 10px;
    color: #333;
    font-weight: bold;
}
.review-source::before {
    content: none !important; 
}
.user-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
.user-info .stars {
    color: #FFB800;
    font-size: 12px;
    font-weight: bold;
}
.review-card .review-text {
    font-size: 12px;
    line-height: 1.6;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    max-height: 11em;
    position: relative ;
    padding-top: 5px ;
    padding-bottom: 20px ; 
    padding-left: 25px ; 
    padding-right: 25px ; 
    margin-bottom: 15px ;
    flex-grow: 1 !important;
}
.review-card .review-text.is-expanded {
    display: block !important;
    -webkit-line-clamp: unset !important;
    max-height: none !important; 
    height: auto !important; 
}
.read-more-btn {
    display: none; 
    background: none;
    border: none;
    color: #D3B269;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    margin: 0 auto 15px;
    padding: 5px 10px;
    margin-top: auto;
}
.read-more-btn:hover {
    opacity: 0.7;
}

    .reviews-section.bg-right::before,
    .reviews-section.bg-left::before {
        background-size: cover !important; 
        background-position: center bottom !important; 
        border-radius: 30px;
    }
    .reviews-section {
        padding-bottom: 50px !important; 
        margin-bottom: 0px !important;
    }
.works-section .detail-block-title,
.works-section .works-grid,
.works-section .work-source {
    max-width: 900px;  
    margin-left: 80px;    
    margin-right: auto;
}
.works-section .detail-block-title {
    text-align: left; 
    margin-bottom: 30px;
}
.works-section .detail-btn-wrap {
    justify-content: center;
}
.works-section .works-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 20px; 
    margin-bottom: 10px;
}
.work-item {
    display: flex;
    flex-direction: column; 
    gap: 8px; 
    background-color: transparent; 
    padding: 0;
}
.work-images {
    display: flex;
    gap: 25px; 
}
.work-img-box {
    position: relative;
    flex: 1; 
    box-shadow: 10px 10px 0px #E1C475; 
}
.work-img-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0; 
}
.work-label {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 18px;
    border-radius: 30px; 
    z-index: 2;
}
.label-before {
    background-color: #F8F2F2;
    color: #333;
}
.label-after {
    background-color: #DBB7B7;
    color: #333;
}
.works-section .work-source {
    text-align: right;
    font-size: 10px;
    color: #666;
    font-weight: bold;
    margin-top: 5px;
    width: 100%;
    margin-right: 0 !important;
    margin-left: auto !important;
}
.works-section .detail-btn-wrap {
    display: flex;
    width: 100%; 
    margin-top: 20px; 
    gap: 20px; 
}
.works-section .detail-btn-wrap .btn-base {
    flex: 1; 
    justify-content: center; 
}

.overview-section .detail-block-title,
.overview-section .overview-inner,
.overview-section .detail-btn-wrap {
    max-width: 1050px;  
    margin-left: 260px; 
    margin-right: 0;  
}
.overview-section .detail-block-title {
    text-align: left;
    margin-bottom: 30px;
    margin-top: 25px;
}
.overview-inner {
    background: transparent; 
    padding: 0; 
    box-shadow: none; 
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}
.overview-table {
    flex: 1;
    width: 100%;
    border-collapse: separate; 
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
}
.overview-table th, 
.overview-table td {
    border-bottom: 1px solid #eee; 
    padding: 20px 20px; 
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}
.overview-table tr:last-child th,
.overview-table tr:last-child td {
    border-bottom: none;
}
.overview-table th {
    background-color: #F5F5F5;
    width: 120px; 
    text-align: left;
    font-weight: bold;
    border-right: 1px solid #eee; 
    vertical-align: top;
    padding: 15px 10px;
}
.overview-table td a {
    color: #333; 
    text-decoration: none; 
}
.overview-map {
    flex: 1; 
    border-radius: 12px;
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
}
.overview-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px; 
    display: block; 
}
.company-content-box .detail-btn-wrap {
    display: flex;
    justify-content: center !important; 
    gap: 30px; 
    width: 100%;
}
.company-content-box .detail-btn-wrap .btn-base {
    flex: 1; 
    width: 100%;
    max-width: 340px !important; 
}
.overview-section.garden .overview-inner,
.overview-section.garden .detail-btn-wrap {
    margin-left: 75px !important;   
    margin-right: 0 !important;
    padding-left: 0 !important; 
}
.overview-section.garden .detail-block-title{
    margin-left: 115px;
 }
.overview-section.garden .overview-table {
    margin-left: 48px !important;
    margin-right: auto !important;
    width: auto !important;
}
.overview-section.garden .detail-btn-wrap {
    justify-content: center !important;
    padding-left: 145px !important;
    margin: 40px 26px 0 !important;
}
.overview-section.garden::before {
    left: -100px !important;
    right: auto !important;
     background-image: url(../images/overview.png) !important; 
     content: '' !important;
     width: 100% !important;
    position: absolute !important;
    z-index: -1 !important;
    top: 80px !important; 
    bottom: 0 !important; 
}
/* ====================================================
   📱 スマホ用レスポンシブ
   ==================================================== */
@media screen and (max-width: 768px) {
    .company-intro-zone .inner-intro-flex, 
    .company-intro-zone .inner {
        display: block; 
        position: relative; 
    }
    .company-intro-zone {
        padding: 30px 20px 140px;
        position: relative;
    }
    .company-content-box { 
        margin-top: -140px; 
        border-radius: 12px; 
    }
   .detail-section {
        position: relative; 
        padding-bottom: 5px !important;
        margin-bottom: -85px !important; 
    }
    .detail-section.bg-left::before,
    .detail-section.bg-right::before {
        width: 100% !important; 
        left: 0 !important;      
        right: 0 !important;
        top: 0 !important;       
        bottom: 0 !important;
        height: auto !important; 
        background-size: cover !important; 
        border-radius: 0;        
    }
    .detail-block-title {
        margin-top: -60px;
        margin-bottom: 20px;
        font-size: 28px;
        text-align: center;
		margin-left: 0 !important; 
        margin-right: 0 !important;
    }
    .detail-block-title .s-text{
        font-size: 18px;
    }
	.details-main-title .num-large {
    font-size: 40px;
    }
    .intro-flex {
        flex-direction: column;
        justify-content: center;
    }
    .details-main-title {
        font-size: 21px;
    }
    .details-sub-title {
        font-size: 12px;
    }
.company-title-box .company-name-large {
    width: 100% !important;
    display: block;
    font-size: clamp(12px, 4vw, 20px) !important;
    white-space: normal !important;
    text-align: center !important;
}
    .company-name-large span {
    display: block;
    font-size: 0.8em;
    margin-top: 10px;
    font-weight: bold;
    letter-spacing: 0.05em;
}
    .company-title-box {
        position: relative !important;
        top: auto !important;
        transform: none !important;
        width: 90% !important;
        max-width: 240px !important;
        margin-left: 95px !important;
        margin-right: auto !important;
        margin-bottom: 25px !important;
        padding: 30px 15px 15px !important;
        text-align: center !important;
        background: #fff !important;
    }
    .company-main-visual {
        width: 100%;
        margin-right: 0;
        padding: 2px;
        align-items: center;
    }
    .company-main-visual img {
        box-shadow: 3px 3px 0px rgba(20, 20, 20, 0.9); 
    }
    .bg-number-watermark {
        position: absolute;
        top: 5px;
        left: -8px;
        transform: none;
        font-size: 100px !important;
        line-height: 1;
        color: rgba(255, 255, 255, 0.6);
    }
        .company-title-box .tag-green {
        top: -15px;
        left: 10px;
        font-size: 12px;
        padding: 8px 20px;
    }
    .points-grid,
    .reviews-grid,
    .works-grid {
        grid-template-columns: 1fr; 
    }
    .points-grid {
        margin-top: 0 !important; 
        margin-bottom: 25px !important; 
        gap: 15px !important;
    }
    
    .overview-inner {
        flex-direction: column; 
        padding: 20px;
        gap: 20px;
    }
    .detail-btn-wrap {
        flex-direction: column;
        max-width: 100%;
    }
        .company-content-box .detail-btn-wrap {
        display: block !important;
        text-align: center !important;
        padding: 0 15px !important;
        margin-bottom: 115px ;
		margin-left: 0 !important; 
        margin-right: 0 !important;
    }
    .company-content-box .detail-btn-wrap .btn-base {
        display: flex !important; 
        width: 100% !important;
        max-width: 260px !important; 
        margin: 0 auto 15px auto !important; 
        height: 45px !important; 
        border-radius: 30px !important;
        font-size: 13px !important;
    }
    .points-grid {
    grid-template-columns: 1fr !important; 
    gap: 20px !important; 
    padding: 0 15px !important; 
    margin: 30px auto !important; 
    max-width: 100% !important; 
}
    .point-head {
        padding: 12px 5px ;
        min-height: 85px ;
    }
    .point-head .point-num {
        font-size: 22px; 
        left: 10px ;
    }
    .point-head .point-title {
        font-size: 14px ; 
        padding-left: 30px ;
        padding-right: 20px ;
    }
    .point-card img {
        width: calc(100% - 30px); 
        margin: 15px auto 0;
    }
    .point-desc {
        padding: 15px; 
        font-size: 11px; 
    }
    .reviews-section .detail-block-title,
    .reviews-section .reviews-grid {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 15px !important; 
        max-width: 100% !important;
    }
    .reviews-section .detail-btn-wrap {
        margin-bottom: 55px ;
        margin-left: 0 !important;
        margin-right: 0 !important;
         max-width: 100% !important;

    }
    .reviews-section .detail-block-title {
    margin-bottom: 25px;
    margin-top: -45px;
}
    .reviews-section .reviews-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-bottom: 30px !important;
    }
    .review-card {
        padding: 20px 15px !important; 
    }
           .detail-section.works-section {
        margin-top: 60px !important;
        padding-top: 25px !important;
        padding-bottom: 70px !important;
        position: relative !important;
    }
    .works-section.bg-left::before {
        top: 0 !important; 
        bottom: 0 !important;
       height: 100% !important; 
    }
    .works-section .detail-block-title {
    text-align: center;
    margin-bottom: 16px;
    margin-top: 8px;
    margin-left: 0;
}
    .works-section .works-grid, 
    .works-section .work-source, 
    .works-section .detail-btn-wrap {
        margin-left: auto !important;  
        margin-right: auto !important; 
        margin-bottom: 10px;
        margin-top: 0;
    }
    .works-section .detail-btn-wrap {
        display: block !important;
        flex-direction: column !important; 
        align-items: center !important;    
    }

    .works-grid .work-images {
        margin-top: 35px !important; 
    }
    .works-grid .work-images .label-before,
    .works-grid .work-images .label-after {
        top: -20px !important;
        left: 5px !important;
        z-index: 10 !important; 
    }
    .company-content-box,
    .company-content-box .inner {
        display: block !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .detail-section.overview-section {
        display: block !important;
        position: relative !important; 
       padding: 50px 30px 20px !important;
        margin: 0 !important; 
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .overview-section .detail-block-title {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important; 
        text-align: center !important;
        white-space: normal !important;
    }
    .overview-section.bg-right::before,
    .overview-section.bg-left::before {
        content: "" !important;
        position: absolute !important;
        top: 20px !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important; 
        z-index: -1 !important;
    }
    .overview-section.garden .overview-inner, 
    .overview-section.garden .detail-block-title,
     .overview-section.garden .detail-btn-wrap {
    padding-left: 0 !important; 
        margin-left: 0 !important;
        text-align: center !important; 
        width: 100% !important;
     }
    .overview-section.garden .overview-table {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important; 
        max-width: 340px !important; 
    }
    .overview-section.garden .overview-inner {
        padding-left: 15px !important;  
        padding-right: 15px !important;
        display: flex !important;
        flex-direction: column !important; 
        align-items: center !important;    
    }
    .overview-section.garden .detail-block-title {
        margin-top: 40px !important;    
        margin-bottom: 20px !important; 
        display: block !important;
        width: 100% !important;
    }
    .overview-section.garden::before{
        content: "" !important;
        position: absolute !important;
        top: 50px !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important; 
        z-index: -1 !important;
    }
    .overview-section .overview-inner {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important; 
        margin: 0 !important; 
        padding: 20px 15px !important;
        background-color: rgba(255, 255, 255, 0.9) !important; 
        border-radius: 10px !important; 
        box-sizing: border-box !important;
    }
    .overview-section .overview-table {
        width: 100% !important;
        table-layout: fixed !important; 
    }
    .overview-section .overview-table th,
    .overview-section .overview-table td {
        word-wrap: break-word !important; 
    }
    .overview-section .overview-map {
        width: 100% !important;
        height: 250px !important; 
        margin-top: 20px !important;
    }
    .overview-section .overview-map iframe {
        width: 100% !important;
        height: 100% !important;
    }
    .overview-section .detail-btn-wrap {
        display: block !important; 
        text-align: center !important; 
        padding: 0 15px !important;
        margin-bottom: 30px !important;
    }
    .overview-section .detail-btn-base {
        display: flex !important; 
        width: 100% !important;
        max-width: 260px !important; 
        margin: 0 auto 15px auto !important; 
        height: 45px !important; 
        border-radius: 30px !important;
        font-size: 13px !important;
        align-items: center !important; 
        justify-content: center !important; 
    }
    .overview-section .detail-block-title,
    .overview-section .overview-inner,
    .overview-section .detail-btn-wrap {
        margin-left: 0 !important; 
        margin-right: 0 !important;
        max-width: 100% !important; 
        margin-top: 25px;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-top-section {
    background-color: #0099EB;
    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: #0099EB;
    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;
}
.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;
}

/* ==========================================================================
   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 40px 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: 2px solid #E5E5E5;
    font-size: 16px;
    box-sizing: border-box;
    color: #333;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}
.search-input-wrapper .search-field:focus,
.search-input-wrapper .search-field:hover {
    outline: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.search-input-wrapper .search-field::placeholder {
    color: #8B8B8B;
    font-size: 15px;
}
.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: 40px;
    border: none;
}
.widget-title.bg-blue {
    color: #FFF;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: bold;
    background: #333333;
    text-align: center;
    padding: 20px 0;
    margin: 0;
    letter-spacing: 0.1em;
}
.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid #333;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
}
.content-list li {
    margin: 0;
    border-bottom: 1px solid #E5E5E5;
}
.content-list li:last-child {
    border-bottom: none;
}
.content-list a {
    color: #333;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    padding: 18px 10px;
    background: #FFF;
    text-align: center;
    transition: background-color 0.3s ease;
}
.content-list a:hover {
    background: #F5F5F5;
    opacity: 1;
}
/* ==========================================================================
   新着記事 ウィジェット
   ========================================================================== */
.widget-title.bg-blue-custom {
    background-color: #004D91;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 18px 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;
}
/* Popular & Recent Articles Widget */
.widget-popular-articles,
.widget-recent-articles {
    padding: 0;
    border-bottom: 1px solid #E0E0E0;
}
.widget-popular-articles:last-child,
.widget-recent-articles:last-child {
    border-bottom: none;
}
.articles-list {
    padding: 20px;
}
.article-card {
    position: relative;
    margin-bottom: 20px;
    background: #FFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:last-child {
    margin-bottom: 0;
}
.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.article-card a {
    text-decoration: none;
    display: block;
}
.article-thumbnail {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}
.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(10, 48, 119, 0.9);
    color: #FFF;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: bold;
    z-index: 2;
}
.article-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: 12px 15px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.5em * 3);
}
/* 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
   ========================================================================== */
/* Tablet and below (768px) */
@media (max-width: 768px) {
    .company-introduction-wrapper {
        flex-direction: column;
        gap: 30px;
        margin: 40px auto;
        max-width: 100%;
        overflow: hidden;
    }
    .company-main-content {
        max-width: 100%;
        overflow: hidden;
    }
    /* company-detail-cardのbox-sizingとmax-width */
    .company-detail-card {
        box-sizing: border-box;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }
    .company-intro-sidebar {
        width: 100%;
        max-width: 100%;
    }
    .company-header-section {
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        max-width: 100%;
        padding: 20px 15px;
        box-sizing: border-box;
    }
    /* company-1.pngバッジを中央配置 */
    .company-number-badge {
        width: 140px;
        display: block;
        margin: 0 auto 15px;
    }
    .company-title-group {
        gap: 8px;
        width: 100%;
    }
    /* タイトル部分を横並び中央配置（「湘南の気候に詳しい」を1行で） */
    .company-title-line-1 {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 5px;
    }
    .company-title-line-2 {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .company-title-line-3 {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .shonan-title {
        font-size: clamp(24px, 7vw, 32px);
        width: auto;
        height: auto;
        padding: 4px 8px;
        flex-shrink: 0;
    }
    .title-normal {
        font-size: clamp(14px, 4vw, 18px);
        text-align: center;
        white-space: nowrap;
        flex-shrink: 0;
    }
    /* local-business-badgeをフルワイド対応 */
    .local-business-badge {
        margin-top: 0;
        width: auto;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 2px;
        flex-shrink: 0;
    }
    .local-business-badge .char {
        font-size: clamp(16px, 5vw, 24px);
        width: clamp(24px, 7vw, 36px);
        height: clamp(28px, 8vw, 40px);
    }
    /* company-subtitle-1 にテキスト折り返しを追加 */
    .company-subtitle-1 {
        font-size: clamp(14px, 4vw, 18px);
        text-align: center;
        width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        box-sizing: border-box;
    }
    .company-subtitle-2 {
        font-size: clamp(18px, 5vw, 24px);
        text-align: left;
        width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .company-name-large {
        font-size: clamp(18px, 5vw, 24px);
        word-break: break-word;
        display: inline-block;
        position: relative;
    }
    /* company-name-section - 768px以下用（responsive.cssで上書き可能に） */
    .company-name-section {
        text-align: right;
        padding: 15px;
        box-sizing: border-box;
        max-width: 100%;
    }
    /* company-screenshot-section の幅を修正 */
    .company-screenshot-section {
        box-sizing: border-box;
        max-width: 100%;
        width: 100%;
        padding: 20px 10px 30px 10px;
        /* 左右の余白を小さく、下に余白追加 */
        overflow: visible;
        /* 影が見えるように */
        position: relative;
    }
    .company-screenshot {
        max-width: calc(100% - 10px);
        /* 影の分を確保 */
        width: calc(100% - 10px);
        height: auto;
        display: block;
        position: relative;
        z-index: 1;
        margin-bottom: 15px;
        /* 引用元との余白 */
    }
    /* 画像の影 - タブレット用調整 */
    .company-screenshot-section::before {
        top: calc(20px + 10px);
        left: calc(10px + 10px);
        width: calc(100% - 20px - 10px);
        /* padding分 + 横ずれ分を引く */
        height: calc(100% - 50px - 24px - 15px);
        /* padding + caption + margin */
    }
    .strengths-grid {
        flex-direction: column;
        gap: 20px;
    }
    .strength-card,
    .strengths-grid .strength-card:nth-child(n+4) {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .strengths-title {
        font-size: 24px;
        padding: 0 20px;
        height: 48px;
        line-height: 48px;
    }
    .company-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .company-cta-buttons .company-btn {
        max-width: 90%;
        width: 100%;
    }
    /* 会社概要セクション - スマホで「地図→表→CTA」の順番 */
    .overview-content-wrapper {
        flex-direction: column;
        display: flex;
    }
    .overview-map-wrapper {
        order: 1;
    }
    .overview-table-wrapper {
        order: 2;
        display: flex;
        flex-direction: column;
    }
    .overview-table-wrapper .overview-table {
        order: 1;
    }
    .overview-table-wrapper .overview-cta {
        order: 2;
        margin-top: 20px;
    }
    /* CTAボタンの切れを修正 */
    .overview-cta {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .overview-cta .company-btn {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    .overview-title {
        font-size: 24px;
        padding: 0 20px;
        height: 48px;
        line-height: 48px;
    }
    .reviews-grid {
        flex-direction: column;
        gap: 15px;
    }
    .review-card {
        max-width: 100%;
    }
    .reviews-title {
        font-size: 24px;
    }
    /* 口コミボタンの幅修正（スマホ） */
    .reviews-cta {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .reviews-cta .company-btn {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding: 15px 20px;
    }
    /* PC/SPの表示切り替え */
    .pc-only {
        display: none !important;
    }
    .sp-only {
        display: inline !important;
    }
    br.sp-only {
        display: block !important;
    }
    .results-grid {
        flex-direction: column;
        gap: 15px;
    }
    .result-card {
        max-width: 100%;
    }
    .results-title {
        font-size: 24px;
    }
    .overview-table th {
        font-size: 14px;
        width: 120px;
        padding: 15px;
    }
    .overview-table td {
        font-size: 14px;
        padding: 15px;
    }
    .overview-cta .company-btn {
        max-width: 90%;
    }
    .overview-map-wrapper iframe {
        height: 350px;
    }
    .content-list a {
        font-size: 18px;
    }
}
/* 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;
    }
}
   /* =========================================
   🎯 よくあるご質問（FAQ）セクション
========================================= */
.faq-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/faq_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    overflow: hidden;
}
.faq-title-wrapper {
    text-align: center;
    margin-bottom: -25px;
}

.faq-main-title {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 15px 50px;
    font-size: 40px;
    font-weight: 100;
    position: relative;
}
.faq-card-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 40px;
    padding: 50px;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 1);
}
.faq-item {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.faq-item:last-child {
    border-bottom: none; 
}
.faq-q {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.q-mark {
    background-color: #F8B62D; 
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}
.q-text {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
.faq-a {
    padding-left: 43px; 
}
.faq-a p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}
/* --- スマホ対応 --- */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 60px 0 !important;
        background-attachment: scroll !important; 
    }
    .faq-title-wrapper {
        margin-bottom: -15px !important; 
        padding: 0 10px;
    }
    .faq-main-title {
        font-size: 16px !important; 
        padding: 10px 30px !important;
        width: auto !important;
        max-width: 90% !important;
        line-height: 1.4;
    }
    .faq-card-container {
        width: 92% !important; 
        margin: 0 auto !important;
        border-radius: 25px !important; 
        padding: 40px 20px 20px !important; 
        box-shadow: 6px 6px 0px rgba(0, 0, 0, 1) !important; 
    }
    .faq-q {
        gap: 10px !important;
    }
    .q-mark {
        width: 24px !important;
        height: 24px !important;
        font-size: 14px !important;
    }
    .q-text {
        font-size: 14px !important;
        line-height: 1.4;
    }
    .faq-a {
        padding-left: 0 !important;
        margin-top: 5px;
    }
    .faq-a p {
        font-size: 13px !important;
        line-height: 1.6;
    }
    .faq-item {
        margin-bottom: 20px !important;
        padding-bottom: 10px !important;
    }
}
/* ==========================================================================
   工務店一覧セクション (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: #333333;
    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;
    background-color: #F1F8E9;
    color: #557C3E;
    border: 1px solid #AABC3E;
    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: #A00000;
    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 #7A0000;
    transition: all 0.2s ease;
    margin-bottom: 6px;
}
.company-list-more-btn:hover {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #7A0000;
}
/* 4件目以降を隠すクラス */
.company-card-hidden {
    display: none;
}
/* 業者一覧セクション - レスポンシブ対応 */
@media (max-width: 768px) {
    .company-list-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .company-list-btn {
        padding: 14px 16px;
        min-height: 60px;
    }
    .company-list-btn .btn-text {
        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 {
        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: 125px;
    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: #0099EB;
    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 rgb(1, 114, 183);
}
.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;
	margin-bottom: 70px;
}
.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: 5px;
        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: 365px;
    }
    .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;
}
/* 業者一覧セクション レスポンシブ */
@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 Archive & Single Page
   ========================================================================== */
.area-column-archive,
.area-column-single {
    background-color: #FFF;
    padding-bottom: 60px;
}
.area-column-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Breadcrumb */
.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;
}
/* Search Result Header */
.search-result-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
}
.search-result-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}
.search-result-count {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}
.no-results-message {
    text-align: center;
    padding: 60px 20px;
}
.no-results-message h2 {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}
.no-results-message p {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}
/* Content Wrapper */
.area-column-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.area-column-main {
    flex: 1;
    width: 100% !important;
}
/* ==========================================================================
   Area Column Grid (Archive Page)
   ========================================================================== */
.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;
}
/* Pagination */
.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 {
    background: #0A3077;
    color: #FFF;
    border-color: #0A3077;
    opacity: 1;
}
.area-column-pagination .page-numbers.current {
    background: #0A3077;
    color: #FFF;
    border-color: #0A3077;
}
.no-posts-message {
    text-align: center;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    color: #666;
    padding: 60px 20px;
}
/* ==========================================================================
   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: #0A3077;
    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: #0A3077;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0A3077;
}
.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: #0A3077;
    text-decoration: underline;
}
.article-content a:hover {
    opacity: 0.7;
}
.article-content blockquote {
    background: #F5F5F5;
    border-left: 4px solid #0A3077;
    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 */
.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;
}
/* ==========================================================================
   Useful Column Section (Top Page)
   ========================================================================== */

.useful-column-section {
    padding: 60px 0;
    background-color: #fff;
    width: 100%;
}

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

/* 1. タイトル */
.useful-column-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* 2. グリッド：4列に強制する */
.useful-column-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* 👈★ここが1列になるのを防ぐ */
    gap: 20px !important;
    margin-bottom: 50px !important;
}

/* 3. カード単体：緑の浮いた影を作る */
.area-column-card {
    background: #fff;
    position: relative;
    /* 👈★ポイント：緑の「浮いた」影（ボカシなし） */
    box-shadow: 8px 8px 0px rgba(0, 166, 81, 1) !important;
    border: 1px solid #eee;
    transition: transform 0.2s;
}

.area-column-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0px rgba(0, 166, 81, 1) !important;
}

.area-column-card-image {
    width: 100% !important;
    height: 160px !important; 
    overflow: hidden;
}
.area-column-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.area-column-card-content {
    padding: 10px;
}
.area-column-card-title {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.4;
}
.area-column-card-date {
    font-size: 11px;
    color: #888;
}
/* =========================================
   「記事一覧を見る」ボタン（四角・白ベース）
========================================= */
.useful-column-more-wrapper {
    text-align: center;
}

.useful-column-more-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: #fff !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
    padding: 10px 40px !important;
    border-radius: 4px !important; /* 👈★四角くする */
    text-decoration: none !important;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
}

/* ボタン内の丸い矢印アイコンをカンプに寄せる */
.useful-column-more-btn .btn-icon svg circle {
    fill: #f5f5f5 !important;
}
.useful-column-more-btn .btn-icon svg path {
    stroke: #999 !important;
}   
@media screen and (max-width: 768px) {
    /* 1. タイトルのサイズ調整 */
    .useful-column-title {
        font-size: 20px !important;
        margin-bottom: 25px !important;
    }
    .useful-column-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 12px !important;
        margin-bottom: 30px !important;
        padding: 0 10px !important; 
    }
    .area-column-card {
        box-shadow: 5px 5px 0px rgba(0, 166, 81, 1) !important;
    }
    .area-column-card-image {
        height: 100px !important;
    }
    .area-column-card-title {
        font-size: 11px !important;
        height: 2.8em !important;
        margin-bottom: 5px !important;
    }
    .area-column-card-date {
        font-size: 9px !important;
    }
    .useful-column-more-wrapper {
        margin-top: 20px !important;
    }
    .useful-column-more-btn {
        width: 80% !important; 
        max-width: 260px !important;
        padding: 10px 0 !important;
        font-size: 13px !important;
    }
}


/* ==========================================================================
   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: #0099EB;
        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: #0099EB;
        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: #0099EB;
        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: #804EA2;
        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;
    }
    
    /* ==========================================================================
       Points Section - Tablet
       ========================================================================== */
    /* POINTカード - 円形バッジスタイル */
    .point-number {
        width: 85px;
        height: 85px;
        font-size: 28px;
        top: -15px;
        left: -15px;
    }
    .point-number .point-label {
        font-size: 16px;
    }
    .point-number br {
        display: none;
    }
    /* ==========================================================================
       Company Introduction - Tablet (スマホ版と同じデザイン)
       ========================================================================== */
    /* 右サイドバーを非表示 */
    .company-intro-sidebar {
        display: none !important;
    }
    /* 会社紹介ラッパーを1カラムに */
    .company-introduction-wrapper {
        flex-direction: column;
    }
    .company-intro-main {
        width: 100%;
        max-width: 100%;
    }
    /* 会社ヘッダーセクション - スマホ版スタイル */
    .company-header-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 15px 10px;
        /* 最小限の余白 */
    }
    /* スマホ専用タイトル画像を表示 */
    .company-title-sp-image {
        display: block;
        width: 100%;
        height: auto;
    }
    /* COMPANY 01のPC用要素をスマホでは非表示 */
    .company-detail-card:first-of-type .company-number-badge,
    .company-detail-card:first-of-type .company-title-group {
        display: none;
    }
    /* COMPANY 02のPC用要素をスマホでは非表示 */
    .company-detail-card:nth-of-type(2) .company-number-badge,
    .company-detail-card:nth-of-type(2) .company-title-group {
        display: none !important;
    }
    .company-title-group {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .company-title-line-1 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    .company-title-line-2,
    .company-title-line-3 {
        text-align: center;
    }
    .company-subtitle-1 {
        font-size: 18px;
        text-align: center;
    }
    .company-subtitle-2 {
        font-size: 24px;
        text-align: center;
    }
    .shonan-title {
        font-size: 32px !important;
    }
    .title-normal {
        font-size: 18px !important;
    }
    .local-business-badge span {
        font-size: 24px !important;
        width: 32px !important;
        height: 32px !important;
    }
    /* 会社概要セクション - 1カラム、コンテンツ幅に合わせる */
    .company-overview-section {
        padding: 30px 20px;
    }
    .overview-title {
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px;
        width: calc(100% + 40px);
    }
    .overview-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .overview-table-wrapper {
        width: 100%;
        max-width: 100%;
    }
    .overview-map-wrapper {
        width: 100%;
        max-width: 100%;
    }
    .overview-map-wrapper iframe {
        width: 100%;
        height: 300px;
    }
    .company-cta-buttons {
        justify-content: center;
        width: 100%;
    }
    .company-cta-buttons .company-btn {
        width: 100%;
        max-width: 400px;
    }
    /* 会社名タイトルを中央揃え（responsive.cssで上書き可能に） */
    .company-name-section {
        text-align: center;
    }
    .company-name-large {
        text-align: center;
    }
    
    /* ==========================================================================
       Result Cards - Tablet (タイトルと説明を表示)
       ========================================================================== */
    .results-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 20px;
        justify-content: center;
    }
    .result-card {
        flex: 0 0 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }
    .result-card-content {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 8px;
    }
    .result-card-title {
        display: inline-block !important;
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 0;
        line-height: 1;
        padding: 4px 8px;
    }
    .result-card-source {
        display: block !important;
        font-size: 11px;
        color: #000;
        align-self: flex-end;
    }
    .result-image-wrapper::before {
        top: 8px;
        left: 8px;
        height: calc(100% - 4px);
    }
    .strength-image-wrapper::before {
        top: 8px;
        left: 8px;
        height: calc(100% - 4px);
    }
}
/* WordPress管理バー対応 - モバイル（782px以下） */
@media (max-width: 782px) {
    body.admin-bar .hamburger-btn {
        top: 66px;
        /* admin-bar(46px) + top-bar(20px) */
    }
    body.admin-bar .mobile-menu-close {
        top: 66px;
        /* admin-bar(46px) + top-bar(20px) */
    }
    body.admin-bar .mobile-menu {
        top: 66px;
        /* admin-bar(46px) + top-bar(20px) */
        height: calc(100vh - 66px);
    }
}
/* ==========================================================================
   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;
    }
    /* ==========================================================================
       Section Titles - SP Responsive
       ========================================================================== */
    /* おすすめリフォーム業者セクション */
    .recommended-companies .section-title-jp {
        width: auto;
        max-width: 100%;
        height: auto;
        font-size: 20px;
        padding: 10px 15px;
        line-height: 1.4;
    }
    .recommended-companies .section-title-en {
        font-size: 18px !important;
    }
    /* おすすめリフォーム業者セクション - 下余白調整 */
    .recommended-companies {
        margin-bottom: 0;
        padding-bottom: 50px;
        padding: 25px 0;
    }
    /* よくあるお悩みセクション */
    .problems-section {
        padding-top: 25px;
    }
    .problems-header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 0;
        margin-bottom: 15px;
    }
    /* スマホ用タイトル画像を表示 */
    .problems-title-sp-image {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
    }
    /* PC用テキストをスマホでは非表示 */
    .problems-title-pc {
        display: none !important;
    }
    /* アイコンをスマホでは非表示 */
    .problems-header .danger-icon {
        display: none;
    }
    .problems-title-wrapper {
        align-items: flex-start;
        text-align: left;
        flex: 1;
    }
    .problems-main-title {
        font-size: 17px;
        text-align: left;
        white-space: nowrap;
    }
    .problems-main-title .title-green,
    .problems-main-title .title-yellow {
        width: auto;
        height: auto;
        font-size: 17px;
        padding: 3px 6px;
    }
    .problems-subtitle {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .problems-subtitle .subtitle-normal {
        font-size: 15px;
    }
    .problems-subtitle .char-with-dot::before {
        width: 5px;
        height: 5px;
        top: -8px;
    }
    .problems-subtitle .subtitle-highlight {
        font-size: 17px;
        height: auto;
        padding: 2px 6px;
    }
    .danger-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    /* メリット・デメリット比較セクション */
    .comparison-intro {
        gap: 10px;
    }
    .intro-line {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 5px;
    }
    .intro-line-1 {
        flex-wrap: nowrap;
    }
    .intro-line-2 {
        flex-wrap: nowrap;
    }
    .text-small-work {
        font-size: 20px;
        padding: 1px 4px;
    }
    .text-easy-request {
        font-size: 14px;
    }
    .text-local {
        gap: 2px;
    }
    .text-local .char-bg {
        font-size: 20px;
        width: auto;
        height: auto;
        padding: 3px 5px;
    }
    .question-mark {
        font-size: 20px;
    }
    .hake-icon {
        height: 35px;
    }
    .text-rich-experience {
        font-size: 18px;
    }
    .text-major {
        font-size: 24px;
        padding: 2px 6px;
    }
    .comparison-header {
        margin-bottom: 20px;
    }
    .section-title-main {
        font-size: 22px;
        flex-wrap: wrap;
        white-space: normal;
        text-align: center;
        display: block;
    }
    .section-title-sub {
        font-size: 32px;
        display: block;
    }
    
    .company-card {
        width: 100%;
    }
    .company-btn {
        width: 100%;
    }
    .company-btn.btn-consult,
    .company-btn.btn-review {
        width: 100%;
    }
    /* お悩みグリッド */
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .problem-item {
        min-height: 280px;
    }
    /* アドバイスボックス */
    .advice-box {
        padding: 40px 20px 25px;
        margin-bottom: 100px;
    }
    .advice-text {
        font-size: 14px;
    }
    .advice-arrow {
        width: 150px;
        bottom: -75px;
    }
    /* 比較テーブル */
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    .comparison-table {
        min-width: 600px;
    }
    /* スマホでPC用バナーを非表示 */
    .comparison-banner-link {
        display: none;
    }
   
}
/* ==========================================================================
   Wide Monitor Support (1920px and above)
   ========================================================================== */
@media (min-width: 1920px) {
    /* ヘッダー・フッターのコンテナを広げる */
    .header-container,
    .footer-container {
        max-width: 1600px;
    }
    /* 各セクションの内部コンテナを広げる */
    .index-container,
    .recommended-companies .section-header,
    .recommended-companies .companies-grid-wrapper,
    .problems-section .problems-header,
    .problems-section .problems-grid,
    .problems-section .advice-box,
    .comparison-section .comparison-header,
    .comparison-section .comparison-table-wrapper,
    .comparison-section .comparison-note,
    .comparison-section .advice-box,
    .comparison-section .comparison-banner-link,
    .points-section .section-title-en,
    .points-section .section-title-wrapper,
    .points-section .points-grid,
    .reform-companies-section .companies-header-green,
    .reform-companies-section .companies-catch,
    .reform-companies-section .companies-main-title-wrapper,
    .faq-section .faq-container,
    .company-list-container,
    .useful-column-container {
        max-width: 1400px;
    }
    /* 会社紹介セクションを広げる */
    .company-introduction-wrapper {
        max-width: 1600px;
    }
    /* 会社紹介のサイドバーを少し広げる */
    .company-intro-sidebar {
        width: 380px;
    }
    /* グリッドアイテムの調整 */
    .companies-grid {
        gap: 50px 40px;
    }
    .problems-grid,
    .points-grid {
        gap: 40px;
    }
    /* ヒーローセクションの調整 */
    .hero-content {
        height: 800px;
    }
    .hero-icon {
        max-width: 800px;
    }
    .hero-cta {
        max-width: 800px;
    }
}
/* ==========================================================================
   Ultra Wide Monitor Support (2560px and above)
   ========================================================================== */
@media (min-width: 2560px) {
    /* 超ワイドモニター向けの調整 */
    .header-container,
    .footer-container {
        max-width: 1800px;
    }
    .index-container,
    .recommended-companies .section-header,
    .recommended-companies .companies-grid-wrapper,
    .problems-section .problems-header,
    .problems-section .problems-grid,
    .problems-section .advice-box,
    .comparison-section .comparison-header,
    .comparison-section .comparison-table-wrapper,
    .comparison-section .comparison-note,
    .comparison-section .advice-box,
    .comparison-section .comparison-banner-link,
    .points-section .section-title-en,
    .points-section .section-title-wrapper,
    .points-section .points-grid,
    .reform-companies-section .companies-header-green,
    .reform-companies-section .companies-catch,
    .reform-companies-section .companies-main-title-wrapper,
    .faq-section .faq-container,
    .company-list-container,
    .useful-column-container {
        max-width: 1600px;
    }
    .company-introduction-wrapper {
        max-width: 1800px;
    }
}
/* ==========================================================================
   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: #0099EB;
    padding: 20px 30px;
    margin: 0;
    text-align: center;
    border-radius: 4px;
}
/* Introduction */
.policy-intro {
    background: #F8F9FA;
    border-left: 4px solid #0099EB;
    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;
        }
    }
}
/* ==========================================================================
   業者一覧アーカイブページ (リスト型・サムネイルなしデザイン)(ok)
   ========================================================================== */
.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);
    margin: 0 100px;
}
.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 .company-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 .company-btn:hover {
    opacity: 0.8;
}
.company-archive-btn-area .btn-arrow {
    margin-left: 10px;
    font-size: 10px;
}
@media screen and (max-width: 768px) {
    .company-archive-item {
        margin: 0 10px !important; 
        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 .company-btn {
        width: 100% !important; 
        justify-content: center !important;
        padding: 12px 0 !important;
    }
}
/* ==========================================================================
   厳選3選セクション（FV下）
   ========================================================================== */
@media screen and (max-width: 768px) {
    .company-list-header {
        margin-bottom: 30px !important;
        padding: 0 10px !important;
    }
    .company-list-section {
        margin: 20px auto !important;
    }
    .company-list-title {
        font-size: clamp(12px, 3.4vw, 16px) !important;
        line-height: 1.6 !important;
        letter-spacing: -0.05em !important;
        text-align: center !important;
        margin: 0 0 20px 0 !important;
        font-weight: bold !important;
    }
    .relative-wrap-red {
        position: relative !important;
        display: inline !important;
        white-space: nowrap !important;
    }
    .title-accessory-red {
        position: absolute !important;
        top: -12px !important;
        right: -20px !important;
        width: 30px !important;
        max-width: none !important;
        z-index: 2 !important;
    }
    .company-list-container {
        padding: 0 15px !important;
    }
    .company-list-grid {
        display: block !important;
        width: 100% !important;
    }
    .company-list-card {
        display: block !important;
        width: 100% !important;
        background-color: #fff !important;
        border-radius: 8px !important;
        padding: 15px !important;
        margin-bottom: 25px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
        box-sizing: border-box !important;
    }
    .company-list-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        background-color: #333 !important;
        padding: 15px !important;
        border-radius: 8px !important;
        text-decoration: none !important;
        margin-bottom: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .company-list-btn .btn-text-wrapper {
        text-align: center !important;
        width: 100% !important;
    }
    .company-list-btn .btn-text {
        writing-mode: horizontal-tb !important;
        -webkit-writing-mode: horizontal-tb !important;
        color: #fff !important;
        margin: 0 !important;
        word-break: keep-all !important;
        line-height: 1.4 !important;
    }
    .company-list-btn .btn-text-line1 {
        font-size: 15px !important;
        font-weight: bold !important;
    }
    .company-list-btn .btn-text-line2 {
        font-size: 11px !important;
        margin-top: 2px !important;
    }
    .company-list-btn .btn-arrow {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 24px !important;
        height: 24px !important;
    }
    .company-list-btn .btn-arrow svg {
        width: 100% !important;
        height: 100% !important;
    }
    .company-list-description {
        font-size: 13px !important;
        line-height: 1.6 !important;
        color: #333 !important;
        margin-bottom: 15px !important;
    }
    .company-list-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    .company-info-item {
        display: flex !important;
        align-items: flex-start !important;
    }
    .info-label {
        background-color: #E6F2A5 !important;
        border: 1px solid #333 !important;
        color: #333 !important;
        font-size: 11px !important;
        font-weight: bold !important;
        padding: 3px 8px !important;
        margin-right: 10px !important;
        white-space: nowrap !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }
    .info-value {
        font-size: 12px !important;
        color: #333 !important;
        line-height: 1.4 !important;
        padding-top: 2px !important;
    }
    /* ==========================================================================
       工務店一覧：「続きを見る」ボタン ＆ 4件目以降の非表示設定
       ========================================================================== */
    .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: #0099EB; 
    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: #007abc;
    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;
    }
    
}
/* ==========================================================================
   Area Column Archive & Single Page
   ========================================================================== */
.area-column-archive,
.area-column-single {
    background-color: #FFF;
    padding-bottom: 60px;
}
.area-column-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Breadcrumb */
.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;
}
/* Search Result Header */
.search-result-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
}
.search-result-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}
.search-result-count {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}
.no-results-message {
    text-align: center;
    padding: 60px 20px;
}
.no-results-message h2 {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}
.no-results-message p {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}
/* Content Wrapper */
.area-column-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.area-column-main {
    flex: 1;
    min-width: 0;
}
/* ==========================================================================
   Area Column Grid (Archive Page)
   ========================================================================== */
.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;
}
/* Pagination */
.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 {
    background: #0A3077;
    color: #FFF;
    border-color: #0A3077;
    opacity: 1;
}
.area-column-pagination .page-numbers.current {
    background: #0A3077;
    color: #FFF;
    border-color: #0A3077;
}
.no-posts-message {
    text-align: center;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    color: #666;
    padding: 60px 20px;
}
/* ==========================================================================
   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: #0A3077;
    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: #0A3077;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0A3077;
}
.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: #0A3077;
    text-decoration: underline;
}
.article-content a:hover {
    opacity: 0.7;
}
.article-content blockquote {
    background: #F5F5F5;
    border-left: 4px solid #0A3077;
    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 */
.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:  #0099EB;
        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: #0099EB;
        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: #0099EB;
        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 */
.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 #0099EB !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: #333333; 
    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 #0099EB; 
}
.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: #0099EB; 
    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: #0099EB;
    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: #0099EB; 
    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 #0099EB;
}
.sitemap-page-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0A3077;
    margin: 0;
}
.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: #0A3077;
    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: #0A3077;
    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;
    }
}
@media (min-width: 769px) {
    /* 1. 邪魔な inline style を強制的に上書きして横並びを復活！ */
    .area-column-content-wrapper {
        display: flex !important;
        max-width: 1200px !important; /* 900pxの制限を解除して広くする */
        margin: 0 auto !important;
        gap: 40px !important;
        align-items: flex-start !important;
    }

    /* 2. メインコンテンツの幅を調整 */
    .area-column-main {
        width: calc(100% - 340px) !important; /* サイドバーと余白の分を引く */
        max-width: 100% !important;
    }

    /* 3. サイドバーの幅を確保 */
    .area-column-sidebar {
        width: 300px !important;
        flex-shrink: 0 !important; /* サイドバーが潰れるのを防ぐ */
    }
}