@charset "utf-8";
/* CSS Document */


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

        :root {
            --primary-color: #0066cc;
            --secondary-color: #00a0e9;
            --accent-color: #ff6b6b;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #0066cc, #00a0e9);
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

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


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

 




        /* ヒーローセクション */
        .hero {
            background: var(--gradient-primary);
            color: white;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
          /*  margin-top: 90px;*/
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,154.7C672,160,768,192,864,213.3C960,235,1056,245,1152,229.3C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
            background-size: cover;
            animation: wave 20s linear infinite;
        }

        @keyframes wave {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-1000px) translateY(100px); }
        }

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

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease;
        }

        .hero-tagline {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

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

        /* セクション共通 */
        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-color);
            position: relative;
        }

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

        /* 企業メッセージ */
        .message-section {
            background: var(--bg-light);
        }

        .message-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .message-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .message-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-primary);
        }

        .message-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .message-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* 会社概要テーブル */
        .company-info {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-top: 3rem;
        }


@media (max-width: 768px) {
        .company-info {
            padding: 0.5rem;
        }
}



        .info-table {
            width: 100%;
            border-collapse: collapse;
        }

        .info-table tr {
            border-bottom: 1px solid #eee;
        }

        .info-table tr:last-child {
            border-bottom: none;
        }

        .info-table th,
        .info-table td {
            padding: 1.5rem 1rem;
            text-align: left;
        }

        .info-table th {
            width: 200px;
            font-weight: bold;
            color: var(--primary-color);
            background: var(--bg-light);
        }

a{
	text-decoration: none;
}

@media (max-width: 768px) {
        .info-table th {
            width: 35%;
        }}


        /* 事業内容 */
        .business-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
            position: relative;
        }

        .business-card {
            position: relative;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .business-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .business-image {
    flex: 1;
    min-width: 300px;
    display: flex;
        }


@media (max-width: 768px) {
    .business-image {
        min-width: 100%;
        display: flex;
    }
}


        .business-image img{
            width: 100%;
        }


        .business-content {
            padding: 2rem;
        }

        .business-content h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* 企業の強み */
        .strengths-section {
            background: var(--bg-light);
        }

        .strengths-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .strength-item {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }

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

        .strength-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        /* 沿革 */
        .timeline {
            position: relative;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary-color);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            width: 45%;
            padding: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }

        .timeline-item:nth-child(odd) {
            margin-left: 0;
        }

        .timeline-item:nth-child(even) {
            margin-left: auto;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--accent-color);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
        }

        .timeline-item:nth-child(odd)::before {
            right: -69px;
        }

        .timeline-item:nth-child(even)::before {
            left: -69px;
        }

        .timeline-year {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        /* CTAセクション */
        .cta-section {
            background: var(--gradient-primary);
            color: white;
            text-align: center;
            padding: 60px 0;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
			line-height: 3.5rem;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: var(--primary-color);
            padding: 1rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 2rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

@media (max-width: 768px) {
.padding{padding-left: 22px;}
}


  /* ===== フッター ===== */
.footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    margin-bottom: 15px;
	width: 60%;
}
.footer-logo p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #ccc;
}

.footer-logo a{
    color: #ccc!important;
}

.footer-nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav-group {
    flex: 1;
    min-width: 100px;
}

.footer-nav-group h3 {
    font-size: 16px;
    margin:0 0 15px 0;
    position: relative;
    padding-bottom: 10px;
}

 


.footer-nav-group h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #c10018;
    bottom: 0;
    left: 0;
}

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

.footer-nav-group a {
    color: #ccc;
    font-size: 14px;
}

.footer-nav-group a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.social-links {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;	
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 5px 7px;
    text-align: center;
}

.social-links a:hover {
    background-color: #c10018;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}


.fa-instagram p{
    line-height: 20px;
    padding-top: 8px;
}

.sns-block {
    width: 90px;
    font-size: 14px;
}


.copyright {
    font-size: 12px;
    color: #999;
}

li{
    list-style:none;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        margin: 0 20px 20px;
    }}


        /* レスポンシブ */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
				height: 90px;
            }
            
            nav ul {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-tagline {
                font-size: 1.2rem;
            }
            
            .timeline-item {
                width: 92%;
                margin-left: 26px !important;
                /*padding-left: 3rem;*/
            }
            
            .timeline::before {
                left: 8px;
		        z-index: 2;
            }
            
            .timeline-item::before {
                left: -29px !important;
				z-index: 2;
            }
        }

        /* アニメーション */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

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


/* ===== レスポンシブ対応 ===== */

	.sp{
		display: none!important;
	}
	
	.pc{
		display: block!important;
	}


@media (max-width: 768px) {
	.sp{
		display: block!important;
	}
	
	.pc{
		display: none!important;
	}
}






