/*
 * Cuore矯正歯科 採用LP スタイルシート (デザイン更新版)
 */
/* --------------------------------
 * 基本設定 & カラーパレット
 * -------------------------------- */ :root {
	--main-pink: #d38293;
	--sub-navy: #3c3b52;
	--white-gray: #eae7e5;
	--beige-ivory: #f5eee4;
	--font-gray: #4c4c4c;
	--pink-beige: #f3c5c0;
	--accent-gold: #e3c085;
	--light-blue: #b9c7dc; /* 未使用ですが定義は残します */
	--font-family-base: 'Noto Sans JP', sans-serif;
	--font-family-title: 'Playfair Display', serif;
}
body {
	font-family: var(--font-family-base);
	color: var(--font-gray);
	line-height: 1.8;
	background-color: #fff;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 24px;
}
.container_menu {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 24px;
	flex-wrap: nowrap;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border-radius: 8px;
}
/*
h2.section-title {
    position: relative;
    padding: 0.5rem 0 2rem;
    margin-bottom: 2rem;
    font-weight: bold;
    font-size: 26px;
    text-align: center;
    color: #353535;
}

h2.section-title::before {
    position: absolute;
    border-bottom: 2px solid #353535;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    content: '';
}
*/
/* --------------------------------
 * ヘッダー & フッター
 * -------------------------------- */
.header {
	padding: 16px 0;
	border-bottom: 1px solid var(--white-gray);
	background-color: rgba(255, 255, 255, 0.7); /* 半透明 */
	position: sticky;
	top: 0;
	z-index: 10;
	transition: box-shadow 0.3s ease;
}
.header.is-scrolled {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo {
	font-size: 16px;
	font-weight: bold;
	color: var(--sub-navy);
	margin-right: auto;
}
.nav-logo-img {
	width: 199px;
	height: 77px;
	object-fit: contain;
	display: block;
}
.footer {
	background-color: var(--sub-navy);
	color: #fff;
	padding: 32px 0;
	text-align: center;
	font-size: 14px;
}
.footer p {
	margin: 0;
	opacity: 0.8;
}
.nav-link {
	color: #665e4d;
	text-align: center;
	text-decoration: none;
	line-height: 100%;
	padding: 12px;
	font-size: 0.8rem;
}
/* --------------------------------
 * 共通コンポーネント
 * -------------------------------- */
.section {
	padding: 100px 0;
}
.section-bg {
	background-color: var(--beige-ivory);
}
.section-title {
	text-align: center;
	font-size: 36px;
	font-family: var(--font-family-title);
	font-weight: 400;
	margin: 0 0 60px;
	color: var(--sub-navy);
}
.button-group {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	align-items: center;
}
.btn {
	display: inline-block;
	padding: 12px 32px;
	background-color: #fff;
	color: var(--main-pink);
	border: 2px solid var(--main-pink);
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
}
.btn:hover {
	background-color: var(--main-pink);
	color: #fff;
}
.btn-primary {
	background-color: var(--main-pink);
	color: #fff;
	font-size: 18px;
	padding: 16px 60px;
}
.btn-primary:hover {
	opacity: 0.85;
	background-color: #c96d80; /* 少し暗いホバー色 */
}
/* --------------------------------
 * セクション別スタイル
 * -------------------------------- */
/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	background-image: url('img/slide5.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 400px;
	height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--sub-navy);
	transition: background-image 0s, opacity 0.8s;
}
.hero.fade {
    opacity: 0.7;
    transition: opacity 0.8s;
}
@keyframes hero-fade {
	from {
		opacity: 0.6;
	}
	to {
		opacity: 1;
	}
}
.hero-overlay {
	/* グラデーションにしたのでオーバーレイは不要 */
	display: none;
}
.hero-content {
	position: relative;
	z-index: 1;
}
.hero-title {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 24px;
	/* テキストの色をネイビーに変更し、影を調整 var(--sub-navy);*/
	color: white;
	text-shadow: 3px 3px 3px rgba(32, 32, 32, 0.5);
}
.hero-title span {
	display: inline-block;
}
.hero-subtitle {
	font-size: 18px;
	margin: 0 0 32px;
	color: var(--sub-navy);
	opacity: 0.8;
}
.hero-tags {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}
.hero-tags span {
	/* タグのスタイルを調整 */
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(60, 59, 82, 0.2);
	color: var(--sub-navy);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 14px;
}
/*
.hero::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.2);
    background-image: radial-gradient(#ccc 30%, transparent 31%), radial-gradient(#ccc 30%, transparent 31%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
    /* 必要に応じて下記を有効化 */
    /* filter: blur(4px); */
}
*/
/* About */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.info-list dt {
	font-weight: bold;
	color: var(--sub-navy);
	margin-top: 12px;
}
.info-list dd {
	margin-left: 0;
	font-size: 15px;
}
/* Message */
.message-grid {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 48px;
	align-items: center;
	background-color: #fff;
	padding: 48px;
	border-radius: 12px;
	border: 1px solid var(--white-gray);
}
.message-image {
	text-align: center;
}
.message-image img {
	width: 300;
	height: 300;
	border-radius: 50%;
	object-fit: cover;
	border: 5px solid var(--pink-beige);
}
.director-name {
	margin-top: 16px;
	font-weight: bold;
	color: var(--sub-navy);
}
.message-lead {
	font-size: 20px;
	font-weight: bold;
	color: var(--sub-navy);
	line-height: 1.6;
	margin-bottom: 24px;
}
/* Features */
#features {
	background-image: url('img/slide1.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 0;
	/* 既存の設定はそのまま */
}
/* 背景画像にぼかしをかける */
#features::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	/* 画像をもう一度重ねてぼかす */
	background: inherit;
	filter: blur(8px) brightness(1.1);
	opacity: 0.85;
	pointer-events: none;
}
/* セクション内のコンテンツを前面に */
#features > .container {
	position: relative;
	z-index: 2;
	background: none;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.feature-card {
	background: #fff;
	border: 1px solid var(--white-gray);
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.feature-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px 8px 0 0;
}
.feature-card h3 {
	font-size: 18px;
	color: var(--sub-navy);
	margin: 20px 20px 10px;
}
.feature-card p {
	font-size: 15px;
	margin: 0 20px 20px;
}
/* Requirements Table */
.table-wrapper {
	background-color: #fff;
	border: 1px solid var(--white-gray);
	border-radius: 8px;
	overflow: hidden;
}
.requirements-table {
	width: 100%;
	border-collapse: collapse;
}
.requirements-table th, .requirements-table td {
	padding: 20px;
	text-align: left;
	border-bottom: 1px solid var(--white-gray);
}
.requirements-table tr:last-child th, .requirements-table tr:last-child td {
	border-bottom: none;
}
.requirements-table th {
	width: 25%;
	background-color: #fff;
	border-right: 1px solid var(--white-gray);
	font-weight: bold;
	color: var(--sub-navy);
}
.requirements-table a {
	color: var(--main-pink);
	text-decoration: none;
	font-weight: bold;
}
.requirements-table a:hover {
	text-decoration: underline;
}
/* Career List */
.career-list {
	list-style: none;
	padding-left: 0;
	max-width: 800px;
	margin: 0 auto;
}
.career-list li {
	background: #fff;
	border: 1px solid var(--white-gray);
	padding: 20px 20px 20px 50px;
	position: relative;
	margin-bottom: 16px;
	border-radius: 8px;
}
.career-list li::before {
	content: '✔';
	color: var(--accent-gold);
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: bold;
	font-size: 1.2em;
}
/* Coming Soon */
.coming-soon {
	text-align: center;
	padding: 60px 24px;
	background: #fff;
	border: 2px dashed var(--white-gray);
	border-radius: 8px;
}
.coming-soon h3 {
	font-family: var(--font-family-title);
	font-size: 24px;
	color: var(--sub-navy);
	margin: 0 0 16px;
}
.coming-soon .example-text {
	margin-top: 24px;
	font-size: 14px;
	color: #999;
}
/* Access */
.access-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.access-map iframe {
	width: 100%;
	height: 400px;
	border: 0;
	border-radius: 8px;
}
.access-info .clinic-name {
	font-size: 20px;
	font-weight: bold;
	color: var(--sub-navy);
}
/* FAQ */
.faq-list {
	max-width: 800px;
	margin: 0 auto;
}
.faq-item {
	background-color: #fff;
	border: 1px solid var(--white-gray);
	border-radius: 8px;
	margin-bottom: 16px;
	overflow: hidden;
}
.faq-question {
	display: flex;
	align-items: flex-start;
	padding: 20px;
	cursor: pointer;
	font-weight: bold;
	color: var(--sub-navy);
	position: relative;
}
.faq-question::after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	color: var(--main-pink);
	transition: transform 0.3s ease;
}
.faq-item.is-open .faq-question::after {
	transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
	display: none; /* JSで制御 */
	padding: 0 20px 20px 52px;
}
.faq-icon {
	font-size: 20px;
	font-weight: bold;
	color: var(--main-pink);
	margin-right: 12px;
	line-height: 1.8;
}
.faq-question p, .faq-answer p {
	margin: 0;
	flex: 1;
}
/* Entry */
.entry-container {
	text-align: center;
}
.entry-flow {
	font-size: 18px;
	font-weight: bold;
	color: var(--sub-navy);
	margin-bottom: 24px;
}
.entry-message {
	margin-bottom: 32px;
}
.scroll-fadein {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
    will-change: opacity, transform;
}
.scroll-fadein.visible {
    opacity: 1;
    transform: translateY(0);
}
/* --------------------------------
 * レスポンシブ対応
 * -------------------------------- */
@media (max-width: 992px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 768px) {
	.section {
		padding: 80px 0;
	}
	.hero-title {
		font-size: 32px;
	}
	.about-grid, .message-grid, .access-grid {
		grid-template-columns: 1fr;
	}
	.message-grid {
		padding: 32px;
	}
	.message-image {
		margin-bottom: 16px;
	}
	.requirements-table th, .requirements-table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
	.requirements-table th {
		border-bottom: none;
		padding-bottom: 8px;
		border-right: none;
	}
	.requirements-table td {
		border-top: none;
		padding-top: 0;
		margin-bottom: 16px;
	}
	.requirements-table tr:last-child td {
		margin-bottom: 0;
	}
	.hero {
		min-height: 250px;
		height: 50vh;
	}
}
@media (max-width: 576px) {
	.nav-link {
		color: #665e4d;
		text-align: center;
		text-decoration: none;
		line-height: 100%;
		padding: 6px;
		font-size: 0.6rem;
	}
	.section-title {
		font-size: 28px;
	}
	.section-title span {
		display: inline-block;
	}
	.hero-title {
		font-size: 24px;
	}
	.features-grid {
		grid-template-columns: 1fr;
	}
	.btn {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}
	.button-group {
		flex-direction: column;
	}
	.hero {
		min-height: 180px;
		height: 70vh;
	}
	.header .container {
		flex-direction: column;
		align-items: flex-start;
	}
	.cta-img, .nav-logo-img {
		width: 140px;
		height: 54px;
	}
	.cta {
		margin-left: 0;
		margin-top: 8px;
	}
	.hero-tags span {
		/* タグのスタイルを調整 */
		display: block;
		background: rgba(255, 255, 255, 0.5);
		border: 1px solid rgba(60, 59, 82, 0.2);
		color: var(--sub-navy);
		padding: 6px 16px;
		border-radius: 20px;
		font-size: 14px;
		width: 70%;
	}
}
/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--beige-ivory);
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-content {
  text-align: center;
}

.contact-content p {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--font-gray);
  font-family: var(--font-family-base);
}

.contact-btn {
  margin-bottom: 40px;
  display: inline-block;
}

.contact-tel-box {
  background: white;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: inline-block;
  text-align: center;
  margin-top: 20px;
}

.contact-tel-label {
  display: block;
  font-size: 0.9rem;
  color: var(--font-gray);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-tel-number {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--main-pink);
  font-family: var(--font-family-title);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }
  
  .contact-content p {
    font-size: 16px;
  }
  
  .contact-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
  
  .contact-tel-box {
    padding: 20px 24px;
  }
  
  .contact-tel-number {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 40px 0;
  }
  
  .contact-content p {
    font-size: 15px;
  }
  
  .contact-btn {
    font-size: 15px;
    padding: 10px 20px;
  }
}

/* スタッフの声セクション全体 */
#voices .container {
  padding: 40px 0;
}





  



/* スタッフの声セクション */
#voices {
  padding: 80px 0;
}

#voices .container {
  padding: 0 24px;
}

#voices .section-title {
  text-align: center;
  margin-bottom: 16px;
  color: #2a3a4a;
  font-size: 2.5rem;
  font-weight: 400;
  font-family: var(--font-family-title);
}

#voices .section-subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-family-base);
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* グループタイトル */
.voice-group {
  margin-bottom: 60px;
}

.voice-group-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--sub-navy);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
  font-family: var(--font-family-title);
}

.voice-group-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--main-pink);
  border-radius: 2px;
}

/* カードリスト */
.voice-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* カードデザイン */
.voice-item {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 40px 32px 32px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.8);
}

.voice-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--main-pink);
}

.voice-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* アバターコンテナ */
.voice-avatar-container {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
  margin-top: 8px;
}

.voice-avatar {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.voice-item:hover .voice-avatar {
  transform: scale(1.05);
}

/* 勤務年数バッジ */
.voice-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: var(--main-pink);
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(211,130,147,0.3);
  font-family: var(--font-family-base);
}

/* 名前 */
.voice-name {
  font-size: 1.3rem;
  font-weight: 400;
  color: #2a3a4a;
  margin-bottom: 16px;
  line-height: 1.4;
  font-family: var(--font-family-title);
}

/* コメント */
.voice-comment {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 36px;
  line-height: 1.6;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-base);
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ボタンデザイン */
.voice-item .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: var(--main-pink);
  border: none;
  color: white;
  text-decoration: none;
  cursor: pointer;
  margin: 0 auto;
  justify-content: center;
  font-family: var(--font-family-base);
}

.voice-item .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211,130,147,0.3);
  background: #c96d80;
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.voice-item .btn:hover .btn-icon {
  transform: translateX(4px);
}

/* モーダル改善 */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 700px;
  width: 80%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.2);
}

.modal-content h3 {
  font-size: 1.8rem;
  font-weight: 400;
  color: #2a3a4a;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  padding-bottom: 16px;
  font-family: var(--font-family-title);
}

.modal-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--main-pink);
  border-radius: 2px;
}

.modal-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5a6a;
  text-align: left;
  font-family: var(--font-family-base);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #6c757d;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8f9fa;
}

.close-modal:hover {
  color: #dc3545;
  background: #fff5f5;
}

/* レスポンシブ対応 */
@media (max-width: 1023px) {
  #voices {
    padding: 60px 0;
  }
  
  #voices .section-title {
    font-size: 2rem;
  }
  
  .voice-group-title {
    font-size: 1.5rem;
  }
  
  .voice-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  
  .voice-item {
    padding: 32px 24px 24px 24px;
  }
  
  .voice-avatar {
    width: 120px;
    height: 120px;
  }
  
  .voice-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}

@media (max-width: 767px) {
  #voices {
    padding: 40px 0;
  }
  
  #voices .container {
    padding: 0 16px;
  }
  
  #voices .section-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  
  #voices .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .voice-group {
    margin-bottom: 40px;
  }
  
  .voice-group-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
  }
  
  .voice-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .voice-item {
    padding: 24px 20px 20px 20px;
  }
  
  .voice-avatar {
    width: 200px;
    height: 200px;
  }
  
  .voice-name {
    font-size: 1.1rem;
  }
  
  .voice-comment {
    font-size: 0.95rem;
    min-height: 40px;
  }
  
  .modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  .modal-content h3 {
    font-size: 1.4rem;
  }
  
  .modal-content p {
    font-size: 1rem;
  }
}

/* あなたかも？カードの特別スタイル */
.voice-item-you {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 2px dashed var(--main-pink);
  position: relative;
  overflow: visible;
}

.voice-item-you::before {
  display: none;
}



.voice-item-you:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(211,130,147,0.2);
  border-color: var(--main-pink);
}

.voice-avatar-placeholder {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 4px solid var(--main-pink);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(211,130,147,0.15);
  transition: transform 0.3s ease;
}

.voice-item-you:hover .voice-avatar-placeholder {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(211,130,147,0.25);
}

.avatar-icon {
  width: 80px;
  height: 80px;
  color: var(--main-pink);
  opacity: 0.7;
}

.voice-item-you:hover .avatar-icon {
  opacity: 1;
  transform: scale(1.1);
}

.voice-badge-you {
  background: linear-gradient(135deg, var(--main-pink), #f3c5c0);
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(211,130,147,0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.voice-item-you .voice-name {
  color: var(--main-pink);
  font-weight: 600;
}

.btn-you {
  background: linear-gradient(135deg, var(--main-pink), #f3c5c0);
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(211,130,147,0.3);
  transition: all 0.3s ease;
}

.btn-you:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211,130,147,0.4);
  background: linear-gradient(135deg, #c96d80, #e8b3b8);
}

/* レスポンシブ対応 */
@media (max-width: 1023px) {
  .voice-avatar-placeholder {
    width: 120px;
    height: 120px;
  }
  
  .avatar-icon {
    width: 50px;
    height: 50px;
  }
  
  .voice-badge-you {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 767px) {
  .voice-avatar-placeholder {
    width: 100px;
    height: 100px;
  }
  
  .avatar-icon {
    width: 40px;
    height: 40px;
  }
  
  .voice-badge-you {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}

/* Doctor Introduce Image */
.doctor-introduce-container {
  text-align: center;
  margin: 15px 0 40px 0;
  padding: 0 20px;
}

.doctor-introduce-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* レスポンシブ対応 */
@media (max-width: 1023px) {
  .doctor-introduce-container {
    margin-top: 30px;
  }
  
  .doctor-introduce-img {
    max-height: 350px;
  }
}

@media (max-width: 767px) {
  .doctor-introduce-container {
    margin-top: 20px;
    padding: 0 10px;
  }
  
  .doctor-introduce-img {
    max-height: 250px;
  }
}

/* ギャラリーカルーセル */
.gallery-carousel {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  background: #fff;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.gallery-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 40px 32px 32px;
  text-align: center;
}

.slide-caption h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 8px;
  font-family: var(--font-family-base);
}

.slide-caption p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.5;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.carousel-btn {
  background: var(--main-pink);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(211,130,147,0.3);
}

.carousel-btn:hover {
  background: #c96d80;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(211,130,147,0.4);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-indicators {
  display: flex;
  gap: 8px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(211,130,147,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--main-pink);
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(211,130,147,0.6);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .gallery-image {
    height: 300px;
  }
  
  .slide-caption {
    padding: 24px 20px 20px;
  }
  
  .slide-caption h3 {
    font-size: 1.2rem;
  }
  
  .slide-caption p {
    font-size: 0.9rem;
  }
  
  .carousel-controls {
    gap: 16px;
    margin-top: 24px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel-btn svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 576px) {
  .gallery-image {
    height: 250px;
  }
  
  .slide-caption {
    padding: 20px 16px 16px;
  }
  
  .slide-caption h3 {
    font-size: 1.1rem;
  }
  
  .slide-caption p {
    font-size: 0.85rem;
  }
  
  .carousel-controls {
    gap: 12px;
    margin-top: 20px;
  }
  
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
  
  .carousel-btn svg {
    width: 14px;
    height: 14px;
  }
  
    .indicator {
    width: 10px;
    height: 10px;
  }
}