/* ==========================================================================
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: 'Zen Maru Gothic','Noto Sans JP', 'メイリオ', 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: #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: #333333;
    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: #A93228;
    color: #FFFFFF;
    width: 33px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 300;
    flex-shrink: 0;
}

.top-bar-text {
    color: #fff;
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    padding-right: 29px;
}

/* 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);
    background-image: none;
    box-shadow: none;
    height: 54px;
    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: 54px;
    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: 54px;
    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: 73px;
	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: 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: #04479B;
    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;
}

.hero-content {
    background-image: url('../images/mv_01.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    aspect-ratio: 1300 / 610;
    padding: 3.6vw 1.85vw 2.15vw;
    position: relative;
    z-index: -3;
}

.hero-top-copy{
    font-size: 2.46vw;
    color: #313131;
    line-height: 1.5;
    position: relative;
    text-align: center;
    margin-left: 5.4vw;
    font-weight: bold;
}
.hero-top-copy::before{
    content: "";
    background-image: url(../images/fukidashi_03.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 37.85vw;
    height: 12.5vw;
    position: absolute;
    z-index: -1;
    top: -2.5vw;
    left: -2vw;
}
.hero-top-copy .text-blue{
    color: #96CCD7;
}
.hero-gray-copy{
    display: inline-block;
    background-color: #6F6F6F;
    font-size: 1.85vw;
    color: #fff;
    margin-left: 15.38vw;
    line-height: 1.5;
    margin-top: 3.85vw;
    font-weight: bold;
    padding: 0 1.3vw;
}
.hero-gray-copy .yellow-text{
    color: #FFCF00;
}
.hero-blue-box{
    font-size: 3.7vw;
    line-height: 1;
    margin-top: 2.5vw;
    margin-left: 5.4vw;
    color: #093077;
    font-weight: bold;
}
.hero-blue-large{
    font-size: 5.43vw;
    background-color: #093077;
    padding: 0 1.54vw;
    color: #fff;
}
.hero-blue-large:not(:nth-of-type(5)){
    margin-right: 0.77vw;
}
.hero-main-title{
    color: #093077;
    font-size: 6.15vw;
    line-height: 1.45;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin-top: 0.7vw;
}

.hero-cta__wrapper{
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    left: 0;
    margin: 0 auto;
    right: 0;
    bottom: 2.15vw;
	z-index: 50;
}

.hero-cta {
    max-width: 34.15vw;
    width: 100%;
    display: block;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out 0.8s forwards;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

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

.hero-cta__wrapper a: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-color: var(--color-white);
    width: 100%;
    max-width: 100%;
    padding: 0;
}

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

.index-item {
    flex: 1;
    padding: 20px 5px 39px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #fff;
    position: relative;
    background-color: #96CCD7;
    transition: background-color 0.3s ease;
    min-height: 102px;
    flex-direction: column;
}

.index-item:last-child {
    border-right: none;
}

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

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

.index-item span {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    color: #093077;
    z-index: 2;
    position: relative;
}

.index-item::before{
    content: "";
    background-image: url(../images/arrow_white_01.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:not(:first-child):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;
    }
}

/* ==========================================================================
Intro Section
========================================================================== */
/* セクション全体の背景色 */
.intro-section {
    background-color: #F3EFE6;
    padding: 60px 0 31px 0;
}

.intro-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* タイトル部分 */
.intro-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.intro-title {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #333;
}

.intro-title .text-blue {
    color: #093077;
    font-size: 36px;
}


/* メインコンテンツ（画像＋リスト） */
.intro-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

.intro-image {
    flex: 0 0 346px; /* 画像の幅 */
}

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

/* 箇条書きリスト */
.intro-question-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-question-item {
    font-size: 24px;
    font-weight: bold;
    color: #093077;
    margin-bottom: 16px;
    position: relative;
    padding-left: 38px; /* ドットのスペース */
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}
.intro-question-item-kakko{
    padding-left: 25px;
}

/* 文頭の●ドット */
.intro-question-item::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #093077;
    font-size: 21px;
}

/* 黄色のマーカー（改行対応） */
.yellow-underline {
    background: linear-gradient(transparent 60%, #F7e391 60%);
    padding-bottom: 2px;
}

/* 下部の白枠メッセージ */
.intro-bottom-wrapper {
    background-color: #fff;
    border-radius: 40px;
    padding: 22px 5%;
    text-align: center;
    position: relative; /* 木の配置の基準 */
    max-width: 1118px;
    margin: 0 auto;
}

.intro-bottom-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 2;
    color: #333;
    position: relative;
    z-index: 2; /* 木よりも前に出す */
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.text-blue-bold {
    color: #093077;
    background: linear-gradient(transparent 60%, #F7e391 60%);
}

/* 木のイラストの配置 */
.intro-tree {
    position: absolute;
    bottom: -30px;
    right: -84px;
    width: 99px;
    z-index: 1;
}

.intro-tree img {
    width: 100%;
    height: auto;
}


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

.comparison-section {
    width: 100%;
    max-width: 100%;
    padding: 60px 2%;
    background-color: #D7E2E4;
}
.comparison-title-lead{
    font-size: 36px;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    text-align: center;
}
.comparison-title-lead .beige-text{
    font-size: 48px;
    color: #C4925B;
}
.comparison-title-wrapper{
    text-align: center;
}

.comparison-title-top{
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
}
.comparison-title-top .navy-text{
    color: #093077;
}
.comparison-title{
    font-size: 36px;
    line-height: 1.2;
    margin-top: -25px;
}
.comparison-title-number{
    font-size: 96px;
    color: #093077;
}
.comparison-contents-wrapper{
    text-align: center;
    max-width: 1266px;
    width: 100%;
    margin: 20px auto 0;
}

.comparison-contents-inner{
    display: flex;
    gap: 11px;
    overflow-x: auto;
}
.comparison-contents{
    width: 415px;
    background-color: #2B73B2;
    border-radius: 30px;
    padding: 24px 7px 36px;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

.comparison-contents-top-text{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}
.comparison-company-name{
    font-size: 32px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    color: #fff;
    padding: 12px 0 32px 0;
}
.comparison-house-do{
    line-height: 1.3em;
    padding: 1px 0 11px 0;
}
.comparison-source{
    color: #fff;
    text-align: right;
    font-size: 13px;
    line-height: 1.5;
    padding: 5px 0 13px 0;
}
.comparison-contents-bottom{
    background-color: #fff;
}
.comparison-google-rate{
    border-bottom: 1px solid #999;
    text-align: left;
    padding: 0px 9px;
}
.comparison-google-text{
    font-size: 16px;
}
.comparison-google-text .orange-text{
    margin-left: 34px;
    font-size: 32px;
    color: #F45F1A;
}
.comparison-list{
    padding: 13px 7px 26px 8px;
}
.comparison-list-heading{
    font-size: 20px;
}
.comparison-item{
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-weight: 600;
    padding-top: 18px;
}
.comparison-item-check{
    width: 21px;
}
.comparison-item-text{
    font-size: 16px;
    width: 359px;
    text-align: left;
}
.comparison-description{
    display: flex;
    border-top: 1px solid #999999;
    height: 100px;
    align-items: center;
}
.comparison-dt{
    font-size: 16px;
    width: 122px;
    background-color: rgba(85, 200, 228, 0.19);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.comparison-dd{
    line-height: 1.5;
    width: 288px;
    text-align: center;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 5px;
}
.comparison-icon{
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #F45F1A;
    font-size: 32px;
}
.comparison-cta-buttons{
    margin-top: 40px;
    justify-content: center;
    gap: 23px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==========================================================================
Selection Section
========================================================================== */

.selection-section {
    background-color: #D7E2E4;
    padding: 92px 0 71px 0;
}

.selection-inner {
    max-width: 1168px;
    margin: 0 auto;
    background-color: #fff;
    padding: 54px 22px 27px 22px;
    box-sizing: border-box;
}

/* ヘッダー周り */
.selection-header {
    text-align: center;
    position: relative;
}

.header-bubble {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    z-index: 3;
    padding-bottom: 24px;
    width: 884px;
}
.header-bubble::before{
    width: 884px;
    height: 93px;
    background: url('../images/fukidashi_01.webp') no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    top: -10px;
    content: "";
    z-index: -1;
}
.header-bubble .text-blue {
    color: #81CDE4;
}
.header-bubble .text-darkblue {
    color: #093077;
}

.header-sub-title {
    font-size: 32px;
}

.header-main-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-top: -35px;
}

.header-main-title .text-large-blue {
    font-size: 64px;
    color: #093077;
}
.header-main-title .text-blue{
    color: #093077;
}

/* カードリスト */
.selection-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.selection-card {
    background-color: #F3EFE6;
    border-radius: 30px;
    padding: 0px 30px 0 38px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.selection-card-icon {
    flex-shrink: 0;
    width: 180px; /* アイコンのサイズに合わせて調整 */
}

.selection-card-icon img {
    width: 100%;
    height: auto;
}

/* カード内テキスト */
.selection-card-heading {
    font-size: 28px;
    line-height: 1.6;
}

/* 黄色のマーカー：spanで実装することで改行しても綺麗に引ける */
.selection-card-heading .marker-yellow {
    background: linear-gradient(transparent 60%, #F7e391 60%);
    padding-bottom: 2px;
}

.selection-card-text {
    font-size: 20px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 1.5em;
}

.selection-card-text .text-orange {
    color: #F45F1A;
}

.selection-card-text:last-child {
    margin-bottom: 0;
}

/* レスポンシブ（必要に応じて） */
@media screen and (max-width: 768px) {
    .selection-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
    }
    .header-bubble {
        width: 90%;
        font-size: 14px;
    }
}

/* ==========================================================================
Company Introduction Section
========================================================================== */
.company-introduction-section{
    background-color: #F3EFE6;
    padding: 54px 0 56px 0;
    position: relative;
}
.company-introduction-section::before{
    content: "";
    background-image: url(../images/deco_01.webp);
    width: 440px;
    height: 606px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -20px;
    z-index: 0;
    top: 18%;
}
.company-introduction-section::after{
    content: "";
    background-image: url(../images/deco_03.webp);
    width: 438px;
    height: 453px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    z-index: 0;
    top: 53%;
}
.company-introduction-deco{
    position: absolute;
    width: 514px;
    right: 0;
    bottom: 13%;
}
.company-introduction-deco img{
    width: 100%;
}
.company-introduction-wrapper {
    display: flex;
    gap: 27px;
    max-width: 1300px;
    padding: 0 2%;
    margin:  0 auto;
    align-items: flex-start;
    position: relative;
    z-index: 3;
}
.introduction-title-wrapper{
    text-align: center;
}
.introduction-title-copy{
    font-size: 36px;
    line-height: 1.5;
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.introduction-title-copy::before{
    content: "";
    width: 46.3px;
    height: 45.6px;
    background-image: url(../images/line_01.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: -62.4px;
}
.introduction-title-copy::after{
    content: "";
    width: 46px;
    height: 47px;
    background-image: url(../images/line_02.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -62.4px;
}
.introduction-title-copy .blue-text{
    color: #96CCD7;
}
.introduction-title{
    font-size: 36px;
    font-weight: 700;
}
.introduction-title .beige-text{
    color: #C4925B;
}
.company-main-content {
    flex: 1;
    min-width: 0;
    margin-top: 51px;
}

.company-detail-card {
    overflow: hidden;
    position: relative;
}


/* Company Name Section */
.company-name-section {
    background: transparent;
    width: 100%;
}
.company-name-large{
    font-weight: 700;
    font-size: 36px;
    padding: 10px 0 10px 47px;
    z-index: 1;
    background-color: #fff;
    max-width: 783px;
    margin-bottom: 18px;
}


/* Company Strengths Section */
.company-strengths-section {
    padding-bottom: 33px;
}

.company-heading {
    font-size: 36px;
    font-weight: 600;
    padding: 8px 24px 8px 53px;
    line-height: 1.5;
    background-color: #fff;
    position: relative;
    display: inline-block;
}
.company-heading::before{
    width: 19px;
    height: 43px;
    content: "";
    background-color: #3499D6;
    position: absolute;
    left: 14px;
    top: 13px;
}

.strengths-wrapper{
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(1, 3fr);
    margin: 35px auto 35px auto;
}
.strengths-content{
    display: flex;
    gap: 27px;
}
.strengths-image{
    width: 194px;
}
.strengths-heading{
    color: #675748;
    font-size: 24px;
}
.strengths-text{
    font-size: 20px;
    text-align: left;
    font-weight: 400;
    line-height: 1.67;
    max-width: 560px;
    margin-top: 12px;
    font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

/* Company CTA Buttons */
.company-cta-buttons {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.company-btn {
    border-radius: 50px;
    font-size: 15.17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0px;
    line-height: 1.5;
    width: 319px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 4px 4px 0 #000;
}
.company-button-orange{
    background-color: #C4925B;
}
.company-button-navy{
    background-color: #E6E5E3;
    color: #000;
}
.arrow-icon{
    width: 14px;
    position: absolute;
    right: 20px;
}

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


/* Company Results Section */
.company-results-section{
    padding: 0 0 53px 0;
}

.result-tab-section{
    margin-top: 22px;
}

/* タブボタン */
.tab-group {
    display: flex;
    gap: 5px;
    margin-left: 30px;
}
.tab-btn {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid #000;
    border-radius: 13px 13px 0 0;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1.5;
}
.tab-btn.active {
    background: #000;
    color: #fff;
}

/* 非表示設定 */
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

/* カードのグリッドレイアウト */
.result-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    padding: 23px 14px 20px 30px;
    border: 1px solid #D3D3D3;
    border-radius: 20px;
}

/* カード単体 */
.result-box {
    background: #fff;
    border-radius: 20px;
    padding: 6px 20px 22px 20px;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.25);
}

.result-box-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.result-icon {
    width: 40px;
    height: auto;
}

.result-price {
    font-size: 30px;
    font-weight: 600;
    color: #F45F1A; /* 黄緑 */
    flex-grow: 1;
    margin-left: 18px;
    line-height: 1.5;
}
.result-price span {
    font-size: 24px;
}

.result-date {
    background: #ff0000;
    color: #fff;
    padding: 0px 6px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
}

.result-box-middle {
    color: #3C73FF;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 4px;
    padding-left: 7px;
}

.result-box-bottom {
    background: #D9D9D9;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.5;
    padding-left: 3%;
    padding-right: 3%;
}
.result-source{
    text-align: right;
}

/* Company Reviews Section */
.company-reviews-section{
    padding: 0 0 45px 0;
}

.reviews-text-grid {
    display: grid;
    gap: 24px 8px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 43px;
    margin-left: 39px;
}
.review-text-card {
    background-color: #fff;
    border: 1px solid #1B1B1B;
    border-radius: 30px;
    padding: 15px 18px 12px 18px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    min-height: 260px;
}
.review-text-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}
.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.review-user-icon {
    width: 42px;
    height: 42px;
    background-color: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-user-details {
    display: flex;
    flex-direction: column;
}
.review-initial {
    font-size: 10.48px;
    font-weight: 400;
    font-family: 'Zen Maru Gothic', sans-serif;
}
.review-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}
.review-stars .stars {
    color: #FFF533;
    font-size: 12px;
    letter-spacing: 2px;
}
.review-stars .score {
    font-size: 7.35px;
    font-weight: 400;
    font-family: 'Zen Maru Gothic', sans-serif;
}
.review-comment {
    font-size: 10px;
    line-height: 1.5;
    flex-grow: 1;
    margin: 0 0 20px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    position: relative;
}
.review-comment::before{
    content: "";
    width: 15.73px;
    height: 14.68px;
    background-image: url(../images/quote_01.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: -21px;
}
.review-comment::after{
    content: "";
    width: 15.73px;
    height: 14.68px;
    background-image: url(../images/quote_02.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: 5px;
}
.review-source {
    text-align: right;
    font-size: 12px;
    margin: 0;
}
.review-source a{
    text-decoration: underline;
}


/* Company Overview Section */
.company-overview-section {
    padding: 0px 0px 130px 0;
    background: transparent;
}
.overview-inner{
    display: flex;
    padding-left: 7px;
    gap: 30px;
    margin-top: 14px;
    align-items: center;
}
.overview-content-wrapper{
    margin-left: 39px;
}

.overview-table-wrapper {
    display: flex;
    flex-direction: column;
    width: 55%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
    margin-right: 4px;
}
.overview-screenshot{
    width: 100%;
}
.overview-screenshot-text{
    font-size: 10px;
    margin-top: 3px;
    text-align: right;
}

.overview-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Zen Maru Gothic', sans-serif;
}
.overview-table th, .overview-table td {
    padding: 16px 15px;
    font-size: 12px;
    line-height: 1.6;
}
.overview-table tr:not(:first-child){
    border-top: 1px solid #C9C9C9;
}
.overview-table th {
    background-color: #D9D9D9;
    width: 30%;
    text-align: center;
    font-weight: bold;
    color: #333;
}
.overview-table td {
    background-color: #fff;
    color: #333;
}
.overview-map-wrapper{
    width: 45%;
    height: 100%;
}
.overview-map-wrapper iframe{
    height: 100%;
    width: 100%;
    min-height: 290px;
}





/* ==========================================================================
   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-family: 'Zen Maru Gothic', sans-serif;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.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: 15px;
    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;
    text-align: center;
}

.widget-title.bg-blue {
    background: #2B73B2;
}
.widget-title.bg-navy{
    background-color: #093077;
}

.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: "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;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.content-list a:hover {
    background: #96CCD7;
    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: 'Zen Maru Gothic', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    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;
}



/* ==========================================================================
   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;
}
/* ==========================================================================
Satisfaction Section
   ========================================================================== */
.satisfaction-section{
    background-color: rgba(201, 201, 201, 0.37);
    padding: 42px 5% 70px 5%;
}
.satisfaction-title{
    font-size: 36px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 28px;
}
.satisfaction-graph{
    max-width: 996px;
    margin: 0 auto 22px auto;
    text-align: right;
}
.satisfaction-link{
    font-size: 24px;
}
.satisfaction-text-box{
    background-color: #fff;
    padding: 25px 55px;
    border-radius: 30px;
    max-width: 1118px;
    margin: 0 auto;
    position: relative;
}
.satisfaction-text-box::before{
    width: 145px;
    height: 209px;
    background-image: url(../images/tree_02.webp);
    content: "";
    position: absolute;
    bottom: -70px;
    left: -91px;
    background-repeat: no-repeat;
    background-size: contain;
}
.satisfaction-text{
    font-size: 24px;
    font-weight: 700;
}

/* ==========================================================================
Market Price Section
   ========================================================================== */
.market-price-section {
    padding: 60px 5% 45px 5%;
}
.market-price-banner{
    max-width: 927px;
    display: block;
    margin: 0 auto 80px auto;
}

.market-price-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 60px;
    line-height: 1.5;
}
.market-price-table-wrapper{
    max-width: 1205px;
    margin: 0 auto;
    width: 100%;
    overflow-x: scroll;
}
/* テーブル全体のコンテナ */
.market-price-container {
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    min-width: 1205px;
}

/* ヘッダー行 */
.market-price-header-row {
    display: grid;
    grid-template-columns: 275px 1fr 1fr;
}

.market-price-header-city {
    padding: 30px;
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Zen Maru Gothic', sans-serif;;
}

.city-handa {
    background-color: #2B73B2;
    border-radius: 30px 0 0 0;
}
.city-tokoname {
    background-color: #3499D6;
    border-radius: 0 30px 0 0;
}
/* 各データ行 */
.market-price-row {
    display: grid;
    grid-template-columns: 275px 1fr 1fr;
    border-bottom: 1px solid #ccc;
}

.market-price-row.no-border {
    border-bottom: none;
}

/* 左側のカテゴリー列 */
.market-price-category {
    display: flex;
    align-items: center;
}

.market-price-icon {
    width: 107px;
    margin-right: 25px;
}

.market-price-heading {
    font-size: 24px;
    font-weight: bold;
}

/* データセル（中身） */
.market-price-content {
    padding: 30px 14px 6px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    border-left: 1px solid #ccc;
	min-height: 228px;
}
.market-price-content:last-child{
    border-right: 1px solid #ccc;
}

.no-badge{
    margin-top: 49px;
}
.market-price{
    font-size: 24px;
    font-weight: 700;
}
/* 価格表示 */
.price-large {
    font-size: 48px;
    font-weight: bold;
    color: #288BA9;
    letter-spacing: -1px;
}

.price-blue {
    font-size: 36px;
    font-weight: bold;
    color: #288BA9;
}
.market-price-note{
    font-size: 20px;
    text-align: right;
    margin-right: -13px;
    margin-top: -10px;
    font-weight: 600;
}
/* アップバッジ */
.market-price-status-badge {
    background: #E6E6E6;
    padding: 0px 44px;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.market-price-status-badge span {
    color: #F45F1A; /* オレンジ色 */
    font-weight: bold;
    font-size: 24px;
}

/* リスト表示（面積・築年数） */
.market-price-list {
    margin-top: 11px;
    list-style: none;
    padding: 0;
}

.market-price-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
}

.icon-house {
    width: 66px;
    margin-right: 24px;
}
.icon-land{
    width: 46px;
    margin: 0 29px 0 14px;
}
.icon-clock{
    width: 40px;
    margin: 0 31px 0 17px;
}
.handa-bottom{
    border-bottom: 1px solid #ccc;
    border-radius: 0 0 0 30px;
    overflow: hidden;
}
.tokoname-bottom{
    border-bottom: 1px solid #ccc;
    border-radius: 0 0 30px 0;
}
/* 引用元 */
.market-price-source {
    display: block;
    text-align: right;
    font-size: 16px;
    font-family: 'Zen Maru Gothic', sans-serif;
	margin: auto 0 0 auto;
	text-decoration: underline;
}


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

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


.faq-container {
    background: #FFF;
    padding: 43px 0 75px 0;
    max-width: 1150px;
    margin: 0 auto;
    text-align: left;
    box-shadow: -2px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 33px;
    position: relative;
}
.faq-container::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 33px;
    right: -6px;
    bottom: -15px;
    z-index: -1;
}


.faq-title {
    color: #000;
    text-align: center;
    font-size: 30px;
    display: inline-block;
    line-height: 1.5;
    padding: 0px 49px 39px 49px;
}
.faq-title-blue{
    color: #000;
    font-size: 1.267em;
    margin-right: 9px;
    position: relative;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

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

.faq-question {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 8.5px;
    border-bottom: 1px solid #707070;
}

.faq-q-icon {
    font-size: 18px;
    background-color: #358AD5;
    border-radius: 50%;
    padding: 0px 8px;
    color: #fff;
}

.faq-q-text {
    color: #000;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}
.faq-answer {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    font-family: 'Zen Maru Gothic', sans-serif;
    padding: 12.5px 5.5px 0 5.5px;
}

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

.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-title {
    font-size: 36px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #000;
}

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

.company-list-card {
    background: #fff;
    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: center;
    background: #358AD5;
    color: #fff;
    padding: 13px 20px;
    text-decoration: none;
    transition: background 0.3s ease;
    min-height: 75px;
    border-radius: 33px 33px 0 0;
    text-align: center;
}

.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: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}


.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: "Noto Sans JP", "Hiragino Sans", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #505050;
    min-height: 190px;
    border-bottom: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

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

.company-list-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px !important;
}

.company-list-info {
    padding: 16px 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 0 0 10px 10px;
}

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

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

.company-info-item .info-label {
    display: inline-block;
    border: 1px solid #000;
    color: #202020;
    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-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-bottom: 25px;
    margin-top: 17px;
}
.company-info-btn{
    border-radius: 10px;
    margin: 0 auto;
    font-size: 15px;
    background-color: #333333;
    padding: 16px 0;
    width: 95%;
    color: #fff;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    position: relative;
}
.company-info-btn:hover{
    opacity: 0.7;
}
.company-info-btn::before{
    content: "";
    background-image: url(../images/arrow_gray_01.svg);
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 6.8%;
    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: space-between;
    background-color: #C4925B;
    gap: 16px;
    color: #fff;
    border: none;
    padding: 15px 16px 11px 43px;
    width: 290px;
    height: 56px;
    font-size: 20px;
    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 6px 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: 34px;
    padding-top: 5px;
}

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

/* ==========================================================================
   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 {
    background-color: #358AD5;
    padding: 23px 20px 34px 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: 20px;
    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: #358AD5;
    color: var(--color-white);
    margin-top: 0;
}

.footer-container {
    padding: 0 16px;
}

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

.footer-navigation {
    width: 100%;
}

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

.footer-menu a {
    color: var(--color-white);
    font-size: 11px;
}

.footer-bottom {
    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;
    text-align: right;
    padding-right: 74px;
    padding-bottom: 16px;
}

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

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