
        @charset "utf-8";
        :root {
            --main-color: #2c3e50;
            --sub-color: #34495e;
            --sub2-color: #7f8c8d;
            --accent-color: #3498db;
            --light-bg: #f8f9fa;
            --navy-blue: #1e3a8a;
            --light-blue: #3b82f6;
            --gray-dark: #374151;
        }

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

        body {
            font-family: "Noto Sans JP", sans-serif;
            background: #F6F5F3;
            color: #333;
            overflow-x: hidden;
            position: relative;
        }
        .sp {display:none;}

        /* ===== 背景装飾 ===== */
        .background-circles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.12;
        }

        .circle-1 {
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, #3b82f6 0%, #1e3a8a 70%);
            top: -200px;
            right: -200px;
        }

        .circle-2 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, #9ca3af 0%, #6b7280 70%);
            bottom: -150px;
            left: -150px;
        }

        .circle-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #60a5fa 0%, #2563eb 70%);
            top: 50%;
            left: 25%;
            transform: translate(-50%, -50%);
        }

        /* ===== ヘッダー ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: #f6f5f3ad;
            padding: 20px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 60px;
            animation: fadeInDown 1s ease-out;
        }

        .logo {
            width: 25%;
            opacity: 0;
            animation: fadeInLeftLogo 1.2s ease-out 0.3s forwards;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: auto;
            width: 200px;
            object-fit: contain;
        }

        .nav-container {
            width: 68%;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            height: 100%;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            gap: 0;
            margin: 0;
            opacity: 0;
            animation: fadeInRight 1.2s ease-out 0.5s forwards;
            background: #F6F5F3;
            border-radius: 50px;
            padding: 20px 16px;
            width: 70%;
            display: flex;
            justify-content: space-around;
            border: 1px solid #dadada;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            font-family: "Roboto", sans-serif;
            text-decoration: none;
            color: var(--gray-dark);
            font-weight: 700;
            font-size: 1.2rem;
            padding: 12px 18px;
            border-radius: 25px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.2px;
        }

        .nav-menu a:hover {
            background: #e2e8f0;
            color: var(--navy-blue);
            transform: translateY(-1px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 12px;
            background: #f8fafc;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border: 1px solid #e2e8f0;
        }

        .hamburger span {
            width: 24px;
            height: 3px;
            background: var(--gray-dark);
            margin: 2px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* ===== スライドショー ===== */
        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            margin-top: 80px;
        }

        .slide {
            position: relative;
            width: 100%;
            height: calc(100vh - 80px);
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 10px;
        }

        .slide-content {
            position: relative;
            width: 100%;
            height: 80vh;
        }

        .slide-text {
            font-family: "Noto Sans JP", sans-serif;
            position: absolute;
            top: 50%;
            left: 8%;
            transform: translateY(-50%);
            color: #333;
            z-index: 10;
            width: 35%;
            opacity: 0;
            animation: fadeInLeft 1.5s ease-out 1s forwards;
            background: #ffffff7a;
            padding: 40px 25px;
            border-radius: 10px;
        }

        .slide-text h1 {
            font-weight: 700;
            font-size: 2.8rem;
            line-height: 1.3;
            margin-bottom: 24px;
            color: var(--main-color);
            letter-spacing: 0.5px;
        }

        .slide-text .subtitle {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 28px;
            color: var(--sub-color);
            letter-spacing: 0.3px;
        }

        .slide-text .company {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--main-color);
            letter-spacing: 0.5px;
        }

        .slide-image {
            position: absolute;
            top: 0;
            right: 0;
            width: 70%;
            height: 100%;
            opacity: 0;
            animation: slideInRight 1.5s ease-out 0.8s forwards;
        }

        .slideshow-images {
            width: 100%;
            height: 100%;
        }

        .slide-image-item {
            width: 100%;
            height: 80vh;
            position: relative;
        }

        .slide-image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px 0 0 30px;
            filter: brightness(1.05) contrast(1.02);
        }

        /* ===== メインコンテンツ ===== */
        .main-content {
            padding: 80px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

        .section-header h2 {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .section-title-en {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--sub2-color);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .section-title-ja {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--main-color);
            letter-spacing: 1px;
        }



        /* ===== 経営理念セクション ===== */
        .philosophy-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .section-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .content-image {
            flex: 0.7;
        }

        .content-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
        }

        .content-text {
            flex: 1;
            position: relative;
        }

        .content-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--sub-color);
            margin-bottom: 40px;
        }

        /* ===== ボタンスタイル ===== */
        .detail-btn {
            display: inline-block;
            background: var(--main-color);
            color: white;
            padding: 16px 40px;
            border-radius: 25px;
            text-decoration: none;
            min-width: 200px;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .detail-btn:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        /* 経営理念用の透明ボタン */
        .detail-btn-outline {
            display: inline-block;
            background: transparent;
            color: var(--main-color);
            padding: 16px 40px;
            border: 2px solid var(--main-color);
            border-radius: 25px;
            text-decoration: none;
            min-width: 200px;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            position: absolute;
            bottom: 0;
            right: 0;
        }

        .detail-btn-outline:hover {
            background: var(--main-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        /* ===== 事業内容セクション ===== */
        .business-section {
            padding: 100px 0;
        }

        .business-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .business-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid #eee;
        }

        .business-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .business-image {
            margin-bottom: 20px;
        }

        .business-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }

        .business-item h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--main-color);
            margin-bottom: 15px;
        }

        .business-item p {
            font-size: 0.95rem;
            color: var(--sub-color);
            line-height: 1.6;
        }

        .section-footer {
            text-align: center;
        }

        /* ===== 会社概要セクション ===== */
        .company-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .company-info {
            background: white;
            padding: 60px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
        }

        .company-grid {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 30px 40px;
            align-items: start;
        }

        .company-label {
            font-weight: 700;
            color: var(--main-color);
            font-size: 1.1rem;
            padding: 12px 0;
            border-bottom: 2px solid var(--main-color);
        }

        .company-value {
            font-size: 1rem;
            color: var(--sub-color);
            line-height: 1.8;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .company-value.address {
            line-height: 1.6;
        }

        .company-value.business {
            line-height: 1.8;
        }

        /* ===== お問い合わせセクション ===== */
        .contact-section {
            padding: 100px 0;
            background: var(--main-color);
            color: white;
        }

        .contact-container {
            text-align: center;
        }

        .contact-section .section-title-en {
            color: rgba(255,255,255,0.7);
        }

        .contact-section .section-title-ja {
            color: white;
        }

        .contact-options {
            display: flex;
            gap: 40px;
            justify-content: center;
            margin-top: 60px;
        }

        .contact-option {
            background: white;
            color: var(--main-color);
            padding: 40px 30px;
            border-radius: 15px;
            min-width: 280px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .contact-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .contact-option h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .contact-option p {
            font-size: 1rem;
            line-height: 1.6;
        }

        .phone-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-top: 10px;
        }

        /* ===== フッター ===== */
        footer {
            background: var(--gray-dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent-color);
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }

        /* ===== モバイルメニュー ===== */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: #f8fafc;
            backdrop-filter: blur(15px);
            z-index: 99;
            padding: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            border-bottom: 1px solid #e2e8f0;
        }

        .mobile-menu.active {
            display: block;
            animation: slideDown 0.3s ease-out;
        }

        .mobile-menu ul {
            list-style: none;
        }

        .mobile-menu li {
            margin: 15px 0;
        }

        .mobile-menu a {
            font-family: "Roboto", sans-serif;
            display: block;
            padding: 15px 20px;
            text-decoration: none;
            color: var(--gray-dark);
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }

        .mobile-menu a:hover {
            background: #e2e8f0;
            color: var(--navy-blue);
            transform: translateX(10px);
        }

        /* ===== スライダー関連 ===== */
        .slick-dots {
            bottom: 30px;
            z-index: 15;
        }

        .slick-dots li button:before {
            font-size: 16px;
            color: rgba(51,51,51,0.4);
            opacity: 1;
        }

        .slick-dots li.slick-active button:before {
            color: #2563eb;
            opacity: 1;
        }

        .slick-dots li {
            margin: 0 8px;
        }

        .slick-arrow {
            display: none !important;
        }

        /* ===== アニメーション ===== */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeftLogo {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateY(-50%) translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(-50%) translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateX(0) scale(1);
            }
        }

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

        /* ===== レスポンシブデザイン (タブレット) ===== */
        @media (max-width: 900px) {
            header {
                padding: 15px 20px;
                min-height: 70px;
            }

            .logo {
                width: 30%;
                height: 50px;
            }

            .logo img {
                height: 50px;
                width: auto;
            }

            .nav-container {
                width: 70%;
            }

            .nav-menu {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .slideshow-container {
                margin-top: 70px;
            }

            .slide {
                height: calc(100vh - 70px);
            }

            .slide-text {
                left: 6%;
                width: 50%;
                background: #ffffffb8;
            }

            .slide-text h1 {
                font-size: 2.2rem;
                margin-bottom: 20px;
            }

            .slide-text .subtitle {
                font-size: 1.3rem;
                margin-bottom: 22px;
            }

            .slide-text .company {
                font-size: 1rem;
            }

            .slide-image {
                width: 75%;
            }

            .slide-image-item {
                height: 70vh;
            }

            .slide-image-item img {
                border-radius: 20px 0 0 20px;
            }

            .section-content {
                flex-direction: column;
                gap: 40px;
            }

            .detail-btn-outline {
                position: static;
                margin-top: 30px;
            }

            .business-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
            }

            .philosophy-section,
            .business-section,
            .company-section,
            .contact-section {
                padding: 60px 0;
            }

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

            .company-info {
                padding: 40px 30px;
            }

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

            .company-label {
                border-bottom: none;
                border-left: 4px solid var(--main-color);
                padding-left: 15px;
            }

            .contact-options {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
            .sp {display:block;}
        }

        /* ===== レスポンシブデザイン (スマートフォン) ===== */
        @media (max-width: 480px) {
            header {
                padding: 12px 15px;
                min-height: 55px;
            }

            .logo {
                width: 35%;
                height: 45px;
            }

            .logo img {
                height: auto;
                width: 120px;
                object-fit: contain;
            }

            .nav-container {
                width: 65%;
            }

            .slideshow-container {
                margin-top: 65px;
                height: 68vh;
            }

            .slide {
                height: calc(100vh - 120px);
            margin-top: 0px;
      
            }

            .slide-text {
                left: 6%;
                width: 70%;
            }

            .slide-text h1 {
                font-size: 1.8rem;
                margin-bottom: 16px;
            }

            .slide-text .subtitle {
                font-size: 1.1rem;
                margin-bottom: 18px;
            }

            .slide-text .company {
                font-size: 0.9rem;
            }

            .slide-image {
                width: 75%;
            }

            .slide-image-item {
                height: 60vh;
            }

            .slide-image-item img {
                border-radius: 15px 0 0 15px;
            }

            .slick-dots {
                bottom: 160px;
            }

            .slick-dots li button:before {
                font-size: 12px;
            }

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

            .section-title-ja {
                font-size: 1.8rem;
            }

            

         .container {
            max-width:480px;
            padding: 0 10px;
        }


            .philosophy-section,
            .business-section,
            .company-section,
            .contact-section {
                padding: 40px 0;
            }

            .main-content {
                padding: 20px 0;
            }

            .slide-content {
                height: 80vh;
            }

            .company-info {
                padding: 30px 20px;
            }

            .detail-btn,
            .detail-btn-outline {
                min-width: 180px;
                padding: 14px 30px;
                font-size: 1rem;
        margin-inline: auto;
        display: block;
        width: 70%;

            }

            .contact-option {
                min-width: 250px;
                padding: 30px 20px;
                width: 85%;
            }

            .phone-number {
                font-size: 1.5rem;
                width: 85%;
            }
        }

        .page-hero{position:relative;width:100%;height:30vh;margin-top: 80px;background:linear-gradient(135deg,rgba(44,62,80,0.8),rgba(52,73,94,0.6)),url('../img/kaso-visual.jpg') center/cover;display:flex;align-items:center;justify-content:center;color:white;overflow:hidden;}
        .page-hero::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.3);z-index:1;}
        .page-hero-content{position:relative;z-index:2;text-align:center;opacity:0;animation:fadeInUp 1.5s ease-out 0.5s forwards;}
        .page-title{font-size:3.5rem;font-weight:800;margin-bottom:20px;letter-spacing:2px;text-shadow:2px 2px 4px rgba(0,0,0,0.5);}
        .page-subtitle{font-size:1.3rem;font-weight:400;opacity:0.9;letter-spacing:1px;}
        .breadcrumb{background:rgba(255,255,255,0.95);padding:15px 0;border-bottom:1px solid #e2e8f0;}
        .breadcrumb-nav{font-size:0.9rem;color:var(--sub-color);}
        .breadcrumb-nav a{color:var(--accent-color);text-decoration:none;transition:color 0.3s ease;}
        .breadcrumb-nav a:hover{color:var(--main-color);}
        .breadcrumb-nav span{margin:0 8px;opacity:0.6;}
        .page-content{padding:80px 0;background:white;}
        .content-card{background:white;border-radius:15px;padding:60px;box-shadow:0 10px 40px rgba(0,0,0,0.08);border:1px solid #f1f3f4;margin-bottom:40px;}
        .card-title{font-size:2.2rem;font-weight:700;color:var(--main-color);margin-bottom:30px;text-align:center;position:relative;}
        .card-title::after{content:'';width:80px;height:4px;background:var(--accent-color);position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);}
        .company-grid{display:grid;grid-template-columns:200px 1fr;gap:30px 40px;align-items:start;margin-top:40px;}
        .company-label{font-weight:700;color:var(--main-color);font-size:1.1rem;padding:12px 0;border-bottom:2px solid var(--main-color);}
        .company-value{font-size:1rem;color:var(--sub-color);line-height:1.8;padding:12px 0;border-bottom:1px solid #e2e8f0;}
        .company-value.address{line-height:1.6;}
        .company-value.business{line-height:1.8;}
        @keyframes fadeInUp{from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);}}
        @media(max-width:900px){.page-hero{height:25vh;margin-top: 70px;}.page-title{font-size:2.8rem;}.page-subtitle{font-size:1.1rem;}.content-card{padding:40px 30px;}.company-grid{grid-template-columns:1fr;gap:20px;}.company-label{border-bottom:none;border-left:4px solid var(--main-color);padding-left:15px;}}
        @media(max-width:480px){.page-hero{height:20vh;margin-top: 60px;}.page-title{font-size:2.2rem;}.page-subtitle{font-size:1rem;}.content-card{padding:20px 10px;}}


        /* 404ページ専用CSS (Minified) */
.error-hero{background:linear-gradient(135deg,rgba(231,76,60,0.8),rgba(192,57,43,0.6)),url('<?php bloginfo('template_directory'); ?>/img/page-hero.jpg') center/cover}.error-content{text-align:center;max-width:800px;margin:0 auto}.error-message{margin-bottom:50px;opacity:0;animation:fadeInUp 1s ease-out 0.5s forwards}.error-title{font-size:2.5rem;font-weight:700;color:var(--main-color);margin-bottom:20px}.error-description{font-size:1.1rem;line-height:1.8;color:var(--sub-color);margin-bottom:0}.error-navigation{margin-bottom:50px;opacity:0;animation:fadeInUp 1s ease-out 0.7s forwards}.nav-links{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px;text-align:left}.nav-link{display:flex;align-items:center;padding:20px;background:white;border:1px solid #e2e8f0;border-radius:12px;text-decoration:none;transition:all 0.3s ease;box-shadow:0 2px 8px rgba(0,0,0,0.05)}.nav-link:hover{transform:translateY(-2px);box-shadow:0 8px 25px rgba(0,0,0,0.1);border-color:var(--accent-color)}.nav-link.home-link{background:linear-gradient(135deg,var(--accent-color),var(--light-blue));color:white;border-color:var(--accent-color)}.nav-link.home-link:hover{background:linear-gradient(135deg,var(--main-color),var(--navy-blue))}.link-text{display:flex;flex-direction:column}.link-text strong{font-size:1.1rem;font-weight:600;color:var(--main-color);margin-bottom:5px}.nav-link.home-link .link-text strong{color:white}.link-text small{font-size:0.9rem;color:var(--sub2-color);line-height:1.4}.nav-link.home-link .link-text small{color:rgba(255,255,255,0.9)}@media(max-width:900px){.error-title{font-size:2rem}.error-description{font-size:1rem}.nav-links{grid-template-columns:1fr;gap:15px}.nav-link{padding:15px}}@media(max-width:480px){.error-title{font-size:1.8rem}}



/* ===== 経営理念ページ専用CSS ===== */
.philosophy-detail-section{padding:60px 0;background:white;}
.philosophy-main{margin-bottom:80px;}
.philosophy-content{margin-bottom:40px;}
.philosophy-text{width:100%;}
.card-title{font-size:2.2rem;font-weight:700;color:var(--main-color,#2c3e50);margin-bottom:30px;position:relative;padding-bottom:15px;}
.card-title::after{content:'';position:absolute;bottom:0;left:0;width:60px;height:4px;background:var(--accent-color,#3498db);border-radius:2px;}
.main-statement{font-size:1.3rem;font-weight:600;color:var(--main-color,#2c3e50);line-height:1.8;margin-bottom:30px;padding:25px;background:linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);border-radius:10px;border-left:5px solid var(--accent-color,#3498db);}
.philosophy-description p{font-size:1.1rem;line-height:1.8;color:var(--sub-color,#34495e);margin-bottom:20px;}
.message-section,.promise-section{margin-bottom:80px;}
.section-title{font-size:2rem;font-weight:700;color:var(--main-color,#2c3e50);text-align:center;margin-bottom:50px;position:relative;}
.section-title::after{content:'';position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);width:80px;height:3px;background:var(--accent-color,#3498db);border-radius:2px;}
.message-content{display:flex;align-items:flex-start;gap:60px;}
.message-text{flex:1;}
.message-title{font-size:1.5rem;font-weight:700;color:var(--main-color,#2c3e50);margin-bottom:25px;}
.message-body p{font-size:1.1rem;line-height:1.8;color:var(--sub-color,#34495e);margin-bottom:20px;}
.message-image{flex:0.4;position:relative;}
.message-image img{width:100%;height:300px;object-fit:cover;border-radius:15px;box-shadow:0 10px 30px rgba(0,0,0,0.1);}
.message-signature{position:absolute;bottom:0;right:0;background:rgba(255,255,255,0.95);padding:15px 20px;border-radius:10px 0 15px 0;backdrop-filter:blur(10px);}
.signature-title{font-size:1.1rem;color:var(--sub-color,#34495e);margin-bottom:5px;}
.signature-name{font-size:1.3rem;font-weight:700;color:var(--main-color,#2c3e50);}
.promise-list{display:flex;flex-direction:column;gap:30px;}
.promise-item{display:flex;align-items:flex-start;gap:30px;padding:30px;background:white;border-radius:15px;box-shadow:0 5px 20px rgba(0,0,0,0.08);border:1px solid #e2e8f0;transition:all 0.3s ease;}
.promise-item:hover{transform:translateX(10px);box-shadow:0 10px 30px rgba(0,0,0,0.12);}
.promise-number{flex-shrink:0;width:60px;height:60px;border-radius:50%;background:linear-gradient(135deg,var(--accent-color,#3498db) 0%,var(--navy-blue,#1e3a8a) 100%);display:flex;align-items:center;justify-content:center;color:white;font-size:1.2rem;font-weight:700;}
.promise-content h3{font-size:1.3rem;font-weight:700;color:var(--main-color,#2c3e50);margin-bottom:10px;}
.promise-content p{font-size:1rem;line-height:1.7;color:var(--sub-color,#34495e);}
@media (max-width:900px){.message-content{flex-direction:column;gap:40px;}.card-title{font-size:1.8rem;}.section-title{font-size:1.7rem;}.main-statement{font-size:1.2rem;padding:20px;}.message-image{order:-1;}.message-signature{position:static;background:white;padding:20px 0;text-align:center;backdrop-filter:none;border-radius:0;}}
@media (max-width:480px){.philosophy-detail-section{padding:40px 0;}.philosophy-main,.message-section,.promise-section{margin-bottom:60px;}.card-title{font-size:1.6rem;}.section-title{font-size:1.5rem;margin-bottom:30px;}.main-statement{font-size:1.1rem;padding:15px;}.promise-item{flex-direction:column;text-align:center;gap:20px;padding:25px 20px;}.promise-item:hover{transform:translateY(-5px);transform:translateX(0);}.message-image img{height:250px;}}


/* ===== 事業概要 ===== */
.business-detail-section{padding:60px 0;background:white;}
.business-overview{margin-bottom:80px;text-align:center;}
.card-title{font-size:2.2rem;font-weight:700;color:var(--main-color,#2c3e50);margin-bottom:30px;position:relative;display:inline-block;padding-bottom:15px;}
.card-title::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:60px;height:4px;background:var(--accent-color,#3498db);border-radius:2px;}
.overview-text{max-width:800px;margin:0 auto;}
.overview-text p{font-size:1.2rem;line-height:1.8;color:var(--sub-color,#34495e);}
.business-details{margin-bottom:80px;}
.business-detail-item{display:flex;align-items:center;gap:60px;margin-bottom:80px;padding:40px;background:white;border-radius:20px;box-shadow:0 5px 30px rgba(0,0,0,0.08);border:1px solid #e2e8f0;transition:all 0.3s ease;}
.business-detail-item:hover{transform:translateY(-5px);box-shadow:0 15px 40px rgba(0,0,0,0.12);}
.business-detail-item.reverse{flex-direction:row-reverse;}
.business-detail-image{flex:0.4;}
.business-detail-image img{width:100%;height:280px;object-fit:cover;border-radius:15px;box-shadow:0 8px 25px rgba(0,0,0,0.1);}
.business-detail-content{flex:0.6;}
.business-detail-title{font-size:1.8rem;font-weight:700;color:var(--main-color,#2c3e50);margin-bottom:20px;position:relative;padding-bottom:10px;}
.business-detail-title::after{content:'';position:absolute;bottom:0;left:0;width:40px;height:3px;background:var(--accent-color,#3498db);border-radius:2px;}
.main-point{font-size:1.2rem;font-weight:600;color:var(--accent-color,#3498db);margin-bottom:15px;line-height:1.6;}
.business-detail-description p{font-size:1.1rem;line-height:1.8;color:var(--sub-color,#34495e);margin-bottom:15px;}
.inheritance-points{margin:20px 0;}
.inheritance-points ul{list-style:none;padding-left:0;}
.inheritance-points li{position:relative;padding-left:25px;margin-bottom:8px;font-size:1rem;color:var(--sub-color,#34495e);line-height:1.6;}
.inheritance-points li::before{content:'•';position:absolute;left:0;color:var(--accent-color,#3498db);font-weight:bold;font-size:1.2rem;}
.contact-cta{text-align:center;padding:60px 40px;background:linear-gradient(135deg,var(--light-bg,#f8f9fa) 0%,#e9ecef 100%);border-radius:20px;border:1px solid #e2e8f0;}
.cta-title{font-size:2rem;font-weight:700;color:var(--main-color,#2c3e50);margin-bottom:20px;}
.cta-description{font-size:1.1rem;line-height:1.8;color:var(--sub-color,#34495e);margin-bottom:40px;max-width:600px;margin-left:auto;margin-right:auto;}
.cta-buttons{display:flex;gap:20px;justify-content:center;flex-wrap:wrap;}
.cta-btn{display:inline-block;padding:16px 40px;border-radius:25px;text-decoration:none;font-weight:600;font-size:1.1rem;transition:all 0.3s ease;min-width:200px;text-align:center;}
.cta-btn.primary{background:var(--main-color,#2c3e50);color:white;}
.cta-btn.primary:hover{background:var(--accent-color,#3498db);transform:translateY(-2px);box-shadow:0 8px 20px rgba(0,0,0,0.15);}
.cta-btn.secondary{background:transparent;color:var(--main-color,#2c3e50);border:2px solid var(--main-color,#2c3e50);}
.cta-btn.secondary:hover{background:var(--main-color,#2c3e50);color:white;transform:translateY(-2px);box-shadow:0 8px 20px rgba(0,0,0,0.15);}
@media (max-width:900px){.business-detail-item,.business-detail-item.reverse{flex-direction:column;gap:30px;padding:30px;margin-bottom:60px;}.business-detail-image{order:1;}.business-detail-content{order:2;text-align:center;}.business-detail-title::after{left:50%;transform:translateX(-50%);}.card-title{font-size:1.8rem;}.cta-title{font-size:1.7rem;}.overview-text p{font-size:1.1rem;}.business-detail-title{font-size:1.6rem;}.business-overview{margin-bottom:60px;}}
@media (max-width:480px){.business-detail-section{padding:40px 0;}.business-overview{margin-bottom:40px;}.business-details{margin-bottom:60px;}.business-detail-item{padding:25px 20px;margin-bottom:40px;}.business-detail-image img{height:220px;}.card-title{font-size:1.6rem;}.cta-title{font-size:1.5rem;}.business-detail-title{font-size:1.4rem;}.cta-buttons{flex-direction:column;align-items:center;}.cta-btn{min-width:250px;}.contact-cta{padding:40px 20px;}}


/* WordPress管理バーのmargin-topを無効化 */
html {
    margin-top: 0 !important;
}

/* 管理バーを上に固定表示したい場合 */
#wpadminbar {
    position: fixed;
    top: 0;
    z-index: 9999;
}



/* ===== お問い合わせ受付完了ページ専用CSS ===== */
.thanks-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
}

.thanks-icon {
    margin-bottom: 30px;
    animation: bounceIn 1s ease-out;
}

.thanks-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--main-color, #2c3e50);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.thanks-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color, #3498db);
    border-radius: 2px;
}

.thanks-message {
    margin-bottom: 50px;
}

.main-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--sub-color, #34495e);
    margin-bottom: 25px;
}

.response-info {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--sub-color, #34495e);
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 5px solid var(--accent-color, #3498db);
}

.response-info strong {
    color: var(--accent-color, #3498db);
    font-weight: 700;
}

.urgent-note {
    font-size: 1rem;
    color: var(--sub2-color, #7f8c8d);
    line-height: 1.6;
}

.thanks-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.thanks-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.phone-btn {
    background: var(--accent-color, #3498db);
    color: white;
    border: 2px solid var(--accent-color, #3498db);
}

.phone-btn:hover {
    background: var(--navy-blue, #1e3a8a);
    border-color: var(--navy-blue, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.home-btn {
    background: transparent;
    color: var(--main-color, #2c3e50);
    border: 2px solid var(--main-color, #2c3e50);
}

.home-btn:hover {
    background: var(--main-color, #2c3e50);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-icon {
    font-size: 1.2rem;
}

.contact-info {
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    color: var(--sub2-color, #7f8c8d);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 5px;
}

/* アニメーション */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
    .thanks-container {
        padding: 40px 30px;
    }
    
    .thanks-title {
        font-size: 1.8rem;
    }
    
    .main-message {
        font-size: 1.1rem;
    }
    
    .response-info {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .thanks-container {
        padding: 30px 20px;
    }
    
    .thanks-title {
        font-size: 1.6rem;
    }
    
    .thanks-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .thanks-btn {
        min-width: 250px;
        width: 100%;
        max-width: 300px;
    }
    
    .main-message,
    .response-info {
        font-size: 1rem;
    }
}