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

body {
    font-family: "Noto Sans CJK JP", sans-serif;
    background-color: #f5f5f5;
    color: #222222;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: auto;
    min-height: 64px;
    box-sizing: border-box;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

a {
    text-decoration: none;
  }

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon-image {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon-image {
    transform: rotate(5deg);
}

.logo-text-image {
    height: 26px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #222222;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    line-height: 1.5;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link.active {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    font-weight: 600;
}

.nav-link.active::before {
    width: 80%;
    background: linear-gradient(90deg, #2563eb, #1e40af);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

.hamburger-menu span:nth-child(1) {
    height: 1.5px;
}

.hamburger-menu span:nth-child(2) {
    height: 2px;
}

.hamburger-menu span:nth-child(3) {
    height: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    height: 2px;
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    height: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-header {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}

.mobile-menu-overlay.active .mobile-nav {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link {
    text-decoration: none;
    color: #222222;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    width: auto;
    text-align: center;
    font-family: "Noto Sans CJK JP", sans-serif;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    line-height: 1.5;
    margin: 4px 0;
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) {
    transition-delay: 0.35s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(5) {
    transition-delay: 0.45s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(6) {
    transition-delay: 0.5s;
}

.mobile-nav-link:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

.mobile-nav-link:hover::before {
    width: 80%;
}

.mobile-nav-link.active {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    font-weight: 600;
}

.mobile-nav-link.active::before {
    width: 80%;
    background: linear-gradient(90deg, #2563eb, #1e40af);
}

/* Main Content */
.main {
    position: relative;
    z-index: 100;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 200px 40px 80px;
}

.main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        transparent 50%,
        rgba(245, 245, 245, 0.3) 70%,
        rgba(245, 245, 245, 0.6) 85%,
        rgba(245, 245, 245, 0.9) 95%,
        #f5f5f5 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.main-heading {
    font-size: 76px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #222222;
    overflow: hidden;
}

.heading-line {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.heading-line-1 {
    animation-delay: 0.2s;
}

.heading-line-2 {
    animation-delay: 0.4s;
    margin-top: -0.2em;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dx-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.sub-heading {
    font-size: 24px;
    line-height: 1.6;
    color: #222222;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.sub-heading-br {
    display: none;
}

.hero-cta {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.scroll-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
    animation: bounce 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.scroll-button:hover {
    transform: translateY(3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.scroll-button svg path {
    stroke: #2563eb;
}

.scroll-button svg {
    animation: scrollArrow 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scrollArrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(5px);
        opacity: 0.7;
    }
}

.scroll-text {
    color: #4a5568;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Background Elements */
.background-elements {
    position: absolute;
    top: -15%;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

/* Gradients */
.gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    opacity: 0.65;
    animation: float 25s ease-in-out infinite;
}

.gradient-green {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(30, 64, 175, 0.25) 40%, transparent 70%);
    top: 40%;
    left: -12%;
    animation-delay: 0s;
}

.gradient-orange-yellow {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.22) 40%, transparent 70%);
    top: 35%;
    left: 20%;
    animation-delay: 2s;
}

.gradient-blue {
    width: 850px;
    height: 850px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.35) 0%, rgba(29, 78, 216, 0.25) 40%, transparent 70%);
    top: 50%;
    right: -8%;
    animation-delay: 4s;
}

.gradient-purple {
    width: 780px;
    height: 780px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(59, 130, 246, 0.25) 40%, transparent 70%);
    bottom: 10%;
    left: 15%;
    animation-delay: 6s;
}

.gradient-cyan {
    width: 820px;
    height: 820px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.32) 0%, rgba(30, 64, 175, 0.26) 40%, transparent 70%);
    top: 70%;
    right: 3%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(40px, -40px) scale(1.05);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.95);
    }
    75% {
        transform: translate(30px, 40px) scale(1.02);
    }
}

/* Dots Patterns */
.dots {
    position: absolute;
    background-image: radial-gradient(circle, currentColor 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
}

.dots-red {
    width: 200px;
    height: 200px;
    color: rgba(37, 99, 235, 0.35);
    top: 30%;
    right: 15%;
    background-size: 15px 15px;
}

.dots-yellow {
    width: 250px;
    height: 250px;
    color: rgba(59, 130, 246, 0.3);
    top: 55%;
    left: 10%;
    background-size: 18px 18px;
}

.dots-gray {
    width: 120%;
    height: 120%;
    color: #9ca3af;
    top: 5%;
    left: -10%;
    background-size: 30px 30px;
    opacity: 0.12;
    background-position: 0 0;
    background-repeat: repeat;
}

.dots-blue {
    width: 300px;
    height: 300px;
    color: rgba(37, 99, 235, 0.3);
    top: 65%;
    right: 20%;
    background-size: 20px 20px;
    border-radius: 50%;
    filter: blur(1px);
}

.dots-green {
    width: 220px;
    height: 220px;
    color: rgba(30, 64, 175, 0.25);
    bottom: 10%;
    left: 15%;
    background-size: 16px 16px;
}

.dots-purple {
    width: 180px;
    height: 180px;
    color: rgba(59, 130, 246, 0.28);
    top: 45%;
    right: 5%;
    background-size: 14px 14px;
}

.dots-cyan {
    width: 200px;
    height: 200px;
    color: rgba(37, 99, 235, 0.32);
    bottom: 25%;
    right: 30%;
    background-size: 17px 17px;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(30, 64, 175, 0.15));
    top: 40%;
    right: 25%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
    border: 1px solid rgba(37, 99, 235, 0.25);
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(37, 99, 235, 0.18));
    bottom: 20%;
    right: 15%;
    border-radius: 50%;
    animation-delay: 3s;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(29, 78, 216, 0.15));
    top: 65%;
    left: 5%;
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    animation-delay: 6s;
    border: 1px solid rgba(30, 64, 175, 0.25);
}

.shape-4 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(59, 130, 246, 0.18));
    bottom: 5%;
    left: 25%;
    border-radius: 50%;
    animation-delay: 9s;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(30, 64, 175, 0.16));
    top: 55%;
    right: 8%;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    animation-delay: 12s;
    border: 1px solid rgba(59, 130, 246, 0.28);
}

.shape-6 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(29, 78, 216, 0.14));
    bottom: 30%;
    right: 25%;
    border-radius: 50%;
    animation-delay: 15s;
    border: 1px solid rgba(37, 99, 235, 0.25);
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(40px, -40px) rotate(90deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg);
    }
    75% {
        transform: translate(30px, 40px) rotate(270deg);
    }
}

/* Particles */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(37, 99, 235, 0.6);
    border-radius: 50%;
    opacity: 0.8;
    animation: particleFloat 12s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

.particle-1 {
    top: 35%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    top: 55%;
    right: 30%;
    animation-delay: 2s;
    background: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.particle-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 4s;
    background: rgba(30, 64, 175, 0.6);
    box-shadow: 0 0 10px rgba(30, 64, 175, 0.4);
}

.particle-4 {
    top: 75%;
    right: 20%;
    animation-delay: 6s;
    background: rgba(37, 99, 235, 0.55);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.35);
}

.particle-5 {
    bottom: 15%;
    right: 40%;
    animation-delay: 8s;
    background: rgba(29, 78, 216, 0.6);
    box-shadow: 0 0 10px rgba(29, 78, 216, 0.4);
}

.particle-6 {
    top: 45%;
    right: 40%;
    animation-delay: 10s;
    background: rgba(59, 130, 246, 0.58);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.38);
}

.particle-7 {
    bottom: 40%;
    left: 15%;
    animation-delay: 12s;
    background: rgba(37, 99, 235, 0.6);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

.particle-8 {
    top: 80%;
    left: 40%;
    animation-delay: 14s;
    background: rgba(30, 64, 175, 0.55);
    box-shadow: 0 0 10px rgba(30, 64, 175, 0.35);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -50px) scale(1.5);
        opacity: 0.8;
    }
    50% {
        transform: translate(-40px, 40px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 50px) scale(1.2);
        opacity: 0.7;
    }
}

/* Philosophy Section */
.philosophy-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 180px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    z-index: 100;
    overflow: visible;
    scroll-margin-top: 80px;
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: grid;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 10;
}

.philosophy-header {
    position: sticky;
    top: 120px;
}

.philosophy-title {
    font-size: 85px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #222222;
    margin-bottom: 16px;
    line-height: 1;
}

.philosophy-subtitle {
    font-size: 24px;
    color: #222222;
    font-weight: bold;
}

.philosophy-content {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
}

.philosophy-section-title {
    font-size: 32px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 16px;
}

.philosophy-section-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 40px;
}

.philosophy-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-weight: 500;
}

.philosophy-text p {
    font-size: 18px;
    line-height: 2.2;
    color: #222222;
    font-weight: 400;
    text-align: left;
    letter-spacing: 0.02em;
}

.philosophy-decorative {
    position: absolute;
    top: 0;
    right: -300px;
    width: 800px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.philosophy-dots {
    position: absolute;
    top: 10%;
    right: 100px;
    width: 500px;
    height: 600px;
    background-image: radial-gradient(circle, #14b8a6 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.5;
    border-radius: 50%;
    filter: blur(1px);
}

.philosophy-gradient {
    position: absolute;
    top: 20%;
    right: 0;
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, #22c55e, #06b6d4);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

/* Our Philosophy Section */
.our-philosophy-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 240px 0 120px;
    display: flex;
    align-items: center;
    z-index: 100;
    overflow: visible;
}

.our-philosophy-container {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    position: relative;
    z-index: 10;
    overflow: visible;
}

.our-philosophy-container > div:has(.our-philosophy-title-1),
.our-philosophy-container > div:has(.our-philosophy-title-2) {
    align-self: flex-start;
}

.our-philosophy-image-wrapper {
    align-self: flex-start;
    display: contents;
}

.our-philosophy-reason-wrapper {
    display: none;
}

.our-philosophy-order-process-wrapper {
    display: none;
}

.our-philosophy-title-1 {
    font-size: 220px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 100px;
    margin-left: -100px !important;
    position: relative;
    z-index: 2;
}
.our-philosophy-title-2 {
    font-size: 220px;   
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 100px;
    margin-left: 100px;
    position: relative;
    z-index: 2;
}

.our-philosophy-title:nth-of-type(1) {
    margin-left: -100px;
}

.our-philosophy-title:nth-of-type(2) {
    margin-right: -100px;
}

.philosophy-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    margin-top: 50px;
    margin-right: 100px;
}

.philosophy-image:first-of-type {
    margin-left: -150px;
}

.philosophy-image:last-of-type {
    margin-right: -150px;
}

.philosophy-image-grayscale {
    filter: grayscale(100%);
}

.our-philosophy-decorative {
    position: absolute;
    top: 0;
    left: -200px;
    width: 500px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.our-philosophy-dots {
    position: absolute;
    top: 10%;
    left: 0;
    width: 400px;
    height: 500px;
    background-image: radial-gradient(circle, #3b82f6 1.5px, transparent 1.5px);
    background-size: 25px 25px;
    opacity: 0.4;
    border-radius: 50%;
    filter: blur(1px);
}

/* Message Section */
.message-section {
    position: absolute;
    top: 50%;
    left: -800px;
    right: 0;
    transform: translateY(75%);
    background-color: transparent;
    padding: 0;
    margin-top: 0;
    display: flex;
    align-items: flex-start;
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

.message-container {
    margin: 0;
    padding: 0 40px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 60px;
    position: relative;
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

.message-container > div:has(.message-title-1),
.message-container > div:has(.message-title-2),
.message-container > div:has(.message-title-3) {
    align-self: flex-start;
}

.message-title-1 {
    font-size: 220px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 100px;
    margin-left: -100px;
    position: relative;
    z-index: 1;
}

.message-title-2 {
    font-size: 220px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 100px;
    position: relative;
    z-index: 1;
}

.message-title-3 {
    font-size: 220px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 100px;
    position: relative;
    z-index: 1;
}

.message-decorative {
    position: absolute;
    top: 0;
    left: -200px;
    width: 500px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.message-dots {
    position: absolute;
    top: 10%;
    left: 0;
    width: 400px;
    height: 500px;
    background-image: radial-gradient(circle, #3b82f6 1.5px, transparent 1.5px);
    background-size: 25px 25px;
    opacity: 0.4;
    border-radius: 50%;
    filter: blur(1px);
}

/* Order Process Section */
.order-process-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 240px 40px 120px;
    z-index: 100;
    overflow: visible;
}

.order-process-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.order-process-title {
    font-size: 85px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #222222;
    margin-bottom: 16px;
}

.order-process-subtitle {
    font-size: 24px;
    color: #222222;
    margin-bottom: 40px;
    font-weight: bold;
}

.order-process-intro {
    font-size: 24px;
    font-family: "Noto Sans CJK JP", sans-serif;
    color: #222222;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}

.process-step-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.process-step-circle:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(30, 64, 175, 0.06));
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.12);
}

.process-step-circle:hover .process-step-icon {
    opacity: 0.8;
    transform: scale(1.1);
}

.order-process-intro-special {
    margin-top: 40px;
    font-weight: bold;
    font-size: 18px;
    color: #222222;
    text-align: center;
    margin-bottom: 60px;
}

    .process-step-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.process-step-text {
    font-size: 16px;
    color: #222222;
    font-weight: 400;
    text-align: center;
}

.process-arrow {
    font-size: 32px;
    color: #999;
    font-weight: bold;
}

/* Reason Section */
.reason-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 240px 40px 30px;
    z-index: 100;
    overflow: visible;
}

.reason-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 10;
}

.reason-content {
    display: flex;
    flex-direction: column;
    padding-top: 150px;
}

.reason-title {
    font-size: 72px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #222222;
    margin-bottom: 16px;
    line-height: 1;
}

.reason-subtitle {
    font-size: 24px;
    color: #222222;
    margin-bottom: 60px;
    font-weight: bold;
}

.reason-points {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.reason-point {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
}

.reason-point-divider {
    height: 1px;
    background-color: #ddd;
    width: 100%;
    margin: 12px 0;
}

.reason-point-number {
    font-size: 32px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 8px;
}

.reason-point-title {
    font-size: 28px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 12px;
    line-height: 1.4;
}

.reason-point-title-en {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    margin-left: 12px;
    font-weight: bold;
}

.reason-point-text {
    font-size: 18px;
    color: #222222;
    line-height: 1.8;
}

.reason-images {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: sticky;
    top: 0;
    align-items: flex-start;
    overflow: visible;
}

.reason-image-main {
    width: 100%;
    position: relative;
    z-index: 1;
}

.reason-image-inset {
    position: relative;
}

.reason-image-inset-1 {
    width: 30%;
    align-self: flex-start;
    margin-left: 50px;
    margin-top: -200px;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.reason-image-inset-2 {
    width: 40%;
    align-self: center;
    margin-left: 100px;
    position: relative;
    z-index: 3;
    opacity: 0.85;
}

.reason-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.reason-img-1 {
    border-radius: 12px;
}

.reason-img-2 {
    border-radius: 8px;
}

.reason-img-3 {
    border-radius: 8px;
}

/* News Section */
.news-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 100px 40px 120px;
    z-index: 100;
    overflow: visible;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 10;
}

.news-header {
    position: relative;
    padding: 60px 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.news-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.news-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 1;
}

.news-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, #f97316 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.4;
    border-radius: 50%;
    filter: blur(1px);
    z-index: 2;
}

.news-title {
    font-size: 72px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #222222;
    margin-bottom: 16px;
    line-height: 1;
    position: relative;
    z-index: 10;
}

.news-subtitle {
    font-size: 20px;
    color: #222222;
    font-weight: 400;
    position: relative;
    z-index: 10;
}

.news-content {
    position: relative;
    z-index: 10;
}

.news-list {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 14px;
    color: #666;
    margin-right: 20px;
    font-weight: 400;
}

.news-text {
    font-size: 16px;
    color: #222222;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    position: relative;
    width: 100%;
    min-height: 66vh;
    display: flex;
    align-items: stretch;
    z-index: 100;
    overflow: hidden;
}

.contact-container {
    display: flex;
    width: 100%;
    min-height: 66vh;
}

.contact-item {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 66vh;
    overflow: hidden;
}

a.contact-item {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

a.contact-item:hover {
    opacity: 0.9;
}

.contact-email-full {
    flex: 1 1 100%;
    width: 100%;
    min-height: 50vh;
}

.contact-email-full .contact-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 32px;
}

.contact-email-full .contact-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
}

.contact-email-full .contact-icon svg {
    width: 64px;
    height: 64px;
}

.contact-email-full .contact-label {
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.contact-email-full .contact-main-text-large {
    font-size: 56px;
    letter-spacing: 3px;
    line-height: 1.2;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px;
}

.contact-label {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    stroke: white;
}

.contact-main-text {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 2px;
}

.contact-main-text-large {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-sub-text {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #e0e0e0;
    padding: 40px;
    z-index: 100;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #666;
    font-size: 14px;
    font-weight: 400;
}

.footer-copyright p {
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav-link {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.footer-nav-link:hover {
    opacity: 0.7;
}

/* Company Page Section */
/* Company Visual Hero Section */
.company-visual-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 64px;
}

.company-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-visual-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.company-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.company-visual-hero:hover .company-visual-image {
    transform: scale(1.02);
    filter: brightness(0.75);
}

.company-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(30, 64, 175, 0.25) 100%);
    z-index: 2;
}

.company-visual-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 0 40px;
    max-width: 1200px;
}

.company-visual-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.company-visual-title {
    font-size: 76px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    line-height: 1.2;
}

.company-visual-subtitle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Company Values Section */
.company-values-section {
    position: relative;
    background-color: #fff;
    padding: 100px 40px;
    z-index: 100;
}

.company-values-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.company-value-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.company-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.company-value-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
    filter: grayscale(0.2);
    transition: transform 0.3s ease;
}

.company-value-card:hover .company-value-icon {
    transform: scale(1.1) rotate(5deg);
}

.company-value-title {
    font-size: 32px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.company-value-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    font-weight: 400;
}

.company-page-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 180px 40px 0px;
    z-index: 100;
    overflow: visible;
    max-width: 100%;
    width: 100%;
}

.company-page-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(100% - 1px);
    background: linear-gradient(to bottom, 
        transparent 0%,
        transparent 50%,
        rgba(245, 245, 245, 0.3) 70%,
        rgba(245, 245, 245, 0.6) 85%,
        rgba(245, 245, 245, 0.9) 95%,
        rgba(245, 245, 245, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.company-page-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: left;
    padding-bottom: 80px;
}

.company-page-header {
    margin-bottom: 100px;
    text-align: left;
    position: relative;
    padding-bottom: 40px;
}

.company-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    border-radius: 2px;
}

.company-approach-box {
    border-left-color: #10b981;
}

.company-approach-title {
    color: #10b981;
}

.company-commitment-box {
    border-left-color: #8b5cf6;
}

.company-commitment-title {
    color: #8b5cf6;
}

.company-page-title {
    font-size: 85px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #222222;
    margin-bottom: 16px;
    line-height: 1;
}

.company-page-subtitle {
    font-size: 24px;
    color: #222222;
    font-weight: bold;
}

.company-page-content {
    max-width: 1200px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.company-mission-box,
.company-approach-box,
.company-commitment-box {
    background: #fff;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #2563eb;
    transition: all 0.3s ease;
}

.company-mission-box:hover,
.company-approach-box:hover,
.company-commitment-box:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
}

.company-mission-title,
.company-approach-title,
.company-commitment-title {
    font-size: 28px;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.company-page-description {
    font-size: 20px;
    line-height: 2;
    color: #333;
    font-weight: 400;
    text-align: left;
    position: relative;
    z-index: 1000;
    margin: 0;
    font-family: "Noto Sans CJK JP", sans-serif;
}

.company-page-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
    display: flex;
    flex-direction: column;
    gap: 100px;
    white-space: nowrap;
}

.background-message {
    font-size: 200px;
    font-weight: bold;
    color: #999;
    line-height: 1;
    transform: rotate(-5deg);
}

.background-message:last-child {
    transform: rotate(5deg);
    margin-left: 200px;
}

.company-page-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.company-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.company-gradient-green {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    top: 10%;
    left: -10%;
}

.company-gradient-orange-yellow {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f97316, #eab308, #4ade80);
    top: 5%;
    right: 10%;
}

.company-gradient-blue {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    top: 50%;
    right: 20%;
}

.company-dots {
    position: absolute;
    background-image: radial-gradient(circle, currentColor 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
}

.company-dots-gray {
    width: 100%;
    height: 100%;
    color: #9ca3af;
    top: 0;
    left: 0;
    background-size: 25px 25px;
    opacity: 0.2;
}

.company-dots-red {
    width: 300px;
    height: 300px;
    color: #ef4444;
    top: 30%;
    right: 15%;
    background-size: 20px 20px;
    border-radius: 50%;
    filter: blur(2px);
}

/* Business Page Section */
.business-page-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 180px 40px 30px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 100;
    overflow: visible;
    max-width: 100%;
    width: 100%;
}

.business-page-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        transparent 50%,
        rgba(245, 245, 245, 0.3) 70%,
        rgba(245, 245, 245, 0.6) 85%,
        rgba(245, 245, 245, 0.9) 95%,
        #f5f5f5 100%);
    z-index: 1;
    pointer-events: none;
}

.business-page-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: left;
}

.business-page-header {
    margin-bottom: 100px;
    text-align: left;
}

.business-page-title {
    font-size: 85px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #222222;
    margin-bottom: 16px;
    line-height: 1;
}

.business-page-subtitle {
    font-size: 24px;
    color: #222222;
    font-weight: bold;
}

.business-page-content {
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1000;
}

.business-page-description {
    font-size: 26px;
    line-height: 2;
    color: #222222;
    font-weight: 400;
    text-align: center;
    position: relative;
    z-index: 1000;
}

.business-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.business-item {
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

.business-item-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.business-item-title {
    font-size: 24px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 16px;
    line-height: 1.4;
}

.business-item-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-weight: 400;
}

/* Kakogawa DX Project Section */
.kakogawa-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 120px 40px;
    z-index: 100;
    overflow: visible;
}

.kakogawa-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.kakogawa-title {
    font-size: 28px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #222222;
    margin-bottom: 60px;
    line-height: 1;
    text-align: left;
}

.kakogawa-content {
    position: relative;
    width: 100%;
}

.kakogawa-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.kakogawa-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.kakogawa-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 60px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.kakogawa-subtitle {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.kakogawa-button {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(to right, #a78bfa, #60a5fa, #34d399);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.kakogawa-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Overview Section */
.overview-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 120px 40px;
    z-index: 100;
    overflow: visible;
    max-width: 100%;
    width: 100%;
}

.overview-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.overview-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, #3b82f6 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(1px);
}

.overview-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.overview-left {
    display: flex;
    flex-direction: column;
}

.overview-header {
    margin-bottom: 60px;
}

.overview-title {
    font-size: 65px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #222222;
    margin-bottom: 16px;
    line-height: 1;
}

.overview-subtitle {
    font-size: 24px;
    color: #222222;
    font-weight: bold;
}

.overview-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.overview-info-item {
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 1.8em;
}

.overview-info-label {
    font-size: 16px;
    font-weight: 400;
    min-width: 120px;
    padding-right: 40px;
    line-height: 1.8;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 1.8em;
    text-align: right;
}

.overview-info-value {
    font-size: 18px;
    color: #222222;
    font-weight: 400;
    line-height: 1.8;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 1.8em;
}

.overview-info::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #000;
}

.overview-image {
    width: 100%;
    position: relative;
    align-self: start;
}

.overview-office-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 7px 10px;
        min-height: auto;
    }

    .logo-icon-image {
        height: 16px;
    }

    .logo-text-image {
        height: 16px;
    }

    .mobile-menu-header .logo-icon-image {
        height: 16px;
    }

    .mobile-menu-header .logo-text-image {
        height: 16px;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav {
        display: none;
    }

    .nav-link {
        font-size: 12px;
    }

    .main {
        padding: 120px 20px 80px;
        min-height: 100vh;
        justify-content: center;
    }

    .main-heading {
        font-size: 48px;
        line-height: 1.2;
        margin-bottom: 32px;
    }

    .heading-line {
        display: block;
    }

    .heading-line-2 {
        margin-top: -0.3em;
    }

    .sub-heading {
        font-size: 18px;
        line-height: 1.7;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .sub-heading-br {
        display: block;
    }

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

    .cta-button {
        padding: 16px 40px;
        font-size: 18px;
        font-weight: 700;
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    }

    .scroll-indicator {
        bottom: 20px;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: none;
        width: fit-content;
    }

    .scroll-button {
        width: 40px;
        height: 40px;
    }

    .scroll-text {
        font-size: 10px;
    }

    .floating-shape {
        opacity: 0.2;
    }

    .shape-1, .shape-2, .shape-3, .shape-4 {
        width: 60px;
        height: 60px;
    }

    .particle {
        width: 6px;
        height: 6px;
    }

    .philosophy-section {
        padding: 80px 20px 0px;
    }

    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-header {
        position: static;
    }

    .philosophy-title {
        font-size: 48px;
    }

    .philosophy-subtitle {
        font-size: 20px;
    }

    /* Philosophy Section */
    .philosophy-section {
        position: relative;
        background-color: #f5f5f5;
        padding: 120px 0 60px;
        min-height: 80vh;
        display: flex;
        align-items: center;
        z-index: 100;
        overflow: visible;
    }

    .philosophy-section-title {
        font-size: 24px;
    }

    .philosophy-section-subtitle {
        font-size: 18px;
    }

    .philosophy-text {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .philosophy-text p {
        background: #fff;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        transition: all 0.3s ease;
        border-top: 3px solid transparent;
        font-size: 16px;
    }

    .philosophy-text p:nth-child(1) {
        border-top-color: #2563eb;
    }

    .philosophy-text p:nth-child(2) {
        border-top-color: #10b981;
    }

    .philosophy-text p:nth-child(3) {
        border-top-color: #8b5cf6;
    }

    .philosophy-text p:nth-child(4) {
        border-top-color: #f59e0b;
    }

    .philosophy-text p:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .philosophy-decorative {
        display: none;
    }

    .our-philosophy-section {
        padding: 0px 20px 0px;
        overflow: visible;
    }

    .our-philosophy-container {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        overflow: visible;
        padding: 0;
        width: 100%;
    }

    .our-philosophy-container > div:has(.our-philosophy-title-1),
    .our-philosophy-container > div:has(.our-philosophy-title-2) {
        align-self: flex-start;
        width: 100%;
        overflow: visible;
    }

    .our-philosophy-title-wrapper {
        order: 1;
    }

    .our-philosophy-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .our-philosophy-image-wrapper:nth-of-type(2) {
        order: 2;
    }

    .our-philosophy-image-wrapper:nth-of-type(4) {
        order: 3;
    }

    .our-philosophy-order-process-wrapper {
        order: 4;
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        align-self: stretch;
        margin-left: 0;
        margin-right: 0;
    }

    .our-philosophy-reason-wrapper {
        order: 5;
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .our-philosophy-title-1,
    .our-philosophy-title-2 {
        position: relative;
        font-size: 8rem;
        margin-left: -70px !important;
        margin-right: 0 !important;
        white-space: nowrap;
    }

    .our-philosophy-title-2 {
        display: none;
    }

    .philosophy-image {
        display: none;
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 20px 0;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .our-philosophy-reason-wrapper .reason-content {
        padding-top: 0;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .our-philosophy-reason-wrapper .reason-title {
        font-size: 48px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .our-philosophy-reason-wrapper .reason-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .our-philosophy-reason-wrapper .reason-point {
        padding: 24px 0;
    }

    .our-philosophy-reason-wrapper .reason-point-number {
        font-size: 24px;
    }

    .our-philosophy-reason-wrapper .reason-point-title {
        font-size: 22px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .our-philosophy-reason-wrapper .reason-point-title-en {
        font-size: 16px;
    }

    .our-philosophy-reason-wrapper .reason-point-text {
        font-size: 14px;
        line-height: 1.8;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .our-philosophy-order-process-wrapper .order-process-container {
        padding: 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .our-philosophy-order-process-wrapper .order-process-title {
        font-size: 48px;
        margin-top: 40px;
        margin-bottom: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .our-philosophy-order-process-wrapper .order-process-subtitle {
        font-size: 20px;
        margin-bottom: 50px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .our-philosophy-order-process-wrapper .order-process-intro {
        font-size: 18px;
        margin-bottom: 40px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .our-philosophy-order-process-wrapper .process-steps {
        flex-direction: column;
        padding-left: 55px;
        gap: 35px;
        align-items: flex-start !important;
        justify-content: center !important;
        width: 100%;
    }

    .our-philosophy-order-process-wrapper .process-step {
        flex-direction: row;
        width: 100%;
        max-width: 300px;
        display: flex;
        gap: 16px;
        align-items: center;
        position: relative;
    }

    .our-philosophy-order-process-wrapper .process-step-circle {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        position: relative;
    }

    .our-philosophy-order-process-wrapper .process-step:not(:first-child):not(:last-child) .process-step-circle::after {
        content: '↓';
        position: absolute;
        left: 50%;
        bottom: -30px;
        transform: translateX(-50%);
        font-size: 20px;
        color: #999;
        font-weight: bold;
    }

    .our-philosophy-order-process-wrapper .process-step-circle:hover {
        transform: translateY(-3px) scale(1.05);
    }

    .our-philosophy-order-process-wrapper .process-step-icon {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }

    .our-philosophy-order-process-wrapper .process-step-text {
        font-size: 14px;
        margin-top: 0;
        text-align: left;
        flex: 1;
    }

    .our-philosophy-order-process-wrapper .process-arrow {
        display: none;
    }

    .our-philosophy-order-process-wrapper .order-process-intro-special {
        margin-top: 40px;
        font-weight: bold;
        font-size: 18px;
        color: #222222;
        text-align: center !important;
        margin-bottom: 60px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .message-section {
        display: none !important;
        height: 0;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }

    .message-container {
        display: none;
    }

    .message-container > div:has(.message-title-1),
    .message-container > div:has(.message-title-2),
    .message-container > div:has(.message-title-3) {
        align-self: flex-start;
    }

    .message-title-1,
    .message-title-2,
    .message-title-3 {
        font-size: 80px;
        font-weight: bold;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        margin-left: 0;
        margin-right: 40px;
        white-space: nowrap;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }

    .order-process-section {
        display: none;
    }

    .order-process-container {
        text-align: center;
    }

    .order-process-title {
        font-size: 48px;
        margin-bottom: 12px;
        text-align: center;
    }

    .order-process-subtitle {
        font-size: 20px;
        margin-bottom: 50px;
        text-align: center;
    }

    .order-process-intro {
        font-size: 18px;
        margin-bottom: 40px;
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .process-steps {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        padding-left: 40px;
        position: relative;
    }

    .process-step {
        flex-direction: row;
        width: 100%;
        max-width: 300px;
        gap: 16px;
        align-items: center;
        position: relative;
    }

    .process-step-circle {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        position: relative;
    }

    .process-step:not(:last-child) .process-step-circle::after {
        content: '↓';
        position: absolute;
        left: 50%;
        bottom: -30px;
        transform: translateX(-50%);
        font-size: 20px;
        color: #999;
        font-weight: bold;
    }

    .process-step-circle {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .process-step-circle:hover {
        transform: translateY(-3px) scale(1.05);
    }

    .process-step-icon {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }

    .process-step-text {
        font-size: 14px;
        margin-top: 0;
        text-align: left;
        flex: 1;
    }

    .process-arrow {
        display: none;
    }

    .order-process-intro-special {
        font-size: 16px;
        margin-top: 30px;
        margin-bottom: 40px;
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .reason-section {
        display: block;
        padding: 0 20px 60px;
    }

    .reason-section .reason-content {
        display: none;
    }
    
    .reason-section .reason-images {
        display: flex;
    }

    .reason-container {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        flex-direction: column;
    }

    .reason-content {
        padding-top: 0;
    }

    .reason-title {
        font-size: 48px;
    }

    .reason-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .reason-point {
        padding: 24px 0;
    }

    .reason-point-number {
        font-size: 24px;
    }

    .reason-point-title {
        font-size: 22px;
    }

    .reason-point-title-en {
        font-size: 16px;
    }

    .reason-point-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .reason-images {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        overflow: visible;
        width: 100%;
        margin-top: 40px;
    }

    .reason-image-main {
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .reason-image-inset {
        position: relative;
    }

    .reason-image-inset-1 {
        width: 30%;
        align-self: flex-start;
        margin-left: 50px;
        margin-top: -250px;
        position: relative;
        z-index: 2;
        opacity: 0.9;
    }

    .reason-image-inset-2 {
        width: 60%;
        align-self: center;
        margin-left: 200px;
        margin-top: -60px;
        position: relative;
        z-index: 3;
        opacity: 0.85;
    }

    .reason-img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }

    .reason-img-1 {
        border-radius: 12px;
    }

    .reason-img-2 {
        border-radius: 8px;
    }

    .reason-img-3 {
        border-radius: 8px;
    }

    .news-section {
        padding: 30px 20px 60px;
    }

    .news-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .news-header {
        padding: 40px 20px;
        min-height: auto;
    }

    .news-title {
        font-size: 48px;
    }

    .news-subtitle {
        font-size: 18px;
    }

    .news-list {
        margin-top: 40px;
    }

    .contact-section {
        min-height: auto;
    }

    .contact-container {
        flex-direction: column;
        min-height: auto;
    }

    .contact-item {
        min-height: 20vh;
        max-height: 30vh;
    }

    .contact-email-full {
        flex: 1 1 100%;
        width: 100%;
        min-height: 20vh;
        max-height: 30vh;
    }

    .contact-email-full .contact-content {
        padding: 40px 20px;
        gap: 3px;
    }

    .contact-email-full .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-email-full .contact-icon svg {
        width: 48px;
        height: 48px;
    }

    .contact-email-full .contact-label {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .contact-email-full .contact-main-text-large {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .contact-main-text {
        font-size: 28px;
    }

    .contact-main-text-large {
        font-size: 36px;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-copyright {
        order: 2;
        margin-top: auto;
    }

    .footer-nav {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, auto);
        gap: 20px 40px;
        justify-content: flex-start;
    }

    .footer-nav-link:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-nav-link:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-nav-link:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }

    .footer-nav-link:nth-child(4) {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-nav-link:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
    }

    .footer-nav-link:nth-child(6) {
        grid-column: 2;
        grid-row: 3;
    }

    .company-visual-hero {
        height: 50vh;
        min-height: 400px;
        margin-top: 30px;
    }

    .company-visual-title {
        font-size: 40px;
        line-height: 1.3;
    }

    .company-visual-subtitle {
        font-size: 18px;
        line-height: 1.6;
    }

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

    .company-value-card {
        padding: 40px 30px;
    }

    .company-mission-box,
    .company-approach-box,
    .company-commitment-box {
        padding: 40px 30px;
    }

    .company-mission-title,
    .company-approach-title,
    .company-commitment-title {
        font-size: 24px;
    }

    .company-page-description {
        font-size: 18px;
    }

    .company-page-section {
        padding: 80px 20px 60px;
        min-height: auto;
        display: block;
    }

    .company-page-container {
        border-bottom: none;
        padding-bottom: 0;
    }

    .company-page-header {
        margin-bottom: 0;
    }

    .company-page-header::after {
        display: none;
    }

    .company-page-title {
        font-size: 48px;
    }

    .company-page-description {
        font-size: 20px;
    }

    .business-page-section {
        padding: 80px 20px 0px;
    }

    .business-page-title {
        font-size: 48px;
    }

    .business-page-description {
        font-size: 16px;
    }

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

    .business-item {
        padding: 30px;
    }

    .business-item-icon {
        width: 150px;
        height: 150px;
        margin-bottom: 24px;
    }

    .business-item {
        padding: 40px 30px;
    }

    .business-item-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .business-item-description {
        font-size: 14px;
    }

    .kakogawa-section {
        padding: 80px 20px 60px;
    }

    .kakogawa-title {
        font-size: 24px;
        margin-bottom: 30px;
        line-height: 1.4;
    }

    .kakogawa-image-wrapper {
        border-radius: 8px;
        min-height: 200px;
    }

    .kakogawa-image {
        min-height: 200px;
    }

    .kakogawa-overlay {
        padding: 40px 20px;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .kakogawa-subtitle {
        font-size: 16px;
        line-height: 1.5;
        font-weight: bold;
    }

    .kakogawa-button {
        padding: 14px 32px;
        font-size: 14px;
        white-space: nowrap;
        width: auto;
        min-width: auto;
    }

    .background-message {
        font-size: 120px;
    }

    .overview-section {
        padding: 50px 20px 80px;
    }

    .overview-title {
        font-size: 48px;
    }

    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-info {
        gap: 0;
        background: #fff;
        border-radius: 16px;
        padding: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        max-width: 100%;
    }

    .overview-info::before {
        display: none;
    }

    .overview-info-item {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 24px;
        margin: 0;
        display: flex;
    }

    .overview-info-item:first-child {
        padding-top: 32px;
    }

    .overview-info-item:last-child {
        padding-bottom: 32px;
    }

    .overview-info-item:not(:last-child) {
        border-bottom: 1px solid #e5e5e5;
    }

    .overview-info-label {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        line-height: 1.5;
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 8px;
        min-width: auto;
        padding-right: 0;
    }

    .overview-info-value {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: flex-start;
        padding-top: 0;
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1.6;
        font-size: 15px;
    }
}

/* Recruit Page Section */
.recruit-page-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 180px 40px 120px;
    min-height: 100vh;
    z-index: 100;
}

.recruit-page-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        transparent 50%,
        rgba(245, 245, 245, 0.3) 70%,
        rgba(245, 245, 245, 0.6) 85%,
        rgba(245, 245, 245, 0.9) 95%,
        #f5f5f5 100%);
    z-index: 1;
    pointer-events: none;
}

.recruit-page-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: left;
}

.recruit-page-header {
    margin-bottom: 80px;
    text-align: left;
}

.recruit-page-title {
    font-size: 85px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #222222;
    margin-bottom: 16px;
    line-height: 1;
}

.recruit-page-subtitle {
    font-size: 24px;
    color: #222222;
    font-weight: bold;
}

.recruit-job-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.recruit-job-item {
    background-color: #fff;
    padding: 60px 40px 20px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.recruit-job-header {
    margin-bottom: 0;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
}

.recruit-job-header-content {
    flex: 1;
}

.recruit-toggle-btn {
    background-color: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: #666;
}

.recruit-toggle-btn:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

.recruit-toggle-btn.active {
    transform: rotate(180deg);
}

.recruit-toggle-btn svg {
    transition: transform 0.3s ease;
}

.recruit-job-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.recruit-job-content.expanded {
    max-height: none;
    opacity: 1;
    margin-top: 0;
}

.recruit-job-title {
    font-size: 36px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recruit-job-department {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    margin: 0;
}

.recruit-job-description {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.recruit-job-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #222222;
    font-weight: 400;
    margin: 0;
}

.recruit-job-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.recruit-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.recruit-detail-label {
    font-size: 16px;
    font-weight: bold;
    color: #222222;
    min-width: 120px;
    padding-top: 4px;
    flex-shrink: 0;
}

.recruit-detail-value {
    font-size: 16px;
    color: #222222;
    font-weight: 400;
    line-height: 1.8;
    flex: 1;
}

.recruit-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recruit-detail-list li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #222222;
}

.recruit-detail-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #222222;
}

@media (max-width: 768px) {
    .recruit-page-section {
        padding: 80px 20px 80px;
    }

    .recruit-page-title {
        font-size: 48px;
    }

    .recruit-job-item {
        padding: 30px 20px 30px 20px;
    }

    .recruit-job-title {
        font-size: 20px;
    }

    .recruit-detail-row {
        flex-direction: column;
        gap: 12px;
    }

    .recruit-detail-label {
        min-width: auto;
        padding-top: 0;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 8px;
    }

    .recruit-detail-value {
        padding-left: 0;
    }

    .recruit-toggle-btn {
        width: 36px;
        height: 36px;
    }
}

/* Contact Form Section */
.contact-form-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 180px 40px 120px;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    z-index: 100;
    overflow: visible;
    max-width: 100%;
    width: 100%;
}

.contact-form-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        transparent 50%,
        rgba(245, 245, 245, 0.3) 70%,
        rgba(245, 245, 245, 0.6) 85%,
        rgba(245, 245, 245, 0.9) 95%,
        #f5f5f5 100%);
    z-index: 1;
    pointer-events: none;
}


.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.contact-page-header {
    margin-bottom: 80px;
    text-align: left;
}

.contact-page-title {
    font-size: 85px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #222222;
    margin-bottom: 16px;
    line-height: 1;
}

.contact-page-subtitle {
    font-size: 24px;
    color: #222222;
    font-weight: bold;
}

.contact-form-content {
    padding: 60px 40px;
}

.contact-form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-form-form {
    display: flex;
    flex-direction: column;
}

.form-field {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.form-field-last {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 5px;
}

.form-field:last-of-type {
    border-bottom: none;
}

.checkbox-field {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-left: 200px;
    border-bottom: none;
    padding-bottom: 0;
}

.checkbox-field .checkbox-label {
    margin-left: 0;
}


.form-label {
    font-size: 16px;
    font-weight: 400;
    color: #222222;
    display: flex;
    align-items: center;
    min-width: 200px;
    flex-shrink: 0;
}

.form-label-text {
    color: #222222;
    font-weight: bold;
}

.form-input-wrapper,
.form-textarea-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    position: relative;
}

.form-badge {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 12px;
    letter-spacing: 0;
}

.form-badge.required {
    background: #F1786B;
    color: #ffffff;
}

.form-badge.optional {
    background: #C7C7C7;
    color: #ffffff;
}

.form-input,
.form-textarea {
    flex: 1;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 400;
    color: #222222;
    transition: border-color 0.3s;
    background-color: #fff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #999;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
    background-color: #2196F3;
}

.checkbox-text {
    font-size: 16px;
    color: #222222;
    line-height: 1.6;
}

.privacy-link-btn {
    background: none;
    border: none;
    color: #2196F3;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    margin-left: 4px;
    font-family: inherit;
}

.privacy-link-btn:hover {
    color: #1976D2;
}

.form-submit-btn {
    width: 200px;
    padding: 12px 32px;
    background: linear-gradient(90deg, #4ADFCB 0%, #00BCD4 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.form-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.form-submit-btn:active {
    transform: translateY(0);
    opacity: 0.8;
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Privacy Policy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.privacy-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.privacy-modal-content {
    background-color: #ffffff;
    margin: auto;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s;
}

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

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 32px 16px;
    border-bottom: 2px solid #e0e0e0;
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 28px;
    color: #222222;
    font-weight: bold;
}

.privacy-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
    line-height: 1;
}

.privacy-modal-close:hover {
    background-color: #f0f0f0;
    color: #222222;
}

.privacy-modal-body {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
}

.privacy-update-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 24px;
    text-align: right;
}

.privacy-section {
    margin-bottom: 32px;
}

.privacy-section h3 {
    font-size: 20px;
    color: #222222;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #84cc16;
    font-weight: bold;
}

.privacy-section p {
    line-height: 1.8;
    color: #222222;
    margin-bottom: 12px;
    font-size: 16px;
}

.privacy-section ul {
    margin-left: 24px;
    margin-bottom: 12px;
}

.privacy-section li {
    line-height: 1.8;
    color: #222222;
    margin-bottom: 8px;
    font-size: 16px;
}

.privacy-modal-footer {
    padding: 16px 32px 32px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.privacy-modal-close-btn {
    background: linear-gradient(90deg, #2196F3 0%, #84cc16 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 48px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.privacy-modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 20px 80px;
    }

    .contact-page-header {
        margin-bottom: 40px;
    }

    .contact-page-title {
        font-size: 48px;
    }

    .contact-form-content {
        padding: 40px 20px;
    }

    .contact-form-intro {
        font-size: 14px;
    }

    .form-field,
    .form-field-last {
        flex-direction: column;
        gap: 12px;
        padding: 10px 0;
        border-bottom: none;
    }

    .form-label {
        min-width: auto;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 0;
        position: relative;
    }

    .form-input-wrapper,
    .form-textarea-wrapper {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 8px;
        position: relative;
    }

    .form-badge {
        margin-left: 0;
        margin-top: 0;
        position: absolute;
        left: auto;
        right: 0;
        top: 0;
    }

    .form-input-wrapper .form-badge,
    .form-textarea-wrapper .form-badge {
        position: absolute;
        right: 0;
        top: -30px;
    }

    .form-input,
    .form-textarea {
        font-size: 16px;
        padding: 12px;
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
    }

    .form-submit-btn {
        width: 100%;
        font-size: 16px;
        padding: 14px 24px;
        margin-left: 0;
        background: linear-gradient(90deg, #2196F3 0%, #84cc16 100%);
        border-radius: 50px;
    }

    .checkbox-field {
        margin-left: 0;
        border-bottom: none;
        padding-top: 20px;
    }

    .privacy-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .privacy-modal-header {
        padding: 24px 20px 12px;
    }

    .privacy-modal-header h2 {
        font-size: 24px;
    }

    .privacy-modal-body {
        padding: 24px 20px;
    }

    .privacy-section h3 {
        font-size: 18px;
    }

        .privacy-section p,
        .privacy-section li {
            font-size: 14px;
        }
    }

/* Achievements Page Section */
.achievements-page-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 180px 40px 0px;
    z-index: 100;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.achievements-page-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(100% - 1px);
    background: linear-gradient(to bottom, 
        transparent 0%,
        transparent 50%,
        rgba(245, 245, 245, 0.3) 70%,
        rgba(245, 245, 245, 0.6) 85%,
        rgba(245, 245, 245, 0.9) 95%,
        rgba(245, 245, 245, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.achievements-page-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: left;
    padding-bottom: 80px;
}

.achievements-page-header {
    margin-bottom: 80px;
    text-align: left;
}

.achievements-page-title {
    font-size: 85px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #222222;
    margin-bottom: 16px;
    line-height: 1;
}

.achievements-page-subtitle {
    font-size: 24px;
    color: #222222;
    font-weight: bold;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
}

/* Achievement Categories */
.achievement-category {
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.achievement-category-title {
    font-size: 32px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 40px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.achievement-category .achievement-card {
    display: block;
}

/* Achievement Carousel */
.achievement-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* デスクトップ版ではボタンを非表示、グリッド表示 */
@media (min-width: 769px) {
    .achievement-carousel .carousel-btn {
        display: none !important;
    }
    
    .achievement-carousel .carousel-container {
        width: 100%;
        overflow: visible;
    }
    
    .achievement-category .carousel-track {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
        transform: none !important;
        width: 100% !important;
    }
    
    .achievement-category .achievement-card {
        flex: none !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .achievement-category .achievement-card-link {
        display: flex !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        flex-direction: column !important;
    }
    
    .achievement-category .achievement-card-link .achievement-card {
        width: 100% !important;
        height: 100% !important;
        min-width: 0 !important;
        flex: 1 !important;
    }
}

/* モバイル版ではボタンを表示 */
@media (max-width: 768px) {
    .achievement-carousel .carousel-btn {
        display: flex !important;
    }
}

/* カルーセル ドットインジケーター */
.carousel-indicators {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 0 8px;
}

@media (max-width: 768px) {
    .carousel-indicators {
        display: flex;
    }
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(0, 0, 0, 0.4);
}

.carousel-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}


.carousel-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.3s linear;
    will-change: transform;
    width: 100%;
}

.achievement-carousel .achievement-card {
    flex: 0 0 calc((100% - 90px) / 4);
    min-width: 0;
    max-width: calc((100% - 90px) / 4);
    box-sizing: border-box;
}

.achievement-carousel .achievement-card-link {
    flex: 0 0 calc((100% - 90px) / 4);
    min-width: 0;
    max-width: calc((100% - 90px) / 4);
    box-sizing: border-box;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #2563eb;
    background: #fff;
    color: #2563eb;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
    z-index: 10;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* デスクトップのみhover効果 */
@media (hover: hover) and (pointer: fine) {
    .carousel-btn:hover {
        background: #2563eb;
        color: #fff;
    }
}

.carousel-btn:active {
    background: #2563eb;
    color: #fff;
}

.carousel-btn:focus {
    outline: none;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    transform: none;
    background: #fff;
    color: #2563eb;
}

.achievement-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.achievement-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    min-width: 0;
    flex-direction: column;
}

.achievement-card-link:link,
.achievement-card-link:visited,
.achievement-card-link:hover,
.achievement-card-link:active {
    text-decoration: none;
    color: inherit;
    border: none;
    outline: none;
}

.achievement-card-link .achievement-card {
    width: 100%;
    height: 100%;
    flex: 1;
    min-width: 0;
}

.achievement-card-link:hover .achievement-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.achievement-image-placeholder,
.achievement-image {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    background-image: linear-gradient(45deg, #f5f5f5 25%, transparent 25%), 
                      linear-gradient(-45deg, #f5f5f5 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #f5f5f5 75%), 
                      linear-gradient(-45deg, transparent 75%, #f5f5f5 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* machimeeロゴのサイズを統一 */
.achievement-image[data-src*="machimee-logo"] {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    box-sizing: border-box;
}

.achievement-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
    transition: opacity 0.3s ease;
}

.achievement-image.lazy-image {
    opacity: 0.7;
}

.achievement-image.lazy-image.loaded {
    opacity: 1;
}

/* 各アプリのアイコン/グラフィック */
.achievement-image-placeholder[data-app="shift"] {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="shift"]::before {
    content: '📅';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-image-placeholder[data-app="matching"] {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="matching"]::before {
    content: '💕';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-image-placeholder[data-app="healthcare"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="healthcare"]::before {
    content: '🏥';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-image-placeholder[data-app="ai-sales"] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="ai-sales"]::before {
    content: '🤖';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-image-placeholder[data-app="fashion"] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="fashion"]::before {
    content: '👗';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-image-placeholder[data-app="realestate"] {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="realestate"]::before {
    content: '🏠';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-image-placeholder[data-app="marketing"] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="marketing"]::before {
    content: '📊';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-image-placeholder[data-app="gourmet"] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="gourmet"]::before {
    content: '🍽️';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-image-placeholder[data-app="hr"] {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="hr"]::before {
    content: '👥';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-image-placeholder[data-app="job"] {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="job"]::before {
    content: '💼';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-image-placeholder[data-app="pos"] {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="pos"]::before {
    content: '💳';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-image-placeholder[data-app="virtual"] {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="virtual"]::before {
    content: '🌐';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-image-placeholder[data-app="sales"] {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="sales"]::before {
    content: '📈';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-image-placeholder[data-app="inspection"] {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    background-image: none;
}

.achievement-image-placeholder[data-app="inspection"]::before {
    content: '🔧';
    font-size: 64px;
    opacity: 0.8;
}

.achievement-title {
    font-size: 18px;
    font-weight: bold;
    color: #222222;
    margin: 20px 20px 12px;
    line-height: 1.5;
}

.achievement-description {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0 20px 20px;
}

@media (max-width: 1200px) {
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .achievements-page-section {
        padding: 80px 20px 80px;
    }

    .achievements-page-title {
        font-size: 48px;
    }

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

    .achievement-category {
        margin-bottom: 60px;
    }

    .achievement-category-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .achievement-carousel {
        position: relative;
        display: block;
    }

    .achievement-carousel .carousel-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        font-size: 18px;
        border-width: 1.5px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .achievement-carousel .carousel-btn-prev {
        left: 8px;
    }

    .achievement-carousel .carousel-btn-next {
        right: 8px;
    }

    .achievement-carousel .carousel-container {
        overflow: hidden;
        width: 100%;
    }

    .achievement-category .carousel-track {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 20px !important;
        width: auto !important;
    }

    .achievement-category .achievement-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .achievement-card-link {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .carousel-container {
        width: 100%;
        overflow: hidden;
    }

    .carousel-track {
        gap: 20px;
        width: 100%;
    }

    .achievement-carousel .achievement-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .achievement-carousel .achievement-card-link {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .achievement-image-placeholder,
    .achievement-image {
        height: 150px;
    }

    /* machimeeロゴのサイズをモバイルでも統一 */
    .achievement-image[data-src*="machimee-logo"] {
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        padding: 15px;
        box-sizing: border-box;
    }

    .achievement-title {
        font-size: 16px;
        margin: 16px 16px 10px;
        min-height: 48px;
    }

    .achievement-description {
        font-size: 13px;
        margin: 0 16px 16px;
    }
}

@media (max-width: 480px) {
    .company-visual-hero {
        height: 40vh;
        min-height: 300px;
    }

    .company-visual-title {
        font-size: 32px;
    }

    .company-visual-subtitle {
        font-size: 16px;
    }

    .company-visual-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .company-value-icon {
        font-size: 48px;
    }

    .company-value-title {
        font-size: 24px;
    }

    .company-value-text {
        font-size: 16px;
    }

    .company-page-title {
        font-size: 36px;
    }

    .company-mission-box,
    .company-approach-box,
    .company-commitment-box {
        padding: 30px 20px;
    }

    .company-mission-title,
    .company-approach-title,
    .company-commitment-title {
        font-size: 20px;
    }

    .company-page-description {
        font-size: 16px;
        line-height: 1.8;
    }

    .philosophy-text {
        grid-template-columns: 1fr;
    }

    .philosophy-text p {
        padding: 20px;
        font-size: 15px;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .achievement-image-placeholder {
        height: 150px;
    }
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

/* Hover animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

