/* Plan Section Spacing */
.plan-section {
	padding: 3rem 0;
}
.plan-section + .plan-section {
	padding-top: 2rem;
}

/* Section Title — Refined */
.plan-section__title {
	display: block;
	background: linear-gradient(135deg, #2B7BDB, #3B8EDE);
	color: #FFFFFF;
	font-size: 1.15rem;
	font-weight: 600;
	padding: 0.85rem 1.75rem;
	border-radius: 10px;
	margin-bottom: 2rem;
	font-family: var(--font-en-sans), var(--font-ja);
	letter-spacing: 0.02em;
	box-shadow: 0 2px 8px rgba(43, 123, 219, 0.15);
}

/* Recommended Section */
.plan-recommend-card {
	background: linear-gradient(135deg, #E85D4E, #F4A261);
	color: #FFFFFF;
	padding: 2rem;
	border-radius: 14px;
	margin-bottom: 2.5rem;
	box-shadow: 0 4px 12px rgba(232, 93, 78, 0.2);
}
.plan-recommend-card__title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	color: #FFFFFF;
}
.plan-recommend-card__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.plan-recommend-card__list li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
	color: #FFFFFF;
	line-height: 1.6;
}
.plan-recommend-card__list li .check-icon {
	position: absolute;
	left: 0;
	top: 0.15rem;
	width: 18px;
	height: 18px;
	color: #FFFFFF;
}

/* Info Bar */
.plan-info-bar {
	background: #FFFFFF;
	border: 1px solid #E5E5E5;
	border-radius: 14px;
	padding: 1.25rem 1.75rem;
	margin-bottom: 2.5rem;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.plan-info-bar__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.plan-info-bar__item {
	text-align: center;
	padding: 0.75rem;
}
.plan-info-bar__label {
	display: block;
	font-size: 0.75rem;
	color: #8C8C8C;
	margin-bottom: 0.35rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.plan-info-bar__value {
	display: block;
	font-size: 1.05rem;
	font-weight: 600;
	color: #2D2D2D;
}

/* Highlights */
.plan-highlights-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}
.plan-highlight-card {
	background: #FFFFFF;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	border: 1px solid #E5E5E5;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-highlight-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.plan-highlight-card__image-wrapper {
	aspect-ratio: 16/10;
	overflow: hidden;
}
.plan-highlight-card__image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.plan-highlight-card:hover .plan-highlight-card__image-wrapper img {
	transform: scale(1.05);
}
.plan-highlight-card__caption {
	padding: 0.85rem 1.25rem;
	font-size: 0.9rem;
	color: #2D2D2D;
	background: #FFFFFF;
	font-weight: 500;
}

/* Strengths */
.plan-strengths-section {
	background: #FFFFFF;
	padding: 2rem;
	border-radius: 14px;
	border: 1px solid #E5E5E5;
	margin-bottom: 2.5rem;
}
.plan-strengths-section__title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #2D2D2D;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #E85D4E;
}
.plan-strengths-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}
.plan-strength-card {
	padding: 1.25rem;
	background: #FAFAFA;
	border-radius: 10px;
	border: 1px solid #E5E5E5;
}
.plan-strength-card__num {
	font-size: 1.5rem;
	font-weight: 700;
	color: #E85D4E;
	margin-bottom: 0.5rem;
}
.plan-strength-card__title {
	font-size: 1rem;
	font-weight: 600;
	color: #2D2D2D;
	margin-bottom: 0.5rem;
}
.plan-strength-card__desc {
	font-size: 0.9rem;
	color: #666666;
	line-height: 1.7;
}

/* Pricing Table */
.plan-pricing-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 2rem;
	background: #FFFFFF;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.plan-pricing-table th,
.plan-pricing-table td {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid #E5E5E5;
}
.plan-pricing-table th {
	background: #FAFAFA;
	font-weight: 600;
	color: #2D2D2D;
	text-align: left;
	font-size: 0.95rem;
}
.plan-pricing-table tr:last-child td {
	border-bottom: none;
}
.plan-pricing-table__price .original {
	text-decoration: line-through;
	color: #999999;
	font-size: 0.95rem;
	margin-right: 0.75rem;
}
.plan-pricing-table__price .current {
	color: #E85D4E;
	font-weight: 700;
	font-size: 1.15rem;
}

/* Details Meta — Strong override */
.plan-details-meta .plan-details-meta__group {
	padding: 2.5rem;
	background: rgba(255,255,255,0.9);
	border-radius: 14px;
	border-left: 4px solid #2B7BDB;
	margin-bottom: 1.5rem;
}
.plan-details-meta .plan-details-meta__group h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #2D2D2D;
	margin-bottom: 1.5rem;
}
.plan-details-meta .plan-details-meta__group p {
	font-size: 0.95rem;
	color: #666666;
	line-height: 2;
}

/* Access */
.plan-access-layout {
	background: #FFFFFF;
	padding: 2rem;
	border-radius: 14px;
	border: 1px solid #E5E5E5;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.plan-access-info__name {
	font-size: 1.15rem;
	font-weight: 600;
	color: #2D2D2D;
	margin-bottom: 0.75rem;
}
.plan-access-info__address {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #666666;
	font-size: 0.95rem;
	margin-bottom: 0.75rem;
}
.plan-access-info__note {
	background: #FFF8F0;
	padding: 1.25rem;
	border-radius: 10px;
	border-left: 3px solid #E85D4E;
	font-size: 0.9rem;
	color: #666666;
	line-height: 1.7;
}
.plan-access-map {
	margin-top: 1.25rem;
	border-radius: 14px;
	overflow: hidden;
}

/* Schedule Timeline */
.plan-timeline {
	position: relative;
	padding-left: 1.75rem;
}
.plan-timeline::before {
	content: '';
	position: absolute;
	left: 0.5rem;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #E5E5E5;
}
.plan-timeline__item {
	position: relative;
	padding-bottom: 2rem;
}
.plan-timeline__item::after {
	content: '';
	position: absolute;
	left: -1.25rem;
	top: 0.25rem;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #2B7BDB;
	border: 2px solid #FFFFFF;
	box-shadow: 0 0 0 2px #2B7BDB;
}
.plan-timeline__time {
	font-size: 0.9rem;
	font-weight: 600;
	color: #2B7BDB;
	margin-bottom: 0.35rem;
}
.plan-timeline__title {
	font-size: 1.05rem;
	font-weight: 600;
	color: #2D2D2D;
	margin-bottom: 0.35rem;
}
.plan-timeline__desc {
	font-size: 0.9rem;
	color: #666666;
	line-height: 1.7;
}

/* Accordion */
.plan-accordion__item {
	border-bottom: 1px solid #E5E5E5;
}
.plan-accordion__trigger {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 1.25rem 1.5rem;
	font-size: 1rem;
	font-weight: 500;
	color: #2D2D2D;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.plan-accordion__trigger span {
	flex: 1;
	padding-right: 1rem;
}
.plan-accordion__icon {
	width: 20px;
	height: 20px;
	color: #8C8C8C;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}
.plan-accordion__trigger[aria-expanded="true"] .plan-accordion__icon {
	transform: rotate(180deg);
}
.plan-accordion__content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.plan-accordion__content-inner {
	padding: 0 1.5rem 1.25rem;
	font-size: 0.9rem;
	color: #666666;
	line-height: 1.8;
}

/* CTA Section */
.plan-cta {
	background: linear-gradient(135deg, #2B7BDB, #3B8EDE);
	padding: 4rem 0;
	margin-top: 2.5rem;
	border-radius: 14px;
}
.plan-cta__title {
	font-size: 2rem;
	color: #FFFFFF;
	margin-bottom: 0.75rem;
}
.plan-cta__lead {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
	.plan-info-bar__grid {
		grid-template-columns: 1fr;
	}
	.plan-highlights-grid {
		grid-template-columns: 1fr;
	}
	.plan-strengths-grid {
		grid-template-columns: 1fr;
	}
	.plan-section__title {
		font-size: 1rem;
		padding: 0.75rem 1.25rem;
	}
	.plan-section {
		padding: 2rem 0;
	}
	.plan-recommend-card {
		padding: 1.5rem;
	}
	.plan-strengths-section {
		padding: 1.5rem;
	}
	.plan-access-layout {
		padding: 1.5rem;
	}
	.plan-cta {
		padding: 3rem 0;
	}
	.plan-cta__title {
		font-size: 1.5rem;
	}
}