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

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

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-delay-1 {
    transition-delay: 0.1s;
}

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

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Splash Screen Styles */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.splash-logo {
    width: 300px;
    height: 45px;
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    animation: splashFadeIn 1s ease-out 0.3s forwards;
}

.splash-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes splashFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.top-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    padding-left: 24px;
    transform: translateY(0);
    transition: transform 0.5s ease, background 0.5s ease;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header.header-white {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.header.header-white .nav-link {
    color: #333333;
}

.header.header-white .nav-link::after {
    background-color: #333333;
}

.header.header-white .btn-icon {
    fill: white;
}

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

.logo-container {
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    align-items: start;
    justify-items: start;
    line-height: 0;
}

.logo {
    width: 240px;
    height: 36px;
    position: relative;
}

.logo-bg {
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    pointer-events: none;
}

.logo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.nav-drawer-logo {
    display: none;
}

.nav-close-btn {
    display: none;
}

.header-content .header-contact-btn {
    display: none;
}

.header-toggle {
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 72px;
}

.nav-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 100%;
    padding: 0 16px;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    white-space: nowrap;
}

.btn-icon {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
    fill: white;
}

.btn-inventory {
    background-color: #c93915;
}

.btn-inventory:hover {
    background-color: #b03212;
}

.btn-contact {
    background-color: #3b4caa;
}

.btn-contact:hover {
    background-color: #2f3d8a;
}

/* Main Visual Styles */
.mv {
    position: relative;
    width: 100%;
    aspect-ratio: 1280 / 800;
    background-color: #ffffff;
}

.mv-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.mv-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    opacity: 0;
    will-change: opacity, transform;
    pointer-events: none;
    animation: panLeft 30s linear infinite;
    animation-play-state: paused;
}

.mv-bg-image.active {
    opacity: 1;
    z-index: 2;
    animation-play-state: running;
}

.mv-bg-image:not(.active) {
    opacity: 0;
    z-index: 1;
    animation-play-state: paused;
}

@keyframes panLeft {
    0% {
        transform: translateX(0);
        object-position: left center;
    }
    100% {
        transform: translateX(-16.67%);
        object-position: right center;
    }
}

@keyframes panLeftWithFade {
    0% {
        transform: translateX(0);
        object-position: left center;
        opacity: 1;
    }
    75% {
        transform: translateX(-16.67%);
        object-position: right center;
        opacity: 1;
    }
    80% {
        transform: translateX(-16.67%);
        object-position: right center;
        opacity: 0;
    }
    85% {
        transform: translateX(0);
        object-position: left center;
        opacity: 0;
    }
    90% {
        transform: translateX(0);
        object-position: left center;
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        object-position: left center;
        opacity: 1;
    }
}

.mv-gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 80%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 3;
}

.mv-content {
    position: absolute;
    left: 50%;
    top: 280px;
    transform: translateX(-50%);
    width: 840px;
    max-width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    z-index: 5;
}

.mv-logo {
    width: 431px;
    height: 64px;
    position: relative;
    flex-shrink: 0;
}

.mv-logo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.mv-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    text-align: center;
    line-height: 1;
    color: #ffffff;
}

.mv-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1;
    color: #ffffff;
    width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 2.8s forwards;
}

.mv-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.8px;
    width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 3.1s forwards;
}

/* News Banner Styles */
.news-banner {
    position: absolute;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    width: 640px;
    max-width: calc(100% - 40px);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 24px;
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.10);
    z-index: 10;
    margin: 0 auto;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.news-banner:hover {
    box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.15);
}

.news-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #3b4caa;
    flex-shrink: 0;
}

.news-content {
    display: flex;
    flex: 1 0 0;
    align-items: center;
    gap: 8px;
    min-width: 0;
    position: relative;
}

.news-item-wrapper {
    position: relative;
    flex: 1;
    min-height: 3.2em;
    height: auto;
    overflow: visible;
}

.news-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    min-width: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.news-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.news-date {
    font-size: 12px;
    line-height: 1.4;
    color: #979797;
    flex-shrink: 0;
    margin: 0;
    white-space: nowrap;
}

.news-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    width: 100%;
    flex-shrink: 0;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    position: relative;
}

.news-banner:hover .news-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #333333;
    transform: scaleX(1);
    transform-origin: left;
    animation: underlineExpand 0.3s ease;
}

@keyframes underlineExpand {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.news-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: block;
}

/* Decorative Section Styles */
.decorative-section {
    position: relative;
    width: 100%;
    min-height: 800px;
    background-color: #ffffff;
    overflow: visible;
    padding: 100px 0;
}

.decorative-circle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.4;
    pointer-events: none;
}

.decorative-circle-1 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 500px;
    height: 500px;
    max-width: 90vw;
    max-height: 90vw;
}

.decorative-circle-2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 460px;
    height: 460px;
    max-width: 83vw;
    max-height: 83vw;
}

.decorative-circle svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* SVGアニメーション */
.rotating-group-1 {
    transform-origin: 250px 250px;
    animation: rotateRing1 20s linear infinite;
}

.rotating-group-2 {
    transform-origin: 230px 230px;
    animation: rotateRing2 25s linear infinite reverse;
}

.animated-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-out forwards;
}

.path-blue-1 {
    animation: drawPath 3s ease-out 0s forwards, movePath 8s ease-in-out 3s infinite;
}

.path-blue-2 {
    animation: drawPath 3s ease-out 0.3s forwards, movePath 7s ease-in-out 3.3s infinite;
}

.path-blue-3 {
    animation: drawPath 3s ease-out 0.6s forwards, movePath 9s ease-in-out 3.6s infinite;
}

.path-blue-4 {
    animation: drawPath 3s ease-out 0.9s forwards, movePath 8.5s ease-in-out 3.9s infinite;
}

.path-pink-1 {
    animation: drawPath 3s ease-out 0.2s forwards, movePath 7.5s ease-in-out 3.2s infinite;
}

.path-pink-2 {
    animation: drawPath 3s ease-out 0.5s forwards, movePath 8.2s ease-in-out 3.5s infinite;
}

.path-pink-3 {
    animation: drawPath 3s ease-out 0.8s forwards, movePath 7.8s ease-in-out 3.8s infinite;
}

.path-pink-4 {
    animation: drawPath 3s ease-out 1.1s forwards, movePath 8.8s ease-in-out 4.1s infinite;
}

@keyframes rotateRing1 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateRing2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes drawPath {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes movePath {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(5px) translateY(-3px);
    }
    50% {
        transform: translateX(-3px) translateY(5px);
    }
    75% {
        transform: translateX(4px) translateY(3px);
    }
}

/* Scribble Circle Section Styles */
/* Business Section Styles */
.business-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 120px 0 0 0;
    overflow: visible;
}

.business-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.business-header {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    min-height: 800px;
    padding-bottom: 100px;
    width: 100%;
}

.business-title-vertical {
    display: flex;
    flex-direction: row-reverse;
    gap: 24px;
    flex-shrink: 0;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.vertical-text {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #333333;
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0.1em;
}

.business-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    padding-top: 40px;
    position: relative;
    z-index: 1;
}

.business-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2.4;
    color: #333333;
}

.business-text p {
    margin: 0;
}

.business-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 200px;
    height: 40px;
    border: 1px solid #333333;
    background-color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 0 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    overflow: visible;
}

.business-button span {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #333333;
    transition: color 0.3s ease;
}

.business-button:hover {
    background-color: #f7f7f7;
    border-color: #333333;
}

.business-button:hover span {
    color: #333333;
}

.button-arrow {
    position: absolute;
    right: 7px;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.business-button:hover .button-arrow {
    transform: translateY(-50%) scale(4);
}

.button-arrow circle {
    fill: #C93915;
    transition: fill 0.3s ease;
}

/* モバイル時のみ画像2枚を横並びにするラッパー（PCは display: contents） */
.business-images-row {
    display: contents;
}

.business-image-wrapper {
    position: absolute;
    left: 560px;
    top: 312px;
    width: 480px;
    height: 320px;
    overflow: hidden;
    mask-image: url('../images/business-mask.svg');
    mask-size: 480px 320px;
    mask-position: 0 0;
    mask-repeat: no-repeat;
    -webkit-mask-image: url('../images/business-mask.svg');
    -webkit-mask-size: 480px 320px;
    -webkit-mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
}

.business-image {
    width: 120%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: panLeftWithFade 30s linear infinite;
}

.business-image-wrapper-2 {
    position: absolute;
    left: -88px;
    top: 480px;
    width: 300px;
    height: 200px;
    overflow: hidden;
    mask-image: url('../images/business-mask-2.svg');
    mask-size: 300px 200px;
    mask-position: 0 0;
    mask-repeat: no-repeat;
    -webkit-mask-image: url('../images/business-mask-2.svg');
    -webkit-mask-size: 300px 200px;
    -webkit-mask-position: 0 0;
    -webkit-mask-repeat: no-repeat;
}

.business-image-2 {
    width: 120%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: panLeftWithFade 30s linear infinite;
}

/* Product Consultation Section Styles */
.product-consultation-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 120px 0;
    overflow: visible;
}

.product-consultation-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.product-consultation-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 48px 0;
    text-align: left;
}

.product-consultation-title-small {
    font-size: 0.85em;
    font-weight: 400;
}

.product-consultation-title-emphasis {
    color: #333333;
    font-weight: 600;
    font-size: 1.1em;
    position: relative;
    padding: 2px 4px;
    background: linear-gradient(transparent 60%, rgba(146, 166, 190, 0.3) 60%, rgba(146, 166, 190, 0.3) 90%, transparent 90%);
    display: inline-block;
}

.product-consultation-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.product-consultation-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1.5;
    text-align: left;
}

.product-consultation-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2.4;
    color: #333333;
    margin: 0;
}

.product-consultation-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-consultation-category {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #333333;
    background-color: #f0f2f7;
    border: 1px solid #e0e4eb;
    border-radius: 4px;
    padding: 6px 12px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.product-consultation-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 200px;
    height: 40px;
    border: 1px solid #333333;
    background-color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 0 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    overflow: visible;
    margin: 16px 0 0 0;
}

.product-consultation-button span {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #333333;
    transition: color 0.3s ease;
}

.product-consultation-button:hover {
    background-color: #f7f7f7;
    border-color: #333333;
}

.product-consultation-button:hover span {
    color: #333333;
}

.product-consultation-button:hover .button-arrow {
    transform: translateY(-50%) scale(4);
}

.product-consultation-image-wrapper {
    width: 400px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.product-consultation-image {
    width: 120%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: panLeftWithFade 30s linear infinite;
}

@media (max-width: 768px) {
    .product-consultation-section {
        padding: 80px 0;
    }

    .product-consultation-container {
        padding: 0 24px;
    }

    .product-consultation-title {
        font-size: 24px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 32px;
    }

    .product-consultation-content {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .product-consultation-text {
        text-align: left;
        width: 100%;
    }

    .product-consultation-description {
        font-size: 16px;
        line-height: 2.2;
        text-align: left;
    }

    .product-consultation-categories {
        gap: 8px;
        margin-top: 24px;
        justify-content: center;
    }

    .product-consultation-category {
        font-size: 12px;
        padding: 6px 12px;
    }

    .product-consultation-button {
        width: 100%;
        max-width: 200px;
        margin: 32px auto 0 auto;
    }

    .product-consultation-image-wrapper {
        width: 100%;
    }
}

/* Machine Records Section Styles */
.machine-records-section {
    display: none;
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 0;
    overflow: hidden;
}

.machine-records-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.machine-records-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.4;
    color: #333333;
    margin: 0 24px 32px 24px;
    padding-top: 0;
}

.machine-records-header {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 0;
    margin-left: 24px;
    margin-right: 24px;
    width: calc(100% - 48px);
    max-width: 880px;
}

.machine-records-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2.4;
    color: #333333;
    flex: 1;
    margin: 0;
}

.machine-records-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 200px;
    height: 40px;
    border: 1px solid #333333;
    background-color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 0 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    overflow: visible;
    flex-shrink: 0;
}

.machine-records-button span {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #333333;
    transition: color 0.3s ease;
}

.machine-records-button:hover {
    background-color: #f7f7f7;
    border-color: #333333;
}

.machine-records-button:hover span {
    color: #333333;
}

.machine-records-button .button-arrow {
    position: absolute;
    right: 7px;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.machine-records-button:hover .button-arrow {
    transform: translateY(-50%) scale(4);
}

.machine-records-list-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    margin-top: 32px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.machine-records-list-wrapper::-webkit-scrollbar {
    display: none;
}

.machine-records-list {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    width: max-content;
    padding-left: calc((100vw - 880px) / 2 + 24px);
    padding-right: calc((100vw - 880px) / 2 + 24px);
    min-width: calc(100% - 48px);
}

@media (max-width: 880px) {
    .machine-records-list {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.machine-records-controls {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding: 0 24px;
    position: static;
    z-index: 10;
    width: 100%;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: visible;
}

.machine-records-control-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #333333;
    border-radius: 100px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.machine-records-control-btn:hover {
    background-color: #f7f7f7;
    border-color: #333333;
}

.machine-records-control-btn:active {
    background-color: #e8e8e8;
}

.machine-records-control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.control-icon {
    width: 24px;
    height: 24px;
    display: block;
}

/* CT Section Styles */
.ct-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #051048;
    background-image: url('../images/ct-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    margin-top: 120px;
}

.ct-container {
    position: relative;
    z-index: 1;
    width: 728px;
    max-width: 100%;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.ct-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

.ct-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}

.ct-description {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.64px;
    color: #ffffff;
    margin: 0;
}

.ct-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.ct-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 200px;
    height: 40px;
    border: 1px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    position: relative;
    padding: 0 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    overflow: visible;
    flex-shrink: 0;
    text-decoration: none;
}

.ct-button span {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    transition: color 0.3s ease;
}

.ct-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
}

.ct-button:hover span {
    color: #ffffff;
}

.ct-button .button-arrow {
    position: absolute;
    right: 7px;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.ct-button:hover .button-arrow {
    transform: translateY(-50%) scale(4);
}

.ct-button .button-arrow circle {
    fill: #C93915;
    transition: fill 0.3s ease;
}

@media (max-width: 768px) {
    .ct-section {
        height: auto;
    }

    .ct-container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 48px 24px;
    }

    .ct-content {
        width: 100%;
    }

    .ct-title {
        font-size: 24px;
    }

    .ct-description {
        font-size: 14px;
    }

    .ct-button {
        width: 200px;
    }
}

.machine-records-list::-webkit-scrollbar {
    display: none;
}

.machine-records-list:active {
    cursor: grabbing;
}

.machine-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 240px;
    min-width: 240px;
    flex-shrink: 0;
}

.machine-image-wrapper {
    aspect-ratio: 179 / 179;
    background-color: #f0f2f7;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.machine-image {
    position: absolute;
    width: auto;
    height: auto;
    object-fit: contain;
}

.machine-image-wrapper-1 .machine-image {
    top: 50%;
    left: calc(50% + 0.5px);
    transform: translate(-50%, -50%);
    width: 233px;
    height: 213px;
}

.machine-image-wrapper-2 .machine-image {
    top: calc(50% + 0.5px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 195px;
}

.machine-image-wrapper-3 .machine-image {
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 176px;
    height: 235px;
}

.machine-image-wrapper-4 .machine-image {
    top: 14px;
    left: -139px;
    width: 373px;
    height: 210px;
}

.machine-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.machine-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.2em;
}

.machine-type {
    background-color: #f0f2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    color: #767d90;
    width: fit-content;
}

.machine-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    color: #333333;
    width: 100%;
}

.machine-manufacturer {
    flex-shrink: 0;
}

.machine-year {
    flex-shrink: 0;
}

.scribble-section {
    position: relative;
    width: 100%;
    min-height: 800px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    overflow: hidden;
}

.business-header .scribble-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 600px;
    height: 600px;
    max-width: 90vw;
    max-height: 90vw;
    display: block;
    animation: rotateCircle 30s linear infinite;
    background-color: transparent;
    pointer-events: none;
    z-index: -1;
    margin: 0;
    padding: 0;
}

@keyframes rotateCircle {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateCircleMobile {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1280px) {
    .header {
        padding: 0;
        padding-left: 20px;
    }

    .nav {
        gap: 40px;
    }

    .nav-link {
        font-size: 14px;
        font-weight: 400;
    }

    .btn {
        padding: 0 12px;
        font-size: 14px;
    }

    .mv-title {
        font-family: 'Noto Serif JP', serif;
        font-weight: 600;
        font-size: 42px;
    }

    .mv-subtitle {
        font-family: 'Noto Serif JP', serif;
        font-weight: 500;
        font-size: 18px;
    }
}

/* モバイル: ハンバーガーメニュー・ドロワー */
@media (max-width: 768px) {
    .header {
        height: 72px;
        padding: 0 16px 0 20px;
        overflow: visible;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        min-width: 0;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .header-content .header-contact-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        padding: 0;
        flex-shrink: 0;
    }

    .header-contact-btn .btn-icon {
        width: 24px;
        height: 24px;
    }

    .header-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 1px solid currentColor;
        border-radius: 2px;
        background: none;
        cursor: pointer;
        z-index: 101;
        position: relative;
        flex-shrink: 0;
    }

    .header:not(.header-white) .header-toggle {
        color: #ffffff;
    }

    .header.header-white .header-toggle {
        color: #333333;
    }

    .header.nav-open .header-toggle {
        color: #333333;
    }

    .header-toggle-icon,
    .header-toggle-icon::before,
    .header-toggle-icon::after {
        display: block;
        width: 22px;
        height: 1.5px;
        background: currentColor;
        border-radius: 1px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .header-toggle-icon {
        position: relative;
    }

    .header-toggle-icon::before,
    .header-toggle-icon::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
    }

    .header-toggle-icon::before {
        transform: translateY(-6px);
    }

    .header-toggle-icon::after {
        transform: translateY(6px);
    }

    .header.nav-open .header-toggle-icon {
        background: transparent;
    }

    .header.nav-open .header-toggle-icon::before {
        transform: translateY(0) rotate(45deg);
    }

    .header.nav-open .header-toggle-icon::after {
        transform: translateY(0) rotate(-45deg);
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: none;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 72px 24px 32px;
        background: #ffffff;
        box-shadow: none;
        z-index: 102;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .nav-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 1px solid #333333;
        border-radius: 2px;
        background: transparent;
        color: #333333;
        cursor: pointer;
    }

    .nav-close-icon {
        width: 22px;
        height: 22px;
    }

    .nav-close-btn:hover {
        background: #f7f7f7;
    }

    .header.nav-open .nav {
        transform: translateX(0);
    }

    .nav-drawer-logo {
        display: block;
        padding: 24px 0 20px;
        border-bottom: 1px solid #eeeeee;
        margin-bottom: 8px;
    }

    .nav-drawer-logo-img {
        display: block;
        width: 180px;
        height: auto;
        object-fit: contain;
    }

    .nav .nav-link {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        color: #333333;
        border-bottom: 1px solid #eeeeee;
    }

    .nav .nav-link::after {
        display: none;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        height: auto;
        gap: 12px;
        margin-top: 24px;
        padding-top: 24px;
    }

    .nav-buttons .btn {
        width: 100%;
        height: 48px;
        justify-content: center;
        font-size: 15px;
    }


    .nav-buttons .btn-icon {
        fill: white;
    }

    .logo {
        width: 180px;
        height: 27px;
    }

    .mv {
        min-height: 85vh;
        aspect-ratio: auto;
    }

    .mv-content {
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        gap: 32px;
    }

    .mv-logo {
        width: 280px;
        height: 42px;
    }

    .mv-title {
        font-family: 'Noto Serif JP', serif;
        font-weight: 600;
        font-size: 32px;
    }

    .mv-subtitle {
        font-family: 'Noto Serif JP', serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 180%;
        letter-spacing: 0.8px;
    }

    .news-banner {
        bottom: -24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .news-content {
        width: 100%;
    }

    /* 事業内容セクション：はみ出し解消・見出し→文→ボタン→画像の順 */
    .business-section {
        overflow-x: hidden;
    }

    .business-container {
        padding: 0 24px;
        overflow-x: hidden;
    }

    .business-header {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        min-height: 0;
        padding-bottom: 48px;
    }

    /* モバイル: canvas を見出しとテキストの間あたりに配置し、その上に文章を重ねる */
    .business-header .scribble-canvas {
        order: 2;
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translate(-50%, 0) rotate(0deg);
        width: 400px;
        height: 400px;
        max-width: 100vmin;
        max-height: 100vmin;
        margin: 0;
        z-index: 0;
        pointer-events: none;
        animation: rotateCircleMobile 30s linear infinite;
    }

    @keyframes rotateCircleMobile {
        0% {
            transform: translate(-50%, 0) rotate(0deg);
        }
        100% {
            transform: translate(-50%, 0) rotate(360deg);
        }
    }

    .business-content {
        order: 2;
        position: relative;
        z-index: 1;
        padding-top: 0;
        gap: 24px;
    }

    .business-title-vertical {
        order: 1;
        flex-direction: column;
        flex-shrink: 0;
        gap: 8px;
        align-items: flex-start;
    }

    .business-title-vertical .vertical-text {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        white-space: normal;
        font-size: 20px;
        line-height: 1.5;
    }

    .business-text {
        font-size: 16px;
        line-height: 2.2;
    }

    .business-button {
        align-self: center;
    }

    /* 添付レイアウト: 左画像は左にはみ出し、右画像は右にはみ出して横並び（右を少し下にずらす） */
    .business-images-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        order: 4;
        margin-top: 0;
        gap: 0;
    }

    .business-image-wrapper {
        order: 0;
        position: relative;
        left: auto;
        top: auto;
        max-width: 70%;
        margin-left: -64px;
        margin-top: 0;
        height: auto;
        aspect-ratio: 3 / 2;
        mask-image: none;
        -webkit-mask-image: none;
        border-radius: 4px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .business-image-wrapper-2 {
        order: 0;
        position: relative;
        left: auto;
        top: auto;
        max-width: 50%;
        margin-left: 0;
        margin-right: -24px;
        margin-top: 24px;
        height: auto;
        aspect-ratio: 3 / 2;
        mask-image: none;
        -webkit-mask-image: none;
        border-radius: 4px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .business-image,
    .business-image-2 {
        object-fit: cover;
    }

    /* 取り扱っている中古機械の実績セクション */
    .machine-records-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .machine-records-description {
        font-size: 16px;
    }

    .machine-records-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .mv-title {
        font-family: 'Noto Serif JP', serif;
        font-weight: 600;
        font-size: 24px;
    }

    .mv-subtitle {
        font-family: 'Noto Serif JP', serif;
        font-weight: 500;
        font-size: 18px;
        line-height: 180%;
    }

    .mv-logo {
        width: 200px;
        height: 30px;
    }
}

/* Scroll Animation Styles */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-delay-1 {
    transition-delay: 0.1s;
}

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

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Styles */
.footer {
    width: 100%;
    background-color: #ffffff;
    padding: 120px 48px;
}

.footer-container {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
}

.footer-header {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.footer-logo {
    height: 36px;
    width: 240px;
    position: relative;
    flex-shrink: 0;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.footer-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.footer-nav-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #333333;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #333333;
    transition: width 0.3s ease;
}

.footer-nav-link:hover::after {
    width: 100%;
}

.footer-nav-link-icon {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-nav-icon {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

.footer-content {
    display: flex;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.footer-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 2.4;
    color: #333333;
    margin: 0;
    flex: 1;
}

.footer-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.footer-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 200px;
    height: 40px;
    border: 1px solid #333333;
    background-color: #ffffff;
    position: relative;
    padding: 0 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    overflow: visible;
}

.footer-button span {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #333333;
    transition: color 0.3s ease;
}

.footer-button:hover {
    background-color: #f7f7f7;
    border-color: #333333;
}

.footer-button:hover span {
    color: #333333;
}

.footer-button .button-arrow {
    position: absolute;
    right: 7px;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.footer-button:hover .button-arrow {
    transform: translateY(-50%) scale(4);
}

.footer-button .button-arrow circle {
    fill: #C93915;
    transition: fill 0.3s ease;
}

.footer-sns-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-sns-icon:hover {
    opacity: 0.7;
}

.footer-sns-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.footer-copyright {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #333333;
    text-align: center;
    margin: 0;
    padding-top: 48px;
    width: 100%;
}

@media (max-width: 880px) {
    .footer {
        padding: 120px 24px;
    }

    .footer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .footer-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-container {
        align-items: center;
    }

    .footer-header {
        align-items: center;
        justify-content: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-content {
        align-items: center;
    }

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

    .footer-actions {
        justify-content: center;
    }

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

    .footer-text-line2 {
        display: block;
    }
}

/* Page Title Section Styles */
.page-title-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 48px 0 80px 0;
}

.page-title-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 1.4;
    color: #333333;
    margin: 0;
}

/* Company Info Section Styles */
.company-info-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}

.company-info-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.privacy-policy-section {
    padding: 0 0 80px 0;
    background-color: #ffffff;
}

.privacy-policy-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.privacy-policy-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 2;
    color: #333333;
}

.privacy-policy-content p {
    margin: 0 0 1em 0;
}

.privacy-policy-content h2 {
    font-size: 20px;
    margin: 2em 0 0.5em 0;
    padding: 0;
}

.privacy-policy-content h3 {
    font-size: 18px;
    margin: 1.5em 0 0.5em 0;
    padding: 0;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
    margin: 0.5em 0 1em 1.5em;
    padding: 0;
}

/* お問い合わせ送信完了ページ */
.contact-thanks-section {
    padding: 48px 0 80px 0;
    background-color: #ffffff;
}

.contact-thanks-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.contact-thanks-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 2;
    color: #333333;
    margin-bottom: 56px;
}

.contact-thanks-content p {
    margin: 0 0 1em 0;
    text-align: center;
}

.contact-thanks-message {
    margin: 0;
    padding: 0 16px;
    text-align: center;
}

.contact-thanks-actions {
    display: flex;
    justify-content: center;
}

.contact-thanks-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    height: 48px;
    padding: 0 24px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: #ffffff;
    background-color: #3b4caa;
    border: 1px solid #3b4caa;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-thanks-button span {
    color: #ffffff;
}

.contact-thanks-button .button-arrow {
    position: static;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    transform: none;
}

.contact-thanks-button .button-arrow circle {
    fill: #ffffff;
}

.contact-thanks-button:hover {
    background-color: #2f3d8a;
    border-color: #2f3d8a;
    color: #ffffff;
}

.contact-thanks-button:hover span,
.contact-thanks-button:hover .button-arrow circle {
    color: #ffffff;
    fill: #ffffff;
}

.company-info-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e0e0e0;
}

.info-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    padding: 24px 0;
}

.info-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    width: 200px;
    flex-shrink: 0;
}

.info-value {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    flex: 1;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    margin: 0;
    padding: 0;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
}

.info-item-label {
    display: inline-block;
    margin-right: 24px;
    flex-shrink: 0;
    min-width: 120px;
}

.info-item-value {
    display: inline-block;
    flex: 1;
}

/* Access Section Styles */
.access-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}

.access-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.access-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.4;
    color: #333333;
    margin: 0 0 48px 0;
}

.access-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.access-info {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    justify-content: space-between;
}

.access-text-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.access-address {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.access-tel {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.access-tel-link {
    color: #333333;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.access-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: #333333;
    flex-shrink: 0;
    margin-top: 2px;
}

.access-map-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 200px;
    height: 40px;
    border: 1px solid #333333;
    background-color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 0 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    overflow: visible;
}

.access-map-button span {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #333333;
    transition: color 0.3s ease;
}

.access-map-button:hover {
    background-color: #f7f7f7;
    border-color: #333333;
}

.access-map-button:hover span {
    color: #333333;
}

.access-map-button .button-arrow {
    position: absolute;
    right: 7px;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.access-map-button:hover .button-arrow {
    transform: translateY(-50%) scale(4);
}

.access-map-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
}

.access-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Breadcrumb Navigation Styles */
.breadcrumb {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 24px 0;
    margin-top: 72px;
}

.breadcrumb-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
    text-decoration: none;
    position: relative;
}

.breadcrumb-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #333333;
    transition: width 0.3s ease;
}

.breadcrumb-link:hover::after {
    width: 100%;
}

.breadcrumb-separator {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
}

.breadcrumb-current {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
}

/* News Detail Section Styles */
.news-detail-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 48px 0 80px 0;
}

.news-detail-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.news-detail-header {
    margin-bottom: 32px;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.news-detail-date {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #979797;
}

.news-detail-category {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #3b4caa;
    padding: 4px 12px;
    background-color: #f0f2f7;
    border-radius: 4px;
}

.news-detail-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.news-detail-featured-image {
    width: 100%;
    margin-bottom: 48px;
    overflow: hidden;
    border-radius: 4px;
}

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

.news-detail-content {
    margin-bottom: 48px;
}

.news-detail-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2.4;
    color: #333333;
}

.news-detail-body p {
    margin: 0 0 24px 0;
    font-size: 16px;
}

.news-detail-body h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.6;
    color: #333333;
    margin: 64px 0 32px 0;
}

.news-detail-body h3 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.6;
    color: #333333;
    margin: 56px 0 28px 0;
}

.news-detail-body ul,
.news-detail-body ol {
    margin: 24px 0;
    padding-left: 24px;
}

.news-detail-body li {
    margin: 8px 0;
    line-height: 2.4;
}

.news-quote {
    margin: 32px 0;
    padding: 24px 32px;
    background-color: #f7f7f7;
    border-left: 4px solid #3b4caa;
}

.news-quote p {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 2;
    color: #333333;
    margin: 0;
    font-style: italic;
}

.news-image-wrapper {
    margin: 32px 0;
}

.news-content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    margin-bottom: 8px;
}

.news-image-caption {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    text-align: center;
    margin: 0;
}

.news-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
}

.news-table th,
.news-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.news-table th {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    background-color: #f7f7f7;
}

.news-table td {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.news-detail-footer {
    padding-top: 32px;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 48px;
}

.news-detail-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.news-tag-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
}

.news-tag {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
    padding: 4px 12px;
    background-color: #f0f2f7;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.news-tag:hover {
    background-color: #e0e4f0;
}

.news-detail-share {
    display: flex;
    align-items: center;
    gap: 16px;
}

.news-share-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
}

.news-share-button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: #f7f7f7;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.news-share-button:hover {
    background-color: #e8e8e8;
}

.news-share-button svg {
    width: 20px;
    height: 20px;
    display: block;
}

.news-related-section {
    margin-top: 64px;
    padding-top: 48px;
}

.news-related-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 32px 0;
}

.news-related-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-related-item {
    border-bottom: 1px solid #e0e0e0;
}

.news-related-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.news-related-link {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 16px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
}

.news-related-link:hover {
    background-color: #f7f7f7;
}

.news-related-date {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #979797;
    flex-shrink: 0;
    width: 120px;
}

.news-related-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-related-item-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.news-related-excerpt {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-related-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.news-detail-navigation {
    margin-top: 48px;
    padding-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 200px;
    height: 40px;
    border: 1px solid #333333;
    background-color: #ffffff;
    position: relative;
    padding: 0 16px;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #333333;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    overflow: visible;
    flex-shrink: 0;
}

.news-nav-button:hover {
    background-color: #f7f7f7;
    border-color: #333333;
}

.news-nav-button .button-arrow {
    position: absolute;
    right: 7px;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.news-nav-button:hover .button-arrow {
    transform: translateY(-50%) scale(4);
}

.news-nav-button .button-arrow circle {
    fill: #C93915;
    transition: fill 0.3s ease;
}

.news-nav-arrow {
    display: none;
}

/* News List Section Styles */
.news-list-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}

.news-list-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-list-item {
    border-bottom: 1px solid #e0e0e0;
}

.news-list-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.news-list-link {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 16px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
}

.news-list-link:hover {
    background-color: #f7f7f7;
}

.news-list-date {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #979797;
    flex-shrink: 0;
    width: 120px;
}

.news-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-list-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.news-list-excerpt {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.news-item-hidden {
    display: none;
}

.news-load-more {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.news-load-more-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 200px;
    height: 40px;
    border: 1px solid #333333;
    background-color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 0 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    overflow: visible;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #333333;
}

.news-load-more-button:hover {
    background-color: #f7f7f7;
    border-color: #333333;
}

    .news-load-more-button span {
        color: #333333;
        transition: color 0.3s ease;
    }

    .news-detail-section {
        padding: 32px 0 48px 0;
    }

    .news-detail-title {
        font-size: 32px;
    }

    .news-detail-body {
        font-size: 16px;
    }

    .news-detail-body p {
        font-size: 16px;
    }

    .news-detail-body h2 {
        font-size: 24px;
        font-weight: 700;
        margin: 64px 0 24px 0;
    }

    .news-detail-body h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 40px 0 20px 0;
    }

    .news-quote {
        padding: 16px 20px;
    }

    .news-quote p {
        font-size: 16px;
    }

    .news-table {
        font-size: 14px;
    }

    .news-table th,
    .news-table td {
        padding: 8px 12px;
        font-size: 14px;
    }

    .news-related-link {
        flex-direction: column;
        gap: 16px;
        padding: 24px 16px;
    }

    .news-related-date {
        width: 100%;
        font-size: 12px;
    }

    .news-related-item-title {
        font-size: 16px;
    }

    .news-related-excerpt {
        font-size: 13px;
    }

    .news-related-arrow {
        align-self: flex-end;
    }

    .news-nav-button {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

/* Company History Section Styles */
.company-history-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}

.company-history-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 1.4;
    color: #333333;
    margin: 0 0 48px 0;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.history-item {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.history-year {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.8;
    color: #333333;
    width: 120px;
    flex-shrink: 0;
}

.history-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    flex: 1;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 16px 0;
        margin-top: 72px;
    }

    .breadcrumb-container {
        padding: 0 24px;
    }

    .breadcrumb-link,
    .breadcrumb-separator,
    .breadcrumb-current {
        font-size: 12px;
    }

    .page-title-section {
        padding: 32px 0 48px 0;
    }

    .page-title {
        font-size: 32px;
    }

    .company-info-section {
        padding: 48px 0;
    }

    .info-row {
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
    }

    .info-label {
        width: 100%;
        font-size: 14px;
    }

    .info-value {
        font-size: 14px;
    }

    .info-item-label {
        min-width: 100px;
        margin-right: 16px;
    }

    .company-history-section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .history-list {
        gap: 24px;
    }

    .history-item {
        flex-direction: column;
        gap: 8px;
    }

    .history-year {
        width: 100%;
        font-size: 18px;
    }

    .history-content {
        font-size: 14px;
    }

    .news-list-section {
        padding: 48px 0;
    }

    .news-list-link {
        flex-direction: column;
        gap: 16px;
        padding: 24px 16px;
    }

    .news-list-date {
        width: 100%;
        font-size: 12px;
    }

    .news-list-title {
        font-size: 16px;
    }

    .news-list-excerpt {
        font-size: 13px;
    }

    .news-list-arrow {
        align-self: flex-end;
    }

    .access-section {
        padding: 48px 0;
    }

    .access-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .access-content {
        gap: 24px;
    }

    .access-info {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .access-text-info {
        gap: 8px;
    }

    .access-address,
    .access-tel {
        font-size: 14px;
    }

    .access-icon {
        font-size: 20px;
    }

    .access-map-button {
        width: 100%;
        max-width: 200px;
    }

    .access-map-wrapper {
        height: 300px;
    }
}

/* Business Overview Section Styles */
.business-overview-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}

.business-overview-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.business-overview-content {
    width: 100%;
}

.business-overview-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2.4;
    color: #333333;
    margin: 0;
}

/* Business Services Section Styles */
.business-services-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 0 0 80px 0;
}

.business-services-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 40px;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: #333333;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.service-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.service-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2.4;
    color: #666666;
    margin: 0;
}

/* Contact Form Section Styles */
.contact-form-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 80px 0;
}

.contact-form-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-form-content {
    width: 100%;
}

.contact-form-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2.4;
    color: #333333;
    margin: 0 0 48px 0;
}

.contact-form,
.contact-form-section .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-required {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: #ffffff;
    background-color: #C93915;
    padding: 2px 8px;
    border-radius: 2px;
}

.form-input,
.form-textarea {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    border-radius: 0;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

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

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

.form-group-privacy {
    margin-top: 8px;
}

.form-privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

.form-privacy-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-privacy-link {
    color: #3b4caa;
    text-decoration: underline;
}

.form-privacy-link:hover {
    text-decoration: none;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.contact-form-section .form-submit,
.contact-form-section .form-submit-button,
.contact-form-section input[type="submit"],
.contact-form-section button[type="submit"] {
    visibility: visible;
    display: flex;
}

.contact-form-section input[type="submit"],
.contact-form-section button[type="submit"] {
    justify-content: center;
    align-items: center;
}

.form-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 200px;
    height: 40px;
    border: 1px solid #333333;
    background-color: #ffffff;
    position: relative;
    padding: 0 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    overflow: visible;
}

.form-submit-button span {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #333333;
    transition: color 0.3s ease;
}

.form-submit-button:hover {
    background-color: #f7f7f7;
    border-color: #333333;
}

.form-submit-button:hover span {
    color: #333333;
}

.form-submit-button .button-arrow {
    position: absolute;
    right: 7px;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.form-submit-button:hover .button-arrow {
    transform: translateY(-50%) scale(4);
}

.form-submit-button .button-arrow circle {
    fill: #C93915;
    transition: fill 0.3s ease;
}

.form-submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-submit-button:disabled:hover {
    background-color: #ffffff;
    border-color: #333333;
}

/* MW WP Form 用：formWrap / formTitle / formInput 構造をテーマの見た目に合わせる */
.contact-form-section .formWrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.contact-form-section .formTitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form-section .formTitle.required::after {
    content: '必須';
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: #ffffff;
    background-color: #C93915;
    padding: 2px 8px;
    border-radius: 2px;
}

.contact-form-section .formInput input[type="text"],
.contact-form-section .formInput input[type="email"],
.contact-form-section .formInput input[type="tel"],
.contact-form-section .formInput textarea {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    border-radius: 0;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-form-section .formInput input:focus,
.contact-form-section .formInput textarea:focus {
    outline: none;
    border-color: #333333;
}

.contact-form-section .formInput textarea {
    resize: vertical;
    min-height: 200px;
}

.contact-form-section .formNote {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 4px;
    display: block;
}

.contact-form-section .formAgree {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 24px;
}

.contact-form-section .agreeCheck {
    display: inline-flex;
    align-items: center;
}

.contact-form-section .agreeCheck input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}


.contact-form-section .agreeTxt {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

.contact-form-section .agreeTxt .form-privacy-link {
    color: #3b4caa;
    text-decoration: underline;
}

.contact-form-section .agreeTxt .form-privacy-link:hover {
    text-decoration: none;
}

.contact-form-section .formSubmit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.contact-form-section .formSubmit .formBack,
.contact-form-section .formSubmit .form-submit-button,
.contact-form-section .formSubmit input[type="submit"],
.contact-form-section .formSubmit button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    border: 1px solid #333333;
    background-color: #ffffff;
    color: #333333;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-form-section .formSubmit .formBack:hover,
.contact-form-section .formSubmit .form-submit-button:not(:disabled):hover,
.contact-form-section .formSubmit input[type="submit"]:hover {
    background-color: #f7f7f7;
}

.contact-form-section .formSubmit .form-submit-button:disabled,
.contact-form-section .formSubmit input[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.contact-form-section [class*="mwform_error"] {
    font-size: 14px;
    color: #C93915;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .business-overview-section {
        padding: 48px 0;
    }

    .business-services-section {
        padding: 0 0 48px 0;
    }

    .business-services-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-icon {
        width: 24px;
        height: 24px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
        line-height: 2.2;
    }

    .contact-form-section {
        padding: 48px 0;
    }

    .contact-form {
        gap: 24px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 10px 14px;
    }

    .form-textarea {
        min-height: 160px;
    }

    .form-submit-button {
        width: 100%;
        max-width: 200px;
    }
}
