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

:root {
    --color-white: #FFFFFF;
    --color-black: #000;
    --font-main: "Gothic A1","Noto Sans JP", sans-serif;
    --font-en: "IBM Plex Sans", 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: #000;
    background-color: var(--color-white);
    max-width: 100vw;
    overflow-x: hidden;
	position: relative;
	z-index: -1;
}

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

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


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

.pc-only {
    display: inline;
}

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


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

.top-bar {
    background-color: #fff;
    height: 18px;
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.top-bar-inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: flex-end;
}

.top-bar-text {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    padding-right: 16px;
}

/* トップバーのリンクスタイル */
.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-image: none;
    box-shadow: none;
    height: 48px;
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 16px;
    left: 0;
    z-index: 9998;
    position: absolute;
    top: 4vw;
}

.header-container {
    max-width: 92.84%;
    background-color: #fff;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 80px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.header-left {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 10px;
}

.header-left img {
    height: 50px;
    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;
    margin-right: 24px;
}

.main-navigation li:first-child a {
    background-color: #96B3AE;
}
.main-navigation li:last-child a {
    background-color: #E48181;
}

.main-navigation a {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    padding: 9px 0;
    width: 178px;
    display: flex;
    line-height: 1.3;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    position: relative;
}
.main-navigation a::after{
    width: 6px;
    height: 11px;
    content: "";
    position: absolute;
    background: url(../images/arrow_right_01.svg) no-repeat;
    background-size: contain;
    right: 15px;
    top: 40%;
}

.header-right a:hover {
    opacity: 0.8;
}

/* Page Layout - トップバー・ヘッダー固定分のpadding調整 */
#page {
    padding-top: 18px;
	position: relative;
	z-index: -1;
	
}

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

/* ==========================================================================
   Hamburger Menu (Mobile)
   ========================================================================== */
/* 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;
}


.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: #000;
}

.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: #234D81;
    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;
}

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

.hero-section {
    width: 100%;
    max-width: 100%;
    padding: 0;
	position: relative;
	z-index: -1;
    margin-top: -50px;
}

.hero-content {
    background-image: url('../images/mv.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    aspect-ratio: 1303 / 670;
    padding: 11.1vw 5.4vw 2.13vw;
    position: relative;
    z-index: -3;
}

.hero-top-copy{
    font-size: 1.83vw;
    color: #002175;
    line-height: 1.5;
    font-weight: bold;
    background-color: #fff;
    padding: 8px 42px 6px;
    margin-bottom: 9px;
}
.hero-top-copy .yellow-text{
    color: #DB8B41;
    position: relative;
    font-size: 2vw;
}
.hero-top-copy .yellow-text::before{
    width: 3.15vw;
    height: 3.6vw;
    background: url(../images/deco_fv.webp) no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    top: -3.5vw;
    right: -2vw;
}
.hero-sub-copy{
    color: #002175;
    font-size: 3.7vw;
    font-weight: bold;
    -webkit-text-stroke: .46vw #fff;
    paint-order: stroke fill;
}
.hero-sub-copy .large-text{
    font-size: 4.9vw;
}
.hero-main-title{
    color: #002175;
    font-size: 5.75vw;
    line-height: 1;
    margin-top: 0.7vw;
    font-weight: bold;
    margin-bottom: 2vw;
    -webkit-text-stroke: .46vw #fff;
    paint-order: stroke fill;
    position: relative;
}
.hero-letter-spacing{
    letter-spacing: -0.2em;
}
.hero-crown-copy{
    position: absolute;
    display: inline-block;
    color: #4B4B90;
    -webkit-text-stroke: 0;
    font-size: 1.92vw;
    right: -19vw;
    top: 2vw;
}
.hero-crown-copy::before{
    content: "";
    background: url(../images/illust_crown_left.webp) no-repeat;
    background-size: contain;
    width: 8.1vw;
    height: 8.1vw;
    position: absolute;
    left: -35%;
    top: -4vw;
}
.hero-crown-copy::after{
    content: "";
    background: url(../images/illust_crown_right.webp) no-repeat;
    background-size: contain;
    width: 8.1vw;
    height: 8.1vw;
    position: absolute;
    right: -35%;
    top: -4vw;
}
.hero-bottom-copy{
    font-size: 2.28vw;
    font-weight: bold;
    background: linear-gradient(transparent 0%, #FFF600 0%);
    background-size: 100% .9vw;
    background-repeat: no-repeat;
    background-position: 0 90%;
    display: inline;
}

.hero-cta__wrapper{
	z-index: 50;
    margin-top: 1.67vw;
    transition: all 0.3s ease;
}

.hero-cta {
    max-width: 47.3vw;
    width: 100%;
    display: block;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out 0.8s forwards;
    transition: transform 0.3s ease;
    margin: 0 auto;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

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

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

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

/* ==========================================================================
Main Content
========================================================================== */
.site-main{
	position: relative;
	z-index: -1;
}
.main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
INDEX Section
========================================================================== */

.content-index {
    background: linear-gradient(to right, #BED6D9, #37D6EB);
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.index-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    border-radius: 0;
    justify-content: center;
}

.index-item {
    flex: 1;
    padding: 30px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #fff;
    position: relative;
    transition: background-color 0.3s ease;
    min-height: 100px;
    flex-direction: column;
    max-width: 137px;
}
.index-item::before{
    width: 7px;
    height: 12px;
    background-color: #fff;
    position: absolute;
    top: 5px;
    left: 12px;
    content: "";
}

.index-item:first-child {
    border-left: 1px solid #fff;
}

.index-item:hover {
    background-color: #96CCD7;
}

.index-title-item-sp{
    display: none;
}

.index-item span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #234D81;
    z-index: 2;
    position: relative;
}

.index-item::after{
    content: "";
    background-image: url(../images/arrow_gray.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 22px;
    height: 9px;
    position: absolute;
    left: -10px;
    right: 0;
    margin: 0 auto;
    bottom: 15px;
    transition: transform .6s ease;
}
.index-item:hover::before{
    transform: translateY(5px);
}

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

/* ==========================================================================
Chance Section
========================================================================== */
/* --- Chance Section --- */
.chance-section {
    background-color: #fdfaf3;
    padding: 46px 0 54px;
    overflow: hidden;
    font-family: "Noto Sans JP", sans-serif;
}

.chance-inner {
    max-width: 1217px;
    margin: 0 auto;
}

/* タイトルカプセル（指定のグラデーションを応用） */
.chance-title-capsule {
    max-width: 724px;
    margin: 0 auto 32px;
    background: linear-gradient(to right, #65ADE8, #737373);
    padding: 11px 42px 6px;
    border-radius: 50px;
    text-align: center;
    position: relative;
}

.chance-main-title {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 0.05em;
}
.chance-main-title::before{
    content: "";
    width: 29px;
    height: 31px;
    background-image: url(../images/deco_title_01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -20px;
    left: -29px;
}
.chance-main-title::after{
    content: "";
    width: 29px;
    height: 31px;
    background-image: url(../images/deco_title_02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -20px;
    right: -29px;
}

.chance-main-title .text-yellow {
    color: #FAEA82;
}

/* カードレイアウト */
.chance-card-wrapper {
    display: flex;
    gap: 28px;
    align-items: stretch;
}

.chance-card {
    background: #F2F2F2;
    border-radius: 30px;
    padding: 36px 10px 20px 36px;
    flex: 1;
    position: relative;
    box-shadow: 8px 8px 0 0 #A6D482;
}
.chance-card.is-left{
    max-width: 497px;
    padding-left: 125px;
}
.chance-card.is-right{
    max-width: 692px;
}

/* 「実は、」の画像 */
.chance-jitsuwa {
    width: fit-content;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 4px;
}
.chance-jitsuwa img {
    width: 74px;
    height: 100%;
}

/* テキスト系 */
.chance-content {
    position: relative;
    z-index: 2;
}

.chance-heading {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    color: #234D81;
    margin-bottom: 25px;
}
.chance-heading .color-blue {
    color: #4B8BDB;
}

.chance-lead {
    font-size: 17.62px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 55px;
    margin-left: 64px;
}

.chance-text {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 1.5em;
}

.chance-text .marker-yellow {
    background: linear-gradient(transparent 0%, #AAFF00 0%);
    background-size: 100% 8px;
    background-repeat: no-repeat;
    background-position: 0 95%;
    font-weight: bold;
}

/* ボタン */
.chance-btn-area {
    margin-top: 30px;
}
.chance-btn {
    display: inline-block;
    background-color: #60AA45;
    color: #fff;
    text-decoration: none;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s;
}
.chance-btn:hover {
    opacity: 0.8;
}

/* 装飾画像の位置調整 */
.chance-map-img {
    position: absolute;
    bottom: 64px;
    left: -20px;
    width: 45%;
    z-index: 1;
    opacity: 0.9;
}
.chance-map-img img { width: 100%; }

.chance-panel-img {
    position: absolute;
    top: -13px;
    right: 0;
    width: 47%;
    z-index: 1;
}
.chance-panel-img img { width: 100%; }

/* レスポンシブ：1300px以下で縦並びにする場合 */
@media (max-width: 1200px) {
    .chance-card-wrapper {
    flex-direction: column;
    align-items: center;
    }
    .chance-card {
        width: 100%;
        max-width: 700px;
        margin-bottom: 40px;
    }
    .chance-panel-img {
            position: relative;
        right: 0;
        top: 0;
        width: min(240px, 100%);
        margin: 20px auto 0;
    }
}

/* ==========================================================================
Features Section
========================================================================== */
.features-section {
    width: 100%;
    padding-bottom: 37px;
    background-color: #fdfaf3;
}

.features-container {
    max-width: 1083px;
    margin: 0 auto;
    text-align: center;
}

.features-main-title {
    text-align: center;
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    background-color: #6F8597;
    border-radius: 50px;
    padding: 6px 20px 0 20px;
}

.features-main-title::before{
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../images/arrow_gray_02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -24px;
}

.features-intro {
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 48px;
}

/* グリッドレイアウト */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.bottom-row {
    max-width: 717px;
    margin: 0 auto 23px;
    gap: 17px;
    grid-template-columns: repeat(2, 1fr);
}

/* カード基本 */
.feature-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 20px 25px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    height: 490px;
}
.small-card{
    border: 1px solid #000;
    height: 417px;
}

/* 強調カード */
.feature-card.is-highlight {
    border: 4px solid #006CEF;
}

.recommend-tag {
    position: absolute;
    top: -40px;
    left: 25px;
    background: #006CEF;
    color: #fff;
    padding: 7px 36px;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    font-size: 16px;
}

/* カード内アイコンとタイトル */
.card-top {
    margin-bottom: 16px;
    border-bottom: 1px solid #BED1E9;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.icon-circle {
    width: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle img { width: 100%; }

.card-type-title {
    font-size: 20px;
    font-weight: bold;
    color: #006CEF;
    line-height: 1.3;
}
.card-type-title span { font-size: 20px; }
.color-green { color: #528c3d; }
.color-orange { color: #d18d4d; }
.color-purple { color: #B149C4; }
.color-lightblue { color: #5da0db; }

/* メリット・デメリット */
.merit-title, .demerit-title {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}
.merit-title::before {
    content: "";
    background: url(../images/icon_good.webp) no-repeat;
    background-size: contain;
    width: 44px;
    height: 42px;
    display: block;
}
.demerit-title::before {
    content: "";
    background: url(../images/icon_bad.webp) no-repeat;
    background-size: contain;
    width: 44px;
    height: 42px;
    display: block;
}

.merit-title { color: #006CEF; }
.demerit-title { color: #4F4A4E; margin-top: 3px; }

.list {
    list-style: none;
    padding: 0;
}
.list li {
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    line-height: 2;
    text-align: left;
}
.list li::before {
    content: "・";
    position: absolute;
    left: 0;
}

/* 矢印 */
.center-arrow, .small-arrow {
    text-align: center;
}
.center-arrow img { width: 111px; margin-bottom: 18px;}
.small-arrow img { width: 111px; margin-bottom: 9px;}

/* メインPOINTボックス */
.main-point-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 16px 23px;
    max-width: 667px;
    margin: 0 auto 38px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border: 1px solid #000;
}
.point-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}
.point-icon img { width: 103px; }

.point-label {
    display: inline-block;
    color: #fff;
    background-color: #B149C4;
    line-height: 1.2;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 9px;
    border-radius: 30px;
    padding: 3px 17px;
}
.point-text p {
    font-size: 16px;
    line-height: 2;
    text-align: left;
    font-weight: 700;
}

/* 下段フッターエリア（2つのPOINT） */
.bottom-footer-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 83px;
    max-width: 1083px;
    margin: 0 auto;
}

.sub-point-box {
    display: flex;
    align-items: center;
    padding: 11px 15px 17px;
    border-radius: 10px;
    text-align: left;
    min-height: 167px;
    border: 1px solid #000;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.purple-bg { background-color: #F3F1FA; }
.green-bg { background-color: #ECF7F9; }

.sub-point-icon img { width: 124px; }
.sub-point-text{
    width: 100%;
}
.point-label-sm {
    display: inline-block;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
    background-color: #B149C4;
    padding: 3px 17px;
    border-radius: 50px;
    line-height: 1.2;
}

.sub-point-text p {
    font-size: 16px;
    line-height: 2;
    font-weight: bold;
    padding-left: 17px;
}

/* ==========================================================================
Diagnosis Section
========================================================================== */

/* --- 全体レイアウト --- */
.diagnosis-section {
    background: url(../images/bg_diagnosis.webp) no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: bottom;
}

/* 横スクロール制御 */
.diagnosis-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* iOSサクサク用 */
}

/* --- フローチャート部分 --- */
.flowchart-area {
    width: max(1116px, 100vw);
    margin: 0 auto;
    margin-bottom: 15px;
    text-align: center;
    background-color: #fff;
    position: relative;
    padding-top: 39px;
    padding-left: 10px;
}
.title-wrap{
    width: max(1116px, 100vw);
}
.flow-title-top{
    font-size: 32px;
    font-weight: 700;
}

/* タイトル部分 */
.flow-main-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 29px;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-top: -28px;
    display: inline-block;
}
.flow-main-title span {
    display: inline-block;
    color: #fff;
    font-size: 64px;
    font-family: "Anonymous Pro", monospace;
    -webkit-text-stroke: 15px #242E54;
    paint-order: stroke fill;
    position: relative;
}
.flow-main-title span::before{
    width: 586px;
    height: 50px;
    background-color: #242E54;
    position: absolute;
    content: "";
    bottom: 18px;
    left: -300px;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}
.flow-main-title::before{
    content: "";
    width: 29px;
    height: 31px;
    background-image: url(../images/deco_title_01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 3px;
    left: -72px;
}
.flow-main-title::after{
    content: "";
    width: 29px;
    height: 31px;
    background-image: url(../images/deco_title_02.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 3px;
    right: -72px;
}

/* ========== キャンバス ========== */
.flow-canvas {
    position: relative;
    width: 1086px;
    height: 890px;
    margin: 0 auto;
}

/* 矢印背景画像 */
.flow-lines-bg {
    position: absolute;
    top: 0;
    left: -15px;
    width: 1111px;
    height: 100%;
    background-image: url('../images/bg_chart.webp');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

/* ========== 共通ボックス ========== */
.fc-box {
    position: absolute;
    background: #F9FAFE;
    border: 2px solid #242E54;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 25px 15px;
    z-index: 5;
    font-weight: 700;
    line-height: 1.5;
    font-size: 16px;
    text-align: center;
    width: 500px;
}
.fc-box-orange{
    border: 2px solid #DB8B41;
    background-color: #fff;
    padding: 0;
}
.fc-box-blue{
    border: 2px solid #2188AD;
    background-color: #fff;
    padding: 0;
}
.fc-box .icon-sun img {
    width: 107px;
    margin-right: 14px;
}
  /* ========== YES / NO ボタン ========== */
.btn-yn {
    font-size: 36px;
    font-weight: 900;
    position: absolute;
    z-index: 10;
    line-height: 1;
    font-family: "Anonymous Pro", monospace;
}

.btn-yn-02 {
    font-size: 28px;
    font-weight: 900;
    position: absolute;
    z-index: 10;
    line-height: 1;
    font-family: "Anonymous Pro", monospace;
}
.is-yes { color: #DB8B41; }
.is-no  { color: #2188AD; }
  /* ========== 吹き出し ========== */
.speech-bubble {
    padding: 27px 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    position: relative;
    z-index: 1;
}

.speech-bubble.speech-bubble-orange::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/fukidashi_orange.webp) no-repeat;
    background-size: contain;
    width: 226px;
    height: 100px;
    z-index: -1;
}
.speech-bubble.speech-bubble-blue::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/fukidashi_blue.webp) no-repeat;
    background-size: contain;
    width: 226px;
    height: 100px;
    z-index: -1;
}
/* ========== 人物＋枠線ボックス ========== */
.char-wrap {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
}
.node-border-box {
    background: #fff;
    border-radius: 30px;
    z-index: 5;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    display: flex;
    align-items: center;
}
.node-border-box.orange  { border: 1px solid #DB8B41; }
.node-border-box.blue {border: 1px solid #2188AD;}
.node-border-box .inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========== 右側オプションカード ========== */
.path-options-wrap {
    position: absolute;
    display: flex;
    gap: 8px;
    z-index: 5;
}
.option-card {
    background: #fff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}
.option-card.orange { border: 2px solid #D18D4D; }
.option-card.blue   { border: 2px solid #4D8DBD; }
.option-card-title { font-weight: 700; font-size: 13px; margin-bottom: 5px; color: #000;}
.option-card-title .highlight-orange { color: #DB8B41; font-size: 14px;}
.option-card-title .highlight-blue   { color: #2188AD; font-size: 14px;}
.card-comment {
    display: flex;
    gap: -4px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 15px;
    justify-content: center;
}
.card-comment-orange, .card-comment-blue{
    position: relative;
    z-index: 1;
}
.card-comment-orange::before{
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/fukidashi_orange_02.webp) no-repeat;
    background-size: contain;
    width: 128px;
    height: 100px;
    z-index: -1;
}
.card-comment-blue::before{
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/fukidashi_blue_02.webp) no-repeat;
    background-size: contain;
    width: 128px;
    height: 100px;
    z-index: -1;
}

/* --- 比較表 --- */
.comparison-table-area{
    background-image: url('../images/bg_diagnosis.webp'); 
    background-attachment: fixed; /* 背景固定 */
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 28px 0 47px;
}
.comparison-grid-wrapper{
    width: 100vw;
    
}
/* --- 比較表（カード）部分 --- */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    width: 1086px;
    margin: 0 auto;
    padding-bottom: 47px;
    padding-left: 10px;
}

.comp-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.comp-header {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

/* 各カラー設定 */
.card-hikarie .comp-header { background: #EB8102; }
.card-ecolife .comp-header { background: #509234; }
.card-sho .comp-header { background: #3966A6; }

.comp-body {
    padding: 18px 17px 25px;
    background-color: #FDFAF3;
    display: flex;
    flex-direction: column;
}
.comp-lead{
    font-size: 15px;
    flex: 1;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.comp-company-name {
    font-size: 20px;
    text-align: center;
    margin: 19px 0 20px;
    font-weight: bold;
    position: relative;
}
.comp-company-name::before{
    content: "";
    background: url(../images/illust_crown_left.webp) no-repeat;
    background-size: contain;
    width: 64px;
    height: 64px;
    position: absolute;
    left: 16px;
    top: -14px;
}
.comp-company-name::after{
    content: "";
    background: url(../images/illust_crown_right.webp) no-repeat;
    background-size: contain;
    width: 64px;
    height: 64px;
    position: absolute;
    right: 16px;
    top: -14px;
}
.comp-web-img{
    aspect-ratio: 310 / 170;
    height: 170px;
}
.comp-web-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.comp-body .source{
    font-size: 10px;
    margin-bottom: 11px;
}

/* 各項目の白い枠 */
.spec-item {
    background: #fff;
    border: 1px solid #AEAEAE;
    border-radius: 10px;
    padding: 13px 20px 8px;
    margin-bottom: 18px;
    text-align: center;
    min-height: 161px;
}
.spec-item-small{
    min-height: 115px;
}
.spec-item-wrapper{
    display: flex;
    gap: 14px;
    align-items: center;
}
.spec-icon{
    width: 57px;
}
.spec-item-inner{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.spec-label {
    font-weight: bold;
    font-size: 20px;
    color: #242E54;
}


/* 施工実績の赤い数字と11.84pxの黄色下線 */
.highlight-red {
    color: #FB8906;
    font-size: 34px;
    font-weight: 500;
    background-size: 100% 11.84px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    padding: 0 5px;
    font-family: var(--font-en);
}
.highlight-red .text-small{
    font-size: 24px;
}

.spec-none {
    font-size: 28px;
    color: #3966A6;
    font-weight: bold;
}
.spec-none-brown{
    color: #C09C76;
}

/* ◎ ○ △ の記号 */
.spec-mark {
    font-size: 24px;
    margin-bottom: 5px;
}
.is-orange { color: #FB8906; }    /* ◎ */
.is-green { color: #509234; }    /* ○ */
.is-blue { color: #3966A6; } /* △ */

.spec-text {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

/* フッターとボタン */
.comp-footer {
    padding: 0 15px 30px;
    background-color: #FDFAF3;
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.comp-footer .btn-white, .comp-footer .btn-orange{
    font-size: 15px;
    justify-content: space-between;
    gap: unset;
	padding-left: 75px;
}
.comp-footer .btn-white{
    padding-left: 37px;
}
/* ==========================================================================
Point Section
========================================================================== */

.point-section {
    width: 100%;
    padding: 67px 0 0 0;
}

.point-container {
    max-width: 1124px;
    margin: 0 auto;
    text-align: center;
}

/* メインタイトル（装飾付き） */
.point-main-title {
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 32px;
    color: #242E54;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
}
.point-main-title::before{
    content: "";
    width: 35px;
    height: 44px;
    background-image: url(../images/line_blue_left-top.webp);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -18px;
    left: -36px;
}
.point-main-title::after{
    content: "";
    width: 35px;
    height: 44px;
    background-image: url(../images/line_blue_right-bottom.webp);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -15px;
    right: -30px;
}

.point-list{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
/* 各カードのスタイル */
.point-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FCFAF3;
    padding: 46px 16px 40px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    text-align: left;
    gap: 30px;
}

/* 逆レイアウト用 */
.point-item.is-reverse {
    flex-direction: row-reverse;
}

.point-text-content {
    width: 600px;
}

.point-image {
    width: 43.68%;
}

.point-image img {
    width: 100%;
    height: auto;
}

/* ラベル部分（ベージュ背景） */
.point-labels {
    margin-bottom: 24px;
}

.label-sub {
    display: inline-block;
    background-color: #C09C76;
    color: #fff;
    padding: 0px 9px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 7px;
}

.label-main {
    background-color: #C09C76;
    color: #fff;
    padding: 0px 9px;
    font-size: 20px;
    font-weight: bold;
    width: fit-content;
}

/* 説明文 */
.point-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
}

/* オレンジ矢印のアドバイス文 */
.point-advice {
    position: relative;
    font-size: 16px;
    line-height: 2;
}

.point-advice::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 3px;
    width: 24px;
    height: 21px;
    background: url(../images/arrow_orange_right.webp) no-repeat;
    background-size: contain;
}

/* ==========================================================================
Company Introduction Section
========================================================================== */
.company-introduction-section{
    padding: 27px 0 104px 0;
    position: relative;
}
.introduction-title-wrapper{
    text-align: center;
}
.introduction-title{
    display: inline-block;
    color: #242E54;
    font-size: 40px;
    font-weight: 700;
    font-family: var(--font-en);
    position: relative;
    margin-bottom: 26px;
}
.introduction-title .orange-dashed{
    border-bottom: 3px #DB8B41 dashed;
}
.introduction-title .text-green{
    color: #548C3A;
    font-size: 64px;
    line-height: 0.8em;
    position: relative;
}
.introduction-title::before{
    content: "";
    width: 72px;
    height: 93px;
    background-image: url(../images/line_navy_left.webp);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 90px;
    left: -1px;
}
.introduction-title::after{
    content: "";
    width: 72px;
    height: 93px;
    background-image: url(../images/line_navy_right.webp);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 90px;
    right: -76px;
}
.introduction-title .text-green::before{
    content: "";
    width: 49px;
    height: 35px;
    background-image: url(../images/deco_title_3.webp);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -8px;
    right: -46px;
}
/* レイアウト基本 */
.company-introduction-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1157px;
    margin: 0 auto;
}

.company-main-content {
    max-width: 816px;
}

/* 会社ヘッダー */
.company-header-block {
    text-align: left;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px 0 0 0;
    margin-bottom: 19px;
}

.company-tag {
    display: inline-flex;
    background: #C8E7EB;
    padding: 9px 70px 9px 28px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
    align-items: center;
}
.company-tag-check{
    width: 39px;
    margin-right: 32px;
}

.company-name-box {
    display: flex;
    align-items: center;
}
.company-name-number-wrapper{
    font-size: 16.37px;
    color: #fff;
    background: url(../images/bg_heading.webp) no-repeat;
    display: block;
    padding: 12px 60px 8px 27px;
    background-size: 100% 100%;
}
.company-name-number{
    font-size: 32.73px;
    font-family: serif;
    margin-left: 6px;
}

.company-name {
    font-size: 33px;
    font-weight: bold;
    padding: 12px 0 7px 22px;
}
.company-web-capture{
    margin: 0 auto;
    width: 96.32%;
}

.source {
    font-size: 17.42px;
    text-align: right;
    margin-top: 5px;
}
.source a{
    text-decoration: underline;
}

/* 特徴ボックス */
.features-box {
    border: 2px solid #234D81;
    position: relative;
    margin: 67px 0 26px;
    background-color: #F4FAFE;
}

.features-box-title {
    position: absolute;
    top: -55px;
    left: -2px;
    background: #234D81;
    color: #fff;
    padding: 10px 48px;
    border-radius: 10px 10px 0 0;
    font-size: 22px;
    font-weight: bold;
}

.features-check-list {
    list-style: none;
    padding: 0;
}

.features-check-list li {
    position: relative;
    font-size: 17px;
    padding: 31px 39px 11px 107px;
    border-bottom: 1px solid #ACACAC;
}

.features-check-list li::before {
    content: "";
    position: absolute;
    background: url(../images/icon_check_02.webp) no-repeat;
    background-size: contain;
    left: 22px;
    top: 36px;
    width: 66px;
    height: 66px;
}

.features-check-list strong {
    display: block;
    font-size: 21px;
    color: #234D81;
}

/* 導入事例・口コミ 共通タイトル */
.sub-block-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}
.sub-block-title::after {
    content: "";
    background-color: #000;
    width: 654px;
    height: 1px;
    top: 50%;
    position: absolute;
    right: 0;
}

/* 導入事例 */
.case-grid {
    display: grid;
    gap: 11px;
    margin-bottom: 40px;
    grid-template-columns: repeat(2, 1fr);
}
.case-item {
    border: 1px solid #D3D3D3;
    border-radius: 10px;
    padding: 25px 25px 30px 25px;
    text-align: center;
}
.case-img img { width: 100%; height: 262px; object-fit: cover; }
.case-label { font-weight: bold; margin-top: 16px; color: #C09C76; font-size: 21px;}

/* 口コミ */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin-bottom: 84px;
}
.review-card {
    background: #C8E7EB;
    border-radius: 20px 20px 0 0;
    padding: 14px 9px 16px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.user-icon {
    width: 75px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 8px;
}
.review-card-inner{
    background-color: #fff;
    padding: 5px 11px 9px;
    height: 74%;
    display: flex;
    flex-direction: column;
}
.review-stars{
    width: 130px;
    margin: 0 auto 23px;
}
.review-card h5 { font-weight: bold; margin-bottom: 6px; font-size: 15.35px; }
.review-card p { font-size: 12px; line-height: 1.6; }
.review-card-inner .source{
    margin-top: auto;
}
.review-card-inner .continue{
    text-decoration: underline;
}
/* 会社概要 */
.overview-block {
    padding: 38px 46px 31px 0;
    border-radius: 100px 10px 10px 10px;
    position: relative;
}
.overview-block::before{
    width: 920px;
    height: 450px;
    background-color: #E8EEF6;
    border-radius: 0 50px 0 0;
    content: "";
    position: absolute;
    z-index: -1;
    right: -46px;
    top: 0px;
}
.overview-title {
    font-size: 32px;
    font-weight: bold;
    position: relative;
}
.overview-title::after {
    content: "";
    background-color: #000;
    width: 615px;
    height: 1px;
    top: 50%;
    position: absolute;
    right: -24px;
}
.overview-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 13px 23px 0px 8px;
    border-radius: 20px;
}
.overview-table {
    border-collapse: collapse;
    border-radius: 17px;
    overflow: hidden;
    background-color: #fff;
}
.overview-table tr{
    border-bottom: 1px solid #FFE5CA;
}
.overview-table th {
    background: #234D81;
    color: #fff;
    padding: 15px;
    width: 140px;
    font-size: 12px;
    text-align: center;
}
.overview-table td {
    padding: 15px;
    font-size: 12px;
    line-height: 1.2;
}
.overview-table tr:last-of-type{
    border-bottom: none;
}

/* 共通ボタン */
.company-action-btns {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}
.btn-orange {
    background: #FAC876;
    color: #202020;
    padding: 9px 26px 9px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    gap: 12px;
    font-size: 17px;
    align-items: center;
    text-align: center;
}
.btn-orange::after{
    width: 41px;
    height: 41px;
    content: "";
    display: block;
    background: url(../images/arrow_yellow.svg) no-repeat;
    background-size: contain;
}
.btn-orange:hover{
    opacity: 0.8;
}
.btn-white {
    border: 3.2px solid #FAC876;
    color: #202020;
    padding: 0 26px 0 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    gap: 12px;
    font-size: 17px;
    align-items: center;
    text-align: center;
    background-color: #fff;
}
.btn-white::after{
    width: 41px;
    height: 41px;
    content: "";
    display: block;
    background: url(../images/arrow_white.svg) no-repeat;
    background-size: contain;
}
.btn-white:hover{
    opacity: 0.8;
}





/* ==========================================================================
   Company Introduction Sidebar
   ========================================================================== */

.company-intro-sidebar {
    width: 306px;
    flex-shrink: 0;
    padding: 0;
    max-height: fit-content;
}

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

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

/* Search Widget */
.widget-search {
    padding-bottom: 15px;
    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;
    font-size: 19.74px;
    box-sizing: border-box;
    color: #8B8B8B;
    border: none;
    font-weight: 400;
    font-family: 'Zen Maru Gothic', sans-serif;
    border: 1px solid #000;
}

.search-input-wrapper .search-field::placeholder {
    color: #8B8B8B;
    font-size: 19.74px;
    font-style: normal;
    font-weight: 400;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.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: 30px;
    height: 30px;
    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: 8px;
    color: #fff;
    font-family: var(--font-en);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Zen Maru Gothic", sans-serif;
}


.widget-title.bg-navy {
    background: #0A3077;
}
.widget-title.bg-blue{
    background-color: #E8EEF6;
    color: #242E54;
    font-family: var(--font-main);
}

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

.content-list li {
    border-bottom: 1px solid #333;
    text-align: center;
}

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

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

.content-list a:hover {
    background: #F4FAFE;
    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-top: 18px;
}

.article-card {
    position: relative;
    margin-bottom: 8px;
    overflow: hidden;
    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: auto;
    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: var(--font-en);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    padding: 12px 0px;
    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;
}
.sidebar-button{
    border: #426CB6 1px solid;
    width: 100%;
    font-size: 16px;
    color: #04319A;
    display: flex;
    align-items: center;
    padding: 9px 24px 9px 14px;
    justify-content: space-between;
}
.sidebar-button:hover{
    opacity: 0.8;
}
.sidebar-button-icon{
    width: 45px;
}
.sidebar-button-arrow{
    margin-left: 20px;
}

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

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

.company-list-section {
    background-color: transparent;
    width: 100%;
    max-width: 100%;
}

.company-list-container {
    max-width: 1108px;
    margin: 0 auto;
    padding: 0 20px;
}
.company-list-section .section-title-wrapper{
    text-align: center;
}
.company-list-title {
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    text-align: center;
    line-height: 1.5;
    color: #000;
    display: inline-block;
    position: relative;
}
.company-list-title::before{
    content: "";
    width: 73px;
    height: 94px;
    position: absolute;
    left: -55px;
    top: 0%;
    background-image: url(../images/line_navy_left.webp);
    background-size: contain;
    background-repeat: no-repeat;
}
.company-list-title::after{
    content: "";
    width: 73px;
    height: 94px;
    position: absolute;
    right: -55px;
    top: 0%;
    background-image: url(../images/line_navy_right.webp);
    background-size: contain;
    background-repeat: no-repeat;
}
.company-list-title-deco{
    border-bottom: 3px dashed #DB8B41;
}
.company-list-title-bottom{
    position: relative;
}
.company-list-title-bottom::before{
    content: "";
    width: 40px;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: -55px;
    top: 40%;
}
.company-list-title-bottom::after{
    content: "";
    width: 40px;
    height: 1px;
    background-color: #000;
    position: absolute;
    right: -55px;
    top: 40%;
}
.company-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 30px;
}

.company-list-card {
    background: #fff;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 3.3px solid #6385A8;
    border-radius: 22px;
	display: flex;
    flex-direction: column;
}

.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: center;
    color: #000;
    padding: 18px 20px;
    text-decoration: none;
    transition: background 0.3s ease;
    min-height: 75px;
    text-align: center;
    border-bottom: 3px dotted #234D81;
}

.company-list-btn:hover {
    opacity: 0.9;
}

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

.company-list-btn .btn-text {
    margin: 0;
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}


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

.company-list-btn .btn-arrow {
    width: 25px;
}

.company-list-description {
    padding: 20px 30px 16px 30px;
    font-family: var(--font-en);
    font-size: 15px;
    line-height: 1.7;
    min-height: 190px;
    border-bottom: 1px solid #eee;
    border-radius: 10px;
}

.company-list-map {
    width: 93.6%;
    height: 181px;
    background: #f5f5f5;
    margin: 0 auto;
}

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

.company-list-info {
    padding: 37px 0 0 0;
	display: flex;
    flex-direction: column;
    height: auto; 
    flex: 1;
}

.company-info-item {
    margin-bottom: 12px;
    padding: 0 20px;
}
.company-info-item:nth-of-type(1){
    margin-bottom: 40px;
}
.company-info-item:nth-of-type(2){
	padding-bottom:20px;
}

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

.company-info-item .info-label {
    display: inline-block;
    color: #202020;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.company-info-item .info-value {
    display: block;
    font-size: 15px;
    color: #202020;
    font-weight: 700;
    line-height: 1.5;
}


.company-info {
    padding: 15px 12px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}
.company-info-btn-wrapper{
    text-align: center;
    margin-top: auto; 
    width: 100%;
}
.company-info-btn{
    margin: 0 auto;
    font-size: 17px;
    background: url(../images/bg_article-button.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 16px 0;
    width: 100%;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: block;
    color: #234D81;
}
.company-info-btn:hover{
    opacity: 0.7;
}
.company-info-btn::before{
    content: "";
    background-image: url(../images/arrow_blue.webp);
    width: 41px;
    height: 41px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

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

.company-list-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content:center;
    background-color: #242E54;
    gap: 48px;
    color: #fff;
    border: none;
    padding: 30px 19px 30px 77px;
    width: 320px;
    height: 90px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 34px;
    position: relative;
    box-shadow: 0px 8px 0 #000;
}

.company-list-more-btn:hover {
    transform: translateY(6px);
    box-shadow: none;
}

.company-list-more-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43.47px;
    padding-top: 5px;
}

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

/* ==========================================================================
SUBSIDY Section
========================================================================== */

/* 全体コンテナ */
.subsidy-section {
    width: 100%;
    padding: 52px 0 70px;
    background-image: url(../images/bg_hojo.webp);
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
}

.subsidy-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* タイトル部分 */
.subsidy-header {
    text-align: center;
    margin-bottom: 40px;
}

.subsidy-sub-title {
    font-size: 32px;
    font-weight: bold;
    color: #242E54;
    margin-bottom: 10px;
    -webkit-text-stroke: 3px #EEEEEF;
    paint-order: stroke fill;
}

.subsidy-main-title {
    font-size: 40px;
    font-weight: bold;
    color: #242E54;
    -webkit-text-stroke: 3px #EEEEEF;
    paint-order: stroke fill;
}
.subsidy-main-title .small-text{
    font-size: 32px;
}
.subsidy-main-title .blue-text{
    color: #234D81;
}

/* 対象設備（中央の枠） */
.subsidy-target-wrapper {
    position: relative;
    width: 748px;
    margin: 0 auto 80px;
    padding: 30px 40px;
}

.target-label {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #234D81;
    color: #fff;
    padding: 8px 40px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 24px;
}

.target-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 48px;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    background: #fff;
    border: 1px solid #234D81;
    border-radius: 30px;
    width: 350px;
    height: 150px;
}

.target-item-solar {
    width: 91px;
}
.target-item-battery{
    width: 85px;
    margin-right: 12px;
}

/* メインのカードエリア */
.subsidy-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 38px;
}

.subsidy-card {
    position: relative;
    width: 450px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    overflow: visible;
    display: flex;
    flex-direction: column;
}

/* 丸いアイコン部分 */
.card-icon {
    position: absolute;
    top: -35px;
    left: -37px;
    width: 132px;
    height: 132px;
    background: #fff;
    border-radius: 50%;
    border: 3px solid; /* 各色に合わせる */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.card-icon-solar {
    width: 91px;
}
.card-icon-battery{
    width: 57px;
}

/* カードのヘッダー色分け */
.card-blue .card-header { background-color: #234D81; border-color: #234D81; }
.card-blue .card-icon { border-color: #234D81; }
.card-green .card-header { background-color: #548C3A; border-color: #548C3A; }
.card-green .card-icon { border-color: #548C3A; }

.card-header {
    padding: 27px 20px 20px 100px; /* アイコンを避ける余白 */
    border-radius: 40px 40px 0 0;
    text-align: center;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.card-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.2;
}

/* カードの中身 */
.card-body {
    padding: 37px 30px 20px;
    display: flex;
    flex-direction: column;
}

.price-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: auto;
}

.price-label {
    border: 1px solid;
    padding: 6px 19px;
    font-weight: bold;
    font-size: 20px;
}

.card-blue .price-label { color: #234D81; border-color: #234D81; }
.card-green .price-label { color: #508b3e; border-color: #508b3e; }

.price-line {
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.price-line-top{
    margin-left: 20px;
}

.range, .prefix {
    font-size: 20px;
    font-weight: bold;
}

.num {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    color: #234D81;
}
.num-green{
    color: #508b3e;
}

.unit {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}
.unit-green{
    color: #508b3e;
}
.unit-blue{
    color: #234D81;
}

.extra-text {
    text-align: right;
    font-weight: bold;
    font-size: 20px;
    margin-top: -10px;
}

.note {
    font-size: 14px;
    color: #202020;
    text-align: center;
    line-height: 1.6;
}

/* ==========================================================================
SUBSIDY LIST　Section
========================================================================== */
/* 一覧セクション全体 */
.subsidy-list-section {
    width: 100%;
    padding: 0 0 104px 0;
    background-color: #fff;
}

.subsidy-list-container {
    width: 800px;
    margin: 0 auto;
}

/* タイトル */
.subsidy-list-title {
    font-size: 32px;
    font-weight: bold;
    color: #234D81;
    text-align: center;
    margin-bottom: 24px;
    -webkit-text-stroke: 3px #EEEEEF;
    paint-order: stroke fill;
}
.subsidy-list-title span {
    font-size: 24px;
    -webkit-text-stroke: 3px #EEEEEF;
    paint-order: stroke fill;
}

/* テーブルのラップ（角丸と影） */
.subsidy-table-wrapper {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 4px rgba(0,0,0,0.25);
    overflow: hidden; /* 角丸を効かせる */
    margin-bottom: 60px;
    border: 1px solid #e0e0e0;
}

.subsidy-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}


/* ヘッダー */
.subsidy-table thead th {
    background-color: #234D81;
    color: #fff;
    font-size: 15px;
    padding: 16px;
    font-weight: 500;
    border: none;
}

/* 各セルの基本設定 */
.subsidy-table td {
    padding: 14px 0px;
    border-bottom: 1px solid #BED1E9;
    font-size: 15px;
    vertical-align: middle;
}
td:nth-child(4){
    padding-left: 44px;
}
/* 列ごとの調整 */
.col-ward { width: 184px; text-align: center; }
.col-solar { width: 110px; text-align: center; }
.col-battery { width: 110px; text-align: center; }
.col-notes { width: auto; text-align: center;}

.subsidy-table tbody td:nth-child(1),
.subsidy-table tbody td:nth-child(2),
.subsidy-table tbody td:nth-child(3) {
    text-align: center;
    font-weight: 500;
    border-right: #BED1E9 1px solid;
}
.subsidy-table tbody .no-border td{
    border: none;
}

/* バッジ（あり・なし・未公表） */
.badge {
    display: inline-block;
    width: 59px;
    padding: 2px 0;
    border-radius: 30px;
    font-size: 15px;
    color: #fff;
    text-align: center;
}

.badge-blue { background-color: #245BA4; }   /* あり */
.badge-orange { background-color: #DB8B41; } /* 未公表 */
.badge-gray { background-color: #9A9A9A; }   /* なし */

/* 下部の注意書きボックス */
.subsidy-attention-box {
    width: 500px;
    margin: 0 auto;
    background-color: #EDF3F9;
    padding: 42px 14px;
    border-radius: 10px;
}

.attention-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

/* インフォメーションアイコン (i) */
.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
}

.attention-text {
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
}

/* ==========================================================================
FAQ Section
========================================================================== */

.faq-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 64px;
    padding: 46px 5% 88px;
    text-align: center;
    background-color: #E8EEF6;
    position: relative;
    z-index: -2;
}


.faq-container {
    background: #FFF;
    padding: 54px 0 88px 0;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}


.faq-title {
    color: #242E54;
    text-align: center;
    font-size: 32px;
    display: inline-block;
    line-height: 1.5;
    padding: 0px 49px 39px 49px;
    font-family: var(--font-en);
}
.faq-title-blue{
    color: rgba(35, 77, 129, 0.5);
    font-size: 40px;
    position: relative;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.faq-item {
    max-width: 926px;
    width: 71.23%;
    margin: 0 auto;
}

.faq-question {
    padding: 0 0 3px 28px;
    border-bottom: 1px solid #707070;
    position: relative;
    cursor: pointer;
}
.faq-question:hover{
    opacity: 0.7;
}
.faq-question::after{
    width: 23px;
    height: 27px;
    position: absolute;
    content: "";
    background: url(../images/arrow_down_01.webp) no-repeat;
    background-size: contain;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg); /* 初期回転角 */
    transition: transform 0.3s ease; /* アニメーション */
}
/* 開いた（is-activeクラスがついた）時の矢印 */
.faq-item.is-active .faq-question::after {
    transform: translateY(-50%) rotate(180deg); /* 180度回転 */
}

/* 回答の初期状態（非表示） */
.faq-answer {
    display: none;
    overflow: hidden;
}


.faq-q-text {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    max-width: 90%;
}
.faq-answer {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    padding: 10px 0 0 68px;
}



/* ==========================================================================
   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: #3C3D3D;
    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: 408px;
    height: auto;
    aspect-ratio: 750/367;
    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 a:hover{
    opacity: 0.8;
}


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


/* ==========================================================================
Footer
========================================================================== */

/* フッター上部セクション（エリアコラム・業者一覧） */
.footer-top-section {
    padding: 73px 20px 124px 20px;
}
.footer-top-article{
    max-width: 966px;
    margin: 0 auto 96px;
}
.footer-top-article-container{
    display: flex;
    gap: 20px;
}
.footer-top-article-card{
    width: 300px;
}
.footer-top-article-title{
    font-size: 16px;
    margin-top: 12px;
    font-family: var(--font-en);
}

.footer-top-container {
    max-width: 966px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-section-title {
    color: #234D81;
    border-bottom: 1px solid #000;
    padding-left: 10px;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 15px 0;
    position: relative;
}
.footer-section-title::before{
    width: 147px;
    height: 3px;
    background-color: #000;
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.5px;
}

.footer-section-content {
    background-color: #FFFFFF;
    padding: 25px 16px;
    flex: 1;
    border: 1px solid #707070;
}

.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 {
    color: #202020;
    margin-top: 0;
}

.footer-container {
    padding: 36px 16px 7px 67px;
    background-color: #C8E7EB;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.footer-navigation {
    width: 100%;
}

.footer-menu {
    display: flex;
    gap: 11px;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.footer-menu a {
    font-size: 16px;
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #000;
}

.footer-menu li:first-child a {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-disclaimer {
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

.copyright {
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
    text-align: right;
    padding-right: 28px;
}

@media (max-width: 767px) {
    .footer-content {
        gap: 15px;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 10px;
    }
}


/* ==========================================================================
   Area Column Grid (Archive Page)
   ========================================================================== */

.area-column-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.area-column-card {
    background: #FFF;
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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: 95%;
    aspect-ratio: 4 / 3;
    overflow: visible;
    background: #D9D9D9;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.area-column-card-image::before{
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #358AD5;
    content: "";
    height: 100%;
    position: absolute;
    z-index: -1;
    transform: translate(7px, 7px);
}

.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: 306px;
    flex-shrink: 0;
    padding: 0;
}

/* Sidebar Banner */
.sidebar-banner-widget {
    padding: 0;
    margin: 0;
}

.sidebar-banner-widget a {
    display: block;
    line-height: 0;
}

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

/* ==========================================================================
   Area Column Archive & Single Page
   ========================================================================== */

.company-archive-item {
    background-color: #ffffff;
    border: 2px solid #1B1B1B;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.08);
}
.company-archive-title {
    font-size: 22px;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0 0 15px 0;
    border-bottom: 2px dashed #ccc;
    padding-bottom: 15px;
    line-height: 1.5;
}
.company-archive-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 25px;
}
.company-archive-btn-area {
    display: flex;
    justify-content: flex-end;
}
.company-archive-btn-area .company-btn {
    display: inline-flex;
    align-items: center;
    background-color: #0A3077;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: opacity 0.3s;
}

.company-archive-btn-area .btn-arrow {
    width: 25px;
}
.area-column-archive,
.area-column-single {
    background-color: #FFF;
    padding-bottom: 60px;
	margin-top: 10vw;
}

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



/* ==========================================================================
   Useful Column Section (Top Page)
   ========================================================================== */

.useful-column-section {
    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;
}


/* ==========================================================================
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 */
.wp-block-group {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #E0E0E0;
}

.wp-block-group:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
    padding-bottom: 0;
}

.policy h2 {
    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 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;
}
.wp-block-navigation__container:only-child, .wp-block-page-list:only-child{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* ==========================================================================
   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;
}
.wp-block-navigation__container:only-child, .wp-block-page-list:only-child{
    width: 100%;
}

.wp-block-navigation .wp-block-navigation-item {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    position: relative;
    padding-left: 20px;
    width: 100%;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

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

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

.wp-block-navigation .wp-block-navigation-item 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;
}

.wp-block-navigation .wp-block-navigation-item li a:hover {
    color: #0A3077;
    padding-left: 5px;
}

/* トップページ以外の、ブロックエディタで作った表に適用 */
body:not(.home) .wp-block-table {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* テーブル全体の基本設定 */
body:not(.home) .wp-block-table table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border: 2px solid #c8e6e4 !important;
	margin-bottom: 30px;
}

/* 行の区切り線 */
body:not(.home) .wp-block-table tr {
  border-bottom: 1px solid #c8e6e4 !important;
}

body:not(.home) .wp-block-table tr:last-child {
  border-bottom: none !important;
}

/* 【重要】一番左のセル（thでもtdでも）を「見出し」スタイルにする */
body:not(.home) .wp-block-table tr th:first-child,
body:not(.home) .wp-block-table tr td:first-child {
  background-color: #5bbcb4 !important; /* 指定の緑色 */
  color: #fff !important;
  font-weight: bold;
  text-align: center;
  padding: 18px 24px;
  width: 160px; /* 見出しの横幅 */
  white-space: nowrap;
  border: none !important;
}

/* 【重要】二番目以降のセル（データ部分）のスタイル */
body:not(.home) .wp-block-table tr td:not(:first-child) {
  padding: 18px 28px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  border: none !important;
  text-align: left;
  background-color: #fff; /* 背景を白に固定 */
}

/* リンクのスタイル（データ部分のみ） */
body:not(.home) .wp-block-table td:not(:first-child) a {
  color: #333;
  text-decoration: none;
}

body:not(.home) .wp-block-table td:not(:first-child) a:hover {
  text-decoration: underline;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  /* 一番左のセル */
  body:not(.home) .wp-block-table tr th:first-child,
  body:not(.home) .wp-block-table tr td:first-child {
    width: 120px; /* 少し狭くする */
    padding: 12px 10px;
    font-size: 14px;
  }
  /* 二番目以降のセル */
  body:not(.home) .wp-block-table tr td:not(:first-child) {
    padding: 12px 15px;
    font-size: 14px;
  }
}