/*!
Theme Name: Cools Corporate Theme
Theme URI: https://example.com/cools-theme
Author: Cools Inc.
Author URI: https://example.com
Description: Corporate theme for Cools Inc.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cools
*/

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

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(0, 166, 181, 0.1);
    z-index: 1000;
}

.progress-indicator {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #00a6b5, #e3d82a);
    transition: height 0.3s ease;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    padding: 20px 50px;
    z-index: 999;
    border-bottom: none;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #00a6b5;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #999;
}

/* Header becomes visible on scroll */
header.scrolled .logo {
    background: linear-gradient(45deg, #00a6b5, #e3d82a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header.scrolled .mobile-menu-btn span {
    background: #00a6b5;
}

/* Header Navigation */
.header-nav {
    display: flex;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
    background: rgba(0, 166, 181, 0.1);
    color: #00a6b5;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* PC Navigation - Fixed Left Bottom */
.nav-pc {
    position: fixed;
    left: 50px;
    bottom: 50px;
    z-index: 998;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 166, 181, 0.15);
    border: 1px solid rgba(0, 166, 181, 0.1);
}

.nav-pc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-pc a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-pc a:hover,
.nav-pc a.active {
    color: #00a6b5;
}

.nav-pc a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 3px;
    left: 0;
    background: #00a6b5;
    transition: width 0.3s ease;
}

.nav-pc a:hover::after,
.nav-pc a.active::after {
    width: 100%;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 997;
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nav-mobile a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 166, 181, 0.1);
}

.nav-mobile a:hover {
    color: #00a6b5;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: linear-gradient(135deg, #00a6b5 0%, #007b87 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 166, 181, 0.85);
}

.hero-geometric {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(45deg, rgba(227, 216, 42, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(227, 216, 42, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(227, 216, 42, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(227, 216, 42, 0.1) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

.hero-content {
    text-align: left;
    color: white;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
    position: relative;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 60px;
}

/* Custom Symbol before H1 */
.hero h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(227, 216, 42, 0.3));
    clip-path: polygon(0% 50%, 40% 0%, 100% 50%, 40% 100%);
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    opacity: 0.95;
    margin-bottom: 15px;
    font-weight: 500;
    padding-left: 60px;
}

.hero-tagline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    opacity: 0.85;
    margin-bottom: 50px;
    font-weight: 400;
    padding: 15px 30px;
    background: rgba(227, 216, 42, 0.2);
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
    margin-left: 60px;
}

/* Hero CTA Buttons */
.hero-cta {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.hero-cta .btn {
    min-width: 180px;
    position: relative;
    padding-right: 50px;
}

.hero-cta .btn::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.hero-cta .btn-primary::after {
    border-left-color: #333;
}

.hero-cta .btn-secondary {
    background: white;
    color: #00a6b5;
    border: 2px solid white;
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #00a6b5;
    border-color: rgba(255, 255, 255, 0.9);
}

.hero-cta .btn-secondary::after {
    border-left-color: #00a6b5;
}

.cta-section {
    background: #f8fafb;
    padding: 80px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.cta-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
}

.cta-buttons-right {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.cta-buttons-right .btn {
    min-width: 160px;
    position: relative;
    padding-right: 45px;
}

.cta-buttons-right .btn::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.cta-buttons-right .btn-primary::after {
    border-left-color: #333;
}

.cta-buttons-right .btn-secondary {
    background: white;
    color: #00a6b5;
    border: 2px solid white;
}

.cta-buttons-right .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #00a6b5;
    border-color: rgba(255, 255, 255, 0.9);
}

.cta-buttons-right .btn-secondary::after {
    border-left-color: #00a6b5;
}

.btn {
    padding: 18px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 160px;
}

.btn-primary {
    background: #e3d82a;
    color: #333;
    box-shadow: 0 4px 20px rgba(227, 216, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(227, 216, 42, 0.4);
    background: #f0e54a;
}

.btn-secondary {
    background: #00a6b5;
    color: white;
    border: 2px solid #00a6b5;
}

.btn-secondary:hover {
    background: #007b87;
    color: white;
    border-color: #007b87;
}

/* Section Styles */
.section {
    padding: 160px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.section-title {
    font-size: clamp(3rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 40px;
    color: #00a6b5;
    text-align: left;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 60px;
}

/* Custom Symbol before titles */
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00a6b5, #e3d82a);
    clip-path: polygon(0% 50%, 40% 0%, 100% 50%, 40% 100%);
}

.section-subtitle {
    font-size: 1.4rem;
    color: #666;
    text-align: left;
    margin-bottom: 100px;
    max-width: 700px;
    font-weight: 400;
    padding-left: 60px;
}

/* 2 Column Content */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.content-left h3 {
    font-size: 2.6rem;
    color: #00a6b5;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.content-left p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
    font-weight: 400;
}

.content-right {
    text-align: center;
}

.content-right img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 166, 181, 0.15);
}

/* About Section */
.about {
    background: #f8fafb;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.trust-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 166, 181, 0.1);
    border-top: 3px solid #e3d82a;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #00a6b5;
    display: block;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
}

/* Business Section */
.business {
    background: white;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-top: 80px;
}

.business-card {
    background: white;
    border-radius: 12px;
    padding: 45px;
    box-shadow: 0 8px 30px rgba(0, 166, 181, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #e3d82a;
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a6b5, #e3d82a);
    opacity: 0.1;
    border-radius: 0 12px 0 100%;
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 166, 181, 0.2);
}

.business-card h3 {
    font-size: 1.6rem;
    color: #00a6b5;
    margin-bottom: 20px;
    font-weight: 600;
}

.business-card p {
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

/* Financial Info & Sustainability */
.info-sustainability-wrapper {
    background: #f8fafb;
    padding: 160px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.info-sustainability-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}

.info-section h2 {
    font-size: clamp(2.5rem, 3.5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #00a6b5;
    position: relative;
    padding-left: 50px;
}

.info-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00a6b5, #e3d82a);
    clip-path: polygon(0% 50%, 40% 0%, 100% 50%, 40% 100%);
}

.info-section .accent-line {
    width: 60px;
    height: 3px;
    margin-left: 50px;
    margin-bottom: 30px;
}

.info-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    padding-left: 50px;
    line-height: 1.7;
}

.financial-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 50px;
}

.financial-item-compact {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 166, 181, 0.1);
    transition: transform 0.3s ease;
    border-top: 3px solid #e3d82a;
}

.financial-item-compact:hover {
    transform: translateY(-3px);
}

.financial-item-compact h4 {
    font-size: 1rem;
    color: #00a6b5;
    margin-bottom: 8px;
    font-weight: 600;
}

.financial-item-compact p {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.financial-item-compact small {
    color: #999;
    font-size: 0.7rem;
    display: block;
    margin-top: 3px;
}

.sustainability-features-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 50px;
}

.sustainability-feature-compact {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 3px solid #e3d82a;
    box-shadow: 0 4px 15px rgba(0, 166, 181, 0.1);
}

.sustainability-feature-compact:hover {
    transform: translateY(-3px);
}

.sustainability-feature-compact h5 {
    color: #00a6b5;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.sustainability-feature-compact p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

/* Footer Navigation */
.footer-nav {
    background: #00a6b5;
    color: white;
    padding: 60px 0 40px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    cursor: pointer;
}

.footer-nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.footer-nav-left {
    padding-left: 60px;
}

.footer-nav-left h4 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-left: 50px;
}

.footer-nav-left h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    clip-path: polygon(0% 50%, 40% 0%, 100% 50%, 40% 100%);
}

.footer-nav-left .accent-line {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    margin-left: 50px;
    margin-bottom: 20px;
}

.footer-nav-left p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-left: 50px;
    margin-bottom: 30px;
}

.footer-nav-left::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid rgba(255, 255, 255, 0.7);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.footer-nav-right {
    text-align: center;
}

.footer-nav-right img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #007b87;
    color: white;
    padding: 40px 50px;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-company {
    margin-bottom: 30px;
}

.footer-company h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-company p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Accent Elements */
.accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #00a6b5, #e3d82a);
    margin-bottom: 40px;
    margin-left: 60px;
}

/* Hero Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .header-nav {
        display: none;
    }

    .breadcrumb {
        display: none;
    }

    .nav-pc {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    .hero-content {
        text-align: center;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        padding-left: 0;
        margin-bottom: 20px;
    }

    .hero h1::before {
        display: none;
    }

    .hero-subtitle {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        padding-left: 0;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .hero-tagline {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-left: 0;
        padding: 12px 20px;
        margin-bottom: 40px;
        text-align: center;
        line-height: 1.3;
    }

    .hero-cta {
        position: static;
        right: 20px;
        left: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-cta .btn {
        min-width: auto;
        font-size: 15px;
        padding: 16px 20px;
        padding-right: 20px;
        text-align: center;
    }

    .hero-cta .btn::after {
        display: none;
    }

    .cta-section {
        padding: 0px 20px 60px;
        margin-top: -40px;
    }

    .cta-buttons-right {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin-top: 40px;
        gap: 12px;
    }

    .cta-buttons-right .btn {
        min-width: auto;
        padding-right: 20px;
        text-align: center;
    }

    .cta-buttons-right .btn::after {
        display: none;
    }

    .footer-nav {
        padding: 50px 20px 30px;
    }

    .footer-nav-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-nav-left {
        padding-left: 0;
        text-align: center;
    }

    .footer-nav-left h4 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        padding-left: 0;
    }

    .footer-nav-left h4::before {
        display: none;
    }

    .footer-nav-left .accent-line {
        margin-left: auto;
        margin-right: auto;
        width: 50px;
    }

    .footer-nav-left p {
        margin-left: 0;
        font-size: 1rem;
    }

    .footer-nav-left::after {
        display: none;
    }

    .hero {
        padding: 0 20px;
        text-align: center;
        justify-content: center;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: clamp(2.2rem, 6vw, 2.8rem);
        padding-left: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .section-title::before {
        display: none;
    }

    .section-subtitle {
        padding-left: 0;
        text-align: center;
        margin-bottom: 40px;
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .section-content {
        padding: 0 15px;
    }

    .accent-line {
        margin-left: auto;
        margin-right: auto;
        width: 60px;
        margin-bottom: 30px;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-left h3 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        text-align: center;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .content-left p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
        margin-bottom: 20px;
    }

    .info-sustainability-wrapper {
        padding: 60px 20px;
    }

    .info-sustainability-content {
        padding: 0 15px;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .info-section h2 {
        font-size: clamp(2rem, 5vw, 2.5rem);
        padding-left: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .info-section h2::before {
        display: none;
    }

    .info-section .accent-line {
        margin-left: auto;
        margin-right: auto;
        width: 50px;
    }

    .info-section p {
        padding-left: 0;
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .financial-grid-compact,
    .sustainability-features-compact {
        padding-left: 0;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .financial-item-compact,
    .sustainability-feature-compact {
        padding: 20px 15px;
    }

    .financial-item-compact h4,
    .sustainability-feature-compact h5 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .financial-item-compact p,
    .sustainability-feature-compact p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trust-item {
        padding: 20px 15px;
    }

    .trust-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .trust-label {
        font-size: 0.85rem;
    }

    .business-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .business-card {
        padding: 30px 25px;
    }

    .business-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .business-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    footer {
        padding: 30px 20px;
    }

    .footer-company h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .footer-company p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .footer-bottom {
        padding-top: 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .content-left h3 {
        font-size: 1.8rem;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
    }

    .trust-item {
        padding: 25px 20px;
    }
}

/* ==========================================================================
   About Page Specific Styles
   ========================================================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #00a6b5 0%, #007b87 100%);
    padding: 120px 0 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, rgba(227, 216, 42, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(227, 216, 42, 0.1) 25%, transparent 25%);
    background-size: 60px 60px;
}

.page-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px 120px;
}

/* Message Section */
.message-section {
    margin-bottom: 120px;
}

.message-title {
    font-size: 2.5rem;
    color: #00a6b5;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    padding-left: 50px;
}

.message-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #00a6b5, #e3d82a);
    clip-path: polygon(0% 50%, 40% 0%, 100% 50%, 40% 100%);
}

.message-subtitle {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
    padding-left: 50px;
}

.message-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.message-text {
    padding-left: 50px;
}

.message-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.ceo-image {
    text-align: center;
}

.ceo-image img {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 166, 181, 0.15);
}

.ceo-signature {
    text-align: center;
    margin-top: 40px;
    padding-left: 50px;
}

.ceo-signature img {
    max-width: 200px;
    opacity: 0.7;
}

.ceo-name {
    margin-top: 20px;
    font-size: 1rem;
    color: #666;
}

/* Company Info Grid */
.company-info {
    margin-bottom: 120px;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #e5e7eb;
    border: 1px solid #e5e7eb;
}

.company-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: white;
}

.company-item.full-width {
    grid-column: 1 / -1;
}

.company-label {
    background: #f8fafb;
    padding: 20px 25px;
    font-weight: 600;
    color: #333;
    border-right: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
}

.company-value {
    padding: 20px 25px;
    color: #555;
    display: flex;
    align-items: center;
}

/* Company Strengths Section */
.company-strengths {
    background: #f8fafb;
    margin: 0 -80px 120px;
    padding: 80px;
    border-radius: 20px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.strength-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 166, 181, 0.1);
    border-top: 3px solid #e3d82a;
    transition: transform 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
}

.strength-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00a6b5;
}

.strength-item h4 {
    color: #00a6b5;
    margin-bottom: 15px;
    font-weight: 600;
}

.strength-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Offices Section */
.offices-section {
    margin-bottom: 120px;
}

.office-grid {
    display: grid;
    gap: 40px;
}

.office-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 166, 181, 0.1);
    transition: transform 0.3s ease;
}

.office-item:hover {
    transform: translateY(-5px);
}

.office-image {
    height: 200px;
    background: linear-gradient(135deg, #00a6b5, #e3d82a);
    position: relative;
    overflow: hidden;
}

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

.office-content {
    padding: 30px;
}

.office-name {
    font-size: 1.4rem;
    color: #00a6b5;
    margin-bottom: 15px;
    font-weight: 600;
}

.office-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Office Details Section */
.office-details-section {
    margin-bottom: 120px;
}

.office-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding-left: 50px;
}

.office-detail-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 166, 181, 0.1);
    border-left: 4px solid #00a6b5;
    padding: 25px;
}

.office-detail-item h4 {
    color: #00a6b5;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.office-detail-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.office-detail-item .phone {
    font-weight: 600;
    color: #333;
}

/* Services Section */
.services-section {
    margin-bottom: 120px;
}

.service-timeline {
    padding-left: 50px;
    position: relative;
}

.service-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00a6b5, #e3d82a);
}

.service-item {
    position: relative;
    padding-left: 15px;
    margin-bottom: 30px;
}

.service-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 3px;
    width: 16px;
    height: 16px;
    background: #00a6b5;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #00a6b5;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00a6b5;
    margin-bottom: 5px;
}

.service-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Performance Stats */
.performance-section {
    background: #f8fafb;
    margin: 0 -80px 120px;
    padding: 80px;
    border-radius: 20px;
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 166, 181, 0.1);
    border-top: 3px solid #e3d82a;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00a6b5;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.stat-description {
    font-size: 0.85rem;
    color: #999;
    margin-top: 5px;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #00a6b5, #007b87);
    margin: 0 -80px;
    padding: 80px;
    text-align: center;
    border-radius: 20px;
    color: white;
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.contact-info h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #e3d82a;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .message-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ceo-image {
        order: -1;
    }

    .company-grid {
        grid-template-columns: 1fr;
    }

    .company-item {
        grid-template-columns: 150px 1fr;
    }

    .company-item.full-width {
        grid-column: 1;
    }

    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header-content,
    .main-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .page-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .main-content {
        padding: 40px 20px 60px;
    }

    .message-title,
    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        padding-left: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    .message-title::before,
    .section-title::before {
        display: none;
    }

    .message-subtitle {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
        padding-left: 0;
        text-align: center;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .message-text {
        padding-left: 0;
    }

    .message-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
        margin-bottom: 18px;
    }

    .ceo-signature {
        padding-left: 0;
        text-align: center;
    }

    .office-details-grid {
        grid-template-columns: 1fr;
        padding-left: 0;
        gap: 20px;
    }

    .office-detail-item {
        padding: 20px;
    }

    .office-detail-item h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .office-detail-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .company-item {
        grid-template-columns: 1fr;
    }

    .company-item.full-width {
        grid-column: 1;
    }

    .company-label {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 15px 20px;
    }

    .company-value {
        padding: 15px 20px;
    }

    .company-strengths,
    .performance-section {
        margin: 0 -20px 80px;
        padding: 40px 20px;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .strength-item {
        padding: 25px 20px;
    }

    .strength-item h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .strength-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .performance-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-description {
        font-size: 0.8rem;
    }

    .contact-cta {
        margin: 0 -20px;
        padding: 40px 20px;
    }

    .contact-cta h3 {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
        margin-bottom: 15px;
    }

    .contact-cta p {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .contact-info {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .contact-info h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .phone-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .service-timeline {
        padding-left: 0px;
    }

    .service-item {
        position: relative;
        left: -20px;
        top: 10px;
    }

    .service-item::before {
        left: 30px;
        top: 3px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .message-title,
    .section-title {
        font-size: 2rem;
    }

    .message-subtitle {
        font-size: 1.3rem;
    }

    .performance-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Business Page Specific Styles
   ========================================================================== */

/* Hero Tagline (Business specific) */
.hero-tagline {
    font-size: 1.1rem;
    opacity: 0.85;
    background: rgba(227, 216, 42, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 166, 181, 0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #e3d82a;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-header {
    background: linear-gradient(135deg, #00a6b5, #e3d82a);
    color: white;
    padding: 30px;
    position: relative;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.service-content {
    padding: 30px;
}

.service-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    margin-top: 20px;
}

.service-features h4 {
    color: #00a6b5;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00a6b5;
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #f8fafb;
    margin: 0 -80px;
    padding: 80px;
    border-radius: 20px;
    margin-bottom: 120px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.why-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 166, 181, 0.1);
    border-top: 3px solid #e3d82a;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00a6b5;
}

.why-item h4 {
    color: #00a6b5;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 120px;
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
    padding-left: 50px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 166, 181, 0.1);
    overflow: hidden;
}

.faq-question {
    background: #f8fafb;
    padding: 20px 25px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    position: relative;
    border-left: 4px solid #00a6b5;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #00a6b5;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

/* Responsive Design for Business Page */
@media (max-width: 1024px) {
    .service-cards {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-tagline {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        padding: 12px 20px;
        line-height: 1.3;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .service-card {
        max-width: 100%;
    }

    .service-header {
        padding: 25px 20px;
    }

    .service-number {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .service-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .service-subtitle {
        font-size: 0.95rem;
    }

    .service-content {
        padding: 25px 20px;
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .service-features h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 6px;
        padding-left: 20px;
    }

    .why-choose-us {
        margin: 0 -20px 80px;
        padding: 40px 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .why-item {
        padding: 25px 20px;
    }

    .why-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .why-item h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .why-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .faq-grid {
        padding-left: 0;
        gap: 20px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-question::after {
        right: 20px;
        font-size: 1.3rem;
    }

    .faq-answer.active {
        padding: 18px 20px;
        max-height: 250px;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .service-title {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   Offices Page Specific Styles
   ========================================================================== */

/* Japan Map Section */
.japan-map-section {
    background: #f8fafb;
    margin: 0 -80px;
    padding: 80px;
    border-radius: 20px;
    margin-bottom: 120px;
}

.map-container {
    position: relative;
    max-width: 600px;  /* 900px → 600pxに変更 */
    margin: 0 auto;
    text-align: center;
}

.japan-map-image {
    width: 100%;
    height: auto;
    max-width: 500px;  /* 800px → 500pxに変更 */
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 166, 181, 0.15);
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.legend-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #00a6b5;
}

.headquarters-marker {
    background: #e63946;
    width: 24px;
    height: 24px;
    border-width: 4px;
}

.office-marker-legend {
    background: #e3d82a;
}

/* Office Grid */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.office-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 166, 181, 0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #e3d82a;
}

.office-card:hover {
    transform: translateY(-8px);
}

.office-card.headquarters {
    border-left-color: #e63946;
}

.office-header {
    background: #f8fafb;
    padding: 25px;
    border-bottom: 1px solid #e5e7eb;
}

.office-name {
    font-size: 1.4rem;
    color: #00a6b5;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.office-number {
    color: #666;
    font-size: 1.2rem;
}

.headquarters-badge {
    background: #e63946;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.office-address {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.office-phone {
    color: #00a6b5;
    font-weight: 600;
    font-size: 1rem;
}

.office-content {
    padding: 25px;
}

.office-features {
    margin-bottom: 20px;
}

.office-features h4 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.office-features p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-area {
    background: rgba(0, 166, 181, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.service-area h5 {
    color: #00a6b5;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.service-area p {
    color: #666;
    font-size: 0.85rem;
}

/* Statistics Section - 既存のstats-sectionを使用 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Responsive Design for Offices Page */
@media (max-width: 1024px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .japan-map-section {
        margin: 0 -20px 80px;
        padding: 40px 20px;
    }

    .offices-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .office-card {
        margin-bottom: 0;
    }

    .office-header {
        padding: 20px;
    }

    .office-name {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .office-address {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .office-phone {
        font-size: 0.95rem;
    }

    .office-content {
        padding: 20px;
    }

    .office-features h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .office-features p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .service-area {
        padding: 12px;
        margin-top: 12px;
    }

    .service-area h5 {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    .service-area p {
        font-size: 0.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .office-name {
        font-size: 1.1rem;
    }

    .headquarters-badge {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
}

/* Animations for office markers */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.office-marker:hover {
    animation: pulse 1s infinite;
}

/* ==========================================================================
   Recruit Page Specific Styles
   ========================================================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #00a6b5 0%, #007b87 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, rgba(227, 216, 42, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(227, 216, 42, 0.1) 25%, transparent 25%);
    background-size: 60px 60px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-image {
    margin-top: 60px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Job Toggle Buttons */
.job-toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-left: 50px;
}

.toggle-btn {
    padding: 15px 30px;
    border: 2px solid #00a6b5;
    background: white;
    color: #00a6b5;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.toggle-btn:hover {
    background: rgba(0, 166, 181, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 166, 181, 0.2);
}

.toggle-btn:hover::before {
    left: 100%;
}

.toggle-btn.active {
    background: #00a6b5;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 166, 181, 0.4);
    transform: translateY(-3px);
}

/* Job Content */
.job-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    pointer-events: none;
}

.job-content.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.job-container {
    position: relative;
    min-height: 600px;
}

.job-category-single {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 166, 181, 0.1);
    border-left: 4px solid #e3d82a;
    max-width: 1000px;
    margin: 0 auto;
    transform: scale(0.98);
    transition: transform 0.2s ease;
}

.job-content.active .job-category-single {
    transform: scale(1);
}

.category-header {
    background: #f8fafb;
    padding: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.category-title {
    font-size: 1.6rem;
    color: #00a6b5;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-type {
    background: #00a6b5;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

.salary-info {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e63946;
    margin-bottom: 10px;
}

.category-content {
    padding: 30px;
}

.job-details {
    margin-bottom: 25px;
}

.job-details h4 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.job-details p,
.job-details ul {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.job-details ul {
    padding-left: 20px;
    margin-top: 5px;
}

.job-details ul li {
    margin-bottom: 5px;
}

/* Recruit Message Section */
.recruit-message-section {
    background: #f8fafb;
    margin: 0 -80px 120px;
    padding: 80px;
    border-radius: 20px;
}

.recruit-message-section .message-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: center;
}

.recruit-message-section .message-text h3 {
    font-size: 2.2rem;
    color: #00a6b5;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-left: 40px;
}

.recruit-message-section .message-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #00a6b5, #e3d82a);
    clip-path: polygon(0% 50%, 40% 0%, 100% 50%, 40% 100%);
}

.recruit-message-section .message-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    padding-left: 40px;
}

.recruit-message-section .message-image {
    text-align: center;
}

.recruit-message-section .message-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 166, 181, 0.15);
}

/* Work Environment */
.work-environment {
    margin-bottom: 80px;
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.environment-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 166, 181, 0.1);
    text-align: center;
    border-top: 3px solid #e3d82a;
    transition: transform 0.3s ease;
}

.environment-item:hover {
    transform: translateY(-5px);
}

.environment-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.environment-item h4 {
    color: #00a6b5;
    margin-bottom: 15px;
    font-weight: 600;
}

.environment-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Benefits */
.benefits-section {
    background: white;
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    background: #f8fafb;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #00a6b5;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-item h5 {
    color: #00a6b5;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 6px 20px rgba(0, 166, 181, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 166, 181, 0.6);
    }
    100% {
        box-shadow: 0 6px 20px rgba(0, 166, 181, 0.4);
    }
}

.job-content.active {
    animation: slideInUp 0.3s ease-out forwards;
}

.toggle-btn.active {
    animation: buttonPulse 2s ease-in-out infinite;
}

/* Responsive Design for Recruit Page */
@media (max-width: 1024px) {
    .recruit-message-section .message-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .recruit-message-section .message-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        line-height: 1.4;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .job-toggle-buttons {
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        gap: 15px;
        margin-bottom: 30px;
    }

    .toggle-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        font-size: 15px;
    }

    .job-container {
        min-height: auto;
    }

    .job-category-single {
        max-width: 100%;
        margin: 0;
    }

    .category-header {
        padding: 25px 20px;
    }

    .category-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .category-type {
        font-size: 0.8rem;
        padding: 4px 12px;
        margin-bottom: 12px;
    }

    .salary-info {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .category-content {
        padding: 25px 20px;
    }

    .job-details {
        margin-bottom: 20px;
    }

    .job-details h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .job-details p,
    .job-details ul {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .job-details ul {
        padding-left: 18px;
    }

    .job-details ul li {
        margin-bottom: 4px;
    }

    .recruit-message-section {
        margin: 0 -20px 80px;
        padding: 40px 20px;
    }

    .recruit-message-section .message-text h3 {
        font-size: clamp(1.6rem, 5vw, 2rem);
        padding-left: 0;
        text-align: center;
        margin-bottom: 25px;
    }

    .recruit-message-section .message-text h3::before {
        display: none;
    }

    .recruit-message-section .message-text p {
        padding-left: 0;
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
        margin-bottom: 18px;
    }

    .environment-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .environment-item {
        padding: 25px 20px;
    }

    .environment-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .environment-item h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .environment-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .benefit-item {
        padding: 20px 18px;
    }

    .benefit-item h5 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .benefit-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .toggle-btn {
        max-width: 260px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .salary-info {
        font-size: 1rem;
    }
}