@charset "UTF-8";

        /* 全体設定 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans JP', sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f9f9f9;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* メインビジュアル */
        .main-visual {
            position: relative;
            height: 500px;
            background-image:url("../v2img/d-fudo/main.png");
            background-size: cover;
            background-position: center;
            margin-bottom: 60px;
        }
        
        .main-visual__content {
            position: absolute;
            top: 50%;
            left: 50px;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.9);
            padding: 40px;
            max-width: 600px;
            border-radius: 8px;
        }
        
        .main-visual__title {
            font-size: 32px;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .main-visual__subtitle {
            font-size: 18px;
            margin-bottom: 30px;
        }

        
        /* セクション共通 */
        .section {
            margin-bottom: 80px;
            background-color: #fff;
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        
        .section__title {
            font-size: 2.4rem;
            margin-bottom: 30px;
            position: relative;
            padding-left: 15px;
            border-left: 5px solid #00347D;
			font-weight: bold;
        }
        .section p {
			font-size: 1.6rem;
			margin: 5px 0 20px 0
		}
        .section__content {
            margin-bottom: 30px;
        }

        .rinia-info img {
            width: 100%;
            height: 580px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        /* 特徴セクション */
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 40px;
        }
        
        .feature {
            flex-basis: calc(33.333% - 20px);
            margin-bottom: 40px;
            text-align: center;
        }
        
        .feature__icon {
            font-size: 100px;
            color: #00347D;
            margin-bottom: 20px;
        }
        
        .feature__title {
			color: #00347D;
            font-size: 2.0rem;
            margin-bottom: 15px;
			font-weight: bold;
        }
        
        /* プロジェクトセクション */
        .projects {
            display: flex;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .project {
            flex-basis: calc(50% - 20px);
            margin: 0 10px 40px;
        }
        
        .project img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .project__title {
            font-size: 2.0rem;
            margin-bottom: 10px;
			font-weight: bold;
        }
        
        /* 地域紹介 */
        .area-info {
            margin-top: 40px;
        }
        
        .area-info img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        /* コメント */
		
        .comment {
            background-color: #f5f9f5;
            padding: 30px;
            border-radius: 8px;
            margin-top: 40px;
            position: relative;
        }
        
        .comment::before {
            content: '"';
            position: absolute;
            top: 0;
            left: 15px;
            font-size: 60px;
            color: #4caf50;
            opacity: 0.3;
            line-height: 1;
        }
        .comment__title {
            font-size: 2.0rem;
            margin-bottom: 10px;
        }
        /* フッター */
        footer {
            background-color: #333;
            color: #fff;
            padding: 50px 0;
        }
        
        .footer__content {
            display: flex;
            justify-content: space-between;
        }
        
        .footer__info {
            flex-basis: 40%;
        }
        
        .footer__nav {
            flex-basis: 30%;
            padding-left: 30px;
        }
        
        .footer__title {
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .footer__nav ul {
            list-style: none;
        }
        
        .footer__nav ul li {
            margin-bottom: 10px;
        }
        
        .footer__nav ul li a {
            color: #fff;
            text-decoration: none;
        }
        
        .footer__nav ul li a:hover {
            text-decoration: underline;
        }
        
        .footer__copy {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* レスポンシブ */
        @media (max-width: 768px) {
            .main-visual {
                height: 400px;
            }
            
            .main-visual__content {
                left: 20px;
                right: 20px;
                padding: 30px;
            }
            
            .main-visual__title {
                font-size: 24px;
            }
            
            .section {
                padding: 30px;
            }
            
            .feature {
                flex-basis: 100%;
            }
            
            .project {
                flex-basis: 100%;
                margin: 0 0 30px;
            }
            
            .footer__content {
                flex-direction: column;
            }
            
            .footer__info, .footer__nav {
                flex-basis: 100%;
                margin-bottom: 30px;
                padding-left: 0;
            }
        }