@charset "UTF-8";


/*****************************************************
　画像　
*****************************************************/
.company-img{
	margin:0 auto 75px;
	max-width:631px;
	width:100%;
}


/*****************************************************
　セクション　
*****************************************************/
/* セクションタイトル 
------------------------------------------------- */
.p-section-ttl{
	font-size:42px;
	font-size:4.2rem;
	margin:0 0 60px;
	text-align:center;
}

  .staff-section {
            max-width: 1235px;
            margin: 0px auto;
            padding: 0 20px;
	  font-family: "Zen Maru Gothic", serif;
        }

        .section-title {
            margin-bottom: 60px;
        }

        .section-subtitle {
            font-size: 14px;
            font-size: 0.875em;
            color: #999;
            font-weight: 400;
            margin-bottom: 10px;
            letter-spacing: 0.05em;
        }

        .section-title h2 {
            font-size: 32px;
            font-size: 2em;
            font-weight: 700;
            color: #333;
        }

        .staff-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px 40px;
            margin-bottom: 40px;
        }

        .staff-card {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .staff-card:hover {
            transform: translateY(-5px);
        }

        .staff-image-wrapper {
            width: 280px;
            height: 280px;
            margin: 0 auto 25px;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease;
        }

        .staff-card:hover .staff-image-wrapper {
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .staff-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .staff-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #d4cfc4 0%, #b8b0a3 100%);
            color: #fff;
            font-size: 64px;
            font-size: 4em;
            font-weight: 700;
        }

        .staff-position {
            font-size: 14px;
            font-size: 1.0em;
            color: #64b82b;
            font-weight: 500;
            margin-bottom: 8px;
            letter-spacing: 0.05em;
        }

        .staff-name {
            font-size: 26px;
            font-size: 1.625em;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }

        .staff-name-en {
            font-size: 14px;
            font-size: 0.875em;
            color: #666;
            font-weight: 400;
            margin-bottom: 25px;
        }

        .staff-content {
            text-align: left;
            padding: 0 10px;
        }

        .staff-info-item {
            margin-bottom: 20px;
        }

        .staff-info-label {
            font-size: 13px;
            font-size: 1.3em;
            font-weight: 700;
            color: #64b82b;
            margin-bottom: 6px;
            letter-spacing: 0.05em;
        }

        .staff-info-text {
            font-size: 15px;
            font-size: 0.9375em;
            color: #555;
            line-height: 1.9;
        }

        .staff-qualification {
            display: none; /* 資格は非表示 */
        }

        /* レスポンシブ対応 */
        @media screen and (max-width: 1024px) {
            .staff-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px 40px;
            }
        }

        @media screen and (max-width: 768px) {
            .staff-section {
                margin: 40px auto;
                padding: 0 15px;
            }

            .section-title h2 {
                font-size: 26px;
                font-size: 1.625em;
            }

            .staff-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .staff-image-wrapper {
                width: 240px;
                height: 240px;
                border-radius: 40px;
            }

            .staff-name {
                font-size: 22px;
                font-size: 2.375em;
            }

            .staff-content {
                padding: 0;
            }
        }

        @media screen and (max-width: 480px) {
            .section-title h2 {
                font-size: 22px;
                font-size: 1.375em;
            }
			
			.staff-position {
            font-size: 18px;
            font-size: 1.8em;
        }
			
			 .staff-info-label {
            font-size: 18px;
            font-size: 1.8em;
        }

            .staff-image-wrapper {
                width: 200px;
                height: 200px;
                border-radius: 35px;
            }

            .staff-name {
                font-size: 25px;
                font-size: 2.5em;
            }

            .staff-info-text {
                font-size: 15px;
                font-size: 1.5em;
            }
        }




@media screen and (max-width:1024px){
	/*****************************************************
	　画像　
	*****************************************************/
	.company-img{
		margin:0 auto 9.61vw;
		max-width:none;
		width:80vw;
	}
	.company-img img{
		width:100%;
	}


