/* ==========================================================================
   Variables & Base Styles
   ========================================================================== */

:root {
    --color-primary: #804EA2;
    --color-secondary: #FF8C42;
    --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-red-button: #E63939;
    --color-blue-button: #2F6AD9;
    --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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    max-width: 100vw;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* PC/SP表示切り替え（デフォルト：PC表示） */
.sp-only {
    display: none !important;
}

.pc-only {
    display: inline !important;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */

.top-bar {
    background-color: #DBDBDB;
    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: #804EA2;
    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: #000;
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
}

/* PC: フルテキスト表示、SP用テキスト非表示 */
.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 Layout - トップバー・ヘッダー固定分のpadding調整 */
#page {
    padding-top: 80px; /* トップバー(20px) + ヘッダー(60px) */
}

/* WordPress管理バー対応 */
body.admin-bar .top-bar {
    top: 32px;
}

body.admin-bar .site-header {
    top: 52px; /* 管理バー(32px) + トップバー(20px) */
}

body.admin-bar #page {
    padding-top: 112px; /* 管理バー(32px) + トップバー(20px) + ヘッダー(60px) */
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.hero-content {
    background-image: url('../images/mv-pc.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 700px;
    padding: 40px 20px;
}

.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 {
    max-width: 707.25px;
    width: 100%;
    display: block;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out 0.8s forwards;
    transition: transform 0.3s ease;
}

.hero-cta img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-cta:hover {
    transform: scale(1.05);
}

/* Hero Animations */
@keyframes fadeSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   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;
}

/* 赤い長方形の装飾 */
.red-bar {
    background-color: #FF0000;
    position: absolute;
    animation-fill-mode: both;
}

.red-bar-top {
    width: 40%;
    height: 6px;
    top: 8px;
    left: 10px;
    animation: slideInFromLeft 0.6s ease-out;
}

.red-bar-bottom {
    width: 40%;
    height: 6px;
    bottom: 8px;
    right: 10px;
    animation: slideInFromRight 0.6s ease-out 0.3s;
}

.red-bar-corner {
    width: 30px;
    height: 6px;
    bottom: 8px;
    right: 8px;
    animation: scaleIn 0.5s ease-out 0.5s;
    transform-origin: right center;
}

/* PC用：index-squareとindex-arrowは非表示 */
.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
   ========================================================================== */

.recommended-companies {
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
    padding: 60px 20px;
    background-image: url('../images/background.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* PC用 今すぐCHECKインジケーター */
.check-indicator-pc {
    position: absolute;
    left: 0;
    bottom: 220px;
    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;
    }
}

.recommended-companies .section-header,
.recommended-companies .companies-grid-wrapper {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.recommended-companies .section-title-jp {
    background: #69A248;
    width: 520px;
    height: 47px;
    color: #FFF;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 47px;
    display: inline-block;
    margin-bottom: 15px;
    border-radius: 0;
    text-align: center;
}

.recommended-companies .section-title-en {
    color: #FFF !important;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif !important;
    font-size: 30px !important;
    font-style: normal;
    font-weight: 600 !important;
    line-height: normal;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    display: block;
}

/* スマホ用改行（PCでは非表示） */
.sp-br {
    display: none;
}

/* グリッドラッパー（PCではそのまま表示） */
.companies-grid-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* スクロールインジケーター（PCでは非表示） */
.scroll-indicator {
    display: none;
}

.companies-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
    max-width: 960px;
    margin: 0 auto;
    padding-top: 10px;
    justify-content: center;
}

.company-wrapper {
    position: relative;
    width: 450px;
    flex-shrink: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-card {
    background-color: var(--color-white);
    border: none;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 450px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 20px;
    margin-bottom: 40px;
    z-index: 10;
}

.company-card > *:first-child:not(.company-tag) {
    border-radius: 16px 16px 0 0;
}

.company-tag {
    width: 298.874px;
    height: 36.775px;
    border-radius: 23.35px;
    border: 0.584px solid #000;
    background: #D9D9D9;
    color: #000;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 17.512px;
    font-style: normal;
    font-weight: 600;
    line-height: 36.775px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    z-index: 10;
}

.company-tag.major {
    background: #D9D9D9;
}

.company-catchcopy {
    background-color: #6B9C3C;
    color: #FFF;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 25.295px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    padding: 30px 15px 20px 15px;
    text-align: center;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 16px 0 0;
}

.company-card:nth-child(2) .company-catchcopy {
    background-color: #6B9C3C;
}

.company-image-wrapper {
    padding: 0;
    background-color: transparent;
    flex-shrink: 0;
}

.company-image {
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.company-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border: none;
    outline: none;
}

.company-info {
    padding: 15px 12px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.company-name {
    color: #000;
    text-align: center;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 22.695px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-feature-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    margin-top: 0;
    background: #FFF;
    padding: 8px 15px;
    border-radius: 25px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    min-height: 120px;
}

.crown-left {
    width: 85px;
    height: 120px;
    flex-shrink: 0;
    object-fit: contain;
}

.crown-right {
    width: 85px;
    height: 120px;
    flex-shrink: 0;
    object-fit: contain;
}

.company-feature {
    color: #000;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.company-btn {
    width: 450px;
    max-width: 100%;
    height: 61px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.company-btn > * {
    position: relative;
    z-index: 3;
}

.company-btn::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 40px;
    z-index: 1;
}

.company-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    z-index: 2;
}

.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-btn.btn-primary::after {
    background-color: var(--color-red-button);
    transition: background-color 0.3s ease;
}

.company-btn.btn-primary {
    color: var(--color-white);
    border: none;
}

.company-btn.btn-primary:hover::after {
    background-color: #d32929;
}

.company-btn.btn-secondary::after {
    background-color: var(--color-blue-button);
    transition: background-color 0.3s ease;
}

.company-btn.btn-secondary {
    color: var(--color-white);
    border: none;
}

.company-btn.btn-secondary:hover::after {
    background-color: #2658B5;
}

.company-btn.btn-consult {
    width: 450px;
    max-width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 30;
    pointer-events: auto;
}

.company-btn.btn-consult:hover {
    transform: translate(-50%, 50%) translateY(-2px);
}

.company-btn.btn-review {
    width: 450px;
    max-width: 100%;
    margin: 10px 0 0 0;
    position: relative;
    z-index: 5;
}

.arrow-icon {
    width: 10px;
    height: auto;
}

/* ==========================================================================
   Problems Section
   ========================================================================== */

.problems-section {
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

.problems-section .problems-header,
.problems-section .problems-grid,
.problems-section .advice-box {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.problems-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* スマホ用タイトル画像 - PCでは非表示 */
.problems-title-sp-image {
    display: none;
}

.problems-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.problems-main-title {
    font-family: "Toppan Bunkyu Midashi Gothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    color: #000;
    display: inline-block;
}

.problems-main-title .title-green {
    background: #258414;
    color: #FFF;
    width: 101px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Toppan Bunkyu Midashi Gothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
}

.problems-main-title .title-yellow {
    background: #B6FFA9;
    border: 1px solid #000;
    color: #000;
    width: 146px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Toppan Bunkyu Midashi Gothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
}

.danger-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    align-self: center;
    transform: rotate(11.961deg);
}

.problems-subtitle {
    font-family: "Toppan Bunkyu Midashi Gothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.problems-subtitle .subtitle-normal {
    font-size: 36px;
    font-weight: 700;
    display: inline-flex;
    gap: 0;
}

.problems-subtitle .char-with-dot {
    position: relative;
    display: inline-block;
}

.problems-subtitle .char-with-dot::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #13913B;
    border-radius: 50%;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.problems-subtitle .subtitle-highlight {
    background: #DF0;
    height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    padding: 0 15px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.problem-item {
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 0;
    text-align: left;
    overflow: hidden;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.problem-number {
    background-color: #508E2D;
    color: var(--color-white);
    width: 120px;
    height: 60px;
    border-radius: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.problem-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.problem-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.problem-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 0 20px;
    color: #FFF;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 150px;
    padding-bottom: 10px;
    border-bottom: 1px solid #FFF;
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
}

.problem-description {
    font-size: 14px;
    line-height: 1.7;
    color: #FFF;
    padding: 15px 20px 25px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.advice-box {
    position: relative;
    background: #FFF;
    width: 1200px;
    max-width: 100%;
    min-height: 140px;
    border: 1px solid #707070;
    border-radius: 12px;
    padding: 50px 40px 30px;
    box-shadow: 5px 5px 0 0 #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 150px;
    overflow: visible;
}

.comparison-advice {
    margin-bottom: 40px;
}

.advice-icons {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    gap: 0;
    z-index: 2;
}

.advice-icon-corner {
    width: 70px;
    height: auto;
    display: block;
    margin-top: -38px;
    margin-left: -24px;
}

.advice-icon-main {
    width: 110px;
    height: auto;
    display: block;
    margin-left: -5px;
    margin-top: -15px;
}

.advice-arrow {
    position: absolute;
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%);
    width: 224.217px;
    height: 68px;
    z-index: 2;
}

.advice-text {
    color: #000;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

/* ==========================================================================
   Comparison Section
   ========================================================================== */

.comparison-section {
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

.comparison-section .comparison-header,
.comparison-section .comparison-table-wrapper,
.comparison-section .comparison-note,
.comparison-section .advice-box,
.comparison-section .comparison-banner-link {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-header {
    margin-bottom: 50px;
}

.comparison-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}

.intro-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* 3行目のタイトル */
.intro-line-3 {
    flex-direction: row;
    gap: 0;
    margin-top: 5px;
    flex-wrap: nowrap;
}

/* 小工事 */
.text-small-work {
    color: #000;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 47.702px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: #F2FF00;
    padding: 5px 15px;
}

/* から気軽に頼める */
.text-easy-request {
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 29.146px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* 地域密着型 */
.text-local {
    display: inline-flex;
    gap: 5px;
}

.text-local .char-bg {
    color: #FFF;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 50.565px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: #0A3077;
    padding: 5px 12px;
    display: inline-block;
}

/* ？ */
.question-mark {
    color: #000;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 50.565px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* hake icon */
.hake-icon {
    width: auto;
    height: 80px;
    margin-right: 5px;
}

/* それとも実績豊富な */
.text-rich-experience {
    color: #000;
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* 大手 */
.text-major {
    color: #FFF;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 1px solid #000;
    background: #6D7EE1;
    padding: 5px 15px;
    display: inline-block;
}

.section-title-main {
    color: #000;
    font-family: "Toppan Bunkyu Midashi Gothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.section-title-sub {
    color: #F00;
    font-family: "Toppan Bunkyu Midashi Gothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 53px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin: 0;
    display: inline-flex;
    gap: 0;
    white-space: nowrap;
}

/* メリット・デメリットの文字の上の丸 */
.section-title-sub .char-with-dot {
    position: relative;
    display: inline-block;
}

.section-title-sub .char-with-dot::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #5E77AF;
    border-radius: 50%;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.comparison-table {
    width: auto;
    max-width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 0;
    overflow: hidden;
    margin: 0 auto;
}

.comparison-table thead th {
    color: var(--color-white);
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

/* ヘッダー各列の背景色 */
.comparison-table thead th.col-type {
    background-color: #FFA29F;
}

.comparison-table thead th.col-merit {
    background-color: #FF9500;
}

.comparison-table thead th.col-demerit {
    background-color: #0A3077;
}

.comparison-table tbody td {
    padding: 20px;
    border: 1px solid var(--color-border);
    vertical-align: middle;
    height: 100%;
}

.comparison-table tbody tr {
    height: 100%;
}

.comparison-table thead th {
    border: 1px solid var(--color-border);
}

.type-cell {
    background-color: #FFE8E7;
    font-weight: bold;
    text-align: center;
    width: 200px;
    min-width: 200px;
    vertical-align: middle;
}

.merit-cell {
    background-color: #FFF4E6;
    font-size: 14px;
    line-height: 1.8;
    width: auto;
    min-width: 400px;
    max-width: 500px;
}

.demerit-cell {
    background-color: #E8EDF5;
    font-size: 14px;
    line-height: 1.8;
    width: auto;
    min-width: 400px;
    max-width: 500px;
}

.merit-cell ul,
.demerit-cell ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.merit-cell li,
.demerit-cell li {
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: none;
    white-space: nowrap;
    overflow: visible;
}

.merit-cell li:last-child,
.demerit-cell li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.comparison-note {
    font-size: 13px;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 30px;
}

.comparison-banner-link {
    display: block;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 40px;
}

.comparison-banner {
    display: block;
    width: 100%;
    height: auto;
}

/* ==========================================================================
   Points Section
   ========================================================================== */

.points-section {
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

.points-section .section-title-en,
.points-section .section-title-wrapper,
.points-section .points-grid {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-en {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: bold;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 10px;
}

.points-section .section-title-en {
    color: #C2C2C2;
    font-family: "Hiragino Kaku Gothic StdN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 41.086px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.section-title-wrapper {
    position: relative;
    text-align: center;
    display: block;
    width: 100%;
}

.points-section .section-title-jp {
    color: #000;
    font-family: "Toppan Bunkyu Midashi Gothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

/* スマホ用バナー（PCでは非表示） */
.points-banner-sp {
    display: none;
}

.title-line-1 {
    position: relative;
    display: inline;
}

.title-line-2 {
    display: inline;
}

.pc-br {
    display: inline;
}

.title-decoration-line {
    position: absolute;
    top: -25px;
    right: -55px;
    width: 50px;
    height: auto;
    z-index: 10;
}

.points-section .section-title-jp .title-black {
    color: #000;
    font-family: "Toppan Bunkyu Midashi Gothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.points-section .section-title-jp .title-red {
    color: #F00;
    font-family: "Toppan Bunkyu Midashi Gothic", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 30px;
    padding-left: 30px;
}

.point-item {
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 0;
    text-align: left;
    overflow: visible;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.point-number {
    background-color: #BEFF7E;
    color: #000;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Hiragino Kaku Gothic StdN", "ヒラギノ角ゴ StdN", sans-serif;
    font-size: 32.306px;
    font-weight: 800;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 3;
    line-height: 1;
}

.point-number .point-label {
    display: block;
    font-size: 18px;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 2px;
}

.point-number br {
    display: none;
}

.point-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
}

.point-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.point-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.point-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 0 20px;
    color: #FFF;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 150px;
    padding-bottom: 10px;
    border-bottom: 1px solid #FFF;
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
}

.point-description {
    font-size: 14px;
    line-height: 1.7;
    color: #FFF;
    padding: 15px 20px 25px;
    text-align: left;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Reform Companies Section
   ========================================================================== */

.reform-companies-section {
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
}

.reform-companies-section .companies-header-green,
.reform-companies-section .companies-catch,
.reform-companies-section .companies-main-title-wrapper {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.companies-header-green {
    background: #348324;
    width: 600px;
    max-width: 100%;
    margin: 0 auto 28px;
    padding: 8px 20px;
    position: relative;
}

.companies-header-title {
    color: #FFF;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 35.46px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    white-space: nowrap;
}

.triangle-arrow {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 12px solid #348324;
}

.companies-catch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
    flex-wrap: wrap;
}

.catch-small-work {
    color: #000;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 60.411px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    background: #F2FF00;
    padding: 0 15px;
}

.catch-from {
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 36.911px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.catch-full-reform {
    color: #FFF;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 60.411px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    background: #9FA35A;
    padding: 0 15px;
}

.catch-until {
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 36.911px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
}

.catch-de {
    position: relative;
    display: inline-block;
}

.catch-decoration-line {
    position: absolute;
    top: -15px;
    right: -40px;
    width: 50px;
    height: auto;
    z-index: 10;
}

.companies-main-title-wrapper {
    text-align: center;
    margin-top: 10px;
}

.companies-main-title {
    color: #0C0C0C;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 52.234px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: inline-block;
    margin: 0;
}

.companies-main-title .title-highlight {
    position: relative;
    display: inline-block;
}

.companies-main-title .title-highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: #CF0;
    z-index: -1;
}

/* ==========================================================================
   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: #0A3077;
    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: #0A3077;
    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: #0A3077;
    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: 60px 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;
}

.shonan-title {
    color: #FFF;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 47.702px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    background: #9FA35A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 61px;
}

.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-underline {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 15px;
    background: #FFF500;
    z-index: 1;
}

/* ニッカホーム用 - PC版のスタイル */
.company-name-section-nikka .company-name-large {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    white-space: nowrap;
}

/* ニッカホーム用 - 各行のスタイル（PC版は横並び） */
.nikka-line {
    display: inline;
    position: relative;
}

.nikka-line-1::after {
    content: ' ';
}

/* PC版ではアンダーラインなし（1行表示のため） */

.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-name-large::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 338px;
    height: 10px;
    background: #FFF500;
    z-index: 0;
}
*/

/* Company Screenshot Section */
.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;
}

/* 画像の影 - 強みセクションと同じデザイン（10px右下にずらす） */
.company-screenshot-section::before {
    content: '';
    position: absolute;
    top: calc(30px + 10px); /* padding分 + 縦のずれ */
    left: calc(30px + 10px); /* padding分 + 横のずれ */
    width: calc(100% - 60px); /* padding分を引く */
    height: calc(100% - 60px - 10px - 24px); /* padding + margin-bottom + caption分を引く */
    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;
}

/* Company Strengths Section */
.company-strengths-section {
    padding: 40px 30px;
    background: transparent;
}

.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;
}

/* しろくまの強みカード - 青い影 */
.shirokuma-strengths .strength-image-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: calc(100% - 4px);
    background: #ABDBFC;
    border: 1px solid #000;
    border-radius: 8px;
    z-index: 0;
}

/* ニッカの強みカード - 緑の影 */
.nikka-strengths .strength-image-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: calc(100% - 4px);
    background: #80F37E;
    border: 1px solid #000;
    border-radius: 8px;
    z-index: 0;
}

.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-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.company-cta-buttons .company-btn {
    width: 450px;
    max-width: 45%;
    height: 61px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    position: relative;
    z-index: 1;
    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 {
    width: 450px;
    max-width: 100%;
    height: 61px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    position: relative;
    z-index: 1;
    margin: 0;
}

.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: 40px;
    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 {
    display: flex;
    justify-content: center;
    padding: 30px;
    margin-top: 20px;
}

.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: #F3FBE9;
    padding: 0;
    max-height: fit-content;
}

.sidebar-widget {
    margin-bottom: 0;
    background: #F3FBE9;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

/* Search Widget */
.widget-search {
    padding: 20px;
    border-bottom: 1px solid #E0E0E0;
}

.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: 12px 50px 12px 15px;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    color: #8B8B8B;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.search-input-wrapper .search-field::placeholder {
    color: #8B8B8B;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 19.74px;
    font-style: normal;
    font-weight: 400;
}

.search-submit-icon {
    position: absolute;
    right: 10px;
    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: 24px;
    height: 24px;
    display: block;
}

.search-submit-icon:hover {
    opacity: 0.7;
}

/* Content List Widget */
.widget-content-list {
    padding: 0;
    border-bottom: 1px solid #E0E0E0;
}

.widget-title {
    margin: 0;
    padding: 15px;
}

.widget-title.bg-blue {
    color: #FFF;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: #0A3077;
    text-align: center;
}

.content-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.content-list li {
    margin-bottom: 12px;
}

.content-list li:last-child {
    margin-bottom: 0;
}

.content-list a {
    color: #000;
    font-family: "Hiragino Maru Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    display: block;
    padding: 10px;
    background: #FFF;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.content-list a:hover {
    background: #E8F5D8;
    opacity: 1;
}

/* 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;
    }

    /* 「で選ぶなら」のline-2画像サイズ調整（480px以下） */
    .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 Section
   ========================================================================== */

.faq-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 0;
    padding: 60px 20px;
}

.faq-section .faq-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    background: #FFF;
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    padding: 50px 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    flex-wrap: wrap;
}

.faq-title-green {
    border: 1px solid #000;
    background: #9FA35A;
    color: #FFF;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 306px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-title-text {
    color: #000;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.faq-title-question {
    position: relative;
    display: inline-block;
}

.faq-line-icon {
    position: absolute;
    top: -15px;
    right: -35px;
    width: 40px;
    height: auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    padding: 25px 0;
    border-bottom: 1px solid #CCCCCC;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-q-icon {
    width: 32px;
    height: 32px;
    background: #0A3077;
    color: #FFF;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-q-text {
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.faq-answer {
    color: #333;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
    padding-left: 47px;
}

/* 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;
    }
}

/* ==========================================================================
   業者一覧セクション
   ========================================================================== */

.company-list-section {
    background-color: transparent;
    padding: 0 20px 80px;
    width: 100%;
    max-width: 100%;
}

.company-list-container {
    max-width: 1280px;
    margin: 0 auto;
}

.company-list-header {
    text-align: center;
    margin-bottom: 40px;
}

.company-list-title {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
    font-size: 35px;
    font-weight: 600;
    font-style: normal;
    line-height: normal;
    display: inline;
}

.company-list-title .title-red {
    color: #F00;
}

.company-list-title .title-text {
    color: #000;
}

.company-list-title .title-ran {
    position: relative;
    display: inline-block;
}

.company-list-title .title-decoration {
    position: absolute;
    top: -8px;
    right: -20px;
    width: 28px;
    height: auto;
}

.company-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.company-list-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.company-list-card.company-card-hidden {
    display: none;
}

.company-list-card.company-card-visible {
    display: block;
    animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-list-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0A3077;
    color: #fff;
    padding: 16px 20px;
    text-decoration: none;
    transition: background 0.3s ease;
    min-height: 70px;
}

.company-list-btn:hover {
    background: #0d3d94;
    opacity: 1;
}

.company-list-btn .btn-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.company-list-btn .btn-text {
    margin: 0;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}

.company-list-btn .btn-text-line1 {
    /* 会社名（1行目）のスタイル */
}

.company-list-btn .btn-text-line2 {
    /* 店舗名（2行目）のスタイル */
    font-size: 15px;
}

.company-list-btn .btn-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-left: 12px;
}

.company-list-btn .btn-arrow svg {
    width: 24px;
    height: 24px;
}

.company-list-description {
    padding: 16px 20px;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    border-bottom: 1px solid #eee;
}

.company-list-map {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
}

.company-list-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.company-list-info {
    padding: 16px 20px;
}

.company-info-item {
    margin-bottom: 12px;
}

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

.company-info-item .info-label {
    display: inline-block;
    background: #D9E388;
    border: 1px solid #000;
    color: #505050;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    padding: 2px 8px;
    margin-bottom: 6px;
}

.company-info-item .info-value {
    display: block;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.company-list-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.company-list-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #E63939;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 60px;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.company-list-more-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

.company-list-more-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.company-list-more-btn .btn-icon svg {
    width: 24px;
    height: 24px;
}

.company-list-more-btn.is-expanded .btn-icon {
    transform: rotate(180deg);
}

/* 業者一覧セクション - レスポンシブ対応 */
@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: 30px;
    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: #0C88AD;
    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: 15px;
        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 60px;
    }

    .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: #F3FBE9;
    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 {
    background-color: #F5F5F5;
    padding: 60px 20px 80px;
    width: 100%;
    max-width: 100%;
}

.useful-column-container {
    max-width: 1280px;
    margin: 0 auto;
}

.useful-column-title {
    color: #000;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 40px;
}

.useful-column-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.useful-column-grid .area-column-card.column-card-hidden {
    display: none;
}

.useful-column-grid .area-column-card.column-card-visible {
    display: block;
    animation: fadeInUp 0.4s ease forwards;
}

.useful-column-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.useful-column-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #E63939;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 60px;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.useful-column-more-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    opacity: 1;
}

.useful-column-more-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.useful-column-more-btn .btn-icon svg {
    width: 24px;
    height: 24px;
}

.useful-column-empty {
    text-align: center;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    color: #666;
    padding: 40px 20px;
}

/* 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: 40px 16px 60px;
    }

    .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: #804EA2 !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: #804EA2;
        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: #804EA2;
        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;
    }

    /* よくあるお悩みセクション */
    .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: 0;
    }

    /* スマホ用バナー表示 */
    .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: #0A3077;
    padding: 20px 30px;
    margin: 0;
    text-align: center;
    border-radius: 4px;
}

/* Introduction */
.policy-intro {
    background: #F8F9FA;
    border-left: 4px solid #0A3077;
    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 #0A3077;
}

.sitemap-page-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0A3077;
    margin: 0;
}

.sitemap-intro {
    margin-bottom: 40px;
}

.sitemap-intro p {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.sitemap-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e0e0e0;
}

.sitemap-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sitemap-section-title {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0A3077;
    margin: 0 0 20px 0;
    padding-left: 15px;
    border-left: 4px solid #0A3077;
    line-height: 1.4;
}

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

.sitemap-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    position: relative;
    padding-left: 20px;
}

.sitemap-list li:last-child {
    border-bottom: none;
}

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

.sitemap-list li a {
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.sitemap-list li a:hover {
    color: #0A3077;
    padding-left: 5px;
}

/* Sitemap Page Responsive */
@media (max-width: 768px) {
    .sitemap-article {
        padding: 25px 20px;
    }

    .sitemap-page-title {
        font-size: 22px;
    }

    .sitemap-intro p {
        font-size: 14px;
    }

    .sitemap-section {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .sitemap-section-title {
        font-size: 17px;
        padding-left: 12px;
    }

    .sitemap-list li {
        padding: 10px 0;
        padding-left: 18px;
    }

    .sitemap-list li a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .sitemap-article {
        padding: 20px 15px;
    }

    .sitemap-page-title {
        font-size: 20px;
    }

    .sitemap-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .sitemap-section-title {
        font-size: 16px;
        padding-left: 10px;
        margin-bottom: 15px;
    }

    .sitemap-list li {
        padding: 8px 0;
        padding-left: 16px;
    }

    .sitemap-list li::before {
        width: 6px;
        height: 6px;
    }

    .sitemap-list li a {
        font-size: 13px;
    }
}

/* ===============================
   横スクロールヒント（スマホ用）
   =============================== */
.scroll-hint {
    display: none; /* PCでは非表示 */
}

@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;
        }
    }
}
