/* ==========================================================================
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: 'Hiragino Sans', '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;
}

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: 60px;
    display: flex;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 20px;
    left: 0;
    z-index: 9998;
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

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

.header-banner-02 {
    height: 60px;
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.main-navigation {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-navigation ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    border-left: 1px solid #093077;
    padding-left: 25px;
}

.main-navigation a {
    color: #093077;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.header-banner-01 {
    height: 51px;
    width: auto;
    display: block;
}

/* ヘッダーバナーのリンクスタイル */
.header-right a {
    display: inline-block;
    line-height: 0;
}

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

/* Page Layout - トップバー・ヘッダー固定分のpadding調整 */
#page {
    padding-top: 80px; /* トップバー(20px) + ヘッダー(60px) */
}

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

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

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

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

.hero-content {
    background-image: url('../images/mv_01_pc.avif');
    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: 1299 / 604;
    padding: 3.23vw 3.46vw;
    position: relative;
}

.hero-top-copy{
    background-color: #fff;
    font-size: 3.167vw;
    color: #000;
    line-height: 1.5;
    padding: 0.43vw 1.7vw 0.26vw 1.7vw;
    margin-bottom: 3vw;
}
.hero-main-title{
    color: #fff;
    font-size: 3.96vw;
    line-height: 1.3;
}
.hero-blue-large{
    font-size: 5.43vw;
    background-color: #55C8E4;
    margin-right: 0.46vw;
    padding: 0.77vw;
}
.hero-black-back{
    background-color: rgba(0, 0, 0, 0.64);
    font-size: 3.7vw;
    padding: 0.77vw;
}
.hero-large-text{
    font-size: 5.44vw;
    margin-left: 0.62vw;
    position: relative;
}
.hero-large-text::before{
    content: "";
    width: 3.85vw;
    height: 2.31vw;
    background-image: url(../images/icon_green-line_01_pc.avif);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -3vw;
    top: -2vw;
}

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

.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
========================================================================== */

.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: 2px solid #000;
    border-radius: 0;
}

.index-item {
    flex: 1;
    padding: 20px 20px 37px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 2px solid #000;
    position: relative;
    background-color: var(--color-white);
    transition: background-color 0.3s ease;
    min-height: 102px;
    flex-direction: column;
}

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

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

.index-title-item {
    flex-direction: column;
    padding: 20px 15px;
    background-color: #1F2937;
}
.index-title-item:hover{
    background-color: #1F2937;
}
.index-title-item-sp{
    display: none;
}


.index-title {
    font-family: var(--font-ja);
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
    z-index: 2;
    position: relative;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.index-item span {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-dark);
    z-index: 2;
    position: relative;
}

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

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

.points-section {
    width: 100%;
    max-width: 100%;
    padding-top: 18px;
    padding-bottom: 34px;
    background-color: #ECFBFF;
}

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


.pc-br {
    display: inline;
}

.points-title-wrapper{
    text-align: center;
}

.points-title{
    font-size: 3.076vw;
    color: #fff;
    display: inline-block;
    background-color: #1F2937;
    padding: 0 2.9vw;
    line-height: 1.5;
}
.points-top-wrapper{
    display: flex;
    align-items: center;
    margin-left: 2.46vw;
}
.points-top-text-wrapper{
    width: 61.77vw;
    padding: 22px 52px 21px 32px;
    background-color: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.points-top-image{
    width: 26.5vw;
    margin-left: -22px;
}
.pros-cons-wrapper{
    text-align: center;
}
.pros-cons-title{
    font-size: 3.1vw;
}
.pros-cons-title-red{
    color: #DD3636;
    font-size: 4.1vw;
    font-weight: 700;
    margin-left: 1.19vw;
    position: relative;
}
.pros-cons-title-red::before{
    content: "・・・・　・・・・・";
    font-size: 4vw;
    color: #5E77AF;
    position: absolute;
    top: -4.5vw;
}
.pros-cons-table{
    width: 82.15vw;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 6px;
}
.pros-cons-table th{
    width: 16.3vw;
}
.tr-heading{
    background-color: #1F2937;
    color: #fff;
    font-size: 20px;
    padding: 10px 0 10px 0;
}
.th-merit{
    background-color: #84B9E8;
    color: #fff;
    font-size: 20px;
}
.td-merit{
    background-color: #EEEEEE;
    font-size: 17px;
    text-align: left;
    padding: 24px 10px 25px 47px;
}
.th-demerit{
    background-color: #2F5BA9;
    color: #fff;
    font-size: 20px;
}
.td-demerit{
    background-color: #D4D4D4;
    font-size: 17px;
    text-align: left;
    padding: 24px 10px 25px 47px;
}
.table-bottom-note{
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    margin-top: 7px;
    text-align: right;
    margin-right: 9.6vw;
}

.points-lower-title{
    font-size: 2.7vw;
    line-height: 1.5;
    text-align: center;
    font-weight: 700;
    margin-bottom: 22px;
    margin-top: 26px;
}
.points-black-title{
    background-color: #1F2937;
    font-size: 3.85vw;
    padding: 10px;
    color: #fff;
    font-weight: 600;
    margin-right: 1.77vw;
}
.points-lower-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}
.points-lower-image{
    width: 24vw;
}
.points-lower-text-wrapper{
    background-color: #fff;
    border-radius: 26px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 30px;
    width: 67.1vw;
    font-size: 20px;
    line-height: 1.5;
}
.points-lower-large{
    font-size: 1.5em;
}
.points-lower-large, .points-lower-green{
    background: linear-gradient(transparent calc(100% - 9px), yellow 0);
}
/* ==========================================================================
Comparison Section
========================================================================== */

.comparison-section {
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
    padding-top: 36px;
}
.comparison-title-lead{
    font-size: 2.77vw;
    color: #0075D4;
    font-weight: 600;
    transform: translateX(45%);
    line-height: 1.5;
    position: relative;
    margin-bottom: 1vw;
    display: inline-block;
}
.comparison-title-lead::before{
    width: 1.45vw;
    height: 2.3vw;
    background-image: url(../images/icon_black-line_01_pc.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    position: absolute;
    left: -2vw;
    bottom: 1vw;
}
.comparison-title-lead::after{
    width: 1.45vw;
    height: 2.3vw;
    background-image: url(../images/icon_black-line_02_pc.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    position: absolute;
    right: -2vw;
    bottom: 1vw;
}
.comparison-title-wrapper{
    text-align: center;
}
.comparison-title{
    font-size: 3.2vw;
    line-height: 1.2;
}
.comparison-title-blue{
    color: #fff;
    background-color: #55C8E4;
    padding: 0.77vw;
    font-size: 4.7vw;
    margin-right: 0.4vw;
}
.comparison-title-number{
    font-size: 5.32vw;
    color: #0E2954;
}
.comparison-contents-wrapper{
    background-color: #4B9DA9;
    text-align: center;
    border-radius: 15px;
    max-width: 1126px;
    width: 100%;
    margin: 30px auto 0;
    padding: 38px 0;
}

.comparison-contents-inner{
    display: flex;
    gap: 8.2vw;
    justify-content: center;
    overflow: scroll;
	padding-bottom: 2%;
}
.comparison-contents{
    width: 416px;
}
.comparison-contents-top-text{
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 7px;
}
.comparison-contents-top{
    border-radius: 20px 20px 0 0;
    background-color: #fff;
}
.comparison-company-name{
    font-size: 32px;
    padding: 36px 0 32px 0;
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.comparison-company-name::before{
    content: "";
    background-image: url(../images/img_leaf_01_pc.avif);
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 86px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -66px;
}
.comparison-company-name::after{
    content: "";
    background-image: url(../images/img_leaf_02_pc.avif);
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 86px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -66px;
}
.comparison-source{
    color: #fff;
    text-align: right;
    font-size: 13px;
    line-height: 1.5;
}
.comparison-contents-bottom{
    background-color: #fff;
    border-radius: 10px;
}
.comparison-item{
    display: flex;
    align-items: flex-start;
    gap: 19px;
    justify-content: center;
    padding-top: 23px;
}
.comparison-item-check{
    width: 21px;
}
.comparison-item-text{
    font-size: 16px;
    width: 314px;
    text-align: left;
    line-height: 1.3125;
    min-height: 57px;
}
.comparison-yellow-text{
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    font-family: 'Zen Maru Gothic', sans-serif;
    border-radius: 37px;
    background-color: #F7F3C2;
    width: 386px;
    padding: 12px 0;
    margin: 0 auto;
    margin-bottom: 33px;
    margin-top: 18px;
}
.comparison-description{
    display: flex;
    border-top: 1px solid #999999;
    padding: 8px 0 8px 32px;
    gap: 70px;
}
.comparison-dt{
    font-size: 20px;
    min-width: 145px;
    text-align: left;
}
.comparison-dd{
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #F45F1A;
    font-size: 32px;
    line-height: 1;
}
.comparison-cta-buttons{
    margin-top: 40px;
    justify-content: center;
    gap: 23px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==========================================================================
Company Introduction Section
========================================================================== */

.company-introduction-wrapper {
    display: flex;
    gap: 27px;
    max-width: 1300px;
    margin: -31px auto 54px auto;
    align-items: flex-start;
}
.introduction-title-wrapper{
    text-align: center;
}
.introduction-title-copy{
    font-size: 3.167vw;
    color: #fff;
    background-color: #358AD5;
    display: inline-block;
    line-height: 1.5;
    padding: 0.3vw 1.85vw;
    font-weight: 600;
}
.introduction-title{
    font-size: 3.4vw;
    line-height: 1.7;
    font-weight: 700;
}
.introduction-title-blue{
    position: relative;
}
.introduction-title-blue::before{
    content: "";
    position: absolute;
    width: 43.77vw;
    height: 2.38vw;
    background-color: rgba(85, 200, 228, 0.5);
    bottom: -1vw;
    z-index: -1;
}
.introduction-title-gold{
    color: #C4A34A;
    font-size: 4.92vw;
}
.introduction-title-line{
    width: 93%;
    margin: 0 auto;
}
.company-main-content {
    flex: 1;
    min-width: 0;
    margin-top: 51px;
}

.company-detail-card {
    background: #FFF;
    overflow: hidden;
}

.company-first-section{
    background-color: #E9F4FF;
    padding-top: 21px;
}

/* Company Name Section */
.company-name-section {
    background: transparent;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}
.company-sub-heading{
    font-size: 32px;
    color: #1F2937;
    border-radius: 50px;
    border: 5px solid #1B4D8C;
    background-color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 10px 22px;
    line-height: 1;
    z-index: 3;
    position: relative;
}
.company-name-large{
    color: #fff;
    font-weight: 700;
    font-size: 48px;
    padding: 10px 0 14px 0;
    position: relative;
    line-height: 1;
    z-index: 1;
}
.company-name-large::before{
    content: "";
    width: 100%;
    height: 97px;
    background-color: #1B4D8C;
    position: absolute;
    left: 0;
    z-index: -1;
    bottom: 0;
}

/* Company Screenshot Section */
.company-screenshot-section {
    padding: 17px 31px 14px 29px;
    position: relative;
    margin-bottom: 18px;
}

.company-screenshot {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    box-shadow: 6px 6px 0 #000;
}

.screenshot-caption {
    color: #000;
    font-size: 14px;
    text-align: right;
    margin: 0;
    line-height: 1.5;
    margin-top: 7px;
}

/* 画像と引用元のリンクスタイル */
.company-screenshot-section a {
    display: block;
    transition: opacity 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.company-screenshot-section a:hover {
    opacity: 0.8;
}


.company-screenshot-section a:hover p.screenshot-caption {
    text-decoration: underline;
}
.company-screenshot{
    border: 1px solid #000;
}

/* Company Strengths Section */
.company-strengths-section {
    padding: 0 0 37px 3.77%;
}

.company-heading {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    padding: 10px 0px 8px 40px;
    line-height: 1;
    background-color: #1B4D8C;
    position: relative;
}
.company-heading::before{
    width: 15px;
    height: 45px;
    content: "";
    background-color: #358AD5;
    position: absolute;
    left: 7px;
    top: 4px;
}

.strengths-wrapper{
    display: grid;
    gap: 1%;
    grid-template-columns: repeat(3, 1fr);
    margin: 23px auto 0;
}
.strengths-content{
    background-color: #E9F4FF;
    border-radius: 10px;
    min-height: 481px;
    padding: 30px 20px 52px 20px;
    max-width: 282px;
}
.strengths-heading-text{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}
.strengths-text{
    font-size: 15px;
    max-width: 266px;
    font-weight: 700;
    margin: 20px auto 0 auto;
}
.strengths-image{
    width: 172px;
    margin: 13px auto 29px;
}
.strengths-text{
    font-size: 15px;
    text-align: left;
    font-weight: 600;
    line-height: 1.67;
}

/* 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: #F45F1A;
}
.company-button-navy{
    background-color: #0E2954;
}
.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 41px 3.77%;
}

.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{
    margin-top: 23px;
    padding: 0 0 39px 3.77%;
}
.reviews-text-grid {
    display: grid;
    gap: 1.7%;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 35px;
}
.review-text-card {
    background-color: #fff;
    border: 1px solid #1B1B1B;
    border-radius: 30px;
    padding: 15px 14px 12px 14px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.review-text-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}
.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.review-user-icon {
    width: 45px;
    height: 45px;
    background-color: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-user-details {
    display: flex;
    flex-direction: column;
}
.review-initial {
    font-size: 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: 9.44px;
    line-height: 1.5;
    flex-grow: 1;
    margin: 0 0 20px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}
.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 51px 3.77%;
    background: transparent;
}
.overview-inner{
    display: flex;
    padding-left: 7px;
    gap: 19px;
    margin-top: 14px;
    align-items: center;
}

.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;
    border-radius: 5px;
}





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

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

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

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

/* Popular & Recent Articles Widget */
.widget-popular-articles,
.widget-recent-articles {
    padding: 0;
    border-bottom: 1px solid #E0E0E0;
}

.widget-popular-articles:last-child,
.widget-recent-articles:last-child {
    border-bottom: none;
}

.articles-list {
    padding-top: 18px;
}

.article-card {
    position: relative;
    margin-bottom: 8px;
    background: #FFF;
    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: 191px;
    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;
}


/* ==========================================================================
Market Price Section
   ========================================================================== */
.market-price-section{
    text-align: center;
    padding-bottom: 72px;
}
.market-price-title{
    font-size: 48px;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
}
.market-price-title-blue{
    color: #fff;
    background-color: #55C8E4;
    padding: 15px 16px;
    margin-right: 5px;
}
.market-price-title-small{
    font-size: 40px;
}
.market-price-title-deco{
    position: relative;
}
.market-price-title-deco::before{
    content: "";
    background-image: url(../images/icon_orange-line_01_pc.avif);
    width: 60px;
    height: 35px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -70px;
    top: -20px;
}

.market-price-inner{
    max-width: 1210px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85%;
    margin: 0 auto;
    margin-top: 27px;
}
.market-price-content{
    border-radius: 30px;
    border: 1px solid #9F9F9F;
    width: clamp(180px , 30.46vw, 396px);
    padding: 2.31vw 1.15vw;
}
.market-price-content-heading{
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}
.market-price-icon{
    width: 105px;
}
.market-price-heading{
    font-size: clamp(18px, 1.85vw, 24px);
}
.market-price-content-price{
    font-size: clamp(18px, 1.85vw, 24px);
    line-height: 1.7;
    font-weight: 700;
}
.price-large{
    font-size: clamp(26px, 3.7vw, 48px);
    color: #288BA9;
}
.price-blue{
    font-size: clamp(24px, 2.77vw, 36px);
    color: #288BA9;
}
.market-price-note{
    font-weight: 600;
    font-size: 1.54vw;
    font-size: clamp(16px, 1.54vw, 20px);
    text-align: right;
    margin-top: -1.5vw;
}
.market-price-image{
    margin-top: 9px;
}
.market-price-gray-back{
    font-size: clamp(18px, 1.85vw, 24px);
    line-height: 1.5;
    padding: 5px 2.62vw 4px 2.62vw;
    background-color: #e9e9e9;
    border-radius: 15px;
    margin-top: 25px;
    font-weight: 600;
}
.market-price-list{
    display: flex;
    flex-direction: column;
    gap: 1.15vw;
    width: fit-content;
    margin: 3.92vw auto 0 auto;
}
.market-price-item{
    display: flex;
    align-items: center;
    gap: 1.85vw;
}
.market-price-item-long{
    gap: 1.1vw;
}
.market-price-item-icon{
    width: 3.54vw;
    margin-left: 1.1vw;
    margin-right: 0.5vw;
}
.market-price-house-icon{
    width: 5.1vw;
    margin: 0;
}
.market-price-item-text{
    font-size: clamp(18px, 1.85vw, 24px);
    font-weight: 600;
}
.market-price-text{
    line-height: 1.5;
    margin-top: 33px;
    font-weight: 600;
    text-align: left;
    font-size: clamp(18px, 1.8vw, 23px);
}
.market-price-item-text-blue-large{
    color: #288BA9;
    font-size: 2.77vw;
}
.market-price-item-text-blue{
    color: #288BA9;
}
.market-price-source{
    text-align: right;
}


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

.faq-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 64px;
    padding: 0px 5%;
    text-align: center;
}


.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;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 33px;
    right: -6px;
    bottom: -15px;
}


.faq-title {
    color: #fff;
    text-align: center;
    font-size: 30px;
    background-color: #333333;
    display: inline-block;
    line-height: 1.5;
    padding: 19px 49px 3px 49px;
}
.faq-title-blue{
    color: #55C8E4;
    font-size: 1.267em;
    margin-right: 22px;
    position: relative;
}
.faq-title-blue::before{
    position: absolute;
    content: "";
    width: 30px;
    height: 18px;
    background-image: url(../images/icon_green-line_01_pc.avif);
    background-size: contain;
    background-repeat: no-repeat;
    right: -25px;
    top: -13px;
}
.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: #F2FF00;
    border-radius: 50%;
    padding: 2px 8px;
}

.faq-q-text {
    color: #000;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}
.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: 40px;
    font-weight: 700;
    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: #333333;
    color: #fff;
    padding: 13px 20px;
    text-decoration: none;
    transition: background 0.3s ease;
    min-height: 75px;
    border-radius: 10px;
    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;
    background: #D9E388;
    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/icon_arrow-right_01_pc.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: #F45F1A;
    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: 148px;
    aspect-ratio: 408/148;
    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;
}