@charset "UTF-8";

/* はぐぽんスタッフの声 専用スタイル */

/* アニメーション定義 */
@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3) translateY(-50px);
	}
	50% {
		opacity: 1;
		transform: scale(1.05) translateY(0);
	}
	70% {
		transform: scale(0.95);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes wiggle {
	0%, 100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(-5deg);
	}
	75% {
		transform: rotate(5deg);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(1.2);
	}
	100% {
		transform: rotate(360deg) scale(1);
	}
}

@keyframes shake {
	0%, 100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(-5px);
	}
	75% {
		transform: translateX(5px);
	}
}

@keyframes rainbow {
	0% {
		filter: hue-rotate(0deg);
	}
	100% {
		filter: hue-rotate(360deg);
	}
}

/* セクション全体 */
#staffVoice {
	padding: 60px 0;
}

#staffVoiceInner {
	max-width: 1000px;
	margin: 0 auto;
}

/* タイトル */
.staff-voice-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.staff-voice-title img {
	max-width: 50%;
	height: auto;
	display: block;
	margin: 0 auto;
	opacity: 0;
	transform: scale(0.3) translateY(-50px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

/* スタッフグリッド */
.staff-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 80px;
}

.staff-card {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
	opacity: 0;
	animation: fadeInUp 0.6s ease-out forwards;
	animation-fill-mode: forwards;
}

.staff-card:nth-child(1) {
	animation-delay: 0.2s;
}

.staff-card:nth-child(2) {
	animation-delay: 0.4s;
}

.staff-card:nth-child(3) {
	animation-delay: 0.6s;
}

.staff-card:nth-child(4) {
	animation-delay: 0.8s;
}

.staff-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 8px 20px rgba(237, 119, 0, 0.3);
	opacity: 1 !important;
}

.staff-card-content {
	padding: 20px;
	border: 3px solid #ED7700;
	border-radius: 8px;
}

.staff-info-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.staff-text-info {
	flex: 1;
	text-align: left;
}

.staff-title {
	font-size: 1.8rem;
	color: #333;
	margin-bottom: 10px;
	font-weight: normal;
}

.staff-name {
	font-size: 3.2rem;
	font-weight: bold;
	color: #ED7700;
	margin-bottom: 0;
}

.staff-image {
	flex-shrink: 0;
	margin-bottom: 0;
}

.staff-image img {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 50%;
	border: none;
	transition: transform 0.5s ease;
	animation: float 3s ease-in-out infinite;
}

.staff-card:hover .staff-image img {
	transform: scale(1.1);
}

.interview-btn {
	width: 100%;
	padding: 15px 20px;
	background: #ED7700;
	border: none;
	color: #ffffff;
	font-size: 1.6rem;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.interview-btn:hover {
	background: #d66800;
	animation: pulse 0.6s ease;
}

.interview-btn .arrow {
	width: 20px;
	height: 20px;
	object-fit: contain;
	transition: transform 0.3s ease;
	display: inline-block;
}

.interview-btn:hover .arrow {
	transform: translateY(2px);
}

/* 詳細インタビューセクション */
.featured-interview {
	background: #F29600;
	padding: 120px 40px;
	border-radius: 12px;
	margin-top: 40px;
	display: none;
}

.featured-interview.active {
	display: block;
}

.childsillust {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin:-10vw 0 0 0;
	text-align: center;
}

.childsillust img {
	opacity: 0;
	visibility: hidden;
	transform: translateY(50px);
	width: 15vw;
	height: auto;
	max-width: 150px;
	min-width: 80px;
}

.childsillust img.animate {
	visibility: visible;
	animation: jumpIn 0.4s ease-out forwards;
}

.childsillust img.animate:nth-child(1) {
	animation-delay: 0.1s;
}

.childsillust img.animate:nth-child(2) {
	animation-delay: 0.2s;
}

.childsillust img.animate:nth-child(3) {
	animation-delay: 0.3s;
}

.childsillust img.animate:nth-child(4) {
	animation-delay: 0.4s;
}

@keyframes jumpIn {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}
	50% {
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.interview-header {
	margin: 0;
}

.interview-section-title {
	text-align: center;
	margin-bottom: 30px;
}

.interview-section-title img {
	max-width: 65%;
	height: auto;
	display: block;
	margin: 0 auto;
	animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
	0%, 100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(-5deg);
	}
	75% {
		transform: rotate(5deg);
	}
}

/* スタッフ情報セクション */
.staff-info-section {
	margin: -10vw 0 30px 0;
	padding: 30px;
	background: #ffffff;
	border-radius: 8px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.staff-info-section .flexbox {
	display: flex;
	align-items: center;
	gap: 40px;
}

.staff-large-image {
	flex-shrink: 0;
}

.staff-large-image img {
	width: 20vw;
	height: 20vw;
	max-width: 250px;
	max-height: 250px;
	min-width: 120px;
	min-height: 120px;
	object-fit: cover;
	border-radius: 50%;
	border: none;
	transition: transform 0.5s ease;
	animation: float 3s ease-in-out infinite;
}

.staff-large-image:hover img {
	transform: scale(1.15);
}

.staff-info-text {
	flex: 1;
}

.staff-info-title {
	font-size: 2.2rem;
	font-weight: bold;
	color: #666;
	margin: 0;
}

.staff-info-name {
	font-size: 3.2rem;
	font-weight: bold;
	color: #ED7700;
	margin: 0;
}

.staff-birthplace {
	font-size: 1.8rem;
	color: #666;
}

/* 紹介文 */
.intro-text {
	margin-top: 30px;
	margin-bottom: 40px;
	padding: 30px;
	background: #ffffff;
	border-radius: 8px;
	border-top: 3px dotted #ED7700;
	border-bottom: 3px dotted #ED7700;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.intro-text p {
	font-size: 1.6rem;
	line-height: 1.8;
	color: #333;
}

/* 質問セクション */
.interview-questions {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.question-item {
	display: flex;
	gap: 20px;
	padding: 30px;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	opacity: 0;
	transform: translateX(-30px);
	transition: all 0.6s ease;
}

.question-item.animate {
	opacity: 1;
	transform: translateX(0);
}

.question-item.animate:nth-child(odd) {
	background: #FFFEE2;
}

.question-item.animate:nth-child(even) {
	background: #FFF3E2;
}

.question-item:hover {
	transform: translateX(10px) scale(1.02);
	box-shadow: 0 4px 12px rgba(237, 119, 0, 0.2);
}

.question-number {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-shrink: 0;
	width: 60px;
}

.bear-icon {
	font-size: 2.4rem;
	margin-bottom: 5px;
	display: inline-block;
	animation: wiggle 2s ease-in-out infinite;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.bear-icon:hover {
	transform: scale(1.3);
}

.number {
	font-size: 1.8rem;
	font-weight: bold;
	color: #ffffff;
	display: inline-block;
	animation: pulse 2s ease-in-out infinite;
	transition: transform 0.3s ease;
	background-image: url('../recruit/image/img_1.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	padding: 10px 15px;
	min-width: 40px;
	text-align: center;
}

.question-item:hover .number {
	transform: scale(1.3);
}

.question-content {
	flex: 1;
}

.question-title {
	font-size: 2.2rem;
	font-weight: bold;
	color: #ED7700;
	margin-bottom: 15px;
}

.question-text {
	font-size: 1.6rem;
	line-height: 1.8;
	color: #666;
}

/* CTAボタン */
.cta-button {
	margin-top: 50px;
	text-align: center;
}

.day-button {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	padding: 25px 60px;
	background: #ED7700;
	color: #ffffff;
	font-size: 2.2rem;
	font-weight: bold;
	border-radius: 50px;
	transition: transform 0.3s ease;
	box-shadow: 0 4px 8px rgba(237, 119, 0, 0.3);
}

.day-button:hover {
	background: #d66800;
	color: #ffffff;
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(237, 119, 0, 0.5);
}

.day-button .play-icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
	order: 2;
	transition: transform 0.3s ease;
}

.day-button:hover .play-icon {
	transform: scale(1.1);
}

/* タブレット対応 */
@media only screen and (min-width: 765px) and (max-width: 1024px) {
	.staff-large-image img {
		width: 22vw;
		height: 22vw;
		max-width: 280px;
		max-height: 280px;
		min-width: 150px;
		min-height: 150px;
	}
}

/* レスポンシブ対応 */
@media only screen and (max-width: 764px) {
	#staffVoice {
		padding: 40px 0;
	}
	
	#staffVoiceInner {
		padding: 0;
	}
	
	.staff-voice-title {
		margin-bottom: 30px;
	}
	
	.staff-voice-title img {
		max-width: 70%;
		animation: bounceIn 0.8s ease-out;
	}
	
	.interview-section-title img {
		max-width: 50%;
		margin: 0 auto -20px auto;
	}
	
	.staff-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 50px;
	}
	
	.staff-card {
		animation-delay: 0s !important;
	}
	
	.staff-info-wrapper {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}
	
	.staff-text-info {
		text-align: center;
	}
	
	.staff-image img {
		width: 120px;
		height: 120px;
		border: none;
		animation: float 2.5s ease-in-out infinite;
	}
	
	.staff-name {
		font-size: 2.2rem;
	}
	
	.featured-interview {
		padding: 30px 20px;
	}
	
	.childsillust img {
		width: 20vw;
		max-width: 120px;
		min-width: 60px;
	}
	
	.staff-info-section {
		padding: 20px;
	}
	
	.staff-info-section .flexbox {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}
	
	.staff-large-image img {
		width: 35vw;
		height: 35vw;
		max-width: 150px;
		max-height: 150px;
		min-width: 100px;
		min-height: 100px;
	}
	
	.staff-info-name {
		font-size: 2rem;
	}
	
	.intro-text {
		padding: 20px;
	}
	
	.intro-text p {
		font-size: 1.4rem;
	}
	
	.question-item {
		flex-direction: column;
		padding: 20px;
		gap: 15px;
	}
	
	.question-number {
		flex-direction: row;
		width: auto;
		gap: 10px;
	}
	
	.question-title {
		font-size: 1.8rem;
		text-align: center;
	}
	
	.question-text {
		font-size: 1.4rem;
	}
	
	.day-button {
		padding: 15px 30px;
		font-size: 1.6rem;
	}
}
