* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif;
	line-height: 1.6;
	background-color: #f3fefd;
}

/* ヘッダー */
.header {
	background: white;
	height: 80px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 100;
}

.header-container {
	max-width: 1250px;
	margin: 0 auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}

.logo {
	height: 60px;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}

.nav-item {
	color: #333;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-item:hover {
	color: #1976d2;
}

/* 統一背景コンテナ */
.hero-logo-container {
	background: linear-gradient(135deg, #e6fbff 0%, #fffbfd 20%, #e6fbff 100%);
}

/* ヒーローセクション */
.hero-section {
	max-width: 1250px;
	margin: 0 auto;
	padding: 10px 20px 0px;
	display: grid;
	grid-template-columns: 6fr 4fr;
	gap: 20px;
	align-items: center;
}

.hero-main {
	padding: 0;
}

.hero-image {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* PC版画像を表示、SP版画像を非表示 */
.hero-image-pc {
	display: block;
}

.hero-image-sp {
	display: none;
}

/* スライドショー - PC版は右側 */
.hero-slideshow {
	padding: 0;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.image-slideshow {
	position: relative;
	width: 100%;
	height: 420px;
	overflow: hidden;
	border-radius: 8px;
}

.slide-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	object-fit: cover;
}

.slide-image.active {
	opacity: 1;
}

/* スライドインジケーター */
.slide-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

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

.indicator.active {
	background: white;
	transform: scale(1.2);
}

/* ロゴセクション */
.logo-section {
	padding: 10px 0 40px;
	overflow: hidden;
}

.logo-container {
	position: relative;
}

.logo-row {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
	white-space: nowrap;
	width: fit-content;
}

.logo-row.row-2 {
	margin-bottom: 0;
}

/* Remove CSS animations - will use JavaScript instead */

.partner-logo {
	flex-shrink: 0;
	background: white;
	border-radius: 8px;
	padding: 0px;
	height: 120px;
	box-shadow: 0 2px 9px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	min-width: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partner-logo:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
	height: 120px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

/* 学校セクション */
.content-section {
	width: 100%;
	padding: 60px 0;
	position: relative;
	background:#ffffff;
	border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.content-wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.section-header {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 24px;
}

.section-title {
	font-size: 33px;
	font-weight: 700;
	color: #333333;
	position: relative;
	padding-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #1e40af, #3b82f6, #60a5fa, #3b82f6, #1e40af);
	border-radius: 2px;
}

.section-icon {
	font-size: 32px;
	color: #3b82f6;
}

.section-description {
	font-size: 14px;
	color: #666;
	margin-top: 8px;
	line-height: 1.5;
}

.view-all {
	color: #4a90e2;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 20px;
	background: rgba(74, 144, 226, 0.1);
	transition: all 0.3s ease;
}

.view-all:hover {
	background: rgba(74, 144, 226, 0.15);
	transform: translateX(2px);
	text-decoration: none;
}

.view-all::after {
	content: "→";
	margin-left: 8px;
}

/* 横長のもっと見るボタン */
.section-more-btn {
	display: block;
	width: 100%;
	max-width: 400px;
	margin: 32px auto 0;
	padding: 16px 24px;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.section-more-btn:hover {
	background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
	color: white;
	text-decoration: none;
}

.section-more-btn i {
	margin-right: 8px;
}

/* エリア選択セクション */
.area-selection {
	max-width: 1200px;
	margin: 0 auto 40px;
	padding: 24px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
}

.region-selector {
	margin-bottom: 20px;
}

.region-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.region-btn {
	padding: 10px 20px;
	border: 2px solid #e5e7eb;
	background: white;
	color: #6b7280;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.region-btn:hover {
	border-color: #3b82f6;
	color: #3b82f6;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.region-btn.active {
	background: #3b82f6;
	color: white;
	border-color: #3b82f6;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.prefecture-selector {
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	opacity: 0;
}

.prefecture-selector.show {
	max-height: 200px;
	opacity: 1;
	margin-top: 16px;
}

.prefecture-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.prefecture-btn {
	padding: 6px 16px;
	border: 1px solid #d1d5db;
	background: white;
	color: #6b7280;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.25s ease;
	text-decoration: none;
}

.prefecture-btn:hover {
	border-color: #10b981;
	color: #10b981;
	background: #f0fdf4;
}

.prefecture-btn.active {
	background: #10b981;
	color: white;
	border-color: #10b981;
}

.clear-selection {
	color: #ef4444;
	font-size: 13px;
	text-decoration: none;
	margin-left: 12px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.clear-selection:hover {
	opacity: 1;
	text-decoration: underline;
}

/* スライダー */
.slider-container {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0 80px 15px;
}

.slider-viewport {
	overflow: hidden;
	width: 100%;
}

.slider-wrapper {
	display: flex;
	gap: 20px;
	transition: transform 0.3s ease;
	width: fit-content;
}

.nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(74, 144, 226, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 20px;
	color: #4a90e2;
	z-index: 10;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-button:hover {
	background: #4a90e2;
	color: white;
	border-color: #4a90e2;
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.nav-button.prev {
	left: 20px;
}

.nav-button.next {
	right: 20px;
}

.nav-button:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: translateY(-50%);
}

/* 学校カード */
.school-card {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	width: 272px;
	height: 450px;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.school-card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	border-color: #bfdbfe;
	transform: translateY(-4px);
}

.school-logo-area {
	height: 140px;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid #e5e7eb;
	flex-shrink: 0;
	padding: 0px;
}

.school-logo {
	width: 100%;
	height: 100%;
	max-width: 200px;
	max-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.school-logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.school-info {
	padding: 12px 16px;
	height: 240px;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	overflow: hidden;
	background: #ffffff;
}

.school-name {
	font-size: 17px;
	font-weight: 600;
	color: #111827;
	margin: 0 0 8px 0;
	line-height: 1.3;
	height: 42px;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
}

.three-points {
	height: 84px;
	margin-bottom: 8px;
	overflow: hidden;
}

.points-list {
	display: flex;
	flex-direction: column;
}

.point-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}

.point-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	background: #0ea5e9;
	color: white;
	border-radius: 3px;
	font-size: 9px;
	font-weight: 600;
	flex-shrink: 0;
	box-shadow: 0 1px 3px rgba(14, 165, 233, 0.3);
}

.point-text {
	font-size: 13px;
	color: #374151;
	font-weight: 400;
	line-height: 1.4;
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.location-info {
	height: 82px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.location-label {
	font-size: 11px;
	color: #6b7280;
	font-weight: 600;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	height: 14px;
	flex-shrink: 0;
}

.location-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	height: 60px;
	overflow: hidden;
	flex-shrink: 0;
	align-items: flex-start;
}

.location-tag {
	background: #0ea5e9;
	color: #ffffff;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	height: 24px;
	display: flex;
	align-items: center;
	border: 1px solid #0ea5e9;
	flex-shrink: 0;
	box-shadow: 0 1px 3px rgba(14, 165, 233, 0.2);
}

.location-tag.online {
	background: #f59e0b;
	color: #ffffff;
	border-color: #f59e0b;
	box-shadow: 0 1px 3px rgba(245, 158, 11, 0.3);
}

.card-actions {
	padding: 12px 16px;
	background: #ffffff;
	border-top: 1px solid #e5e7eb;
	display: flex;
	gap: 10px;
	flex-shrink: 0;
	height: 60px;
	align-items: center;
}

.school-select-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	color: #0ea5e9;
	padding: 8px 12px;
	border-radius: 4px;
	border: 1px solid #0ea5e9;
	background: #ffffff;
	flex: 1;
	height: 34px;
	transition: all 0.15s ease;
	text-decoration: none;
}

.school-select-btn:hover {
	background: #f0f9ff;
	border-color: #0284c7;
	color: #0284c7;
	transform: translateY(-1px);
	box-shadow: 0 2px 6px rgba(14, 165, 233, 0.2);
	text-decoration: none;
}

.request-button {
	background: #dc2626;
	color: white;
	border: 1px solid #dc2626;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex: 1;
	height: 34px;
	transition: all 0.15s ease;
	box-shadow: 0 1px 3px rgba(220, 38, 38, 0.2);
}

.request-button:hover {
	background: #b91c1c;
	border-color: #b91c1c;
	transform: translateY(-1px);
	box-shadow: 0 2px 6px rgba(220, 38, 38, 0.3);
}

/* 全てを見るカード */
.view-all-card {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bfdbfe 100%);
	border: 2px dashed #3b82f6;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	width: 272px;
	height: 450px;
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

.view-all-card:hover {
	border-color: #2563eb;
	background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
	text-decoration: none;
	color: inherit;
}

.view-all-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 40px 20px;
	text-align: center;
}

.view-all-icon {
	font-size: 48px;
	color: #3b82f6;
	margin-bottom: 20px;
}

.view-all-title {
	font-size: 20px;
	font-weight: 700;
	color: #1e40af;
	margin-bottom: 12px;
	line-height: 1.3;
}

.view-all-subtitle {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.4;
	margin-bottom: 20px;
}

.view-all-arrow {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	color: #3b82f6;
}

/* 合格体験記用の全てを見るカード */
.testimonial-view-all-card {
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
	border: 2px dashed #10b981;
	border-radius: 16px;
	overflow: hidden;
	width: 272px;
	min-height: 520px;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	position: relative;
}

.testimonial-view-all-card:hover {
	border-color: #059669;
	background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 50%, #86efac 100%);
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(16, 185, 129, 0.2);
	text-decoration: none;
	color: inherit;
}

.testimonial-view-all-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 40px 20px;
	text-align: center;
}

.testimonial-view-all-icon {
	font-size: 56px;
	color: #10b981;
	margin-bottom: 24px;
}

.testimonial-view-all-title {
	font-size: 22px;
	font-weight: 700;
	color: #047857;
	margin-bottom: 16px;
	line-height: 1.2;
}

.testimonial-view-all-subtitle {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.4;
	margin-bottom: 24px;
}

.testimonial-view-all-arrow {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	color: #10b981;
}

/* 合格体験記セクション - 共通 */
.testimonial-section {
	padding: 60px 0;
}

/* 合格体験記セクション（国公立） */
.testimonial-section.national {
	
	border-bottom: 1px solid rgba(59, 130, 246, 0.15);
	background: linear-gradient(135deg, #f5feff 0%, #f0f9ff 100%);
}

/* 合格体験記セクション（私立） */
.testimonial-section.private {
	background:#ffffff;
	border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.testimonial-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border: 1px solid #e5e7eb;
	width: 272px;
	min-height: 520px;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	position: relative;
}

.testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
	border-color: #3b82f6;
}

.testimonial-header {
	padding: 16px 16px 12px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.school-logo-small {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
}

.logo-icon {
	width: 100px;
	height: 80px;
	background: white;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #6b7280;
	border: 1px solid #e5e7eb;
	flex-shrink: 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 4px;
}

.school-name-small {
	font-size: 13px;
	color: #374151;
	font-weight: 600;
	line-height: 1.3;
	flex: 1;
}

.testimonial-user {
	display: flex;
	align-items: center;
	gap: 8px;
}

.user-avatar {
	width: 32px;
	height: 32px;
	background: #3b82f6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 16px;
	font-weight: 400;
}

.user-name {
	font-size: 16px;
	color: #374151;
	font-weight: 600;
}

.testimonial-content {
	padding: 0 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.school-from {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 8px;
}

.university-success {
	font-size: 18px;
	font-weight: 700;
	color: #dc2626;
	line-height: 1.3;
	margin-bottom: 12px;
	height: 50px; /* 固定高さを設定 */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2; /* 最大2行に制限 */
	overflow: hidden;
	text-overflow: ellipsis;
}

.testimonial-badges {
	display: flex;
	gap: 6px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.testimonial-badge {
	background: #dbeafe;
	color: #1d4ed8;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 500;
}

.testimonial-badge.method {
	background: #fef3c7;
	color: #92400e;
}

.testimonial-badge.area {
	background: #e0e7ff;
	color: #5b21b6;
}

.testimonial-excerpt {
	font-size: 14px;
	color: #4b5563;
	line-height: 1.5;
	margin-bottom: 16px;
	flex: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.testimonial-actions {
	padding: 16px;
	margin-top: auto;
}

.read-more-btn {
	background: #3b82f6;
	color: white;
	border: none;
	padding: 12px 16px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s ease;
	text-decoration: none;
	width: 100%;
	justify-content: center;
}

.read-more-btn:hover {
	background: #2563eb;
	transform: translateY(-1px);
	text-decoration: none;
	color: white;
}

/* ドット */
.scroll-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
}

.scroll-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

.scroll-dot.active {
	background: #4a90e2;
	transform: scale(1.2);
}

/* フェードイン・フェードアウトエフェクト */
.fade-transition {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
}

.fade-transition.show {
	opacity: 1;
	transform: translateY(0);
}

/* ローディング状態 */
.loading {
	position: relative;
	overflow: hidden;
}

.loading::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

/* 資料請求リスト状況表示 */
.resource-list-indicator {
	position: fixed;
	right: -300px;
	top: 120px;
	width: 320px;
	background: white;
	color: #333;
	border-radius: 12px 0 0 12px;
	border: 1px solid #e5e7eb;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: right 0.3s ease;
	cursor: pointer;
	user-select: none;
}

.resource-list-indicator.show {
	right: 0;
}

.resource-list-indicator.minimized {
	right: -280px;
}

.resource-list-indicator:hover {
	right: 0 !important;
}

.resource-list-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px 12px;
	border-bottom: 1px solid #f3f4f6;
	background: #f9fafb;
	border-radius: 12px 0 0 0;
}

.resource-list-title {
	font-size: 16px;
	font-weight: 600;
	flex: 1;
	color: #111827;
}

.resource-list-icon {
	color: #dc2626;
	font-size: 18px;
}

.resource-close-btn {
	background: none;
	border: none;
	color: #9ca3af;
	font-size: 18px;
	cursor: pointer;
	padding: 4px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.resource-close-btn:hover {
	background: #f3f4f6;
	color: #6b7280;
}

.resource-list-content {
	padding: 16px 20px 20px;
}

.resource-subtitle {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 12px;
}

.resource-count-display {
	background: #f3f4f6;
	border-radius: 8px;
	padding: 12px;
	margin-bottom: 16px;
	text-align: center;
}

.resource-count-number {
	font-size: 20px;
	font-weight: 700;
	color: #dc2626;
}

.resource-count-text {
	font-size: 12px;
	color: #6b7280;
	margin-top: 2px;
}

.resource-schools-list {
	margin-bottom: 16px;
	max-height: 120px;
	overflow-y: auto;
}

.resource-school-item {
	font-size: 13px;
	color: #4b5563;
	line-height: 1.4;
	padding: 4px 0;
	border-bottom: 1px solid #f3f4f6;
}

.resource-school-item:last-child {
	border-bottom: none;
}

.resource-action-btn {
	background: #4f46e5;
	border: none;
	color: white;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	text-align: center;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.resource-action-btn:hover {
	background: #4338ca;
	transform: translateY(-1px);
	text-decoration: none;
	color: white;
	box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* モバイル対応 */
@media (max-width: 768px) {
	.resource-list-indicator {
		display: none;
	}
}

/* レスポンシブ */
@media (max-width: 768px) {
	.hero-section {
		grid-template-columns: 1fr;
		gap: 20px;
		text-align: center;
		padding: 20px 15px;
	}
	
	/* SP版では画像を切り替え */
	.hero-image-pc {
		display: none;
	}
	
	.hero-image-sp {
		display: block;
	}
	
	/* スライドショーをメイン画像の下に配置 */
	.hero-slideshow {
		order: 2;
	}
	
	.hero-main {
		order: 1;
	}
	
	.image-slideshow {
		height: 280px;
		border-radius: 12px;
	}
	
	/* スマホ版のロゴセクション調整 */
	.logo-section {
		padding: 20px 0 30px;
	}
	
	.logo-row {
		gap: 12px;
		margin-bottom: 12px;
	}
	
	.partner-logo {
		height: 80px;
		min-width: 160px;
		padding: 0px;
		border-radius: 8px;
	}
	
	.partner-logo img {
		height: 80px;
		max-width: 160px;
	}
	
	/* スマホ版でのロゴアニメーション（JavaScript制御） */
	.logo-row {
		gap: 12px;
		margin-bottom: 12px;
	}
	
	.header-container {
		padding: 0 15px;
	}
	
	/* スマホ版のヘッダー高さを小さく */
	.header {
		height: 60px;
	}
	
	.header-container {
		height: 100%;
		padding: 0 15px;
	}
	
	.logo {
		height: 35px;
	}
	
	.nav-menu {
		display: none;
	}
	
	.section-title {
		font-size: 20px;
	}
	
	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	
	.content-wrapper {
		padding: 0 15px;
	}
	
	.area-selection {
		margin: 0 15px 40px;
		padding: 16px;
	}
	
	.region-buttons {
		gap: 8px;
	}
	
	.region-btn {
		padding: 8px 16px;
		font-size: 13px;
	}
	
	.prefecture-buttons {
		gap: 6px;
	}
	
	.prefecture-btn {
		padding: 4px 12px;
		font-size: 12px;
	}
	
	.slider-container {
		padding: 0;
		overflow: visible;
	}
	
	.slider-wrapper {
		display: block;
		width: 100%;
	}
	
	.school-card {
		width: 100%;
		margin-bottom: 20px;
		flex: none;
		height: auto;
	}
	
	/* スマホ版では「全てを見る」カードを非表示 */
	.view-all-card,
	.testimonial-view-all-card {
		display: none;
	}
	
	/* 上下段レイアウトのモバイル対応 */
	.testimonial-sections {
		gap: 40px;
	}
	
	.testimonial-slider-container {
		padding: 0;
		overflow: visible;
	}
	
	.testimonial-slider-wrapper {
		display: block;
		width: 100%;
	}
	
	.testimonial-card {
		width: 100%;
		height: auto;
		min-height: 400px;
		flex-shrink: 0;
		margin-bottom: 20px;
	}
	
	.logo-icon {
		width: 80px;
		height: 60px;
	}
	
	.row-title {
		font-size: 24px;
	}
	
	.row-header {
		padding: 16px;
		margin-bottom: 24px;
	}
	
	.testimonial-nav-button {
		display: none;
	}
	
	.testimonial-dots {
		display: none;
	}
	
	.nav-button {
		display: none;
	}
	
	.scroll-dots {
		display: none;
	}
	
	.content-section, .testimonial-section {
		padding: 40px 0;
	}
	
	/* モバイル用のタイトル高さ調整 */
	.university-success {
		height: 60px; /* モバイルでは少し高めに */
		-webkit-line-clamp: 3; /* 3行まで表示 */
	}
}
