/* ==========================================================================
   1. 変数 & 基本スタイル
   ========================================================================== */
:root {
    --color-accent: #27AEFF;
    --color-text-dark: #333333;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-bg-light: #F5F5F5;
    --color-bg-dark: #2C2C2C;
    --color-border: #E0E0E0;
    --color-warning: #FF6B6B;
    --color-green-title: #7BA428;
    --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: #8DA24E;
    color: #FFFFFF;
    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: 51px;
    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: 112px;
}
.header-sp-only {
    display: none;
}
/* ====================================================
   スマホ画像・表示セット（緑色指定 #7FAC74）
   ==================================================== */
.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: #7FAC74 !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%;
    height: 700px;
    overflow: hidden;
}
.hero-container::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px 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;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 40px;
    height: 100%;
}
.hero-icon {
    max-width: 707.25px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeSlideDown 0.8s ease-out 0.3s forwards;
}
.hero-cta-wrapper {
    align-self: center;
    width: 100%;
    max-width: 760px;
    margin-top: 10px;
    animation: fadeSlideUp 0.8s ease-out 0.8s forwards;
    transition: transform 0.3s ease;
}
.hero-cta-wrapper img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}
.hero-cta:hover {
    transform: scale(1.05);
}
.hero-title {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.5;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: left;
    line-height: 1.4;
    margin-bottom: 30px;
}
.sparkle-img {
    display: inline-block;
    width: 50px;
    height: auto;
    vertical-align: top;
    margin-left: 10px;
    margin-top: 5px;
}
.text-green {
    color: #D7FF74;
    font-size: 1.6em;
    margin-right: 5px;
}
.hero-area-label {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-weight: 800;
    font-size: 30px;
    padding: 5px 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.hero-sub-copy {
    text-align: left;
    width: 100%;
    margin-bottom: 50px;
}
.hero-sub-copy span {
    display: inline-block;
    background-color: #333;
    color: #E5ECED;
    padding: 5px 10px;
    font-size: 34px;
    font-weight: bold;
    padding: 5px 40px;
}
/* スマホ用 */
@media screen and (max-width: 767px) {
    .hero-container {
        position: relative;
        height: auto;
        min-height: 600px;
    }
    .hero-bg {
        display: block !important;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        opacity: 1 !important;
    }
    .hero-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 2;
    }
    .hero-bg img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .hero-content {
        background-image: none !important;
        background: none !important;
        position: relative !important;
        z-index: 3 !important;
        align-items: center;
        justify-content: center;
        padding-top: 120px;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
        height: 100%;
    }
    .hero-container::after {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-width: 1px;
    }
    .hero-title {
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 20px;
        text-align: center;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }
    .text-green {
        font-size: 1.2em;
        margin-right: 0;
        display: inline-block;
    }
    .sparkle-img {
        width: 24px;
        margin-left: 5px;
        vertical-align: top;
    }
    .hero-sub-copy {
        font-size: 16px;
        padding: 8px 15px;
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
        display: inline-block;
    }
    .hero-sub-copy span {
        font-size: 15px;
        padding: 10px 10px;
        line-height: 1.5;
        display: inline-block;
        width: auto;
        max-width: 100%;
    }
    .hero-area-label {
        font-size: 16px;
        letter-spacing: 1px;
        padding: 8px 25px;
        margin-bottom: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    .hero-cta-wrapper {
        margin-top: 10px;
        max-width: 90%;
    }
}
/* ==========================================================================
   Main Content
   ========================================================================== */
.main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ==========================================================================
   INDEX Section
   ========================================================================== */
.content-index {
    background-color: var(--color-white);
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
    padding: 0;
}
.index-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    border: 2px solid #000;
    border-radius: 0;
    overflow: hidden;
}
.index-item {
    flex: 1;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 2px solid #000;
    position: relative;
    background-color: var(--color-white);
    transition: background-color 0.3s ease;
    min-height: 120px;
}
.index-item:last-child {
    border-right: none;
}
.index-item:hover {
    background-color: #f9f9f9;
}
.index-title-item {
    flex-direction: column;
    padding: 20px 15px;
}
.index-title {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: bold;
    color: var(--color-text-dark);
    margin: 0;
    text-align: center;
    z-index: 2;
    position: relative;
}
.index-item span {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-text-dark);
    z-index: 2;
    position: relative;
}
.orange-bar {
    background-color: #D79748;
    position: absolute;
    animation-fill-mode: both;
}
.orange-bar-top {
    width: 40%;
    height: 6px;
    top: 8px;
    left: 10px;
    animation: slideInFromLeft 0.6s ease-out;
}
.orange-bar-bottom {
    width: 40%;
    height: 6px;
    bottom: 8px;
    right: 10px;
    animation: slideInFromRight 0.6s ease-out 0.3s;
}
.orange-bar-corner {
    width: 30px;
    height: 6px;
    bottom: 8px;
    right: 8px;
    animation: scaleIn 0.5s ease-out 0.5s;
    transform-origin: right center;
}
.index-square,
.index-arrow {
    display: none;
}
@keyframes slideInFromLeft {
    0% {
        width: 0;
        left: 10px;
    }
    100% {
        width: 40%;
        left: 10px;
    }
}
@keyframes slideInFromRight {
    0% {
        width: 0;
        right: 10px;
    }
    100% {
        width: 40%;
        right: 10px;
    }
}
@keyframes scaleIn {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}
/* ==========================================================================
   Recommended Companies Section
   ========================================================================== */

/* PC用 今すぐCHECKインジケーター */
.check-indicator-pc {
    position: relative;
    left: 0;
    bottom: -1250px;
    width: 100%;
    background: rgba(0, 0, 0, 0.54);
    height: 108px;
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 3px;
    z-index: 0;
    box-sizing: border-box;
}
.check-indicator-pc .check-text {
    color: #575757;
    text-align: center;
    font-family: "IBM Plex Sans Thai", "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 25.295px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.check-indicator-pc .check-text-full {
    color: #FFF;
    text-align: center;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 20.207px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.check-indicator-pc .check-line-arrow {
    width: auto;
    height: 12px;
    margin-top: 3px;
    animation: checkArrowMove 1.5s ease-in-out infinite;
}
@keyframes checkArrowMove {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(8px);
        opacity: 0.5;
    }
}
/* ====================================================
   厳選工務店3選セクション：PC版メインスタイル
   ==================================================== */
.recommended-companies {
    background-image: url('../images/recommended-bg.png');  
    background-size: cover;      
    background-position: center; 
    background-repeat: no-repeat; 
    padding: 100px 0;
    text-align: center;
}
.section-header {
    text-align: center;
}
.title-group {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}
.recommended-companies .area-list {
    background: #E5ECED;
    width: 520px;
    height: 47px;
    line-height: 47px;
    color: #000;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    letter-spacing: 1px;
}
.recommended-companies .section-title {
    color: #E5ECED !important;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif !important;
    font-size: 40px !important;
    font-weight: 600 !important;
    line-height: 1.4;
    display: block;
    letter-spacing: 2px;
    text-align: left !important;
    margin-top: 20px;
}
.text-ivory {
    color: #E6D8B3;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif !important;
    font-size: 1.3em;
    font-style: normal;
    font-weight: 600 !important;
}
.num-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}
.highlight-num {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    transform: translateY(-20px);
    color: #72F730 !important;
    font-size: 100px;
    font-weight: 500 !important;
}
.unit {
    color: #E5ECED;
    font-size: 30px;
    margin-left: -5px;
}
.title-accent {
    position: absolute;
    top: -40px;
    right: -20px;
    width: 65px;
    height: auto;
    z-index: 10;
}
.update-date {
    font-size: 20px;
    color: #E5ECED;
    opacity: 0.8;
    margin-top: 0;
    margin-bottom: 40px;
    text-align: left;
}
.sp-br {
    display: none;
}
.companies-grid-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.scroll-indicator {
    display: none;
}
/* ====================================================
   工務店カード・グリッドレイアウト
   ==================================================== */
.company-card,
.company-card * {
    box-sizing: border-box !important;
}
.companies-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-top: 40px !important;
}
.company-wrapper {
    width: 31% !important;
    min-width: 320px !important;
    max-width: 400px !important;
    margin-bottom: 40px !important;
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    flex-shrink: 1 !important;
}
.company-card {
    background-color: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 500px !important;
    padding: 0 !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 10 !important;
    border: none !important;
    transition: all 0.3s ease;
}
.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
/* ====================================================
   各パーツのスタイル
   ==================================================== */
.company-tag {
    width: 300px !important;
    height: 38px !important;
    border-radius: 24px !important;
    border: 1px solid #000 !important;
    background: #D9D9D9 !important;
    color: #000 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 36px !important;
    text-align: center !important;
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 1000 !important;
}
.company-catchcopy {
    background-color: #6B9C3C !important;
    color: #ffffff !important;
    border-radius: 16px 16px 0 0 !important;
    width: 100% !important;
    margin: 0 !important;
    height: 150px !important;
    min-height: 150px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 45px !important;
    padding-bottom: 15px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    text-align: center !important;
}
.company-info {
    width: 100% !important;
    padding: 0 20px !important;
    margin: 0 !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}
.company-header {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 110px !important;
    position: relative !important;
    padding: 0 35px !important; 
    z-index: 1 !important;
    box-sizing: border-box !important;
}
.company-name {
    display: inline-block !important; 
    position: relative !important;    
    font-size: 18px !important;       
    font-weight: bold !important;
    line-height: 1.4 !important;
    z-index: 2 !important;            
    text-align: center !important;
    white-space: nowrap !important;   
}
.company-name::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: -40px !important; 
    transform: translateY(-50%) !important;
    width: 50px !important;  
    height: 70px !important; 
    background-image: url('../images/crown-left.png') !important;
    
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center right !important;
    z-index: -1 !important;
}
.company-name::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    right: -40px !important; 
    transform: translateY(-50%) !important;
    width: 50px !important;  
    height: 70px !important; 
    background-image: url('../images/crown-right.png') !important;
    
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center left !important;
    z-index: -1 !important;
}
@media screen and (max-width: 768px) {
    .company-header {
        height: 90px !important;
        padding: 0 25px !important; 
    }
    .company-name {
        font-size: 15px !important; 
    }
    .company-name::before {
        width: 50px !important;
        height: 70px !important;
        left: -40px !important;
    }
        .company-name::after {
        width: 50px !important;
        height: 70px !important;
        right: -40px !important;
    }
}
.company-image-wrapper {
    width: 100% !important;
    height: 220px !important;
    overflow: hidden !important;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
}
.company-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}
.company-feature-wrapper {
    width: 100% !important;
    min-height: 90px !important;
    padding: 0 5px !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.company-feature {
    color: #000 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin: 0 !important;
    word-break: auto-phrase !important;
    overflow-wrap: break-word !important;
}
/* ====================================================
   ボタンエリア
   ==================================================== */
.card-buttons {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 15px 20px 25px 20px !important;
    margin-top: auto !important;
    background: #fff !important;
    border-radius: 0 0 16px 16px !important;
}
.company-btn span {
    display: inline-block !important;
    white-space: nowrap !important;
    margin-right: 4px !important;
    letter-spacing: -0.02em !important;
}
.company-btn:active {
    transform: translateY(4px) !important;
    box-shadow: none !important;
}
.company-btn::before,
.company-btn::after {
    display: none !important;
}
.company-btn.btn-primary,
.company-btn.btn-consult {
    background-color: #89C9D9 !important;
    color: #fff !important;
    border-bottom: 4px solid #6fa8b5 !important;
}
.company-btn.btn-secondary,
.company-btn.btn-review {
    background-color: #F2E55C !important;
    color: #333 !important;
    border-bottom: 4px solid #d9cd52 !important;
    font-size: 14px !important;
}
.arrow-icon {
    width: 12px !important;
    height: auto !important;
}
/* ==========================================================================
   difference maker section
   ========================================================================== */
.comparison {
    background-image: url('../images/house-bg01.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    position: relative;
    padding: 0 0 10px;
}
.comparison__inner {
    max-width: 1300px;
    margin: 0 auto;
}
.comparison__header {
    text-align: center;
    margin-bottom: 40px;
}
.comparison__title-bg {
    display: inline-block;
    background-color: #333;
    color: #E5ECED;
    padding: 8px 10px;
    font-size: 40px;
    font-weight: bold;
    margin-top: 30px;
    letter-spacing: 1px;
}
.comparison__subtitle {
    font-family: "Cormorant Infant", serif;
    font-size: 27.73px;
    font-weight: 600;
    margin-top: 15px;
    color: #333;
    letter-spacing: 0.05em;
}
.comparison__image-wrapper {
    position: relative;
    width: 100%;
    margin-top: 40px;
}
.comparison__image {
    width: 55%;
    height: auto;
    border-radius: 20px;
    display: block;
    transition: transform 0.3s ease;
}
.comparison__image:hover {
    transform: scale(1.05);
}
.comparison__text-box {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 55%;
    background: #fff;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    z-index: 2;
}
.comparison__text-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}
/* ==========================================================================
   Features Section (メリット・デメリット比較)
   ========================================================================== */
.features {
    background: url('../images/house_bg02.jpg') no-repeat center center/cover;
    position: relative;
    padding: 100px 0;
    overflow-x: hidden;
}
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.features__inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.features__block {
    margin-bottom: 100px;
}
.features__block:last-child {
    margin-bottom: 0;
}
.features__main-title {
    background-color: #8DB37E;
    border: 1px solid #333;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    padding: 15px 40px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}
.features__main-title::before {
    content: "";
    position: absolute;
    top: 8px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 1px solid #333;
    z-index: -1;
}
.features__main-title::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    background-image: url('../images/hero-accessory.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 15;
    top: -2px;
}
.features__block--hm {
    text-align: left;
}
.features__block--hm .features__main-title {
    margin-left: calc(50% - 50vw);
    width: calc(50vw - 50% + 420px);
    padding-left: calc(50vw - 50% + 20px);
    padding-right: 20px;
    text-align: center;
}
.features__block--hm .features__main-title::before {
    left: 8px;
}
.features__block--hm .features__main-title::after {
    right: 15px;
}
.features__block--km {
    text-align: right;
}
.features__block--km .features__main-title {
    margin-right: calc(50% - 50vw);
    width: calc(50vw - 50% + 420px);
    padding-right: calc(50vw - 50% + 20px);
    padding-left: 20px;
    text-align: left;
}
.features__block--km .features__main-title::before {
    right: 8px;
}
.features__cards {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}
.features__card {
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 30px;
    width: 48%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.features__image-unit {
    position: relative;
    margin-bottom: 35px;
}
.features__image-unit img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    border: 1px solid #eee;
}
.features__label {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 35px;
    border-radius: 50px;
    font-weight: bold;
    color: #333;
    border: 1px solid #333;
    white-space: nowrap;
    font-size: 16px;
    z-index: 5;
}
.features__label--merit {
    background-color: #B4EB9C;
}
.features__label--demerit {
    background-color: #A8D5FF;
}
.features__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.features__list li {
    font-family: 'Hiragino Sans', sans-serif;
    font-weight: bold;
    position: relative;
    padding-left: 1.4em;
    text-indent: -1.4em;
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}
/* =================================== 
   Points Section (業者選びのポイント)
   ===================================  */
.points-section {
    margin-bottom: 10px;
    width: 100%;
    padding: 0 20px;
}
.points-section__inner {
    max-width: 1000px;
    margin: 0 auto;
}
.points-cta {
    background-color: #fff;
    border: 3px solid #1B1B1B;
    padding: 35px 50px;
    margin: 20px auto 40px;
    max-width: 950px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.points-cta::before {
    content: "";
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 20px solid #1B1B1B;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
}
.points-cta::after {
    content: "";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 18px solid #fff;
    border-left: 31px solid transparent;
    border-right: 31px solid transparent;
}
.points-cta__label {
    font-weight: bold;
    font-size: 26px;
    color: #1B1B1B;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 45px;
    margin-right: 45px;
    border-right: 2px dotted #ccc;
    letter-spacing: 0.05em;
}
.icon-check-img {
    width: 34px;
    height: auto;
    margin-right: 12px;
}
.points-cta__content {
    text-align: left;
}
.points-cta__text {
    font-size: 29px;
    font-weight: 900;
    line-height: 1.6;
    margin: 0;
    color: #1B1B1B;
    letter-spacing: 0.04em;
}
.underline-black {
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-underline-offset: 5px;
    text-decoration-color: #D9A333;
}
.points-cta__highlight {
    color: #910001;
    font-size: 28px;
    display: inline-block;
    margin: 0 4px;
}
.points-banner {
    margin-bottom: 40px;
    text-align: center;
}
.points-banner img {
    width: 100%;
    max-width: 900px;
    height: auto;
}
.points-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}
.points-header__en {
    display: block;
    font-family: var(--font-en, sans-serif);
    font-size: 60px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #d4d4d4;
    line-height: 1;
    margin-bottom: -px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.05em;
}
.points-header__jp {
    position: relative;
    z-index: 2;
    font-size: 50px;
    font-weight: bold;
    line-height: 1.6;
    margin-top: 10px;
    color: #333;
}
.points-header__marker {
    background: linear-gradient(transparent 60%, #C2E5A0 60%);
    padding-bottom: 2px;
}
.points-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.point-card {
    position: relative;
    display: flex;
    flex-direction: column;
}
.point-card__head {
    background-color: #8DB37E;
    color: #fff;
    padding: 25px 40px;
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    gap: 25px;
}
.point-card__title {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin: 0;
}
.point-number {
    color: #D4FF00;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 2px solid #fff;
}
.point-number::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 8px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}
.point-text {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.05em;
}
.point-card__icon {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.point-card__icon img {
    width: 80px;
    height: auto;
}
.point-card__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
}
.point-card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 90px;
}
.point-card__image {
    margin: 0;
    width: 65%;
    position: relative;
    z-index: 1;
}
.point-card__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
}
.point-card__image img:hover {
    transform: scale(1.05);
}
.point-card__text-box {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px 40px;
    width: 60%;
    position: absolute;
    bottom: -90px;
    z-index: 5;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.point-card__text-box p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    font-weight: 600;
}
.point-card--01 .point-card__images {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 30px;
}
.point-card--01 .point-card1__image-large {
    width: 58%;
    margin: 0;
}
.point-card--01 .point-card1__image-small {
    width: 40%;
    margin: 0;
}
.point-card--01 .point-card1__image-large img,
.point-card--01 .point-card1__image-small img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}
.point-card--01 .point-card1__image-large img:hover,
.point-card--01 .point-card1__image-small img:hover {
    transform: scale(1.05);
}
.point-card--01 .point-card__text-box {
    left: 20px;
}
.point-card--02 .point-card__body {
    align-items: flex-start;
}
.point-card--02 .point-card__text-box {
    right: 20px;
}

.point-card--02 .point-card__images {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 30px;
}
.point-card--02 .point-card2__image-large {
    width: 58%;
    margin: 0;
}
.point-card--02 .point-card2__image-small {
    width: 40%;
    margin: 0;
}
.point-card--02 .point-card2__image-large img,
.point-card--02 .point-card2__image-small img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}
.point-card--02 .point-card2__image-large img:hover,
.point-card--02 .point-card2__image-small img:hover {
    transform: scale(1.05);
}
.point-card--03 .point-card__images {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 30px;
}
.point-card--03 .point-card3__image-large {
    width: 58%;
    margin: 0;
}
.point-card--03 .point-card3__image-small {
    width: 40%;
    margin: 0;
}
.point-card--03 .point-card3__image-large img,
.point-card--03 .point-card3__image-small img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}
.point-card--03 .point-card3__image-large img:hover,
.point-card--03 .point-card3__image-small img:hover {
    transform: scale(1.05);
}
.point-card--03 .point-card__text-box {
    left: 69%;
    transform: translateX(-50%);
    bottom: -50px;
}
/* ==========================================================================
   厳選工務店3選 セクション（大見出し）
   ========================================================================== */
.company-section {
    padding: 0 20px;
    background-color: #fff;
}
.company-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.company-list-header {
    text-align: center;
    margin-bottom: 60px;
    display: block;
}
.company-list-header__area {
    display: inline-block;
    background-color: #9CE999;
    color: #1B1B1B;
    font-size: 28px;
    font-weight: 900;
    padding: 8px 30px;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}
.company-list-header__title {
    font-size: 32px;
    font-weight: 900;
    color: #1B1B1B;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin: 0;
}
.company-list-header__title-large {
    font-size: 40px;
    color: #AA8C3E;
}
.company-list-header__number {
    font-size: 90px;
    color: #AA8C3E;
    font-weight: 800;
    line-height: 1;
    margin: 0 5px 0 10px;
    vertical-align: baseline;
    position: relative;
    top: 5px;
}
.company-list-header__suffix {
    font-size: 42px;
    color: #AA8C3E;
    font-weight: 900;
    vertical-align: baseline;
}
.company-list-header__line-deco {
    width: 100%;
    height: 3px;
    background-color: #1B1B1B;
    margin: 30px auto 0;
    position: relative;
}
company-list-header__line-deco::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 36px solid #1B1B1B;
    border-left: 2px solid transparent;
    border-right: 40px solid transparent;
}
/* ==========================================================================
   会社紹介エリア 詳細パーツ 
   ========================================================================== */
.company-catch-balloon {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 20px 30px;
    margin-bottom: 30px;
    box-shadow: 8px 8px 0px rgba(131, 131, 131, 1);
    text-align: left;
    display: inline-block;
}
.company-catch-balloon p {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.6;
    margin: 0;
    color: #1b1b1b;
}
.text-red {
    color: #910000;
    font-size: 30px;
    font-weight: 900;
}
.company-name-heading {
    margin-bottom: 10px;
    line-height: 2.0;
    text-align: left;
}
.name-line {
    background-color: #D79748;
    color: #fff;
    font-size: 50px;
    font-weight: 900;
    padding: 5px 20px;
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.company-screenshot {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.company-strengths-section {
    background-image: url('../images/section-bg01.png');
    background-repeat: repeat;
    background-size: 1100px auto;
    padding-bottom: 40px;
    border-radius: 0 0 10px 10px;
}
.section-title-green {
    background-color: #8DB37E;
    border: 1px solid #000;
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    padding: 10px 30px;
    margin: 0 0 30px 0;
    display: block;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.05em;
    box-shadow: 8px 8px 0px #E3E3E3;
}
.text-beige {
    color: #F1E2D0;
}
.strength-list-text {
    list-style: none;
    padding: 0 40px;
    margin: 0;
}
.strength-list-text li {
    font-size: 20px;
    line-height: 1.2;
    color: #1b1b1b;
    margin-bottom: 25px;
    padding-left: 1.5em;
    text-indent: -1.5em;
}
.strength-point {
    font-size: 20px;
    font-weight: 900;
    display: block;
    margin-bottom: -10px;
}
/* =========================================================
   共通ボタン設定（形・余白・アニメーションの動き）
   ========================================================= */
.company-btn {
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
    margin-bottom: 6px;
    min-width: 300px;
}
.company-btn:hover {
    transform: translateY(6px);
    box-shadow: none !important;
    margin-bottom: 0px;
    opacity: 0.9;
}
/* =========================================================
   ボタンの色ごとの設定（背景色と影の色）
   ========================================================= */
.btn-red {
    background-color: rgb(160, 0, 0);
    box-shadow: 0px 6px 0px rgb(122, 0, 0);
}
.btn-blue {
    background-color: rgb(0, 77, 145);
    box-shadow: 0px 6px 0px rgb(0, 43, 82);
}
.btn-arrow {
    margin-left: 10px;
    font-size: 12px;
}
.company-overview-section {
    margin-bottom: 10px;
}
.overview-flex-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
}
.overview-left-col {
    width: 55%;
    display: flex;
    flex-direction: column;
}
.overview-right-col {
    width: 45%;
}
.overview-right-col iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 5px;
}
.overview-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.overview-table th, .overview-table td {
    border: 1px solid #ccc;
    padding: 12px 15px;
    font-size: 15px;
    line-height: 1.6;
}
.overview-table th {
    background-color: #EAEAEA;
    width: 30%;
    text-align: center;
    font-weight: bold;
    color: #333;
}
.overview-table td {
    background-color: #fff;
    color: #333;
}
/* ==========================================================================
   口コミ・評判エリア
   ========================================================================== */
.reviews-text-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: stretch;
}
.review-text-card {
    background-color: #fff;
    border: 1px solid #1B1B1B;
    border-radius: 15px;
    padding: 25px 20px;
    width: calc(33.333% - 14px);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.review-text-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}
.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ccc;
}
.review-user-icon {
    width: 45px;
    height: 45px;
    background-color: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-user-details {
    display: flex;
    flex-direction: column;
}
.review-initial {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 3px 0;
    color: #1b1b1b;
}
.review-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}
.review-stars .stars {
    color: #F5A623;
    font-size: 16px;
    letter-spacing: 2px;
}
.review-stars .score {
    font-size: 13px;
    color: #666;
    font-weight: bold;
}
.review-comment {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    flex-grow: 1;
    margin: 0 0 20px 0;
}
.review-source {
    text-align: right;
    font-size: 12px;
    margin: 0;
}
.company-swiper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.company-swiper img {
    width: 100%;
    height: auto;
    display: block;
}
/* ==========================================================================
   リンク・SNSアイコンの装飾
   ========================================================================== */
.screenshot-caption a,
.review-source a {
    color: #666;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}
.screenshot-caption a:hover,
.review-source a:hover {
    opacity: 0.6;
}
.company-sns-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}
.company-sns-icons img {
    width: 45px;
    height: auto;
}
.overview-cta {
    display: flex;
    justify-content: center;
    margin-top: auto;
}
/* ==========================================================================
   施工事例エリア（Swiperスライダー ＆ 青ボタン）
   ========================================================================== */
.company-swiper,
.company-swiper-2,
.company-swiper-3 {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.company-swiper .swiper-slide img,
.company-swiper-2 .swiper-slide img,
.company-swiper-3 .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    display: block;
}
.company-swiper .swiper-button-prev,
.company-swiper .swiper-button-next,
.company-swiper-2 .swiper-button-prev,
.company-swiper-2 .swiper-button-next,
.company-swiper-3 .swiper-button-prev,
.company-swiper-3 .swiper-button-next {
    background-color: rgba(30, 30, 30, 0.85);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
}
.company-swiper .swiper-button-prev::after,
.company-swiper .swiper-button-next::after,
.company-swiper-2 .swiper-button-prev::after,
.company-swiper-2 .swiper-button-next::after,
.company-swiper-3 .swiper-button-prev::after,
.company-swiper-3 .swiper-button-next::after {
    font-size: 16px;
    font-weight: 900;
}
.company-swiper .swiper-pagination,
.company-swiper-2 .swiper-pagination,
.company-swiper-3 .swiper-pagination {
    bottom: 15px !important;
}
.company-swiper .swiper-pagination-bullet,
.company-swiper-2 .swiper-pagination-bullet,
.company-swiper-3 .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.8;
    margin: 0 6px !important;
}
.company-swiper .swiper-pagination-bullet-active,
.company-swiper-2 .swiper-pagination-bullet-active,
.company-swiper-3 .swiper-pagination-bullet-active {
    background-color: #AABC3E;
    opacity: 1;
}
.company-btn.btn-blue {
    background-color: #004D91;
    color: #fff !important;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 16px;
    box-shadow: 0 6px 0 #002B52;
    transition: all 0.2s ease;
    margin-bottom: 6px;
}
.company-btn.btn-blue:hover {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #002B52;
    opacity: 1;
}
/* ==========================================================================
   施工事例セクション（PC用：スワイパー2個横並び）
   ========================================================================== */
.company-results-section {
    margin-top: 80px;
    margin-bottom: 80px;
}
.company-swipers-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.company-swipers-wrapper .swiper {
    width: calc(50% - 15px);
    margin: 0;
    min-width: 0;
}
.company-results-section .review-source {
    text-align: right;
    margin-top: 10px;
}
.results-cta {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* ==========================================================================
   Hamburger Menu (Mobile)
   ========================================================================== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-dark);
}
.menu-text {
    font-size: 10px;
    margin-top: 3px;
    width: auto;
    height: auto;
    background: none;
}
/* Mobile Menu - Base styles (PC: hidden, SP: uses transform animation) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background-color: #804EA2;
    z-index: 10001;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
}
.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}
.mobile-menu-content {
    padding: 60px 20px 20px;
}
.mobile-nav {
    list-style: none;
    margin-bottom: 30px;
}
.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-nav a {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    color: var(--color-white);
    font-size: 16px;
}
/* ==========================================================================
   Footer
   ========================================================================== */
.footer-top-section {
    background-color: #333333;
    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: #333;
    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 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;
}
/* スマホ専用タイトル画像 - PCでは非表示 */
.company-title-sp-image {
    display: none;
}
.company-number-badge {
    width: 168px;
    height: auto;
    flex-shrink: 0;
}
.company-title-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
}
.company-title-line-1 {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    line-height: 1;
}
.company-title-line-2 {
    display: flex;
    align-items: center;
    line-height: 1;
}
.company-title-line-3 {
    display: flex;
    align-items: center;
    line-height: 1;
}

.title-normal {
    color: #000;
    font-family: "Toppan Bunkyu Midashi Gothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
}
.local-business-badge {
    display: inline-flex;
    gap: 3px;
}
.local-business-badge .char {
    color: #FFF;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 38.427px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    background: #0A3077;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47.312px;
    height: 50.209px;
}
.company-subtitle-1 {
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}
.company-subtitle-2 {
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}
/* Company Name Section */
.company-name-section {
    padding: 20px 30px;
    background: transparent;
    text-align: left;
    position: relative;
    display: inline-block;
}

.company-name-large {
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
    z-index: 2;
}
.company-screenshot-section {
    padding: 30px;
    background: #FFF;
    position: relative;
}
.company-screenshot {
    width: 100%;
    height: auto;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.company-screenshot-section::before {
    content: '';
    position: absolute;
    top: calc(30px + 10px);
    left: calc(30px + 10px);
    width: calc(100% - 60px);
    height: calc(100% - 60px - 10px - 24px);
    background: #8B8B8B;
    border: 1px solid #000;
    border-radius: 8px;
    z-index: 0;
}
.screenshot-caption {
    color: #666;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    text-align: right;
    margin: 0;
}
/* 画像と引用元のリンクスタイル */
.company-screenshot-section a {
    display: block;
    transition: opacity 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}
.company-screenshot-section a:hover {
    opacity: 0.8;
}
.company-screenshot-section a p.screenshot-caption {
    color: #666;
    text-align: right;
}
.company-screenshot-section a:hover p.screenshot-caption {
    text-decoration: underline;
}
.strengths-title {
    color: #FFF;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    text-align: left;
    margin-bottom: 30px;
    margin-left: -30px;
    margin-right: -30px;
    padding: 0 30px;
    background: #0A3077;
    display: block;
    width: calc(100% + 60px);
    height: 54px;
}
.strengths-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
    justify-content: center;
}
.strength-card {
    flex: 0 0 calc(33.333% - 17px);
    max-width: calc(33.333% - 17px);
}
.strengths-grid .strength-card:nth-child(n+4) {
    flex: 0 0 calc(33.333% - 17px);
    max-width: calc(33.333% - 17px);
}
.strength-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.strength-card:hover {
    transform: translateY(-5px);
}
.strength-image-wrapper {
    position: relative;
    margin-bottom: 15px;
}
.strength-card-image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid #000;
    z-index: 1;
}
.strength-card-content {
    padding: 0 10px;
    text-align: left;
}

.strength-card-title {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 10px;
}
.strength-card-description {
    color: #000;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}
.company-cta-buttons .company-btn>* {
    position: relative;
    z-index: 3;
}
.company-cta-buttons .company-btn::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 40px;
    z-index: 1;
}
.company-cta-buttons .company-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    z-index: 2;
}
.company-cta-buttons .company-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.2);
    opacity: 1;
}
.company-cta-buttons .company-btn.btn-primary::after {
    background-color: var(--color-red-button);
    transition: background-color 0.3s ease;
}
.company-cta-buttons .company-btn.btn-primary {
    color: var(--color-white);
    border: none;
}
.company-cta-buttons .company-btn.btn-primary:hover::after {
    background-color: #d32929;
}
.company-cta-buttons .company-btn.btn-secondary::after {
    background-color: var(--color-blue-button);
    transition: background-color 0.3s ease;
}
.company-cta-buttons .company-btn.btn-secondary {
    color: var(--color-white);
    border: none;
}
.company-cta-buttons .company-btn.btn-secondary:hover::after {
    background-color: #2658B5;
}
/* Company Overview Section */
.company-overview-section {
    padding: 40px 30px;
    background: transparent;
}
.overview-title {
    color: #FFF;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    text-align: left;
    margin-bottom: 30px;
    margin-left: -30px;
    margin-right: -30px;
    padding: 0 30px;
    background: #0A3077;
    display: block;
    width: calc(100% + 60px);
    height: 54px;
}
.overview-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.overview-table-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.overview-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFF;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
}
.overview-table tbody tr {
    border-bottom: 1px solid #E0E0E0;
}
.overview-table tbody tr:last-child {
    border-bottom: none;
}
.overview-table th {
    background: #F5F5F5;
    color: #000;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 20px;
    text-align: left;
    width: 150px;
    vertical-align: middle;
}
.overview-table td {
    color: #333;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 20px;
    vertical-align: middle;
}
.overview-table td a {
    color: #0A3077;
    text-decoration: underline;
}
.overview-table td a:hover {
    opacity: 0.7;
}
.overview-cta {
    display: flex;
    justify-content: center;
}
.overview-cta .company-btn>* {
    position: relative;
    z-index: 3;
}
.overview-cta .company-btn::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 40px;
    z-index: 1;
}
.overview-cta .company-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    z-index: 2;
    background-color: var(--color-red-button);
    transition: background-color 0.3s ease;
}
.overview-cta .company-btn {
    color: var(--color-white);
    border: none;
}
.overview-cta .company-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.2);
    opacity: 1;
}
.overview-cta .company-btn:hover::after {
    background-color: #d32929;
}
.overview-map-wrapper {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.overview-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
}
/* Company Reviews Section */
.company-reviews-section {
    margin-top: 10px;
    background: #FFF;
}
.reviews-title {
    color: #FFF;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: #0A3077;
    padding: 12px 30px;
    margin: 0 0 30px 0;
    text-align: left;
    display: flex;
    align-items: center;
    height: 54px;
}
.reviews-grid {
    display: flex;
    gap: 15px;
    padding: 0 20px 15px 20px;
    justify-content: space-between;
}
.review-card {
    flex: 1;
    max-width: calc(33.333% - 10px);
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.review-image {
    width: 100%;
    height: auto;
    display: block;
}
.reviews-cta {
    display: flex;
    justify-content: center;
    padding: 0 30px;
}
.reviews-cta .company-btn {
    width: auto;
    max-width: 600px;
    font-size: 16px;
    padding: 18px 40px;
}
.reviews-cta .company-btn span {
    padding: 0 15px;
}
/* Company Results Section */
.company-results-section {
    margin-top: 40px;
    background: #FFF;
}
.results-title {
    color: #FFF;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: #0A3077;
    padding: 12px 30px;
    margin: 0 0 30px 0;
    text-align: left;
    display: flex;
    align-items: center;
    height: 54px;
}
.results-grid {
    display: flex;
    gap: 20px;
    padding: 0 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.result-card {
    flex: 1;
    max-width: calc(33.333% - 14px);
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.result-card:hover {
    transform: translateY(-5px);
}
.result-card:hover .result-image-wrapper::before {
    background: #B0B0B0;
}
.result-image-wrapper {
    position: relative;
    margin-bottom: 15px;
}
.result-image-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: calc(100% - 4px);
    background: #C9C9C9;
    border: 1px solid #000;
    border-radius: 8px;
    z-index: 0;
}
.result-image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid #000;
    z-index: 1;
}
.result-card-content {
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.result-card-title {
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
    text-align: center;
    background: #DBDBDB;
    padding: 4px 10px;
    display: inline-block;
}
.result-card-source {
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    align-self: flex-end;
}
.results-cta .company-btn {
    width: auto;
    max-width: 600px;
    font-size: 16px;
    padding: 18px 40px;
}
.results-cta .company-btn span {
    padding: 0 15px;
}
/* ==========================================================================
   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;
    }
}
/* ==========================================================================
   COMPANY 02 (Nikka Home) Inline Style Overrides for Mobile
   ========================================================================== */
@media (max-width: 768px) {
    /* COMPANY 02のヘッダーセクション - インラインスタイルをオーバーライド */
    .company-detail-card:nth-of-type(2) .company-header-section {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 20px 15px !important;
        overflow: hidden !important;
        max-width: 100% !important;
    }
    .company-detail-card:nth-of-type(2) .company-title-group {
        gap: 8px !important;
        width: 100% !important;
    }
    /* タイトル部分を2行中央配置（横並び） */
    .company-detail-card:nth-of-type(2) .company-title-line-1 {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 2px !important;
    }
    .company-detail-card:nth-of-type(2) .company-title-line-1>span {
        font-size: clamp(14px, 4vw, 20px) !important;
        padding: 4px 8px !important;
        text-align: center !important;
        margin: 0 2px !important;
    }
    .company-detail-card:nth-of-type(2) .company-title-line-2 {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 2px !important;
    }
    .company-detail-card:nth-of-type(2) .company-title-line-2>span {
        font-size: clamp(14px, 4vw, 20px) !important;
        margin: 0 2px !important;
        text-align: center !important;
    }
    /* 「で選ぶなら」のline-2画像サイズ調整 */
    .company-detail-card:nth-of-type(2) .company-title-line-2>span img {
        width: 28px !important;
        top: -12px !important;
        right: -30px !important;
    }
    /* ニッカホームの会社名 - responsive.cssで上書き可能に */
    .company-detail-card:nth-of-type(2) .company-name-section {
        text-align: center;
        padding: 15px;
    }
    .company-detail-card:nth-of-type(2) .company-name-large {
        font-size: clamp(0.9rem, 3vw, 1.3rem);
        white-space: normal;
        text-align: center;
        display: inline-block;
    }
}
@media (max-width: 480px) {
    .company-detail-card:nth-of-type(2) .company-header-section {
        padding: 15px 10px !important;
    }
    .company-detail-card:nth-of-type(2) .company-title-line-1>span {
        font-size: clamp(12px, 3.5vw, 16px) !important;
        padding: 3px 6px !important;
        margin: 0 1px !important;
    }
    .company-detail-card:nth-of-type(2) .company-title-line-2>span {
        font-size: clamp(12px, 3.5vw, 16px) !important;
        margin: 0 1px !important;
    }
    .company-detail-card:nth-of-type(2) .company-title-line-2>span img {
        width: 22px !important;
        top: -10px !important;
        right: -22px !important;
    }
    .company-detail-card:nth-of-type(2) .company-name-large {
        font-size: clamp(0.8rem, 2.8vw, 1rem);
    }
}
/* ==========================================================================
   よくあるご質問セクション (FAQ)
   ========================================================================== */
.faq-section {
    margin: 0 120px 60px;
    max-width: 1200px;
    padding: 0 20px;
    clear: both;
}
.faq-title-wrapper {
    text-align: center;
    margin-bottom: 30px;
}
.faq-main-title {
    background-color: #333333;
    color: #ffffff;
    display: inline-block;
    padding: 10px 20px;
    font-size: 30px;
    font-weight: 900;
    margin: 0;
    letter-spacing: 0.05em;
}
.relative-wrap {
    position: relative;
    color: #BEFFA6;
    display: inline-block;
}
.faq-accessory {
    position: absolute;
    left: 190px;
    width: 35px;
    height: auto;
    transform: rotate(-10deg);
    pointer-events: none;
}
.faq-card-container {
    background-color: #ffffff;
    border: 3px solid #1B1B1B;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 12px 12px 0px #1B1B1B;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.faq-q {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #1B1B1B;
}
.q-mark {
    font-size: 24px;
    font-weight: 900;
    color: #1B1B1B;
}
.q-text {
    font-size: 18px;
    font-weight: bold;
    color: #1B1B1B;
    margin: 0;
}
.faq-a {
    padding-left: 0;
}
.faq-a p {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
}
/* FAQ Section Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }
    .faq-container {
        padding: 30px 25px;
    }
    .faq-title-green {
        font-size: 24px;
        width: auto;
        height: auto;
        padding: 8px 16px;
    }
    .faq-title-text {
        font-size: 24px;
    }
    .faq-line-icon {
        width: 30px;
        top: -12px;
        right: -28px;
    }
    .faq-question {
        gap: 12px;
    }
    .faq-q-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    .faq-q-text {
        font-size: 16px;
    }
    .faq-answer {
        font-size: 14px;
        padding-left: 40px;
    }
}
@media (max-width: 480px) {
    .faq-container {
        padding: 25px 20px;
    }
    .faq-title {
        flex-direction: column;
        gap: 10px;
    }
    .faq-title-green {
        font-size: 20px;
        width: auto;
        height: auto;
        padding: 6px 14px;
    }
    .faq-title-text {
        font-size: 20px;
    }
    .faq-line-icon {
        width: 25px;
        top: -10px;
        right: -22px;
    }
    .faq-item {
        padding: 20px 0;
    }
    .faq-question {
        gap: 10px;
    }
    .faq-q-icon {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }
    .faq-q-text {
        font-size: 15px;
    }
    .faq-answer {
        font-size: 13px;
        padding-left: 36px;
        line-height: 1.7;
    }
}
/* ==========================================================================
   工務店一覧セクション (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;
    }
}
/* ==========================================================================
   Fixed Right Elements - トップに戻るボタン & 追従バナー
   ========================================================================== */
.fixed-right-elements {
    position: fixed;
    bottom: 50px;
    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: #7FAC74;
    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 rgba(12, 136, 173, 0.4);
}
.scroll-to-top-btn .top-text {
    color: #FFF;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}
.scroll-to-top-btn .top-arrow {
    width: 20px;
    height: 20px;
}
.scroll-to-top-btn .top-arrow path {
    stroke: #FFF;
}
/* 追従バナー */
.fixed-banner {
    position: relative;
    width: 471px;
    height: 122px;
    aspect-ratio: 471/122;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    overflow: visible;
    margin-top: 5px;
}
.fixed-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.fixed-banner a {
    display: block;
    line-height: 0;
}
.fixed-banner img {
    width: 100%;
    height: auto;
    display: block;
}
/* バナー閉じるボタン */
.close-banner-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background-color: #333;
    border: 2px solid #FFF;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 2;
}
.close-banner-btn:hover {
    background-color: #E63939;
    transform: scale(1.1);
}
.close-banner-btn svg {
    width: 10px;
    height: 10px;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .fixed-right-elements {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }
    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
    }
    .scroll-to-top-btn .top-text {
        font-size: 9px;
    }
    .scroll-to-top-btn .top-arrow {
        width: 18px;
        height: 18px;
    }
    .fixed-banner {
        width: auto;
        height: auto;
        max-width: 425px;
    }
    .close-banner-btn {
        width: 22px;
        height: 22px;
        top: -8px;
        right: -8px;
    }
    .close-banner-btn svg {
        width: 9px;
        height: 9px;
    }
}
@media (max-width: 480px) {
    .fixed-right-elements {
        bottom: 30px;
        right: 10px;
        gap: 10px;
    }
    .scroll-to-top-btn {
        width: 42px;
        height: 42px;
    }
    .scroll-to-top-btn .top-text {
        font-size: 8px;
    }
    .scroll-to-top-btn .top-arrow {
        width: 16px;
        height: 16px;
    }
    .fixed-banner {
        width: auto;
        height: auto;
        max-width: 340px;
    }
    .close-banner-btn {
        width: 20px;
        height: 20px;
        top: -6px;
        right: -6px;
    }
    .close-banner-btn svg {
        width: 8px;
        height: 8px;
    }
}
.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;
    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;
}
/* ==========================================================================
   Useful Column Section (Top Page)
   ========================================================================== */
.useful-column-section {
    margin: 0px auto;
    max-width: 1000px;
    padding: 40px 20px;
    clear: both;
}
.useful-column-title {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    color: #1b1b1b;
    margin-bottom: 40px;
}
.useful-column-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}
.area-column-card {
    width: calc(25% - 15px);
}
.area-column-card-link {
    text-decoration: none;
    color: #333;
    display: block;
    transition: opacity 0.3s ease;
}
.area-column-card-link:hover {
    opacity: 0.7;
}
.area-column-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #f5f5f5;
    margin-bottom: 15px;
    overflow: hidden;
}
.area-column-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.area-column-card-title {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 0 10px 0;
    color: #1b1b1b;
}
.area-column-card-date {
    font-size: 12px;
    color: #666;
    display: block;
}
.useful-column-more-wrapper {
    text-align: center;
}
.useful-column-more-btn {
    background-color: #910000;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 0 #910000;
    transition: all 0.2s ease;
    margin-bottom: 6px;
}
.useful-column-more-btn:hover {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #910000;
}
/* Useful Column Section Responsive */
@media (max-width: 1024px) {
    .useful-column-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .useful-column-section {
        padding: 10px 16px 20px;
    }
    .useful-column-title {
        font-size: 28px;
    }
    .useful-column-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .useful-column-more-btn {
        padding: 14px 40px;
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .useful-column-title {
        font-size: 24px;
    }
    .useful-column-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
/* ==========================================================================
   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: #7FAC74 !important;
        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: #7FAC74;
        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: #7FAC74;
        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;
    }
    /* ==========================================================================
       Problems Section - Tablet
       ========================================================================== */
    /* 「放っておくと危ないかもしれません！」の改行対応 */
    .problems-subtitle {
        flex-wrap: wrap;
        justify-content: center;
    }
    .problems-subtitle .subtitle-normal {
        font-size: 28px;
    }
    .problems-subtitle .subtitle-highlight {
        font-size: 28px;
        height: auto;
        padding: 5px 10px;
    }
    /* アドバイスボックス - タブレット対応（1カラム表示） */
    .advice-box {
        width: calc(100% - 40px);
        max-width: 100%;
        height: auto;
        min-height: auto;
        padding: 50px 25px 25px;
        margin: 0 20px 100px;
        box-sizing: border-box;
    }
    .advice-text {
        font-size: 16px;
        line-height: 1.8;
        text-align: left;
    }
    .advice-text br {
        display: none;
    }
    /* ==========================================================================
       Comparison Section - Tablet
       ========================================================================== */
    /* 「小工事から気軽に頼める地域密着型」を1行で表示 */
    .intro-line-1 {
        flex-wrap: nowrap;
        gap: 5px;
    }
    .text-small-work {
        font-size: 32px;
    }
    .text-easy-request {
        font-size: 20px;
    }
    .text-local {
        gap: 3px;
    }
    .text-local .char-bg {
        font-size: 32px;
        width: 38px;
        height: 38px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* 「地域密着型と大手リフォーム会社の（改行）メリット・デメリット」 */
    .intro-line-3 {
        flex-wrap: wrap;
        justify-content: center;
    }
    .section-title-main {
        font-size: 24px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .section-title-sub {
        font-size: 28px;
        display: block;
        margin-top: 10px;
    }
    /* line-1の画像を小さくする */
    .title-decoration-line {
        width: 30px;
        top: -15px;
        right: -35px;
    }
    /* バナー画像 - フルワイド表示 */
    .comparison-banner-link {
        width: 100%;
        max-width: 100%;
    }
    .comparison-banner {
        width: 100%;
        height: auto;
        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;
    }
    /* ==========================================================================
       Strength Cards - Tablet (2カラム表示、タイトルと説明を表示)
       ========================================================================== */
    .strengths-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 20px;
        justify-content: center;
    }
    .strength-card,
    .strengths-grid .strength-card:nth-child(n+4) {
        flex: 0 0 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }
    .strength-card-content {
        display: block !important;
        padding: 15px 10px;
    }
    .strength-card-title {
        display: block !important;
        font-size: 16px;
        margin-bottom: 8px;
    }
    .strength-card-description {
        display: block !important;
        font-size: 13px;
        line-height: 1.6;
    }
    /* ==========================================================================
       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;
    }
    /* 業者選びのポイントセクション */
    .points-section {
        padding: 10px 5px 20px;
    }
    /* スマホ用バナー表示 */
    .points-banner-sp {
        display: block;
        width: 100%;
        padding: 0 20px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
    .points-banner-sp img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .points-section .section-title-en {
        font-size: 24px;
        padding: 0 20px;
    }
    .points-section .section-title-wrapper {
        padding: 0 20px;
    }
    .points-section .section-title-jp {
        font-size: 18px;
        line-height: 1.8;
        text-align: center;
    }
    /* タイトル1行目 - 「相談するなら」のみ表示し、line-1を「ら」の右上に配置 */
    .title-line-1 {
        display: inline;
        position: relative;
    }
    /* line-1を小さくして「ら」と重複しない位置に */
    .title-decoration-line {
        width: 24px;
        position: absolute;
        top: -12px;
        right: -28px;
    }
    /* PC用改行を非表示、タイトルを2行に */
    .pc-br {
        display: none;
    }
    /* タイトル2行目を改行して表示 */
    .title-line-2 {
        display: block;
        margin-top: 5px;
    }
    /* 「押さえておきたい業者選びのポイント」を1行で表示 */
    .points-section .section-title-jp .title-line-2 {
        display: block;
        white-space: nowrap;
    }
    .points-section .section-title-jp .title-black {
        font-size: clamp(16px, 4.8vw, 22px);
        display: inline;
    }
    .points-section .section-title-jp .title-red {
        font-size: clamp(16px, 4.8vw, 22px);
        display: inline;
    }
    .points-section .points-grid {
        padding: 25px 20px 0 35px;
    }
    /* リフォーム業者2選セクション */
    .reform-companies-section {
        padding: 30px 20px;
        margin-bottom: 0;
    }
    .companies-header-green {
        width: 100%;
        padding: 8px 15px;
        margin-bottom: 15px;
    }
    .companies-header-title {
        font-size: 20px;
        white-space: normal;
    }
    /* 「小工事からフルリフォームまで」を1行表示 */
    .companies-catch {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 5px;
        align-items: center;
        justify-content: center;
        margin-bottom: 5px;
    }
    .catch-small-work,
    .catch-full-reform {
        font-size: clamp(18px, 5.5vw, 28px);
        padding: 3px 8px;
    }
    .catch-from,
    .catch-until {
        font-size: clamp(12px, 3.5vw, 18px);
    }
    /* line-1を「で」の右上に配置 */
    .catch-decoration-line {
        width: clamp(20px, 5vw, 30px);
        top: -8px;
        right: -15px;
    }
    .companies-main-title-wrapper {
        margin-top: 5px;
    }
    .companies-main-title {
        font-size: 28px;
    }
    .companies-main-title .title-highlight::after {
        height: 6px;
        bottom: 5px;
    }
    /* INDEXセクション - responsive.cssで管理 */
    /* おすすめ業者カード - responsive.cssで横スクロール形式に管理 */
    .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;
    }
    /* ポイントグリッド */
    .points-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 15px 0 25px;
    }
    /* POINT 01〜03: スマホでも円形バッジ表示 */
    .point-number {
        width: 75px;
        height: 75px;
        font-size: 24px;
        top: -15px;
        left: -15px;
    }
    .point-number .point-label {
        font-size: 14px;
    }
    .point-number br {
        display: none;
    }
    .point-item {
        min-height: 320px;
        overflow: visible;
    }
    .point-title {
        padding-top: 180px;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 10px;
        margin-right: 10px;
        text-align: center;
    }
    .point-description {
        padding: 15px 15px 20px;
    }
}
/* ==========================================================================
   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: #7FAC74;
    padding: 20px 30px;
    margin: 0;
    text-align: center;
    border-radius: 4px;
}
/* Introduction */
.policy-intro {
    background: #F8F9FA;
    border-left: 4px solid #7FAC74;
    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: #7FAC74;
	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: #7FAC74;
    margin: 0 0 20px 0;
    padding-left: 15px;
    border-left: 4px solid #7FAC74;
    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: #7FAC74;
    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: #7FAC74;
    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;
        }
    }
}
/* ==========================================================================
   業者一覧アーカイブページ (リスト型・サムネイルなしデザイン)
   ========================================================================== */
.company-archive-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}
.company-archive-item {
    background-color: #ffffff;
    border: 2px solid #1B1B1B;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.08);
}
.company-archive-title {
    font-size: 22px;
    font-weight: 900;
    color: #1b1b1b;
    margin: 0 0 15px 0;
    border-bottom: 2px dashed #ccc;
    padding-bottom: 15px;
    line-height: 1.5;
}
.company-archive-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 25px;
}
.company-archive-btn-area {
    display: flex;
    justify-content: flex-end;
}
.company-archive-btn-area .company-btn {
    display: inline-flex;
    align-items: center;
    background-color: #0A3077;
    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;
}
/* ==========================================================================
   厳選3選セクション（FV下）
   ========================================================================== */
@media screen and (max-width: 768px) {
    .companies-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        justify-content: flex-start !important;
        gap: 15px !important;
        padding: 20px 0 50px !important;
        margin: 0 !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .companies-grid::-webkit-scrollbar {
        display: none;
    }
    .company-wrapper {
        flex: 0 0 85% !important;
        max-width: 85% !important;
        min-width: 85% !important;
        scroll-snap-align: center !important;
        margin-bottom: 0 !important;
    }
    .company-wrapper:first-child {
        margin-left: 7.5% !important;
    }
    .company-wrapper:last-child {
        margin-right: 7.5% !important;
    }
    .company-card {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }
    .company-info {
        flex-grow: 1 !important;
    }
    .card-buttons {
        margin-top: auto !important;
    }
    .scroll-indicator {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 15px !important;
        margin-bottom: 20px !important;
        gap: 10px !important;
        color: #fff !important;
        font-size: 14px !important;
        font-weight: bold !important;
        letter-spacing: 2px !important;
    }
    .scroll-arrow {
        animation: swipeHint 1.5s ease-in-out infinite;
    }
    @keyframes swipeHint {
        0%, 100% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(5px);
        }
    }
    .card-buttons .company-btn {
        min-width: unset !important;
        width: 100% !important;
        padding: 12px 10px !important;
        height: auto !important;
        min-height: 54px !important;
    }
    .card-buttons .company-btn span {
        white-space: normal !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }
    .company-header {
        min-height: 70px !important;
        margin: 10px 0 15px !important;
        gap: 8px !important;
    }
    .company-header::before {
        width: 40px !important; 
        height: 60px !important;
    }
    .company-name {
        font-size: clamp(14px, 4vw, 18px) !important;         
        min-height: auto !important; 
        height: auto !important;
    }

    /* ==========================================================================
       「ハウスメーカーと工務店は何が違う？」セクション（スマホ完全版）
       ========================================================================== */
    .comparison {
        padding: 20px 0 50px !important;
        background-size: 300% auto !important;
        background-position: top center !important;
        background-repeat: no-repeat !important;
        background-color: #fff !important;
    }
    .comparison__title-bg {
        background-color: #333 !important;
        color: #E5ECED !important;
        font-size: clamp(14px, 4.5vw, 20px) !important;
        padding: 8px 12px !important;
        display: inline-block !important;
        white-space: nowrap !important;
        margin: 0 auto !important;
    }
    .comparison__title-bg .text-ivory {
        color: #E6D8B3 !important;
    }
    .comparison__subtitle {
        font-size: clamp(11px, 3.5vw, 15px) !important;
        margin-top: 10px !important;
        margin-bottom: -15px !important;
        white-space: nowrap !important;
    }
    .comparison__image-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        position: relative !important;
    }
    .comparison__image {
        width: 85% !important;
        margin: 0 auto !important;
        display: block !important;
        border-radius: 10px !important;
    }
    .comparison__text-box {
        position: relative !important;
        bottom: -25px !important;
        right: auto !important;
        width: 90% !important;
        margin: -15% auto 0 !important;
        padding: 10px !important;
        border-radius: 10px !important;
        background-color: #fff !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
        z-index: 2 !important;
    }
    .comparison__text-box p {
        font-size: 10px !important;
        line-height: 1.6 !important;
        text-align: center !important;
        margin: 0 !important;
    }
    /* ==========================================================================
       メリット・デメリットセクション（スマホ完全版）
       ========================================================================== */
    .features {
        padding: 2px 0 !important;
    }
    .features__block {
        margin-bottom: 20px !important;
    }
    .features__block--hm {
        text-align: left !important;
    }
    .features__block--km {
        text-align: right !important;
    }
    .features__main-title {
        font-size: 20px !important;
        padding: 10px 0 !important;
        margin-bottom: 18px !important;
        display: inline-block !important;
    }
    .features__block--hm .features__main-title {
        margin-left: -20px !important;
        margin-right: 0 !important;
        width: 90vw !important;
        text-align: center !important;
        padding-left: 20px !important;
    }
    .features__block--km .features__main-title {
        margin-right: -20px !important;
        margin-left: 0 !important;
        width: 90vw !important;
        text-align: center !important;
        padding-right: 20px !important;
    }
    .features__main-title::after {
        width: 30px !important;
        height: 30px !important;
        top: 1px !important;
    }
    .features__block--hm .features__main-title::after {
        right: 30px !important;
    }
    .features__block--km .features__main-title::after {
        right: auto !important;
    }
    .features__main-title::before {
        top: 6px !important;
    }
    .features__block--hm .features__main-title::before {
        left: 6px !important;
        right: auto !important;
    }
    .features__block--km .features__main-title::before {
        right: 6px !important;
        left: auto !important;
    }
    .features__cards {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    .features__card {
        width: 100% !important;
        padding: 25px 20px !important;
    }
    .features__image-unit {
        margin-bottom: 25px !important;
    }
    .features__label {
        font-size: 14px !important;
        padding: 6px 25px !important;
        bottom: -15px !important;
    }
    .features__list li {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 12px !important;
        text-align: left !important;
    }
    /* ==========================================================================
       業者選びのポイント
       ========================================================================== */
    .points-cta {
        padding: 15px 15px !important;
        margin: 20px 15px 40px !important;
        flex-direction: row !important;
        align-items: center !important;
    }
    .points-cta::before {
        top: -16px !important;
        border-bottom: 14px solid #1B1B1B !important;
        border-left: 20px solid transparent !important;
        border-right: 20px solid transparent !important;
    }
    .points-cta::after {
        top: -12px !important;
        border-bottom: 12px solid #fff !important;
        border-left: 17px solid transparent !important;
        border-right: 17px solid transparent !important;
    }
    .points-cta__label {
        font-size: 16px !important;
        padding-right: 15px !important;
        margin-right: 15px !important;
        border-right: 2px dotted #ccc !important;
        white-space: nowrap !important;
    }
    .icon-check-img {
        width: 22px !important;
        margin-right: 5px !important;
    }
    .points-cta__text {
        font-size: 12px !important;
        line-height: 1.4 !important;
        text-align: left !important;
        letter-spacing: 0;
    }
    .points-cta__highlight {
        font-size: 14px !important;
        margin: 0 2px !important;
    }
    .underline-black {
        text-decoration-thickness: 3.5px !important;
        text-underline-offset: 4px;
    }
    .points-header {
        margin-bottom: 40px !important;
    }
    .points-header__en {
        font-size: 35px !important;
        margin-bottom: -10px !important;
    }
    .points-header__jp {
        font-size: 18px !important;
        line-height: 1.6 !important;
    }
    .points-banner {
        padding: 0 15px !important;
        margin-bottom: 20px !important;
    }
    /* ==========================================================================
       業者選びのポイント（ポイント内容）
       ========================================================================== */
    .points-container {
        gap: 20px !important;
    }
    .point-card__head {
        padding: 5px 10px !important;
        gap: 10px !important;
        margin-bottom: 15px !important;
        justify-content: flex-start !important;
        border-radius: 4px !important;
    }
    .point-card__icon {
        width: 40px !important;
        height: 40px !important;
    }
    .point-card__icon img {
        width: 45px !important;
    }
    .point-card__title {
        align-items: flex-start !important;
        text-align: left !important;
        gap: 0px !important;
    }
    .point-number {
        width: auto !important;
        height: auto !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        display: flex !important;
        align-items: center !important;
        border-bottom: none !important;
        padding-bottom: 0 !important;
        font-size: 16px !important;
    }
    .point-number::after {
        content: "" !important;
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-left: 4px !important;
        border: none !important;
        width: 30px !important;
        height: 1px !important;
        background-color: #fff !important;
    }
    .point-number::before {
        content: "" !important;
        position: absolute !important;
        right: -6px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        border-top: 4px solid transparent !important;
        border-bottom: 4px solid transparent !important;
        border-left: 6px solid #fff !important;
    }
    .point-text {
        font-size: 17px !important;
        line-height: 1.4 !important;
        letter-spacing: 0 !important;
    }
    .point-card__body {
        margin-bottom: 0 !important;
    }
    .point-card__image {
        width: 85% !important;
    }
    .point-card__text-box {
        position: relative !important;
        width: 95% !important;
        padding: 18px 15px !important;
        border-radius: 10px !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin-top: -20px !important;
        z-index: 5 !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
    }
    .point-card__text-box p {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
    .point-card__text-box p br {
        display: none !important;
    }
    .point-card--01 .point-card__body {
        align-items: flex-end !important;
    }
    .point-card--01 .point-card__text-box {
        align-self: flex-start !important;
    }
    .point-card--02 .point-card__body {
        align-items: flex-start !important;
    }
    .point-card--02 .point-card__text-box {
        align-self: flex-end !important;
    }
    .point-card--03 .point-card__images {
        gap: 10px !important;
        margin-bottom: 0 !important;
    }
    .point-card--03 .point-card__image-large {
        width: 55% !important;
    }
    .point-card--03 .point-card__image-small {
        width: 42% !important;
    }
    .point-card--03 .point-card__text-box {
        align-self: center !important;
    }
    /* ==========================================================================
       厳選工務店3選 大見出し（スマホ対応・1行＆2行収め）
       ========================================================================== */
    .company-list-header {
        margin-bottom: 30px !important;
    }
    .company-list-header__area {
        font-size: clamp(14px, 4.5vw, 18px) !important;
        padding: 5px 15px !important;
        margin-bottom: 10px !important;
        white-space: nowrap !important;
    }
    .company-list-header__title {
        font-size: clamp(13px, 3.8vw, 18px) !important;
        line-height: 1.6 !important;
        letter-spacing: 0 !important;
    }
    .company-list-header__title-large {
        font-size: clamp(18px, 5.5vw, 24px) !important;
    }
    .company-list-header__number {
        font-size: 50px !important;
        margin: 0 2px 0 5px !important;
        top: 0.1px !important;
    }
    .company-list-header__suffix {
        font-size: 24px !important;
    }
    .company-list-header__line-deco {
        margin-top: 20px !important;
    }
    .company-catch-balloon {
        display: block !important;
        width: 95% !important;
        margin: 0 auto 30px !important;
        padding: 15px !important;
        text-align: center !important;
        box-shadow: 4px 4px 0px rgba(131, 131, 131, 1) !important;
    }
    .company-catch-balloon p {
        font-size: clamp(14px, 4vw, 16px) !important;
        line-height: 1.6 !important;
    }
    .company-catch-balloon .text-red {
        font-size: clamp(15px, 4.5vw, 18px) !important;
    }
    .company-name-heading {
        margin-bottom: 25px !important;
        line-height: 1.6 !important;
    }
    .name-line {
        font-size: clamp(20px, 6vw, 26px) !important;
        padding: 5px 15px !important;
        display: inline-block !important;
        margin-bottom: 5px !important;
    }
    .company-screenshot-section {
        padding: 0 !important;
        width: 90% !important;
        margin: 0 auto 30px !important;
        position: relative !important;
    }
    .company-screenshot {
        width: 100% !important;
        display: block !important;
        position: relative !important;
        z-index: 2 !important;
        margin-bottom: 0 !important;
    }
    .company-screenshot-section::before {
        top: 8px !important;
        left: 8px !important;
        width: 100% !important;
        height: calc(100% - 30px) !important;
        z-index: 1 !important;
    }
    .screenshot-caption {
        position: relative !important;
        z-index: 2 !important;
        margin-top: 15px !important;
        font-size: 11px !important;
        text-align: right !important;
    }
    /* ==========================================================================
       会社紹介：強みセクション ＆ CTAボタン（スマホ対応）
       ========================================================================== */
    .section-title-green {
        font-size: clamp(16px, 4.5vw, 22px) !important;
        padding: 10px 15px !important;
        margin-bottom: 20px !important;
        white-space: nowrap !important;
        text-align: left !important;
        letter-spacing: 1px !important;
    }
    .company-strengths-section {
        padding: 0 0 30px 0 !important;
    }
    .strength-list-text {
        padding: 0 15px !important;
    }
    .strength-list-text li {
        font-size: 12px !important;
        line-height: 1.6 !important;
        margin-bottom: 8px !important;
    }
    .strength-point {
        font-size: 15px !important;
    }
    .company-cta-buttons {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        justify-content: center !important;
        padding: 0 10px !important;
    }
    .company-cta-buttons .company-btn {
        width: 50% !important;
        min-width: unset !important;
        padding: 10px 5px !important;
        height: auto !important;
        min-height: 50px !important;
    }
    .company-cta-buttons .company-btn span:first-child {
        font-size: 11px !important;
        white-space: nowrap !important;
        line-height: 1.4 !important;
        text-align: center !important;
        text-decoration: none !important;
        margin: 0 !important;
        letter-spacing: 0.05em !important;
    }
    .company-cta-buttons .company-btn .btn-arrow {
        font-size: 9px !important;
        margin-left: 2px !important;
        flex-shrink: 0 !important;
    }
    /* ==========================================================================
       会社概要セクション
       ========================================================================== */
    .company-overview-section {
        padding: 0 0 40px 0 !important;
    }
    .overview-flex-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    .overview-right-col {
        order: 1 !important;
        width: 100% !important;
    }
    .overview-right-col iframe {
        height: 250px !important;
        min-height: auto !important;
    }
    .overview-left-col {
        order: 2 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }
    .overview-table {
        margin-bottom: 0 !important;
    }
    .overview-table th {
        width: 30% !important;
        padding: 12px 10px !important;
        font-size: 13px !important;
    }
    .overview-table td {
        padding: 12px 10px !important;
        font-size: 13px !important;
        word-break: break-all !important;
    }
    .company-sns-icons {
        margin-bottom: 0 !important;
        gap: 20px !important;
    }
    .company-sns-icons img {
        width: 40px !important;
    }
    .overview-cta {
        margin-top: 0 !important;
        width: 100% !important;
    }
    .overview-cta .company-btn {
        width: 100% !important;
        min-width: unset !important;
        padding: 15px 10px !important;
    }
    .overview-cta .company-btn span {
        font-size: 14px !important;
        white-space: nowrap !important;
    }
    /* ==========================================================================
       口コミ・評判セクション
       ========================================================================== */
    .company-reviews-section {
        padding: 0 0 40px 0 !important;
    }
    .reviews-text-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 15px !important;
        margin-bottom: 25px !important;
    }
    .review-text-card {
        width: 100% !important;
        padding: 20px 15px !important;
    }
    .review-initial {
        font-size: 14px !important;
    }
    .review-comment {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }
    .reviews-cta {
        padding: 0 15px !important;
        width: 100% !important;
        margin-top: 10px !important;
    }
    .reviews-cta .company-btn {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        min-width: unset !important;
        padding: 10px 10px !important;
        height: auto !important;
    }
    .reviews-cta .company-btn span:first-child {
        font-size: 14px !important;
        white-space: normal !important;
        line-height: 1.5 !important;
        text-align: center !important;
        letter-spacing: 0.5px !important;
        margin: 0 !important;
        width: auto !important;
    }
    .reviews-cta .company-btn .btn-arrow {
        margin-left: 10px !important;
        font-size: 10px !important;
        position: static !important;
    }
    /* ==========================================================================
       施工事例セクション（SP.ver)
       ========================================================================== */
    .company-results-section {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
        padding: 0 15px !important;
    }
    .company-swipers-wrapper {
        display: block !important;
    }
    .company-swipers-wrapper .swiper {
        width: 100% !important;
    }
    .company-swiper-second {
        display: none !important;
    }
    .company-swiper img {
        width: 100% !important;
        border-radius: 5px !important;
    }
    .company-results-section .review-source {
        text-align: right !important;
        font-size: 11px !important;
        margin-top: 5px !important;
    }
    .results-cta {
        margin-top: 20px !important;
        width: 100% !important;
    }
    .results-cta .company-btn {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        min-width: unset !important;
        padding: 15px 10px !important;
        height: auto !important;
    }
    .results-cta .company-btn span:first-child {
        font-size: 14px !important;
        white-space: normal !important;
        line-height: 1.5 !important;
        text-align: center !important;
        letter-spacing: 0.5px !important;
        margin: 0 !important;
    }
    .results-cta .company-btn .btn-arrow {
        margin-left: 10px !important;
        font-size: 10px !important;
        position: static !important;
    }
    /* ==========================================================================
       よくあるご質問セクション
       ========================================================================== */
    .faq-section {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 15px 10px !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    .faq-title-wrapper {
        display: block !important;
        width: 100% !important;
        background-color: #333 !important;
        padding: 4px 10px !important;
        box-sizing: border-box !important;
        margin: 0 auto 10px !important;
        text-align: center !important;
        border-radius: 5px !important;
        transform: none !important;
    }
    .faq-main-title {
        writing-mode: horizontal-tb !important;
        -webkit-writing-mode: horizontal-tb !important;
        display: block !important;
        width: 100% !important;
        color: #fff !important;
        font-size: clamp(14px, 4vw, 17px) !important;
        line-height: 1.6 !important;
        white-space: normal !important;
        word-break: keep-all !important;
        letter-spacing: 0 !important;
        margin: 0 !important;
    }
    .faq-main-title .text-green {
        color: #BEFFA6 !important;
        position: relative !important;
        display: inline-block !important;
    }
    .faq-accessory {
        width: 24px !important;
        top: -10px !important;
        left: 65px !important;
        position: absolute !important;
    }
    .faq-card-container {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 10px !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        background-color: #fff !important;
        border: 2px solid #333 !important;
        box-shadow: 4px 4px 0px #333 !important;
        border-radius: 8px !important;
    }
    .faq-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
    }
    .faq-item {
        border-bottom: 1px solid #ccc !important;
        padding-bottom: 8px !important;
    }
    .faq-item:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    .q-mark {
        display: none !important;
    }
    .faq-q {
        margin-bottom: 10px !important;
    }
    .q-text {
        font-size: 14px !important;
        font-weight: bold !important;
        color: #111 !important;
        line-height: 1.5 !important;
        text-align: left !important;
        margin: 0 !important;
    }
    .faq-a p {
        font-size: 13px !important;
        color: #333 !important;
        line-height: 1.6 !important;
        text-align: left !important;
        margin: 0 !important;
    }
    /* ==========================================================================
       工務店一覧セクション
       ========================================================================== */
    .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;
    }
    /* ==========================================================================
       お役立ちコラムセクション
       ========================================================================== */
    .useful-column-container {
        padding: 40px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .useful-column-title {
        text-align: center !important;
        font-size: 20px !important;
        font-weight: bold !important;
        margin-bottom: 25px !important;
        color: #333 !important;
    }
    .useful-column-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 15px !important;
        margin-bottom: 35px !important;
        width: 100% !important;
    }
    /* 各カードの調整 */
    .area-column-card {
        width: 100% !important;
        margin: 0 !important;
    }
    .area-column-card-link {
        display: flex !important;
        flex-direction: column !important;
        text-decoration: none !important;
    }
    .area-column-card-image {
        width: 100% !important;
        aspect-ratio: 4 / 3 !important;
        border-radius: 4px !important;
        overflow: hidden !important;
        margin-bottom: 8px !important;
        background-color: #f5f5f5 !important;
    }
    .area-column-card-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    /*  テキスト部分の調整 */
    .area-column-card-content {
        padding: 0 2px !important;
    }
    .area-column-card-title {
        font-size: 12px !important;
        font-weight: bold !important;
        color: #333 !important;
        line-height: 1.4 !important;
        margin: 0 0 5px 0 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .area-column-card-date {
        font-size: 10px !important;
        color: #666 !important;
        display: block !important;
    }
    /*  「記事一覧を見る」ボタン */
    .useful-column-more-wrapper {
        text-align: center !important;
        width: 100% !important;
    }
    .useful-column-more-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: #910000 !important;
        color: #fff !important;
        border-radius: 50px !important;
        padding: 15px 30px !important;
        font-size: 15px !important;
        font-weight: bold !important;
        text-decoration: none !important;
        box-shadow: 0 4px 0 #5c0000 !important;
        width: 80% !important;
        margin: 0 auto !important;
    }
    .useful-column-more-btn .btn-text {
        margin-right: 10px !important;
    }
    .useful-column-more-btn .btn-icon {
        width: 24px !important;
        height: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .useful-column-more-btn .btn-icon svg {
        width: 100% !important;
        height: 100% !important;
    }
}
/* ==========================================================================
    固定ページ（ブロックエディタ出力エリア）の共通デザイン
   ========================================================================== */
.post-content {
    padding: 20px 0;
}

/* H2見出し（第1条 運営者情報 など） */
.post-content h2 {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #7FAC74 !important;
    margin: 40px 0 20px 0 !important;
    padding-left: 15px !important;
    border-left: 4px solid #7FAC74 !important;
    line-height: 1.4 !important;
}

/* H3見出し（個人情報 など） */
.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;
    }
}
/* ==========================================================================
    サイトマップページ用：リストブロックの自動デザイン化
   ========================================================================== */
.sitemap-page .post-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sitemap-page .post-content ul li {
    padding: 12px 0 !important;
    border-bottom: 1px dashed #ddd !important;
    position: relative !important;
    padding-left: 20px !important;
    margin-bottom: 0 !important; /* post-contentの共通設定を上書き */
}

.sitemap-page .post-content ul li:last-child {
    border-bottom: none !important;
}

.sitemap-page .post-content ul li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 8px !important;
    height: 8px !important;
    background-color: #0A3077 !important;
    border-radius: 50% !important;
}

.sitemap-page .post-content ul li a {
    font-size: 15px !important;
    color: #333 !important;
    text-decoration: none !important;
    transition: color 0.3s ease, padding-left 0.3s ease !important;
    display: inline-block !important;
}

.sitemap-page .post-content ul li a:hover {
    color: #0A3077 !important;
    padding-left: 5px !important;
}
/* ==========================================================================
    固定ページ：テーブル（表）の共通デザイン
   ========================================================================== */
.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エラーページ
========================================================= */
.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: #6a9c49; 
    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: #55803a;
    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;
    }
}