/*
Theme Name: Vision-K IT Solutions
Theme URI: https://vision-k.com/it
Author: Vision-K
Author URI: https://vision-k.com
Description: ITソリューション事業向けWordPressテーマ - ネットワーク構築、キッティング、ファシリティ管理をサポート
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vision-k-it
Tags: business, corporate, it-solutions, custom-menu, custom-logo, featured-images
*/

:root {
    /* ロゴベースカラー（グリーン寄り - 信頼感・成長） */
    --theme-color: #5a8c3a;
    --theme-color-light: #7cb342;
    --theme-color-dark: #4a7c2a;
    --accent-color: #d4a017;
    --text-color: #333;
    --text-light: #666;
    --white: #fff;
    --gray-bg: #f8faf5;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --transition: 0.3s ease;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    background-color: #f5f5f5;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

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

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

/* =========================================
   Portal Section (Split Screen)
   ========================================= */
.portal-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #333;
    overflow: hidden;
}

.split {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: width 1s ease-in-out;
}

.split.left {
    left: 0;
    background: linear-gradient(135deg, #4a7c2a 0%, #5a8c3a 50%, #7cb342 100%);
    color: var(--white);
}

.split.right {
    right: 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    color: var(--text-color);
}

.split .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background-color 1s ease-in-out;
}

.split.left .overlay {
    background-color: rgba(90, 140, 58, 0.85);
}

.split.right .overlay {
    background-color: rgba(255, 255, 255, 0.7);
}

.portal-container.hover-left .split.left {
    width: 75%;
}

.portal-container.hover-left .split.right {
    width: 25%;
}

.portal-container.hover-right .split.right {
    width: 75%;
}

.portal-container.hover-right .split.left {
    width: 25%;
}

.split-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 1s ease-in-out;
    width: 80%;
    max-width: 600px;
}

.split:hover .split-content {
    opacity: 1;
}

.portal-container.hover-left .split.right .split-content,
.portal-container.hover-right .split.left .split-content {
    opacity: 0;
    pointer-events: none;
}

.split-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.split-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.split-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    white-space: normal;
}

.feature-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 0.9rem;
    padding: 5px 15px;
    border: 1px solid currentColor;
    border-radius: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 3px solid currentColor;
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.split.left .btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--theme-color);
}

.split.right .btn:hover {
    background-color: #4ade80;
    border-color: #4ade80;
    color: var(--white);
}

.center-branding {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
    pointer-events: none;
    mix-blend-mode: difference;
    color: var(--white);
    transition: opacity var(--transition);
}

.center-branding h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.center-branding p {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 5px;
}

.portal-container.hover-left .center-branding,
.portal-container.hover-right .center-branding {
    opacity: 0;
}

/* =========================================
   Header
   ========================================= */
.site-header {
    background-color: var(--theme-color);
    color: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.site-logo a,
.site-logo .logo-link {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo .logo-img {
    height: 40px;
    width: auto;
}

.site-logo .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--white);
}

.main-navigation ul {
    display: flex;
    gap: 20px;
}

.main-navigation a {
    color: var(--white);
    font-size: 0.9rem;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

/* Mobile Menu Toggle - Hamburger Icon */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* Hamburger to X animation */
.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    height: 60vh;
    background-color: var(--theme-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(74, 124, 42, 0.8), rgba(90, 140, 58, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* =========================================
   Section Styles
   ========================================= */
.section {
    padding: 80px 5%;
}

.section-gray {
    background-color: var(--gray-bg);
}

.section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* =========================================
   Company Section
   ========================================= */
.company-cols {
    display: flex;
    align-items: center;
    gap: 40px;
}

.col-img {
    flex: 1;
    min-height: 300px;
    background-color: var(--theme-color);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.col-text {
    flex: 1;
}

.col-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* =========================================
   Card Grid (Cases)
   ========================================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

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

.card-img {
    height: 180px;
    width: 100%;
    background-color: var(--theme-color);
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 20px;
}

.card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.card-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

/* =========================================
   Blog List
   ========================================= */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-list article {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.blog-list .date {
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    font-size: 0.9rem;
    min-width: 100px;
}

.blog-list a {
    font-weight: 500;
}

.blog-list a:hover {
    color: var(--theme-color);
}

/* =========================================
   Cross Link Banner
   ========================================= */
.cross-link-section {
    padding: 0;
}

.cross-link-banner {
    display: block;
    background-color: #d4a017;
    color: var(--white);
    padding: 60px 5%;
    text-align: center;
    transition: opacity var(--transition);
}

.cross-link-banner:hover {
    opacity: 0.9;
}

.banner-content span {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.banner-content h3 {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    margin: 0;
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
    background-color: #111;
    color: #888;
    padding: 60px 5% 20px;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* =========================================
   Page Styles
   ========================================= */
.page-header {
    background-color: var(--theme-color);
    color: var(--white);
    padding: 80px 5%;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-content {
    padding: 60px 5%;
    background-color: var(--white);
}

.page-content .container {
    max-width: 800px;
}

/* Lead Text */
.lead-text {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    line-height: 2;
}

/* Philosophy Section */
.philosophy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 20px;
}

/* Company Table */
.company-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.company-table th,
.company-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.company-table th {
    width: 150px;
    background-color: var(--gray-bg);
    font-weight: 600;
    color: var(--theme-color);
}

.business-list {
    list-style: disc;
    padding-left: 20px;
}

.business-list li {
    margin-bottom: 5px;
}

/* Access Section */
.access-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-container {
    width: 100%;
    height: 400px;
    background: var(--gray-bg);
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.access-info p {
    margin-bottom: 10px;
}

/* Service Detail */
.service-detail {
    text-align: center;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-box h4 {
    color: var(--theme-color);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
    color: var(--text-light);
}

/* Contact Page */
.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-method {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.contact-method h3 {
    margin-bottom: 20px;
    color: var(--theme-color);
}

.contact-tel-large,
.contact-email-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group .required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--theme-color);
}

.form-privacy {
    text-align: center;
}

.form-privacy label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.form-submit {
    text-align: center;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* Contact Form 7 */
.contact-form-wrapper .wpcf7 {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-wrapper .wpcf7-form p {
    margin-bottom: 22px;
    font-weight: 500;
}

.contact-form-wrapper .wpcf7-form label {
    display: block;
    margin-bottom: 8px;
}

/* 必須/任意 ラベル */
.contact-form-wrapper .wpcf7-form .required,
.contact-form-wrapper .wpcf7-form span.required {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 8px;
    vertical-align: middle;
}

.contact-form-wrapper .wpcf7-form .optional,
.contact-form-wrapper .wpcf7-form span.optional {
    display: inline-block;
    background: #999;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 8px;
    vertical-align: middle;
}

.contact-form-wrapper .wpcf7-list-item-label,
.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form input[type="url"],
.contact-form-wrapper .wpcf7-form input[type="number"],
.contact-form-wrapper .wpcf7-form select,
.contact-form-wrapper .wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color var(--transition);
    box-sizing: border-box;
}

.contact-form-wrapper .wpcf7-form input:focus,
.contact-form-wrapper .wpcf7-form select:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(90, 140, 58, 0.15);
}

.contact-form-wrapper .wpcf7-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form-wrapper .wpcf7-form .wpcf7-list-item {
    margin: 0 1em 0 0;
}

.contact-form-wrapper .wpcf7-form .wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 4px;
}

.contact-form-wrapper .wpcf7-form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.95rem;
}

.contact-form-wrapper .wpcf7-form input[type="submit"],
.contact-form-wrapper .wpcf7-form button[type="submit"] {
    display: inline-block;
    background: var(--theme-color);
    color: var(--white);
    border: 2px solid var(--theme-color);
    padding: 14px 50px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    width: auto;
}

.contact-form-wrapper .wpcf7-form input[type="submit"]:hover,
.contact-form-wrapper .wpcf7-form button[type="submit"]:hover {
    background: var(--theme-color-dark);
    border-color: var(--theme-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.contact-form-wrapper .wpcf7-form .wpcf7-spinner {
    margin: 0 0 0 12px;
}

/* Submit button area centering */
.contact-form-wrapper .wpcf7-form p:last-child {
    text-align: center;
    margin-top: 30px;
}

/* Required marker */
.contact-form-wrapper .wpcf7-form label .wpcf7-not-valid + br,
.contact-form-wrapper .wpcf7-form label br {
    display: none;
}

/* Privacy Policy */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.3rem;
    margin: 40px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--theme-color);
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.9;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 25px;
    list-style: disc;
}

.policy-content ul li {
    margin-bottom: 8px;
}

.policy-date {
    margin-top: 40px;
    text-align: right;
    color: var(--text-light);
}

/* =========================================
   Contact Form Styles
   ========================================= */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form p {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input[type="submit"] {
    background-color: var(--theme-color);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color var(--transition);
}

.contact-form input[type="submit"]:hover {
    background-color: var(--theme-color-light);
}

/* =========================================
   Single Post / Case
   ========================================= */
.single-content {
    padding: 60px 5%;
    background-color: var(--white);
}

.single-content .container {
    max-width: 800px;
}

.post-meta {
    color: var(--text-light);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post-content h2,
.post-content h3 {
    margin: 30px 0 15px;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content img {
    border-radius: 8px;
    margin: 20px 0;
}

.post-navigation {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

/* =========================================
   Archive Page
   ========================================= */
.archive-header {
    background-color: var(--theme-color);
    color: var(--white);
    padding: 60px 5%;
    text-align: center;
}

.archive-header h1 {
    font-size: 2rem;
}

.archive-content {
    padding: 60px 5%;
}

/* =========================================
   Pagination
   ========================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pagination .current {
    background-color: var(--theme-color);
    color: var(--white);
    border-color: var(--theme-color);
}

.pagination a:hover {
    background-color: var(--gray-bg);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 800px) {
    /* Portal */
    .split {
        width: 100%;
        height: 50%;
    }

    .split.left {
        top: 0;
    }

    .split.right {
        bottom: 0;
        top: auto;
    }

    .portal-container.hover-left .split.left {
        width: 100%;
        height: 75%;
    }

    .portal-container.hover-left .split.right {
        width: 100%;
        height: 25%;
    }

    .portal-container.hover-right .split.right {
        width: 100%;
        height: 75%;
    }

    .portal-container.hover-right .split.left {
        width: 100%;
        height: 25%;
    }

    .split-content h2 {
        font-size: 8vw;
    }

    .split-content h3 {
        font-size: 4vw;
    }

    .split-content p {
        font-size: 3.5vw;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .feature-list {
        display: none;
    }

    .btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .center-branding h1 {
        font-size: 8vw;
        line-height: 8vw;
    }

    .center-branding p {
        font-size: 2vw;
        margin-top:0px;
    }

    /* Header */
    .site-header {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    /* Slide-in Mobile Menu */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background-color: var(--theme-color);
        padding: 80px 30px 30px;
        z-index: 100;
        transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-navigation a {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
        transition: padding-left 0.3s ease, color 0.3s ease;
    }

    .main-navigation a:hover {
        padding-left: 10px;
        color: var(--accent-color);
    }

    /* Mobile menu overlay active */
    .menu-overlay {
        display: none;
    }

    body.menu-open .menu-overlay {
        display: block;
        opacity: 1;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Hero */
    .hero h2 {
        font-size: 2rem;
    }

    /* Section */
    .section {
        padding: 60px 5%;
    }

    /* Company */
    .company-cols {
        flex-direction: column;
    }

    .col-img {
        width: 100%;
        min-height: 200px;
    }

    /* Company Table */
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }

    .company-table th {
        padding: 15px 20px 5px;
    }

    .company-table td {
        padding: 5px 20px 15px;
    }

    /* Service Features */
    .service-features {
        grid-template-columns: 1fr;
    }

    /* Contact Methods */
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-tel-large,
    .contact-email-large {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
    }
}

/* ==========================================================================
   お知らせ一覧 (News List)
   ========================================================================== */

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

.news-item:first-child {
    padding-top: 0;
}

.news-date {
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    min-width: 90px;
}

.news-content {
    flex: 1;
}

.news-category {
    display: inline-block;
    padding: 2px 10px;
    background: var(--theme-color);
    color: var(--white);
    font-size: 0.75rem;
    border-radius: 3px;
    margin-bottom: 8px;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.news-title a {
    color: var(--text-color);
    text-decoration: none;
}

.news-title a:hover {
    color: var(--theme-color);
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        gap: 8px;
    }

    .news-date {
        font-size: 0.85rem;
    }
}
