/*
Theme Name: luminous2025
*/


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

        body {
            font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .header-nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            width: 170px;
        }
        .logo img{
            width: 100%;
            height: 100%;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #1082ce;
        }

        /* First View */
        .top-area {
            height: 100vh;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 30%, #06b6d4 60%, #10b981 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* 光の粒子アニメーション */
        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            animation: float 6s infinite ease-in-out;
        }

        .particle:nth-child(1) { width: 4px; height: 4px; top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 6px; height: 6px; top: 40%; left: 80%; animation-delay: 1s; }
        .particle:nth-child(3) { width: 3px; height: 3px; top: 70%; left: 20%; animation-delay: 2s; }
        .particle:nth-child(4) { width: 5px; height: 5px; top: 30%; left: 60%; animation-delay: 3s; }
        .particle:nth-child(5) { width: 4px; height: 4px; top: 80%; left: 90%; animation-delay: 4s; }
        .particle:nth-child(6) { width: 7px; height: 7px; top: 10%; left: 50%; animation-delay: 2.5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
            50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
        }

        /* 光の波動エフェクト */
        .wave {
            position: absolute;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: pulse 4s infinite ease-in-out;
        }

        .wave:nth-child(7) { 
            width: 300px; 
            height: 300px; 
            top: 50%; 
            left: 50%; 
            margin: -150px 0 0 -150px; 
            animation-delay: 0s; 
        }
        .wave:nth-child(8) { 
            width: 500px; 
            height: 500px; 
            top: 50%; 
            left: 50%; 
            margin: -250px 0 0 -250px; 
            animation-delay: 1s; 
        }
        .wave:nth-child(9) { 
            width: 700px; 
            height: 700px; 
            top: 50%; 
            left: 50%; 
            margin: -350px 0 0 -350px; 
            animation-delay: 2s; 
        }

        @keyframes pulse {
            0% { transform: scale(0.8); opacity: 0; }
            50% { opacity: 0.3; }
            100% { transform: scale(1.2); opacity: 0; }
        }

        /* メインコンテンツ */
        .top-content {
            position: relative;
            z-index: 100;
            max-width: 1200px;
            display: flex;
            justify-content: center;
            text-align: left;
            margin: 0 auto;
        }

        .sentence-area{
            width: 60%;
            margin: 0 auto;
        }

        .sentence-area .br{
            display: none;
        }

        .img-area {
            width: 35%;
            height: 300px;
        }

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

        .top-area h1 {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 1rem;
            background:  #ffffff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease;
        }

        .top-area p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            animation: fadeInUp 1s ease 0.3s both;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #1082ce, #73c5fc);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.6s both;
            box-shadow: 0 10px 30px rgba(16, 130, 206, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(16, 130, 206, 0.4);
        }

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

        /* 背景の幾何学模様 */
        .geometric-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
        }

        .geometric-shape {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: rotate 20s linear infinite;
        }

        .shape-1 {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            transform-origin: center;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 15%;
            animation-direction: reverse;
            border-radius: 50%;
        }

        .shape-3 {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 70%;
            transform: rotate(45deg);
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Sections */
        .section {
            padding: 5rem 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 5px;
            background: linear-gradient(135deg, #73c5fc, #73c5fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-paragraph{
            font-size: 0.8rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        /* about-us Section */
        .about-us {
            background: #f8f9fa;
            text-align: center;
            padding: 5rem 2rem;
        }

        .logo-container {
            width: 300px;
            height: 100px;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

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

        .logo-container .logo-text {
            font-size: 2rem;
            color: #1082ce;
            font-weight: bold;
        }

        .about-us-content {
            max-width: 950px;
            margin: 0 auto;
        }

        .about-us-sentence {
            text-align: left;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #3f3f3f;
            margin-bottom: 1.5rem;
        }
        .about-us-name{
            text-align: right;
        }

        /* Services Section */
        .service-section {
            padding: 5rem 0;
            margin: 0 auto;
        }
        .service-top-list {
            margin-left: 80px;
            flex: 1;
            list-style: none;
            display: flex;
            flex-direction: column;
        }

        .service-list {
            padding: 25px;
            transition: transform 0.2s ease;
        }

        .service-list-title {
            display: inline-block;
            border-bottom:2px solid #73c5fc;
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #73c5fc;
        }

        .service-content {
            display: flex;
            align-items: flex-start;
            height: auto;
        }

        .service-list-text {
            color: #555;
            line-height: 1.7;
        }

        .service-image-container {
            flex: 0 0 45%;
            height: 1100px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        .pc-hidden{
            display: none;
        }

        .service-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-image.active {
            opacity: 1;
        }

        .service-image.default {
            opacity: 1;
        }

        /* Company Info */
        .company-info {
            background: url("image/company-info.png");
            background-position: center;
            background-size: cover;
            padding: 5rem 2rem;
        }

        .info-table {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .info-row {
            display: flex;
            border-bottom: 1px solid #eee;
        }

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

        .info-label {
            background: linear-gradient(135deg, rgb(16, 130, 206), rgb(115, 197, 252));
            color: white;
            padding: 2.2rem;
            font-weight: bold;
            min-width: 150px;
            display: flex;
            align-items: center;
        }

        .info-value {
            padding: 2.2rem;
            flex: 1;
            display: flex;
            align-items: center;
        }

        /* Contact Form */
        .contact {
			padding: 5rem 2rem;
		}

		.form-container {
			max-width: 600px;
			margin: 0 auto;
			background: white;
			padding: 3rem;
			border-radius: 15px;
			box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
		}
		.hidden-fields-container{
			display: none!important;
		}
    
		.form-group {
			margin-bottom: 2rem;
		}

		.form-group label {
			display: block;
			margin-bottom: 0.5rem;
			font-weight: bold;
			color: #333;
		}

		/* 入力欄 */
		.form-group input,
		.form-group textarea {
			width: 100%;
			padding: 1rem;
			border: 2px solid #eee;
			border-radius: 8px;
			font-size: 1rem;
			transition: border-color 0.3s ease;
		}

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

		/* テキストエリア */
		.form-group textarea {
			height: 120px;
			resize: vertical;
		}

		form .form-group p br{
			display:none!important;
		}

		/* 送信ボタン */
		.submit-btn {
			width: 100%;
			padding: 1rem;
			background: linear-gradient(135deg, #1082ce, #73c5fc);
			color: white;
			border: none;
			border-radius: 8px;
			font-size: 1.1rem;
			font-weight: bold;
			cursor: pointer;
			transition: all 0.3s ease;
		}

		.submit-btn:hover {
			transform: translateY(-2px);
			box-shadow: 0 5px 20px #006ed1;
		}

		.wpcf7 ul{
			display:none;
		}

		
        /* Footer */
        .footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        /* Responsive */
        @media (max-width: 1100px){
            .service-top-list{
                margin: 0 auto;
            }
            .service-image-container{
                display: none;
            }
            .pc-hidden{
                display: block;
                width: 100%;
                height: auto;
            }
            .service-list-text{
                margin-bottom: 1rem;
            }
        }
        @media (max-width: 1000px){
            .top-content{
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }
            .sentence-area{
                width: 100%;
                padding: 0 2rem;
            }
            .sentence-area .br{
                display: block;
            }
            .img-area{
                width: 65%;
                margin: 0 auto;
                height: auto;
            }
        }
        @media (max-width: 768px) {
            .header-nav{
                justify-content: center;
            }
            .nav-links {
                display: none;
            }

            .top-area h1 {
                font-size: 2.5rem;
            }

            .top-area p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                width: 90%;
                margin: 0 auto;
            }

            .about-us p,.service-card p,.service-list-text {
                font-size: 0.8rem;
            }

            .info-row {
                flex-direction: column;
            }

            .info-label {
                min-width: auto;
                padding: 1.5rem;
            }
            .info-value{
                padding: 1.5rem;
            }
        }
        @media (max-width: 560px) {
            .top-area h1 {
                font-size: 1.9rem;
            }
            .top-area p {
                font-size: 1rem;
            }
            .cta-button {
                padding: 0.7rem 2rem;
            }
            .about-us {
                padding: 5rem 1.2rem;
            }
            .form-container {
                padding: 3rem 1.5rem;
            }
        }
        @media (max-width: 520px) {
			.header{
				padding:0.5rem 0;
			}
			.logo{
				width:120px;
				height:45px;
			}
            .logo-container img {
                width: 80%;
                height: 80%;
                object-fit: contain;
            }
            .services-grid {
                grid-template-columns: 1fr;
                width: 100%;
                margin: 0 auto;
            }
            .about-us p,.service-card p {
                font-size: 0.7rem;
            }
        }
        @media (max-width: 430px) {
            .top-area{
                height: 90vh;
            }
            .top-area h1 {
                font-size: 1.5rem;
            }
            .top-area p {
                font-size: 0.8rem;
            }
            .cta-button {
                padding: 0.5rem 1.5rem;
                font-size: 0.8rem;
            }
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

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