/* Kokushi-Pack Custom Styles */
body {
	font-family: 'Noto Sans JP', sans-serif;
	color: #333;
	line-height: 1.6;
	background-color: #f8f9fa;
}

/* Primary Colors */
:root {
	--primary-color: #4a6fa5; /* 看護師のイメージに合う落ち着いた青 */
	--secondary-color: #2c3e50; /* ダークブルー */
	--accent-color: #e74c3c; /* アクセントカラー */
	--light-bg: #f8f9fa;
	--border-color: #e9ecef;
	--text-color: #333;
	--light-text: #6c757d;
	--success-color: #28a745;
	--info-color: #17a2b8;
	--warning-color: #ffc107;
	--danger-color: #dc3545;
}

/* Header Styles */
.kokushi-header {
	background: linear-gradient(135deg, var(--primary-color), #2c3e50);
	color: white;
	padding: 1rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: 80px;
}

.kokushi-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	position: relative;
}

.kokushi-header .logo img {
	height: 50px;
	transition: transform 0.3s ease;
}

.kokushi-header .logo img:hover {
	transform: scale(1.05);
}

.kokushi-header .certification {
	display: flex;
	align-items: center;
	gap: 15px;
}

.kokushi-header .certification img {
	height: 40px;
}

.kokushi-header .certification .travel-plans {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 5px;
	padding-right: 10px;
}

.kokushi-header .certification .travel-plans:hover {
	color: rgba(255, 255, 255, 0.8);
}

/* Navigation */
.kokushi-nav {
	background-color: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	z-index: 999;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	cursor: grab;
	display: block;
}

.kokushi-nav::-webkit-scrollbar {
	display: none;
}

.kokushi-nav .container {
	display: flex;
	justify-content: center;
	min-width: max-content;
	padding: 0;
}

.kokushi-nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

.kokushi-nav li {
	margin: 0;
	padding: 0;
}

.kokushi-nav a {
	display: block;
	color: var(--secondary-color);
	padding: 1rem 1.5rem;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	white-space: nowrap;
}

.kokushi-nav a:hover {
	color: var(--primary-color);
	background-color: rgba(74, 111, 165, 0.05);
}

.kokushi-nav a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 3px;
	bottom: 0;
	left: 50%;
	background-color: var(--primary-color);
	transition: all 0.3s ease;
}

.kokushi-nav a:hover::after {
	width: 100%;
	left: 0;
}

/* Active Navigation Item */
.kokushi-nav a.active {
	color: white;
	background-color: var(--primary-color);
	font-weight: 600;
}

.kokushi-nav a.active::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	bottom: 0;
	left: 0;
	background-color: #f39800;
}

.kokushi-nav a.active:hover {
	color: white;
	background-color: var(--primary-color);
}

.kokushi-nav a.active i {
	color: white;
}

/* Main Content */
.kokushi-main {
	padding: 2rem 0;
	background-color: #f8f9fa;
	margin-top: 150px;
}

.kokushi-main .container {
	background-color: white;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Section Styles */
.kokushi-section {
	margin-bottom: 3.5rem;
}

.kokushi-section-title {
	color: var(--secondary-color);
	font-size: 1.75rem;
	font-weight: 700;
	padding-bottom: 0.75rem;
	margin-bottom: 1.5rem;
	border-bottom: 2px solid var(--primary-color);
	position: relative;
}

.kokushi-section-title::after {
	content: '';
	position: absolute;
	width: 80px;
	height: 4px;
	background-color: var(--primary-color);
	bottom: -3px;
	left: 0;
}

/* Card Styles */
.kokushi-card {
	background-color: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-bottom: 1.5rem;
	border: 1px solid var(--border-color);
}

.kokushi-card:hover {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.kokushi-card-header {
	background-color: var(--primary-color);
	color: white;
	padding: 1rem 1.5rem;
	font-weight: 600;
}

.kokushi-card-body {
	padding: 1.5rem;
}

/* Table Styles */
.kokushi-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5rem;
}

.kokushi-table th,
.kokushi-table td {
	padding: 0.75rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
}

.kokushi-table th {
	background-color: var(--light-bg);
	font-weight: 600;
	color: var(--secondary-color);
}

.kokushi-table tr:hover {
	background-color: rgba(52, 152, 219, 0.05);
}

.kokushi-table a {
	color: var(--primary-color);
	text-decoration: none;
}

.kokushi-table a:hover {
	text-decoration: underline;
}

/* News Section */
.kokushi-news-item {
	padding: 1.5rem;
	border-bottom: 1px solid var(--border-color);
	transition: background-color 0.3s ease;
}

.kokushi-news-item:hover {
	background-color: rgba(74, 111, 165, 0.05);
}

.kokushi-news-date {
	font-size: 0.875rem;
	color: var(--light-text);
	margin-bottom: 0.5rem;
}

.kokushi-news-title {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.kokushi-news-content {
	color: var(--text-color);
}

/* Features Section */
.kokushi-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 0;
}

.kokushi-feature {
	background-color: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid var(--border-color);
}

.kokushi-feature:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.kokushi-feature-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.kokushi-feature-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--secondary-color);
}

.kokushi-feature-text {
	color: var(--text-color);
	line-height: 1.5;
}

/* PDF Links */
.kokushi-pdf-link {
	display: flex;
	align-items: center;
	color: var(--primary-color);
	text-decoration: none;
	padding: 0.5rem 0;
	transition: color 0.3s ease;
}

.kokushi-pdf-link:hover {
	color: var(--secondary-color);
}

.kokushi-pdf-link i {
	margin-right: 0.75rem;
	font-size: 1.5rem;
}

/* Footer - Stylish Modern Design */
.kokushi-footer {
	background: linear-gradient(135deg, #1a1f36 0%, #0c1121 100%);
	color: #ffffff;
	position: relative;
}

.kokushi-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg,
		transparent,
		#4a6fa5,
		#f39800,
		#4a6fa5,
		transparent
	);
}

/* Footer Top Section */
.kokushi-footer-top {
	padding: 4rem 0 3rem;
	position: relative;
}

.kokushi-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Brand Section */
.kokushi-footer-brand {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.kokushi-footer-logo {
	display: inline-block;
	margin-bottom: 0.5rem;
}

.kokushi-footer-logo img {
	height: 45px;
	transition: transform 0.3s ease;
}

.kokushi-footer-logo:hover img {
	transform: scale(1.05);
}

.kokushi-footer-description {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	font-size: 0.95rem;
	margin: 0;
}

/* Social Links */
.kokushi-footer-social {
	display: flex;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.kokushi-footer-social a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
	font-size: 1.1rem;
}

.kokushi-footer-social a:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(74, 111, 165, 0.3);
}

/* Footer Links Sections */
.kokushi-footer-links {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.kokushi-footer-title {
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 1rem 0;
	position: relative;
	padding-bottom: 0.75rem;
}

.kokushi-footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: linear-gradient(90deg, #f39800, transparent);
}

.kokushi-footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.kokushi-footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 0.95rem;
	position: relative;
	padding-left: 0;
	display: inline-block;
}

.kokushi-footer-links a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 1px;
	background: #f39800;
	transition: width 0.3s ease;
}

.kokushi-footer-links a:hover {
	color: #ffffff;
	padding-left: 5px;
}

.kokushi-footer-links a:hover::before {
	width: 100%;
}

/* Footer Contact Section */
.kokushi-footer-contact {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.kokushi-footer-contact-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.kokushi-footer-contact-item i {
	color: #f39800;
	font-size: 1.1rem;
	margin-top: 0.25rem;
	width: 20px;
}

.kokushi-footer-contact-item div {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.kokushi-footer-contact-item strong {
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 600;
}

.kokushi-footer-contact-item span,
.kokushi-footer-contact-item a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	text-decoration: none;
	transition: color 0.3s ease;
}

.kokushi-footer-contact-item a:hover {
	color: #ffffff;
	text-decoration: underline;
}

/* Footer Bottom */
.kokushi-footer-bottom {
	background: rgba(0, 0, 0, 0.3);
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kokushi-footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.kokushi-copyright-text {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

.kokushi-footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.kokushi-footer-bottom-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.kokushi-footer-bottom-links a:hover {
	color: #ffffff;
}

.kokushi-footer-bottom-links span {
	color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
	.kokushi-footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem;
	}

	.kokushi-footer-brand {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	.kokushi-footer-top {
		padding: 3rem 0 2rem;
	}

	.kokushi-footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.kokushi-footer-brand {
		grid-column: span 1;
		text-align: center;
		align-items: center;
	}

	.kokushi-footer-social {
		justify-content: center;
	}

	.kokushi-footer-title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.kokushi-footer-links {
		text-align: center;
	}

	.kokushi-footer-links ul {
		align-items: center;
	}

	.kokushi-footer-contact {
		align-items: center;
	}

	.kokushi-footer-contact-item {
		justify-content: center;
	}

	.kokushi-footer-bottom-content {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.row-block {
		display: block;
	}

	.row-block .col-md-4 {
		max-width: 100%;
		margin-bottom: 1rem;
	}
}

@media (max-width: 576px) {
	.kokushi-footer-top {
		padding: 2.5rem 1rem 2rem;
	}

	.kokushi-footer-grid {
		gap: 1.5rem;
	}

	.kokushi-footer-logo img {
		height: 35px;
	}

	.kokushi-footer-description {
		font-size: 0.9rem;
	}

	.kokushi-footer-social a {
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}

	.kokushi-footer-title {
		font-size: 1rem;
	}

	.kokushi-footer-links a,
	.kokushi-footer-contact-item span {
		font-size: 0.85rem;
	}

	.kokushi-footer-bottom {
		padding: 1.25rem 1rem;
	}

	.kokushi-copyright-text,
	.kokushi-footer-bottom-links a {
		font-size: 0.85rem;
	}
}

/* Utility Classes */
.kokushi-text-primary {
	color: var(--primary-color);
}
.kokushi-text-secondary {
	color: var(--secondary-color);
}
.kokushi-text-accent {
	color: var(--accent-color);
}
.kokushi-bg-primary {
	background-color: var(--primary-color);
	color: white;
}
.kokushi-bg-secondary {
	background-color: var(--secondary-color);
	color: white;
}
.kokushi-bg-light {
	background-color: var(--light-bg);
}
.mb-2 {
	margin-bottom: 0.5rem;
}
.mb-3 {
	margin-bottom: 0.75rem;
}
.mb-4 {
	margin-bottom: 1rem;
}
.mt-2 {
	margin-top: 0.5rem;
}
.mt-3 {
	margin-top: 0.75rem;
}
.mt-4 {
	margin-top: 1rem;
}
.mr-2 {
	margin-right: 0.5rem;
}
.ml-2 {
	margin-left: 0.5rem;
}
.text-center {
	text-align: center;
}

.kokushi-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.4rem 1.5rem;
	margin-top: 10px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	gap: 0.5rem;
}

.kokushi-btn-primary {
	background-color: var(--primary-color);
	color: white;
}

.kokushi-btn-primary:hover {
	background-color: #3a5a8c;
	transform: translateY(-2px);
}

.kokushi-btn-secondary {
	background-color: var(--secondary-color);
	color: white;
}

.kokushi-btn-secondary:hover {
	background-color: #34495e;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.kokushi-btn-outline {
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	background: transparent;
}

.kokushi-btn-outline:hover {
	background-color: var(--primary-color);
	color: white;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.kokushi-btn-lg {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

/* Badges */
.kokushi-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	text-align: center;
}

.kokushi-badge-primary {
	background-color: var(--primary-color);
	color: white;
}

.kokushi-badge-secondary {
	background-color: var(--secondary-color);
	color: white;
}

.kokushi-badge-info {
	background-color: #17a2b8;
	color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
	.kokushi-header {
		height: 60px;
		padding: 10px 0;
	}

	.kokushi-main {
		margin-top: 60px;
	}

	.kokushi-nav {
		top: 60px;
	}

	.kokushi-header .container {
		padding: 0 2%;
		margin: 0;
		max-width: 100%;
	}

	.kokushi-header .logo img {
		height: 40px;
	}

	.kokushi-header .certification {
		gap: 10px;
	}

	.kokushi-header .certification img {
		height: 30px;
	}

	.kokushi-header .certification .travel-plans span {
		display: none;
	}

	.kokushi-header .certification .travel-plans i {
		font-size: 1.2rem;
	}

	.kokushi-nav a {
		padding: 0.8rem 1rem;
		font-size: 0.9rem;
	}

	.kokushi-nav a i {
		margin-right: 0.3rem;
	}
}

@media (max-width: 576px) {
	.kokushi-header {
		height: 50px;
	}

	.kokushi-main {
		margin-top: 50px;
	}

	.kokushi-nav {
		top: 50px;
	}

	.kokushi-header .logo img {
		height: 35px;
	}

	.kokushi-header .certification img {
		height: 25px;
	}

	.kokushi-nav a {
		padding: 0.7rem 0.8rem;
		font-size: 0.85rem;
	}

	.kokushi-main .container {
		padding: 1rem;
	}

	.kokushi-section {
		margin-bottom: 2.5rem;
	}

	.kokushi-btn {
		width: 100%;
		margin-bottom: 0.5rem;
	}
}

/* Timeline Style */
.kokushi-timeline {
	position: relative;
	margin: 2rem 0;
	padding-left: 2rem;
}

.kokushi-timeline::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 7px;
	width: 2px;
	background-color: var(--primary-color);
	opacity: 0.3;
}

.kokushi-timeline-item {
	position: relative;
	margin-bottom: 2rem;
}

.kokushi-timeline-marker {
	position: absolute;
	left: -2.5rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(74, 111, 165, 0.3);
	z-index: 1;
	transition: all 0.3s ease;
}

.kokushi-timeline-marker i {
	color: white;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.kokushi-timeline-item:hover .kokushi-timeline-marker {
	transform: scale(1.1) translateY(-2px);
	box-shadow: 0 6px 16px rgba(74, 111, 165, 0.4);
}

.kokushi-timeline-item:hover .kokushi-timeline-marker i {
	transform: scale(1.1);
	animation: pulse 1.5s infinite;
}

.kokushi-timeline-content {
	background-color: white;
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.kokushi-timeline-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--secondary-color);
	margin-bottom: 0.5rem;
}

.kokushi-timeline-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.3s ease;
}

.kokushi-timeline-link:hover {
	color: var(--secondary-color);
	text-decoration: underline;
}

.kokushi-timeline-link i {
	font-size: 1.2em;
}

/* Download Page Styles */
.kokushi-download-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	flex-wrap: wrap;
}

.kokushi-download-buttons .kokushi-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.kokushi-download-item {
	padding: 1.5rem 0;
	border-bottom: 1px solid #e9ecef;
}

.kokushi-download-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.kokushi-download-info h3 {
	color: var(--secondary-color);
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
}

.kokushi-download-info h3 i {
	color: var(--primary-color);
	margin-right: 0.5rem;
}

.kokushi-download-info p {
	color: var(--light-text);
	margin-bottom: 1rem;
}

/* Form Styles */
.kokushi-form {
	max-width: 100%;
}

.kokushi-form-group {
	margin-bottom: 1.5rem;
}

.kokushi-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--secondary-color);
}

.kokushi-form-control {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: #fff;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.kokushi-form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.25);
	outline: none;
}

.kokushi-form-row {
	display: flex;
	margin: 0 -0.5rem;
	flex-wrap: wrap;
}

.kokushi-form-col {
	flex: 1;
	min-width: 250px;
	padding: 0 0.5rem;
}

.kokushi-required {
	color: var(--accent-color);
	font-size: 0.75rem;
	font-weight: 600;
	margin-left: 0.25rem;
}

.kokushi-form-actions {
	text-align: center;
	margin-top: 2rem;
}

.kokushi-form-group.has-error .kokushi-form-control {
	border-color: var(--accent-color);
}

.kokushi-form-group.has-error .kokushi-form-label {
	color: var(--accent-color);
}

.kokushi-privacy-policy {
	margin: 2rem 0;
}

.kokushi-privacy-box {
	padding: 1rem;
	background-color: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.kokushi-consent {
	display: flex;
	align-items: center;
}

.kokushi-consent input {
	margin-right: 0.5rem;
}

/* FAQ Styles */
.kokushi-faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.kokushi-faq-item {
	margin-bottom: 2rem;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.kokushi-faq-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kokushi-faq-question {
	background-color: #f8f9fa;
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.kokushi-faq-question i {
	color: #007bff;
	font-size: 1.5rem;
}

.kokushi-faq-question h3 {
	margin: 0;
	font-size: 1.2rem;
	color: #333;
}

.kokushi-faq-answer {
	padding: 1.5rem;
	background-color: white;
}

.kokushi-faq-answer p {
	margin-bottom: 1rem;
	line-height: 1.6;
}

.kokushi-faq-answer ul,
.kokushi-faq-answer ol {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.kokushi-faq-answer li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.kokushi-faq-answer a {
	color: #007bff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.kokushi-faq-answer a:hover {
	color: #0056b3;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.kokushi-faq-question {
		padding: 1rem;
	}

	.kokushi-faq-answer {
		padding: 1rem;
	}

	.kokushi-faq-question h3 {
		font-size: 1.1rem;
	}

	.kokushi-timeline-marker {
		width: 32px;
		height: 32px;
		left: -2rem;
	}

	.kokushi-timeline-marker i {
		font-size: 1rem;
	}
}

/* Contact Info */
.kokushi-contact-info {
	margin-bottom: 1.5rem;
}

.kokushi-contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.75rem;
}

.kokushi-contact-item i {
	width: 1.5rem;
	margin-right: 0.75rem;
	color: var(--primary-color);
}

.kokushi-privacy-title {
	font-size: 1.4rem;
}

/* List Styles */
.kokushi-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
}

.kokushi-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
}

.kokushi-list li::before {
	content: '';
	position: absolute;
	top: 0.5rem;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--primary-color);
}

.kokushi-numbered-list {
	padding-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.kokushi-numbered-list li {
	margin-bottom: 0.75rem;
}

/* Thank You Page */
.kokushi-thanks {
	text-align: center;
	padding: 3rem 1rem;
}

.kokushi-thanks-icon {
	font-size: 4rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	animation: pulse 2s infinite;
}

.kokushi-thanks-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 1rem;
}

.kokushi-thanks-message {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.kokushi-thanks-submessage {
	color: var(--light-text);
	margin-bottom: 2rem;
}

.kokushi-note {
	background-color: #fff3cd;
	border-left: 4px solid #ffc107;
	padding: 1rem;
	border-radius: 4px;
	margin: 2rem auto;
	max-width: 100%;
	text-align: left;
}

.kokushi-actions {
	margin-top: 2rem;
}

.kokushi-actions i {
	color: #fff;
	margin: 0;
}

.kokushi-small-text {
	font-size: 0.875rem;
	color: var(--light-text);
}

/* Scroll to Top Button */
.kokushi-scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.kokushi-scroll-top.visible {
	opacity: 1;
	visibility: visible;
}

.kokushi-scroll-top:hover {
	background-color: var(--secondary-color);
}

/* Mobile Menu */
.kokushi-mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 1rem;
}

.kokushi-mobile-menu-toggle span {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #fff;
	margin: 5px 0;
	transition: all 0.3s ease;
}

/* Banner Recommend */
.kokushi-banner-recommend {
	width: 100%;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url('/kokushi-pack/assets/images/common/cp-backimg.jpg') center/cover no-repeat;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	margin: 140px auto -130px;
	padding: 10px;
	position: relative;
}

.kokushi-banner-recommend__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.kokushi-banner-recommend__content {
	display: flex;
	align-items: center;
	gap: 32px;
	width: 100%;
	justify-content: center;
}

.kokushi-banner-recommend__image {
	height: 140px;
	width: auto;
	object-fit: contain;
}

.kokushi-banner-recommend__text {
	color: #fff;
}

.kokushi-banner-recommend__title {
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.2;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.kokushi-banner-recommend__subtitle {
	font-size: 1.1rem;
	margin-top: 8px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.kokushi-banner-recommend__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.kokushi-banner-recommend__button {
	display: inline-block;
	background: #fff;
	color: #f38d22;
	font-weight: bold;
	font-size: 1.1rem;
	padding: 12px 28px;
	border-radius: 32px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.10);
	transition: all 0.3s ease;
}

.kokushi-banner-recommend__button:hover {
	background: #f38d22;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.kokushi-banner-recommend__button i {
	margin-right: 8px;
}

/* Hero Slider */
.kokushi-hero-slider-container {
	width: 100%;
	height: 400px;
	padding-top: 140px;
}

.kokushi-hero-slider {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
	margin-bottom: 2rem;
}

.kokushi-hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	z-index: 1;
}

.kokushi-hero-slide.active {
	opacity: 1;
	z-index: 2;
}

.kokushi-hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kokushi-hero-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	padding: 2rem;
	background: rgba(0, 0, 0, 0.1);
	z-index: 3;
}

.kokushi-hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.kokushi-hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.kokushi-hero-buttons {
	display: flex;
	gap: 1rem;
}

.kokushi-slider-controls {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 2;
}

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

.kokushi-slider-dot.active {
	background-color: white;
}

.kokushi-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	cursor: pointer;
	z-index: 2;
	transition: background-color 0.3s ease;
}

.kokushi-slider-arrow:hover {
	background-color: rgba(0, 0, 0, 0.5);
}

.kokushi-slider-prev {
	left: 20px;
}

.kokushi-slider-next {
	right: 20px;
}

@media (max-width: 768px) {
	.kokushi-hero-slider {
		height: 300px;
	}

	.kokushi-hero-title {
		font-size: 2rem;
	}

	.kokushi-hero-subtitle {
		font-size: 1.2rem;
	}

	.kokushi-hero-buttons {
		flex-direction: column;
	}
}

/* Animations */
@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.kokushi-fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.kokushi-fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
	.kokushi-hero-slider-container {
		padding-top: 105px;
	}

	.kokushi-nav .container {
		position: relative;
	}

	.kokushi-timeline {
		padding-left: 1.5rem;
	}

	.kokushi-timeline-marker {
		left: -1.5rem;
	}

	.kokushi-form-row {
		flex-direction: column;
	}

	.kokushi-form-col {
		margin-bottom: 1rem;
	}

	.kokushi-news-item {
		padding: 0.75rem 0;
	}

	.kokushi-news-date {
		font-size: 0.75rem;
	}

	.kokushi-news-title {
		font-size: 0.9375rem;
	}

	.kokushi-section-title {
		font-size: 1.5rem;
	}

	.kokushi-feature {
		padding: 1rem;
	}

	.kokushi-card-header {
		padding: 0.75rem 1rem;
	}

	.kokushi-card-body {
		padding: 1rem;
	}
}

@media (max-width: 576px) {
	.kokushi-hero-slider-container {
		padding-top: 90px;
	}

	.kokushi-hero-slider {
		margin: 0;
	}

	.kokushi-hero-content {
		padding: 2rem 5rem;
	}

	.kokushi-main {
		margin-top: 90px;
		padding: 0;
	}

	.index-main {
		margin-top: 0;
		padding: 0;
	}

	.kokushi-thanks-title {
		font-size: 1.5rem;
	}

	.kokushi-thanks-message {
		font-size: 1rem;
	}

	.kokushi-thanks-icon {
		font-size: 3rem;
	}

	.kokushi-timeline-content {
		padding: 1rem;
	}

	.kokushi-form-actions .kokushi-btn {
		width: 100%;
	}
}

/* Contact Grid Styles */
.kokushi-contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.kokushi-contact-card {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.kokushi-contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--primary-color),
		var(--secondary-color)
	);
}

.kokushi-contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.kokushi-contact-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	box-shadow: 0 5px 15px rgba(74, 111, 165, 0.3);
}

.kokushi-contact-icon i {
	font-size: 1.8rem;
	color: white;
}

.kokushi-contact-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.kokushi-contact-content h3 {
	color: var(--secondary-color);
	font-size: 1.3rem;
	margin-bottom: 1.2rem;
	font-weight: 600;
}

.kokushi-contact-number,
.kokushi-contact-email {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	text-decoration: none;
	transition: color 0.3s ease;
}

.kokushi-contact-number:hover,
.kokushi-contact-email:hover {
	color: var(--secondary-color);
}

.kokushi-contact-time {
	color: var(--light-text);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
	padding: 0.5rem 1rem;
	background: rgba(74, 111, 165, 0.05);
	border-radius: 20px;
}

.kokushi-btn-block {
	width: 100%;
	margin-top: auto;
	padding: 0.8rem 1.5rem;
	font-size: 1.1rem;
	border-radius: 8px;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	color: white;
	border: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.kokushi-btn-block:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(74, 111, 165, 0.3);
	color: white;
}

@media (max-width: 768px) {
	.kokushi-contact-grid {
		grid-template-columns: 1fr;
	}

	.kokushi-contact-card {
		padding: 2rem;
	}

	.kokushi-contact-number,
	.kokushi-contact-email {
		font-size: 1.4rem;
	}
}

/* Modern Button Styles */
.kokushi-btn-modern {
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	color: white;
	border: none;
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.kokushi-btn-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.1),
		rgba(255, 255, 255, 0)
	);
	transform: translateX(-100%);
	transition: transform 0.3s ease;
}

.kokushi-btn-modern:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
	color: white;
}

.kokushi-btn-modern:hover::before {
	transform: translateX(0);
}

.kokushi-btn-modern i {
	font-size: 1.1em;
	transition: transform 0.3s ease;
}

.kokushi-btn-modern:hover i {
	transform: scale(1.1);
}

/* Main Actions Container */
.kokushi-main-actions {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	justify-content: center;
}

@media (max-width: 768px) {
	.kokushi-main-actions {
		flex-direction: column;
		align-items: center;
	}

	.kokushi-btn-modern {
		width: 100%;
		justify-content: center;
	}
}

/* 関係先・取引先セクション */
.kokushi-partners {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 2rem;
	width: 100%;
}

.kokushi-partner-card {
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	position: relative;
	overflow: hidden;
	width: 100%;
}

.kokushi-partner-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--primary-color),
		var(--secondary-color)
	);
}

.kokushi-partner-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.kokushi-partner-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	width: 100%;
}

.kokushi-partner-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--secondary-color)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 5px 15px rgba(74, 111, 165, 0.3);
}

.kokushi-partner-icon i {
	font-size: 1.5rem;
	color: white;
}

.kokushi-partner-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}

.kokushi-partner-content h3 {
	color: var(--secondary-color);
	font-size: 1.2rem;
	margin-bottom: 1.2rem;
	font-weight: 600;
}

.kokushi-partner-list {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

.kokushi-partner-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	padding: 0.5rem 0;
	color: var(--text-color);
	font-size: 0.95rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.kokushi-partner-list li:last-child {
	border-bottom: none;
}

.kokushi-partner-list li i {
	color: var(--primary-color);
	font-size: 0.9rem;
	margin-top: 0.25rem;
}

.kokushi-partner-list .kokushi-small-text {
	font-size: 0.8rem;
	color: var(--light-text);
	margin-left: 1.5rem;
	margin-top: 0.25rem;
}

@media (max-width: 576px) {
	.kokushi-partners {
		gap: 1.5rem;
	}

	.kokushi-partner-card {
		padding: 1.5rem;
	}

	.kokushi-partner-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.kokushi-partner-icon {
		width: 50px;
		height: 50px;
	}

	.kokushi-partner-icon i {
		font-size: 1.2rem;
	}

	.kokushi-partner-content h3 {
		font-size: 1.1rem;
	}

	.kokushi-partner-list li {
		font-size: 0.9rem;
	}
}

/* 確認画面のスタイル */
.kokushi-confirm-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.kokushi-confirm-item {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.kokushi-confirm-item:hover {
    background: #f0f2f5;
    transform: translateY(-2px);
}

.kokushi-confirm-item label {
    display: block;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.kokushi-confirm-item p {
    margin: 0;
    color: #212529;
    line-height: 1.6;
}

.kokushi-confirm-message {
    grid-column: 1 / -1;
}

.kokushi-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* 完了画面のスタイル */
.kokushi-thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.kokushi-thanks-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

.kokushi-thanks-subtitle {
    font-size: 1.25rem;
    color: #495057;
    margin-bottom: 1rem;
    text-align: left;
}

.kokushi-thanks-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.kokushi-thanks-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.kokushi-thanks-list li i {
    color: #28a745;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.kokushi-thanks-contact {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.kokushi-contact-info {
    display: grid;
    gap: 0.75rem;
    text-align: left;
}

.kokushi-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.kokushi-contact-info i {
    color: #28a745;
    width: 1.25rem;
}

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

/* Recommend Page Styles */
.kokushi-recommend-plan {
	margin-bottom: 3rem;
}

/* 特別プラン用のカード（ハイライト） */
.kokushi-card-highlight {
	border: 2px solid #f39800;
	box-shadow: 0 4px 15px rgba(243, 152, 0, 0.15);
}

.kokushi-card-highlight .kokushi-card-header-special {
	background: linear-gradient(135deg, #f39800, #ff9500);
	color: white;
	padding: 1.5rem;
	position: relative;
}

.kokushi-card-highlight .kokushi-badge-limited {
	display: inline-block;
	background: #ff3333;
	color: white;
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	animation: pulse 2s infinite;
}

.kokushi-card-highlight .kokushi-plan-title {
	font-size: 1.8rem;
	margin: 0.5rem 0 0 0;
	font-weight: bold;
}

/* パルスアニメーション */
@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

/* プラン詳細 */
.kokushi-plan-details {
	padding: 1rem;
}

.kokushi-plan-details .kokushi-plan-date {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.1rem;
	color: #333;
	margin-bottom: 1.5rem;
	padding: 0.8rem;
	background: #f8f8f8;
	border-radius: 5px;
}

.kokushi-plan-details .kokushi-plan-date i {
	color: #f39800;
}

.kokushi-plan-details .kokushi-plan-hotel {
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: #fff;
	border-left: 4px solid #0066cc;
}

.kokushi-plan-details .kokushi-plan-hotel-name {
	font-size: 1.3rem;
	color: #0066cc;
	margin-bottom: 0.5rem;
}

.kokushi-plan-details .kokushi-plan-hotel-name i {
	margin-right: 0.5rem;
}

.kokushi-plan-details .kokushi-plan-access {
	color: #666;
	margin: 0;
}

.kokushi-plan-details .kokushi-plan-access i {
	color: #999;
	margin-right: 0.5rem;
}

.kokushi-plan-details .kokushi-plan-features {
	background: #f0f8ff;
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.kokushi-plan-details .kokushi-features-title {
	color: #0066cc;
	font-size: 1.2rem;
	margin-bottom: 1rem;
	border-bottom: 2px solid #0066cc;
	padding-bottom: 0.5rem;
}

.kokushi-plan-details .kokushi-features-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.kokushi-plan-details .kokushi-features-list li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.5rem 0;
	font-size: 1.1rem;
}

.kokushi-plan-details .kokushi-features-list li i {
	color: #28a745;
	font-size: 1.2rem;
}

.kokushi-plan-details .kokushi-plan-cta {
	text-align: center;
	padding: 1.5rem;
	background: #fff8e6;
	border-radius: 8px;
}

.kokushi-plan-details .kokushi-cta-text {
	font-size: 1.3rem;
	color: #f39800;
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.kokushi-plan-details .kokushi-cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.kokushi-plan-details .kokushi-cta-buttons .kokushi-btn-lg {
	padding: 0.8rem 2rem;
	font-size: 1rem;
}

/* おすすめがない場合のスタイル */
.kokushi-no-recommend .kokushi-icon-large {
	font-size: 4rem;
	color: #999;
	margin-bottom: 1rem;
}

.kokushi-no-recommend .kokushi-no-recommend-title {
	color: #666;
	font-size: 1.5rem;
	margin: 1rem 0;
}

.kokushi-no-recommend .kokushi-no-recommend-text {
	color: #666;
	margin: 1rem 0;
	line-height: 1.8;
}

.kokushi-no-recommend .kokushi-no-recommend-buttons {
	margin-top: 2rem;
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* その他の情報セクション */
.kokushi-info-links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}

.kokushi-info-links .kokushi-btn {
	flex: 1 1 200px;
	text-align: center;
}

/* お問い合わせセクション */
.kokushi-card-contact {
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.kokushi-card-contact .kokushi-contact-title {
	color: #333;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.kokushi-card-contact .kokushi-phone-number {
	font-size: 2rem;
	color: #f39800;
	font-weight: bold;
	margin: 0.5rem 0;
}

.kokushi-card-contact .kokushi-business-hours {
	color: #666;
	margin-bottom: 1rem;
}

/* ユーティリティクラス */
.kokushi-mt-3 { margin-top: 1rem !important; }
.kokushi-mt-5 { margin-top: 3rem !important; }
.kokushi-mb-4 { margin-bottom: 1.5rem !important; }
.kokushi-text-center { text-align: center !important; }

/* セクションのサブタイトル */
.kokushi-section-subtitle {
	font-size: 1.5rem;
	color: #333;
	border-bottom: 3px solid #f39800;
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
	display: inline-block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.kokushi-card-highlight .kokushi-plan-title {
		font-size: 1.4rem;
	}

	.kokushi-card-highlight .kokushi-badge-limited {
		font-size: 0.85rem;
	}

	.kokushi-plan-details .kokushi-plan-date {
		font-size: 1rem;
	}

	.kokushi-plan-details .kokushi-plan-hotel-name {
		font-size: 1.1rem;
	}

	.kokushi-plan-details .kokushi-plan-features {
		padding: 1rem;
	}

	.kokushi-plan-details .kokushi-features-list li {
		font-size: 1rem;
	}

	.kokushi-plan-details .kokushi-cta-text {
		font-size: 1.1rem;
	}

	.kokushi-plan-details .kokushi-cta-buttons {
		flex-direction: column;
	}

	.kokushi-plan-details .kokushi-cta-buttons .kokushi-btn-lg {
		width: 100%;
	}

	.kokushi-card-contact .kokushi-phone-number {
		font-size: 1.5rem;
	}

	.kokushi-info-links {
		flex-direction: column;
	}

	.kokushi-info-links .kokushi-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.kokushi-card-header-special {
		padding: 1rem;
	}

	.kokushi-card-highlight .kokushi-plan-title {
		font-size: 1.2rem !important;
	}

	.kokushi-plan-details {
		padding: 0.5rem;
	}

	.kokushi-plan-details .kokushi-plan-features {
		padding: 0.8rem;
	}

	.kokushi-plan-details .kokushi-features-title {
		font-size: 1.1rem;
	}

	.kokushi-plan-details .kokushi-plan-cta {
		padding: 1rem;
	}
}
