@charset "UTF-8";

/* メインコンテンツ */
main{
	position: relative;
	z-index: 1;
}

/* セクション共通スタイル */
.section-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 30px;
    position: relative;
}
	.section-header {
	    margin-bottom: 40px;
	}

/* OUR SERVICEセクション */
.service-overview-section {
	opacity:0;
	text-align: center;
	padding: 100px 0 100px;
	position: relative;
}

.service-overview-section:after {
    content: "　";
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #ffffffab, transparent);
    pointer-events: none;
}
	.main-message{
		opacity:1;
	}
	.service-overview-content {
		position: relative;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}

		.service-overview-text {
		    flex: 1;
		}

		.service-overview-text span {
		    font-size: clamp( 15px, calc( 9.666666666666668px + 0.6944444444444444vw ), 18px );
		    line-height: 2.3;
		    margin-bottom: 20px;
		    color: #000000;
		}

/* メインメッセージ共通 */
.main-message {
  font-size: clamp( 22px, calc( 11.333333333333332px + 2.2222222222222223vw ), 38px );
  line-height: 1.5;
  font-weight: 700;
  color: #323232;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.sub-message {
    font-size: 14px;
    color: #666;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

/* SERVICE LINEUPセクション */
.service-lineup-section {
    padding: 100px 0;
    background-color: #ffffffab;
}
	.service-lineup-body{
		display: flex;
		gap: 30px;
	}
	.service-lineup-image{
		background: url(../img/service-lineup-image.png);
		width: 100%;
		min-height: 500px;
		max-height: 100%;
		border-radius: 3px;
		background-repeat: no-repeat;
		background-size: cover;
	}
	.service-cards {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 30px;
	    flex-direction: row;
	    width: 100%;
	}

		.service-card {
			opacity:0;
		    flex: 1;
		    background-color: #fff;
		    border-radius: 8px;
		    overflow: hidden;
		    transition: all 0.3s ease;
		}

			.service-card.active {
			    animation: fade-in-up 0.5s ease forwards;
			}
				.service-card:nth-child(1).active {
				  animation-delay: 0.0s;
				}
				.service-card:nth-child(2).active {
				  animation-delay: 0.1s;
				}
				.service-card:nth-child(3).active {
				  animation-delay: 0.2s;
				}
			
		.service-card:hover, .service-card.hover-active {
		    transform: translateY(-5px);
		    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
		}
		
		.service-card-inner {
		    padding: 15px 30px;
		}

		.service-card-icon {
		    background-repeat: no-repeat !important;
		    background-size: contain !important;
		    background-position: 50% !important;
		    width: 200px;
		    height: 200px;
		    margin: 0 auto;
		}
			.system-icon {
			    background:url(../img/service-lineup-image-system.png);
			}
			.consulting-icon {
			    background:url(../img/service-lineup-image-consulting.png);
			}
			.training-icon {
			    background:url(../img/service-lineup-image-education.png);
			}
			
		.service-card-title {
		    font-size: 22px;
		    font-weight: 700;
		    color: #333;
		    margin-bottom: 15px;
		    text-align: center;
		}

		.service-card-description {
		    font-size: 16px;
		    line-height: 1.6;
		    color: #666;
		}

/* OUR STRENGTHSセクション */
.strengths-section {
    padding: 100px 0;
    background: #fdfdfdd6;
    position: relative;
}

	.strengths-grid {
	    display: grid;
	    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	    gap: 30px;
	    margin-top: 40px;
	}

		.strength-panel {
		    background-color: #fff;
		    border-radius: 8px;
		    padding: 30px;
		    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
		}

		.strength-title {
		    font-size: 24px;
		    font-weight: 700;
		    color: #333;
		    margin-bottom: 20px;
		    padding-bottom: 10px;
		    border-bottom: 2px solid rgba(255, 153, 0, 0.3);
		}

		.strength-content {
		    display: flex;
		    flex-direction: column;
		    padding: 0 5px;
		}

		.chart-container {
		    width: 100%;
		    height: 300px;
		    margin-bottom: 20px;
		}

		.strength-description {
		    font-size: 16px;
		    line-height: 1.6;
		    color: #666;
		    margin-top: 10px;
		}

	/* BPフローフロー */
	.bp-flow-container {
	    margin-top: 60px;
	    background-color: #fff;
	    border-radius: 8px;
	    padding: 30px;
	    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
	}

		.bp-flow-diagram {
		    display: flex;
		    flex-wrap: wrap;
		    justify-content: space-between;
		    align-items: center;
		    margin-top: 30px;
		    opacity: 0;
		}

		.flow-step {
		    display: flex;
		    flex-direction: column;
		    align-items: center;
		    width: 170px;
		    text-align: center;
		}

		.flow-icon {
			opacity:0;
		    width: 80px;
		    height: 80px;
		    border-radius: 50%;
		    background-color: rgba(255, 153, 0, 0.1);
		    margin-bottom: 15px;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		    font-size: 30px;
		    color: #ff9900;
		    background-position: center;
		    background-repeat: no-repeat;
		    background-size: 50%;
		}

		.flow-icon-1 {
		    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff9900"><path d="M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zm-6 0h-4V4h4v2z"/></svg>');
		}

		.flow-icon-2 {
		    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff9900"><path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"/></svg>');
		}

		.flow-icon-3 {
		    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff9900"><path d="M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z"/></svg>');
		}

		.flow-icon-4 {
		    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff9900"><path d="M5 13.18v4L12 21l7-3.82v-4L12 17l-7-3.82zM12 3L1 9l11 6 9-4.91V17h2V9L12 3z"/></svg>');
		}

		.flow-icon-5 {
		    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff9900"><path d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14h-2V9h-2V7h4v10z"/></svg>');
		}
			.flow-icon.active.flow-icon-1 {
			  animation: fadeIn 0.5s ease forwards;
			}

			.flow-icon.active.flow-icon-2 {
			  animation: fadeIn 0.5s ease forwards;
			  animation-delay: 0.2s;
			}

			.flow-icon.active.flow-icon-3 {
			  animation: fadeIn 0.5s ease forwards;
			  animation-delay: 0.3s;
			}

			.flow-icon.active.flow-icon-4 {
			  animation: fadeIn 0.5s ease forwards;
			  animation-delay: 0.4s;
			}

			.flow-icon.active.flow-icon-5 {
			  animation: fadeIn 0.5s ease forwards;
			  animation-delay: 0.5s;
			}
		.flow-content h4 {
		    font-size: 18px;
		    font-weight: 600;
		    color: #333;
		    margin-bottom: 10px;
		}

		.flow-content p {
		    font-size: 14px;
		    line-height: 1.5;
		    color: #666;
		}

		.flow-arrow {
		    width: 30px;
		    height: 30px;
		    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff9900"><path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"/></svg>');
		    background-repeat: no-repeat;
		    background-position: center;
		    background-size: contain;
		}

		@media (max-width: 1100px) {
		    .bp-flow-diagram {
		        justify-content: center;
		        gap: 20px;
		    }
		    
		    .flow-arrow {
		        transform: rotate(90deg);
		        margin: 10px 0;
		    }
		}