@charset "utf-8";

/* ========================================
   CSS変数の定義（SASSライクな管理）
   ======================================== */



/* 共有 */

html{
    font-size: 100%;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
	transition: 0.5s; 
}
a:hover {
	opacity: 0.7;
}

img{
    width: 100%;
    vertical-align: top;
}
p{
    color: black;
}
#pc_only{
    display: block;
}
#sp_only {
	display: none;
}



/* --------------------------------
 * レスポンシブ設定
 * -------------------------------- */
@media (max-width: 768px) {
    /* -----　共有設定　----- */
    #pc_only {
        display: none;
    }
    
    #sp_only {
        display: block;
    }
}

/* ========================================
   ヘッダー
   ======================================== */
.site-header {
    position: relative;
    width: 100%;
    z-index: 100;
    position: fixed;
    background-color: white;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 1;
}

.header-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
}

.header-left {
    background-color: #ffffff;
    padding: 20px 40px 20px 0;
    position: relative;
    z-index: 2;
}

.header-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 100%;
    background: linear-gradient(to bottom right, #ffffff 0%, #ffffff 50%, transparent 50%);
    z-index: 1;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
}

.company-name {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: 0.05em;
}

.header-right {
    position: relative;
    z-index: 1;
    padding-left: 50px;
}

.header-nav .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
    justify-content: flex-end;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    color: black;
    text-decoration: none;
    transition: opacity 0.3s;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-item-has-submenu {
    position: relative;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 1000;
    margin-top: 10px;
}

.nav-item-has-submenu:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-submenu-link {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.nav-submenu-link:hover {
    background-color: #E3F2FD;
    color: #1976D2;
}

.nav-submenu li:first-child .nav-submenu-link {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.nav-submenu li:last-child .nav-submenu-link {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.nav-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: #2196F3;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: #1976D2;
    opacity: 1;
}

/* ハンバーガーボタン（デスクトップでは非表示） */
.hamburger-button {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-around;
    padding: 8px;
    margin-left: auto;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-button.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-button.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* モバイルメニュー（デスクトップでは非表示） */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 80px;
}

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

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

.mobile-nav-link {
    display: block;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.mobile-nav-link:hover {
    background-color: #f5f5f5;
}

.mobile-nav-item-has-submenu {
    position: relative;
}

.mobile-nav-link-toggle {
    position: relative;
}

.mobile-nav-link-toggle::after {
    content: '▼';
    position: absolute;
    right: 30px;
    font-size: 12px;
    transition: transform 0.3s;
}

.mobile-nav-item-has-submenu.active .mobile-nav-link-toggle::after {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-item-has-submenu.active .mobile-nav-submenu {
    max-height: 500px;
}

.mobile-nav-submenu-link {
    display: block;
    padding: 15px 30px 15px 50px;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    background-color: #f9f9f9;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.mobile-nav-submenu-link:hover {
    background-color: #f0f0f0;
}

.mobile-nav-button {
    display: block;
    margin: 20px 30px;
    padding: 15px 30px;
    background-color: #2196F3;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    transition: background-color 0.3s;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.mobile-nav-button:hover {
    background-color: #1976D2;
}

/* メニューオーバーレイ（削除 - 暗転を防ぐため） */
/* body.is-active::before は削除しました */

@media screen and (max-width: 768px) {
        .header-content {
            grid-template-columns: 1fr;
            position: relative;
        }
        .header-container{
            padding: 0;
        }

        .header-left {
            padding: 20px 20px;
        }
        
        .header-left::after {
            display: none;
        }
        
        .header-right {
            padding: 15px 20px;
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            top: 0px;
            right: 0;
            z-index: 100;
        }
        
        /* ハンバーガーボタンを表示 */
        .hamburger-button {
            display: flex;
        }
        
        /* デスクトップメニューを非表示 */
        .header-nav {
            display: none;
        }
        
        /* モバイルメニューを表示可能にする */
        .mobile-nav {
            display: block;
        }
        
        .nav-link {
            font-size: 14px;
        }
        
        .nav-button {
            padding: 8px 20px;
            font-size: 14px;
        }
        
        .nav-item-has-submenu {
            position: static;
        }
        
        .nav-submenu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            margin-top: 5px;
            box-shadow: none;
            background-color: transparent;
            padding: 0;
        }
        
        .nav-submenu-link {
            padding: 8px 15px;
            font-size: 13px;
            color: #ffffff;
        }
        
        .nav-submenu-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }
        
        .company-name {
            font-size: 18px;
        }
}

/* ========================================
   Heroセクション
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 95vh;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: stretch;
    min-height: 600px;
}

.hero-left {
    padding: 80px 60px;
    z-index: 2;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-line {
    position: absolute;
    width: 2px;
}

.hero-line-blue {
    left: 20%;
    height: 15%;
    transform: rotate(25deg);
    transform-origin: top center;
    background-color: #1753a2;
    bottom: 0px;
    position: absolute;
}

.hero-line-yellow {
    left: 20%;
    height: 20%;
    transform: rotate(25deg);
    transform-origin: top center;
    background-color: #FFD700;
    bottom: 10%;
    position: absolute;
}

.hero-triangle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 200px 0 0 250px;
    clip-path: polygon(0 0, 85% 0, 50% 100%, 0% 100%);
    text-align: center;
    color: #1753a2;
}

.hero-text {
    z-index: 3;
    margin-top: 20%;
    position: relative;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 30px 0;
    color: #333333;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    color: #333333;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.hero-right {
    position: absolute;
    z-index: 10;
    overflow: hidden;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

/* Hero SCROLL要素（逆三角） - SP時のみ表示 */
.hero-scroll {
    display: none; /* デスクトップでは非表示 */
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    z-index: 100;
    z-index: 1;
}

.hero-scroll-triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #1753a2;
    margin-bottom: 10px;
    animation: scrollBounce 2s infinite;
}

.hero-scroll-text {
    font-size: 12px;
    font-weight: 500;
    color: #1753a2;
    letter-spacing: 0.1em;
    font-family: 'Zen Maru Gothic', sans-serif;
    text-transform: uppercase;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}
    @media screen and (min-width: 768px) and (max-height: 679px) {
        .hero-line-yellow {
            display: none;
        }
        .hero-line-blue{
            display: none;
        }
        .hero-triangle{
            display: none;
        }
    }
   @media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-left {
        padding: 60px 40px;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: 400px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        min-height: 400px;
    }
    
    .hero-left {
        padding: 40px 20px;
        z-index: 20;
    }

    .hero-text {
        margin-top: 200px;
    }
    .hero-decorations {
        height: 80vh;
    }
    .hero-line-blue {
        height: 150px;
        left: 50%;
    }
    
    .hero-line-yellow {
        height: 150px;
        left: 50%;
        width: 3px;
    }
    
    .hero-triangle {
        border-width: 0 0 150px 150px;
    }
    
    .hero-text {
        position: absolute;
        top: 5%;
        background-color: white;
    }
    
    .hero-title {
        font-size: 28px;
        background-color: white;
        margin: 0 0 15px 0;
    }
    
    .hero-subtitle {
        font-size: 14px;
        background-color: white;
    }
    .hero-right {
        width: 100%;
    }
    .hero-image-wrapper {
        height: 80vh;
        clip-path: none;
    }
    
    .hero-scroll {
        display: flex; /* SP時のみ表示 */
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .hero-scroll-triangle {
        border-left-width: 12px;
        border-right-width: 12px;
        border-top-width: 16px;
    }
    
    .hero-scroll-text {
        font-size: 10px;
    }
}

/* ========================================
   Serviceセクション
   ======================================== */
.service {
    position: relative;
    width: 100%;
    padding: 100px 0 300px;
    background-color: #ffffff;
    overflow: hidden;
}

.service-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.service-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.service-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 2;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.service-header-flag {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 30px 0 30px 60px;
    clip-path: polygon(0 0, 85% 0, 50% 100%, 0% 100%);
    text-align: center;
    color: #1753a2;
}

.service-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: 0.05em;
}

.service-header-line {
    width: 100px;
    height: 3px;
    background-color: #2196F3;
}

.service-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.service-card {
    position: relative;
    border-radius: 200px;
    padding: 50px 40px;
    text-align: center;
    color: #ffffff;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 1.3;
    aspect-ratio: 0.9;
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    filter: blur(1px);
}

.service-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-card-subtitle {
    font-size: 16px;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.service-card-line {
    width: 40px;
    height: 2px;
    background-color: #2196F3;
    margin-top: 4px;
}

.service-card-1 {
    grid-column: 1;
    grid-row: 1;
}

.service-card-2 {
    grid-column: 2;
    grid-row: 1;
}

.service-card-3 {
    grid-column: 3;
    grid-row: 1;
}

.service-card-4 {
    grid-column: 1;
    grid-row: 2;
}

.service-card-5 {
    grid-column: 3;
    grid-row: 2;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #ffffff;
}

.service-card-subtitle {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #ffffff;
}

.service-right-line {
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background-color: #FFD700;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .service {
        padding: 0 0 60px;
    }
    .service-background {
        height: 200px;
    }
    .service-container {
        padding: 0 20px;
    }
    
    .service-header {
        margin-bottom: 40px;
        gap: 0;
    }
    .service-header-flag {
        border-width: 15px 0 30px 40px;
    }

    .service-title {
        font-size: 36px;
    }
    .service-header-line {
        width: 50px;
        margin-left: 10px;
    }

    .service-grid {
        justify-content: space-around;
        gap: 0px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card-1, 
    .service-card-2, 
    .service-card-3, 
    .service-card-4, 
    .service-card-5 {
        width: 45%;
        padding: 0px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    .service-card-3,
    .service-card-4,
    .service-card-5 {
        grid-column: 1;
        grid-row: auto;
    }
    .service-card-bg img {
        object-fit: none;
        border-radius: 0;
    }
    .service-right-line {
        display: none;
    }
    .service-card-content {
        margin-bottom: 25px;
    }
}

/* ========================================
   Companyセクション
   ======================================== */
.company {
    padding: 100px 0;
    background-color: #ffffff;
}

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

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

.company-left {
    position: relative;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-header-flag {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 12px;
    color: #1753a2;
    clip-path: polygon(0 0, 85% 0, 50% 100%, 0% 100%);
    border-width: 15px 0 30px 40px;
}

.company-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.company-header-line {
    width: 100px;
    height: 3px;
    background-color: #1565C0;
}

.company-text {
    font-size: 16px;
    line-height: 2;
    color: #333333;
    margin:70px 0 50px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.company-text p {
    margin: 0 0 20px 0;
}

.company-text p:last-child {
    margin-bottom: 0;
}

.company-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #42A5F5 0%, #2196F3 50%, #1976D2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Zen Maru Gothic', sans-serif;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

.company-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
}

.company-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.4);
    opacity: 1;
}

.company-button-text {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.company-button-circle {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

.company-right {
    position: relative;
}

.company-image {
    width: 100%;
    overflow: hidden;
    margin-top: 100px;
}

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

@media screen and (max-width: 768px) {
    .company {
        padding: 60px 0;
    }
    
    .company-container {
        padding: 0 20px;
    }
    
    .company-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-header {
        margin-bottom: 40px;
        gap: 0px;
    }
    
    
    .company-title {
        font-size: 36px;
    }

    .company-header-line {
        width: 50px;
        margin-left: 10px;
    }
    
    .company-text {
        font-size: 14px;
        margin: 0px;
    }
    
    .company-button {
        padding: 12px 30px;
        margin: 30px 0 0;
    }
    .company-image {
        margin-top: 0;
    }
}

/* ========================================
   Recruitセクション
   ======================================== */
.recruit {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.recruit-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.recruit-left {
    position: relative;
}

.recruit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 70px;
}

.recruit-header-bar {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 12px;
    color: #1753a2;
    clip-path: polygon(0 0, 85% 0, 50% 100%, 0% 100%);
    border-width: 30px 0 30px 60px;
}

.recruit-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.recruit-header-line {
    width: 100px;
    height: 3px;
    background-color: #2196F3;
}

.recruit-tagline {
    margin-bottom: 30px;
}

.recruit-tagline-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 10px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.recruit-tagline-underline {
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

.recruit-text {
    font-size: 16px;
    line-height: 2;
    color: #333333;
    margin-bottom: 50px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.recruit-text p {
    margin: 0 0 20px 0;
}

.recruit-text p:last-child {
    margin-bottom: 0;
}

.recruit-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #42A5F5 0%, #2196F3 50%, #1976D2 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Zen Maru Gothic', sans-serif;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

.recruit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
}

.recruit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.4);
    opacity: 1;
}

.recruit-button-text {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.recruit-button-circle {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

.recruit-right {
    position: relative;
}

.recruit-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.recruit-image-item {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.recruit-image-top {
    grid-column: 1 / 3;
}

.recruit-image-bottom-left {
    grid-column: 1;
}

.recruit-image-bottom-right {
    grid-column: 2;
}

.recruit-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 768px) {
    .recruit {
        padding: 60px 0;
    }
    
    .recruit-container {
        padding: 0 20px;
    }
    
    .recruit-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .recruit-header {
        margin-bottom: 40px;
        gap: 0;
    }
    
    .recruit-header-bar {
        border-width: 15px 0 30px 40px;
    }
    
    .recruit-title {
        font-size: 36px;
    }
    .recruit-header-line {
        width: 50px;
        margin-left: 10px;
    }
    
    .recruit-tagline-text {
        font-size: 20px;
    }
    
    .recruit-text {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .recruit-button {
        padding: 12px 30px;
    }
    
    .recruit-image-grid {
        grid-template-columns: 1fr;
    }
    
    .recruit-image-top,
    .recruit-image-bottom-left,
    .recruit-image-bottom-right {
        grid-column: 1;
        height: 200px;
    }
}

/* ========================================
   フッター
   ======================================== */
.site-footer {
    background-color: #1565C0;
    padding: 60px 0;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.footer-logo {
    width: 100px;
    height: 50px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #FF0000;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: 0.05em;
}

.footer-divider {
    width: 1px;
    height: 60px;
    background-color: #ffffff;
}

.footer-address {
    color: #ffffff;
}

.footer-postal {
    font-size: 16px;
    margin: 0 0 5px 0;
    color: #ffffff;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.footer-location {
    font-size: 16px;
    margin: 0;
    color: #ffffff;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-nav .footer-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.footer-nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
    text-transform: uppercase;
    font-family: 'Zen Maru Gothic', sans-serif;
}

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

.footer-nav-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #42A5F5 0%, #2196F3 50%, #1976D2 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #64B5F6;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    font-family: 'Zen Maru Gothic', sans-serif;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.footer-nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.4);
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .site-footer {
        padding: 40px 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .footer-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-logo-section {
        flex-direction: row;
        align-items: center;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-nav .footer-nav-list {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-nav-link {
        font-size: 14px;
    }
    
    .footer-nav-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* ========================================
   Aboutバナーヘッダーセクション
   ======================================== */
.about-banner {
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.about-banner-upper {
    width: 100%;
    height: 40vh;
    min-height: 200px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0px 0;
}

.about-banner-content {
    text-align: center;
}

.about-banner-title {
    font-size: 64px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 20px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-banner-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #333333;
    margin: 0 0 15px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.about-banner-line {
    width: 80px;
    height: 4px;
    background-color: #1753a2;
    margin: 0 auto;
}

.about-banner-lower {
    width: 100%;
    height: 60vh;
    min-height: 300px;
    overflow: hidden;
    position: relative;
}

.about-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

@media screen and (max-width: 768px) {
    .about-banner {
        min-height: 400px;
    }
    
    .about-banner-upper {
        height: 35vh;
        min-height: 150px;
    }
    
    .about-banner-title {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .about-banner-subtitle {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .about-banner-line {
        width: 60px;
        height: 3px;
    }
    
    .about-banner-lower {
        height: 0;
        min-height: 250px;
    }
}

/* ========================================
   Aboutメインコンテンツセクション
   ======================================== */
.about-main {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* タイトルセクション */
.about-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.about-title-icon {
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    width: 20px;
    height: 20px;
    background-color: #1753a2;
}


.about-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* 説明文セクション */
.about-description {
    text-align: left;
    width: 600px;
    margin: 0 auto 60px;
}

.about-description p {
    font-size: 16px;
    line-height: 2;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* 強みセクション */
.about-strengths {
    background-color: #e8eff5;
    border-radius: 12px;
    padding: 40px 50px;
    margin-top: 40px;
}

.about-strengths-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin:0 auto 50px;
    width: 80%;
}

.about-strengths-bullet {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}

.about-strengths-title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.about-strengths-list {
    width: 80%;
    list-style: none;
    padding: 0;
    margin: auto;
}

.about-strength-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.about-strength-item:last-child {
    margin-bottom: 0;
}

.strength-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.strength-icon img {
    width: 28px;
    height: 28px;
    display: block;
}

.strength-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

@media screen and (max-width: 768px) {
    .about-main {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-title-section {
        margin-bottom: 40px;
    }
    .about-strengths-list {
        width: 100%;
    }    
    .about-strengths-header {
        justify-content: center;
    }
    .about-main-title {
        font-size: 28px;
    }
    
    .about-description {
        margin-bottom: 40px;
        width: 100%;
    }
    
    .about-description p {
        font-size: 14px;
    }
    
    .about-strengths {
        padding: 30px 25px;
    }
    
    .about-strengths-title {
        font-size: 20px;
    }
    
    .about-strength-item {
        margin-bottom: 20px;
    }
    
    .strength-text {
        font-size: 14px;
    }
}

/* ========================================
   施工事例セクション
   ======================================== */
.about-cases {
    padding: 80px 0 ;
    background-color: #ffffff;
}

.cases-header {
    text-align: center;
}

.cases-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.cases-title-underline {
    width: 100px;
    height: 4px;
    background-color: #1753a2;
    margin: 0 auto;
}
.cases-box {
    display: flex;
    justify-content: space-around;
    margin: 100px 0px 0;
    flex-wrap: wrap;
}

.cases-box .case-box:nth-child(3) {
    margin: 50px 0 0;
}


@media screen and (max-width: 768px) {
    .about-cases {
        padding: 60px 0 30px;
    }
    
    .cases-title {
        font-size: 28px;
    }
    .cases-box {
        margin: 0;
    }
    .third-box-image {
        margin: 25px 0;
    }
    .cases-title-underline {
        width: 80px;
        height: 3px;
    }
    .cases-box .case-box:nth-child(3) {
        margin: 0;
    }
}

/* ========================================
   Newsセクション
   ======================================== */
.news {
    padding: 80px 0;
    background-color: #ffffff;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.news-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
}

.news-header-trapezoid {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 30px 0 30px 60px;
    clip-path: polygon(0 0, 85% 0, 50% 100%, 0% 100%);
    text-align: center;
    color: #1753a2;
}

.news-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    line-height: 1.2;
}
.news-header-underline {
    width: 100px;
    height: 3px;
    background-color: #2196F3;
}

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

.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    width: 90%;
    margin: auto;
    text-decoration: none;
}

.news-category {
    font-size: 16px;
    font-weight: 700;
    color: #1F4EA0;
    font-family: 'Zen Maru Gothic', sans-serif;
    min-width: 120px;
    flex-shrink: 0;
}

.news-text {
    font-size: 16px;
    color: #333333;
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.6;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item:hover .news-text {
    text-decoration: underline;
}

.news-item--empty {
    cursor: default;
}

.news-divider {
    width: 100%;
    height: 1px;
    background-color: #CCCCCC;
    margin: 0;
}

.news-more {
    text-align: right;
    margin-top: 30px;
}

.news-more-link {
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    font-family: 'Zen Maru Gothic', sans-serif;
    transition: opacity 0.3s;
}

.news-more-link:hover {
    opacity: 0.7;
}

.single-news-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.news-archive {
    padding: 0 0 100px;
    background-color: #FFFFFF;
}

.news-archive-container {
    width: 1100px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

.news-archive-list {
    display: grid;
    gap: 18px;
    margin-top: 40px;
}

.news-archive-item {
    border: 1px solid #D9E6F5;
    background-color: #FFFFFF;
}

.news-archive-link {
    display: block;
    padding: 28px 32px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.news-archive-link:hover {
    background-color: #F8FBFF;
    transform: translateY(-2px);
}

.news-archive-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.news-archive-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 6px 12px;
    background-color: #1F4EA0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.news-archive-date {
    font-size: 15px;
    font-weight: 700;
    color: #666666;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.news-archive-title {
    margin: 0;
    font-size: 22px;
    line-height: 1.7;
    color: #333333;
    font-family: 'Zen Maru Gothic', sans-serif;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-archive-empty {
    padding: 48px 24px;
    border: 1px solid #D9E6F5;
    text-align: center;
    font-size: 16px;
    color: #666666;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.news-archive-pagination {
    margin-top: 40px;
}

.news-archive-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-archive-pagination a,
.news-archive-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #D9E6F5;
    color: #333333;
    background-color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.news-archive-pagination .current {
    background-color: #1F4EA0;
    border-color: #1F4EA0;
    color: #FFFFFF;
}

.news-single {
    padding: 0 0 100px;
    background-color: #FFFFFF;
}

.news-single-container {
    width: 960px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

.news-single-article {
    padding: 48px 56px;
    border: 1px solid #D9E6F5;
    background-color: #FFFFFF;
}

.news-single-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.news-single-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 6px 12px;
    background-color: #1F4EA0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.news-single-date {
    font-size: 15px;
    font-weight: 700;
    color: #666666;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.news-single-title {
    margin: 0 0 28px;
    font-size: 34px;
    line-height: 1.5;
    color: #333333;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.news-single-content {
    font-size: 16px;
    line-height: 2;
    color: #333333;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.news-single-content > *:first-child {
    margin-top: 0;
}

.news-single-content p {
    margin: 0 0 1.5em;
}

.news-single-content img {
    max-width: 100%;
    height: auto;
}

.news-single-back {
    margin-top: 40px;
    text-align: center;
}

.news-single-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 24px;
    border: 1px solid #1F4EA0;
    color: #1F4EA0;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Zen Maru Gothic', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.news-single-back-link:hover {
    background-color: #1F4EA0;
    color: #FFFFFF;
}
.recruit-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}
.recruit-status {
    padding: 80px 0 120px;
    background-color: #FFFFFF;
}

.recruit-status-container {
    width: 1000px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    text-align: center;
}

.recruit-status-text {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
    .news {
        padding: 60px 0;
    }
    
    .news-container {
        padding: 0 20px;
    }
    
    .news-header {
        margin-bottom: 25px;
        gap: 0;
    }
    .news-header-trapezoid {
        border-width: 15px 0 30px 40px;
    }
    .news-title {
        font-size: 36px;
    }
    
    .news-header-underline {
        width: 50px;
        height: 3px;
        margin-left: 10px;
    }
    .news-list {
        width: 95%;
        margin: auto;
    }
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 0;
    }
    
    .news-category {
        min-width: auto;
    }
    
    .news-more {
        text-align: end;
        width: 95%;
    }

    .news-archive {
        padding: 0 0 70px;
    }

    .news-archive-container {
        max-width: calc(100% - 32px);
    }

    .news-archive-link {
        padding: 20px 18px;
    }

    .news-archive-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-archive-category {
        min-width: auto;
        font-size: 13px;
    }

    .news-archive-date {
        font-size: 14px;
    }

    .news-archive-title {
        font-size: 18px;
    }

    .news-single {
        padding: 0 0 70px;
    }

    .news-single-container {
        max-width: calc(100% - 32px);
    }

    .news-single-article {
        padding: 28px 20px;
    }

    .news-single-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }

    .news-single-category {
        min-width: auto;
        font-size: 13px;
    }

    .news-single-date {
        font-size: 14px;
    }

    .news-single-title {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .news-single-content {
        font-size: 15px;
        line-height: 1.9;
    }

    .news-single-back {
        margin-top: 32px;
    }

    .news-single-back-link {
        min-width: 0;
        padding: 12px 20px;
    }

    .recruit-status {
        padding: 60px 0 80px;
    }

    .recruit-status-container {
        max-width: calc(100% - 32px);
    }

    .recruit-status-text {
        font-size: 28px;
    }
}

/* ========================================
   Contact Form 7
   ======================================== */
.contact-form-section {
    padding: 80px 0 100px;
    background-color: #FFFFFF;
}

.contact-form-container {
    width: 1000px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 48px 56px;
    border: 1px solid #D9E6F5;
    background-color: #FFFFFF;
}

.contact-form-section .wpcf7 {
    width: 100%;
}

.contact-form-section .wpcf7-form {
    display: grid;
    gap: 24px;
}

.contact-form-section .form-row {
    display: grid;
    gap: 10px;
}

.contact-form-section .form-label {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.contact-form-section .required {
    margin-left: 8px;
    color: #E53935;
    font-size: 13px;
}

.contact-form-section .wpcf7-form-control-wrap {
    display: block;
    padding-top: 15px;
}

.contact-form-section input[type="text"],
.contact-form-section input[type="email"],
.contact-form-section input[type="tel"],
.contact-form-section select,
.contact-form-section textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #C9D8EB;
    background-color: #FFFFFF;
    color: #333333;
    font-size: 16px;
    font-family: 'Zen Maru Gothic', sans-serif;
    box-sizing: border-box;
    border-radius: 0;
    appearance: none;
}

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

.contact-form-section input::placeholder,
.contact-form-section textarea::placeholder {
    color: #9AA7B8;
}

.contact-form-section input:focus,
.contact-form-section select:focus,
.contact-form-section textarea:focus {
    outline: none;
    border-color: #1F4EA0;
}

.contact-form-section .form-note {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.7;
    color: #666666;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.contact-form-section .wpcf7-acceptance {
    display: block;
    text-align: center;
}

.contact-form-section .wpcf7-list-item {
    margin: 0;
}

.contact-form-section .acceptance-label {
    /* display: flex; */
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
    font-family: 'Zen Maru Gothic', sans-serif;
    padding: 10px;
}

.contact-form-section .acceptance-label input {
    margin-top: 3px;
}

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

.contact-form-section input[type="submit"] {
    min-width: 220px;
    padding: 16px 32px;
    border: none;
    background-color: #1F4EA0;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Zen Maru Gothic', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-form-section input[type="submit"]:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.contact-form-section .wpcf7-spinner {
    display: block;
    margin: 12px auto 0;
}

.contact-form-section .wpcf7-not-valid-tip,
.contact-form-section .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.7;
    font-family: 'Zen Maru Gothic', sans-serif;
}

@media screen and (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0 80px;
    }

    .contact-form-container {
        max-width: calc(100% - 32px);
        padding: 0;
        border: none;
    }

    .contact-form-section .form-label {
        font-size: 15px;
    }

    .contact-form-section input[type="text"],
    .contact-form-section input[type="email"],
    .contact-form-section input[type="tel"],
    .contact-form-section select,
    .contact-form-section textarea {
        font-size: 15px;
        padding: 12px 14px;
    }

    .contact-form-section textarea {
        min-height: 180px;
    }

    .contact-form-section input[type="submit"] {
        width: 100%;
        min-width: 0;
    }
}

/* ========================================
   Contactセクション
   ======================================== */
.contact {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: #ffffff;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-background::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    z-index: 1;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 0 0 auto;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-header-bar {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 30px 0 30px 60px;
    clip-path: polygon(0 0, 85% 0, 50% 100%, 0% 100%);
    text-align: center;
    color: #1753a2;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-text {
    margin-bottom: 50px;
    text-align: justify;
}

.contact-text p {
    font-size: 18px;
    line-height: 2;
    color: #333333;
    margin: 0 0 10px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.contact-text p:last-child {
    margin-bottom: 0;
}

.contact-button-wrapper {
    display: flex;
    justify-content: space-around;
}

.contact-button {
    display: inline-block;
    padding: 18px 60px;
    background: linear-gradient(135deg, #42A5F5 0%, #2196F3 50%, #1976D2 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Zen Maru Gothic', sans-serif;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.3);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 187, 106, 0.4);
}

@media screen and (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact-container {
        padding: 0 20px;
    }
    
    .contact-header {
        margin-bottom: 30px;
        gap: 0;
    }
    
    .contact-header-bar {
        border-width: 15px 0 30px 40px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-text {
        margin-bottom: 40px;
    }
    
    .contact-text p {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .contact-button {
        padding: 15px 50px;
        font-size: 16px;
    }
    
    .contact-background::after {
        width: 40%;
    }
}

/* ========================================
   代表挨拶セクション
   ======================================== */
.greeting {
    padding: 100px 0;
    background-color: #ffffff;
}

.greeting-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.greeting-title {
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.greeting-title-underline {
    width: 100px;
    height: 4px;
    background-color: #1753a2;
    margin: 0 auto;
}

.greeting-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.greeting-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.greeting-image {
    width: 80%;
    max-width: 400px;
    aspect-ratio: 3 / 4;
    background-color: #000000;
    overflow: hidden;
}

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

.greeting-right {
    display: flex;
    flex-direction: column;
}

.greeting-text {
    text-align: left;
}

.greeting-text p {
    font-size: 16px;
    line-height: 2;
    color: #333333;
    margin: 0 0 20px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.greeting-text p:last-of-type {
    margin-bottom: 0;
}

.greeting-intro {
    font-size: 24px;
    line-height: 2;
    color: #333333;
    margin: 0 0 15px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.greeting-intro-underline {
    width: 80px;
    height: 3px;
    background-color: #FFD700;
    margin: 0 0 30px 0;
}

.greeting-signature {
    text-align: right;
    margin-top: 40px;
}

.greeting-signature-text {
    font-size: 16px;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

@media screen and (max-width: 768px) {
    .greeting {
        padding: 60px 0;
    }
    
    .greeting-container {
        padding: 0 20px;
    }
    
    .greeting-header {
        margin-bottom: 40px;
    }
    
    .greeting-title {
        font-size: 36px;
    }
    
    .greeting-title-underline {
        width: 80px;
        height: 3px;
    }
    
    .greeting-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .greeting-image {
        width: 50%;
        aspect-ratio: 3 / 3;
    }
    
    .greeting-text p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 15px;
    }
    
    .greeting-intro {
        font-size: 14px;
    }
    
    .greeting-intro-underline {
        width: 60px;
        height: 2px;
        margin-bottom: 20px;
    }
    
    .greeting-signature {
        margin-top: 30px;
    }
    
    .greeting-signature-text {
        font-size: 14px;
    }
}

/* ========================================
   会社概要セクション
   ======================================== */
.company-profile {
    padding: 100px 0;
    background-color: #ffffff;
}

.company-profile-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.company-profile-title {
    font-size: 40px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.company-profile-title-underline {
    width: 100px;
    height: 4px;
    background-color: #1753a2;
    margin: 0 auto;
}

.company-profile-content {
    display: flex;
    flex-direction: column;
}

.profile-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 25px 0;
    align-items: flex-start;
    width: 80%;
    margin: auto;
}

.profile-label {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.profile-value {
    font-size: 16px;
    line-height: 2;
    color: #333333;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.profile-officer {
    margin-bottom: 8px;
}

.profile-officer:last-child {
    margin-bottom: 0;
}

.profile-business-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: decimal;
}

.profile-business-list li {
    margin-bottom: 10px;
    line-height: 2;
}

.profile-business-list li:last-child {
    margin-bottom: 0;
}

.profile-divider {
    width: 100%;
    height: 1px;
    background-color: #CCCCCC;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .company-profile {
        padding: 60px 0;
    }
    
    .company-profile-container {
        padding: 0 20px;
    }
    
    .company-profile-header {
        margin-bottom: 40px;
    }
    
    .company-profile-title {
        font-size: 36px;
    }
    
    .company-profile-title-underline {
        width: 80px;
        height: 3px;
    }
    
    .profile-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }
    
    .profile-label {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .profile-value {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .profile-business-list {
        padding-left: 20px;
    }
    
    .profile-business-list li {
        margin-bottom: 8px;
        line-height: 1.8;
    }
}

/* ========================================
   アクセスマップセクション
   ======================================== */
.access-map {
    padding: 100px 0;
    background-color: #ffffff;
}

.access-map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.map-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: 0;
}

@media screen and (max-width: 768px) {
    .access-map {
        padding: 60px 0;
    }
    
    .access-map-container {
        padding: 0 20px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
}

/* ========================================
   施工事例セクション（冷凍バリ取りページ）
   ======================================== */
.construction-cases {
    padding: 100px 0;
    background-color: #ffffff;
}

.construction-cases-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.construction-cases-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 15px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.construction-cases-title-underline {
    width: 100px;
    height: 2px;
    background-color: #333333;
    margin: 0 auto;
}

.construction-cases-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.case-category {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-category-header {
    width: 100%;
    padding: 15px 20px;
    background-color: #F5F5F5;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 30px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.case-category-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.case-image-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #000000;
    border-radius: 4px;
    overflow: hidden;
}

.case-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.case-arrow svg {
    width: 100%;
    height: 100%;
}

/* ギャラリー専用スタイル */
.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    width: 100%;
}

.gallery-item .case-image-box {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item .case-image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
    .construction-cases {
        padding: 60px 0;
    }
    
    .construction-cases-container {
        padding: 0 20px;
    }
    
    .construction-cases-header {
        margin-bottom: 40px;
    }
    
    .construction-cases-title {
        font-size: 36px;
    }
    
    .construction-cases-title-underline {
        width: 80px;
        height: 2px;
    }
    
    .construction-cases-categories {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .case-category-header {
        padding: 12px 15px;
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .case-category-content {
        gap: 12px;
    }
}

/* ========================================
   FMS天井セクション
   ======================================== */
.fms-main {
    padding: 100px 0;
    background-color: #ffffff;
}

.fms-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.fms-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.fms-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

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

.fms-text {
    text-align: left;
    margin-bottom: 30px;
}
.fms-main-text p{
    width: 85%;
    margin: 50px auto;
    padding: 30px;
    box-shadow: #0e0e0e2e 0px 0px 10px 5px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 2;
    text-align: left;
}

.sub-fms-text {
    font-size: 16px;
    line-height: 2;
    color: #333333;
    margin: 0 0 5px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.midashi-fms-text{
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.fms-text p:last-child {
    margin-bottom: 0;
}

.fms-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fms-diagrams-section {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.fms-diagrams-section img {
    width: 100%;
    height: auto;
    display: block;
}

.fms-bracing-diagram {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.fms-bracing-diagram img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 1024px) {
    .fms-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .fms-right {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .fms-main {
        padding: 60px 0;
    }
    
    .fms-container {
        padding: 0 20px;
    }
    
    .fms-header {
        margin-bottom: 40px;
    }
    
    .fms-title {
        font-size: 36px;
    }
    .midashi-fms-text{
        font-size: 20px;
    }
    .sub-fms-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .fms-right {
        gap: 30px;
    }
}

/* ========================================
   従来の天井セクション
   ======================================== */
.traditional-ceiling {
    padding: 100px 0;
    background-color: #F5F5F5;
}

.traditional-ceiling-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.traditional-ceiling-header {
    text-align: center;
    margin-bottom: 50px;
}

.traditional-ceiling-title {
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.4;
}

.traditional-ceiling-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.traditional-ceiling-list {
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 800px;
    margin: auto;
}

.traditional-ceiling-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

.traditional-ceiling-bullets li {
    font-size: 18px;
    line-height: 2;
    color: #333333;
    padding-left: 30px;
    position: relative;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.traditional-ceiling-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1753a2;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.traditional-ceiling-diagrams {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.traditional-diagram-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.traditional-diagram-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #F9F9F9;
}

.traditional-diagram-image img {
    width: 100%;
    height: auto;
    display: block;
}

.traditional-diagram-caption {
    font-size: 16px;
    color: #333333;
    margin: 0;
    text-align: center;
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.6;
}

@media screen and (max-width: 1024px) {
    .traditional-ceiling-diagrams {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .traditional-ceiling {
        padding: 60px 0;
    }
    
    .traditional-ceiling-container {
        padding: 0 20px;
    }
    
    .traditional-ceiling-header {
        margin-bottom: 40px;
    }
    
    .traditional-ceiling-title {
        font-size: 28px;
    }
    
    .traditional-ceiling-content {
        gap: 40px;
    }
    
    .traditional-ceiling-list {
        padding: 30px 25px;
        width: auto;
    }
    
    .traditional-ceiling-bullets {
        gap: 15px;
    }
    
    .traditional-ceiling-bullets li {
        font-size: 16px;
        line-height: 1.8;
        padding-left: 25px;
    }
    
    .traditional-ceiling-bullets li::before {
        font-size: 20px;
    }
    
    .traditional-diagram-item {
        padding: 20px;
        gap: 15px;
    }
    
    .traditional-diagram-caption {
        font-size: 14px;
    }
}

/* ========================================
   新型天井の利点セクション
   ======================================== */
.fms-advantages {
    padding: 100px 0;
    background-color: #ffffff;
}

.fms-advantages-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.fms-advantages-header {
    text-align: center;
    margin-bottom: 50px;
}

.fms-advantages-title {
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.4;
}

.fms-advantages-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.fms-advantages-list {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
    border-left: 5px solid #1753a2;
    width: 800px;
    margin: auto;
}

.fms-advantages-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fms-advantages-bullets li {
    font-size: 18px;
    line-height: 2;
    color: #333333;
    padding-left: 30px;
    position: relative;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
}

.fms-advantages-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1753a2;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.fms-advantages-diagrams {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.fms-advantage-diagram-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #1753a2;
}

.fms-advantage-diagram-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #F9F9F9;
}

.fms-advantage-diagram-image img {
    width: 100%;
    height: auto;
    display: block;
}

.fms-advantage-diagram-caption {
    font-size: 16px;
    color: #333333;
    margin: 0;
    text-align: center;
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.6;
    font-weight: 500;
}

@media screen and (max-width: 1024px) {
    .fms-advantages-diagrams {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .fms-advantages {
        padding: 60px 0;
    }
    
    .fms-advantages-container {
        padding: 0 20px;
    }
    
    .fms-advantages-header {
        margin-bottom: 40px;
    }
    
    .fms-advantages-title {
        font-size: 28px;
    }
    
    .fms-advantages-content {
        gap: 40px;
    }
    
    .fms-advantages-list {
        padding: 30px 25px;
        border-left-width: 4px;
        width: auto;
    }
    
    .fms-advantages-bullets {
        gap: 15px;
    }
    
    .fms-advantages-bullets li {
        font-size: 16px;
        line-height: 1.8;
        padding-left: 25px;
    }
    
    .fms-advantages-bullets li::before {
        font-size: 20px;
    }
    
    .fms-advantage-diagram-item {
        padding: 20px;
        gap: 15px;
        border-top-width: 3px;
    }
    
    .fms-advantage-diagram-caption {
        font-size: 14px;
    }
}

/* ========================================
   FMS施工事例セクション
   ======================================== */
.fms-cases {
    padding: 100px 0;
    background-color: #F5F5F5;
}

.fms-cases-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.fms-cases-header {
    text-align: center;
    margin-bottom: 50px;
}

.fms-cases-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.fms-cases-content {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.fms-cases-section {
    margin-bottom: 40px;
}

.fms-cases-section:last-child {
    margin-bottom: 0;
}

.fms-cases-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 25px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #1753a2;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.fms-cases-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.fms-cases-text{
    margin: 20px;
}
.fms-case-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background-color: #F9F9F9;
    border-radius: 8px;
    border-left: 4px solid #1753a2;
    transition: background-color 0.3s;
}

.fms-case-item:hover {
    background-color: #F0F0F0;
}

.fms-case-location {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    min-width: 80px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.fms-case-name {
    font-size: 16px;
    color: #333333;
    flex: 1;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.fms-case-area {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    margin-left: auto;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.fms-case-others {
    font-size: 16px;
    color: #666666;
    margin-left: auto;
    font-style: italic;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.fms-case-schedule {
    font-size: 16px;
    color: #1753a2;
    font-weight: 500;
    padding: 12px 20px;
    background-color: #E8F5E9;
    border-radius: 8px;
    margin-top: 10px;
    font-family: 'Zen Maru Gothic', sans-serif;
}

@media screen and (max-width: 768px) {
    .fms-cases {
        padding: 60px 0;
    }
    
    .fms-cases-container {
        padding: 0 20px;
    }
    
    .fms-cases-header {
        margin-bottom: 40px;
    }
    
    .fms-cases-title {
        font-size: 36px;
    }
    
    .fms-cases-content {
        padding: 30px 20px;
    }
    
    .fms-cases-section {
        margin-bottom: 35px;
    }
    
    .fms-cases-section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .fms-cases-list {
        gap: 12px;
    }
    
    .fms-case-item {
        flex-wrap: wrap;
        padding: 12px 15px;
        gap: 10px;
    }
    
    .fms-case-location {
        font-size: 14px;
        min-width: 70px;
    }
    
    .fms-case-name {
        font-size: 14px;
        width: 100%;
    }
    
    .fms-case-area {
        font-size: 14px;
        margin-left: 0;
    }
    
    .fms-case-others {
        font-size: 14px;
        margin-left: 0;
    }
    
    .fms-case-schedule {
        font-size: 14px;
        padding: 10px 15px;
    }
}

/* ========================================
   Othersページ 電波塔補修工事セクション
   ======================================== */
.others-main {
    padding: 100px 0;
    background-color: #ffffff;
}

.others-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.others-content {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
    width: 1200px;
    margin: auto;
}

.others-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.others-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.others-image img {
    width: 100%;
    height: auto;
    display: block;
}

.others-right {
    display: flex;
    flex-direction: column;
}

.others-text {
    text-align: left;
}

.others-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 30px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.others-text p {
    font-size: 16px;
    line-height: 2;
    color: #333333;
    margin: 0 0 25px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.others-text p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .others-content {
        grid-template-columns: 1fr;
        gap: 50px;
        width: 100%;
    }
    
    .others-left {
        order: -1;
    }
}

@media screen and (max-width: 768px) {
    .others-main {
        padding: 60px 0;
    }
    
    .others-container {
        padding: 0 20px;
    }
    
    .others-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .others-text p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
}
    