/*
Theme Name: マミーズサービス用テーマ
Author: Mei Corporation LLC
*/

:root {
	--bg: #FBF9F0;
	--text: #06060b;
	--muted: rgba(6,6,11,.65);
	--border: rgba(6,6,11,.12);

	--primary: #71ba30;

	/* 区分カラー（背景が明るい前提で淡色） */
	--baseFill: rgba(113,186,48,.12);
	--extraFill: rgba(255, 193, 7, .28);
	--nightFill: rgba(244, 67, 54, .26);

	--radius: 14px;
}

* {
	box-sizing: border-box;
}

/**
 * 16.0 - Price Section
 */

.pageHeader {
	&.pageHeader-price {
		> .pageHeader_ja::before {
			content: "";
			display: inline-block;
			width: 59px;
			height: 58px;
			margin: 0 15px 0 0;
			background: url(/common/img/price/page_header_icon_06.png) no-repeat;
			vertical-align: middle;

			@media (max-width: 768px) {
				width: 48px;
				height: 48px;
				background-size: contain;
			}
		}
	}
}

/* 共通セクションスタイル */
.priceSection {
	padding: 60px 20px;

	@media (max-width: 768px) {
		padding: 30px 16px;
	}
}

.priceSection_inner {
	max-width: 900px;
	margin: 0 auto;
}

/* 共通サブタイトルスタイル */
.sectionSubtitle {
	font-size: 24px;
	font-weight: bold;

	@media (max-width: 768px) {
		font-size: 18px;
	}
}

.priceIntro_title {
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 32px;
	letter-spacing: 0.05em;

	@media (max-width: 768px) {
		font-size: 28px;
		margin-bottom: 24px;
	}
}

.priceIntro_subtitle {
	margin-bottom: 24px;
	letter-spacing: 0.02em;

	@media (max-width: 768px) {
		margin-bottom: 20px;
	}
}

.priceIntro_text {
	margin-bottom: 40px;

	& p {
		font-size: 16px;
		line-height: 2;
		margin-bottom: 0;

		@media (max-width: 768px) {
			font-size: 15px;
		}
	}
}

.priceIntro_buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.priceIntro_btn,
.priceCta_btn {
	box-sizing: border-box;
	position: relative;
	display: inline-block;
	width: 420px;
	height: 66px;
	padding: 0 40px 0 30px;
	background: url(../../../common/img/bt_bg_green.png) no-repeat center center;
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.6;
	text-align: center;

	&::before {
		content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    vertical-align: middle;
	}

	&::after {
    content: "\f105";
    font-family: fontawesome;
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    margin-top: -11px;
    font-size: 22px;
    line-height: 1;
	}

	@media (max-width: 768px) {
		width: 100%;
		background-size: contain;
	}
}


/**
 * 17.0 - Diagnosis Cards Section
 */

.diagnosisCards_title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 40px;
	letter-spacing: 0.05em;

	@media (max-width: 768px) {
		font-size: 24px;
		margin-bottom: 32px;
	}
}

.diagnosisCards_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-bottom: 40px;

	@media (max-width: 768px) {
		grid-template-columns: 1fr;
		gap: 60px;
		margin-bottom: 60px;
	}
}

.diagnosisCards_fullWidth {
	display: flex;
	flex-direction: column;
	gap: 40px;

	@media (max-width: 768px) {
		gap: 32px;
	}
}

.diagnosisCard {
	background-color: transparent;
}

.diagnosisCard_title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 16px;

	@media (max-width: 768px) {
		font-size: 16px;
		margin-bottom: 12px;
	}
}

.diagnosisCard_image {
	width: 100%;
	aspect-ratio: 16 / 9;
	background-color: #ccc;
	margin-bottom: 16px;
	border-radius: 16px;
	overflow: hidden;

	& img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.diagnosisCard_description {
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 16px;

	@media (max-width: 768px) {
		font-size: 13px;
	}
}

.diagnosisCard_tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

.diagnosisCard_tag {
	display: inline-block;
	padding: 4px 12px;
	font-size: 14px;
	border: 1px solid #71ba30;
	border-radius: 20px;
	color: #71ba30;
	background-color: #ECF5D6;
}

.diagnosisCard_price {
	font-size: 20px;
	margin-bottom: 8px;

	@media (max-width: 768px) {
		font-size: 18px;
	}
}

.diagnosisCard_note {
	font-size: 12px;
	margin-bottom: 16px;
}

.arrowLink {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	color: #71ba30;

	span {
		text-decoration: underline;

		&:hover {
			text-decoration: none;
		}
	}

	&::before {
		content: "\f105";
		font-family: fontawesome;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 16px;
		height: 16px;
		font-size: 15px;
		line-height: 1;
		color: #fff;
		background-color: #71ba30;
		border-radius: 50%;
	}

	&.arrowLink--down {
		&::before {
			content: "\f107";
		}
	}
	
	@media (max-width: 768px) {
		font-size: 14px;
	}
}


.bulletList {
	margin-bottom: 12px;

	& li {
		display: flex;
		align-items: center;
		+ li {
			margin-top: 4px;
		}
		&::before {
			content: "●";
			display: inline-block;
			margin: 0 10px 0 0;
			color: #71b830;
			line-height: 1.8;
			vertical-align: middle;
		}
	}

	@media (max-width: 768px) {
		font-size: 13px;
	}
}


/**
 * 18.0 - Plan Compare Section
 */

.planCompare_title {
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
	text-decoration: underline;
	text-underline-offset: 8px;

	@media (max-width: 768px) {
		font-size: 22px;
		margin-bottom: 32px;
	}
}

.planCompare_table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 32px;
}

.planCompare_th {
	padding: 16px 12px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #ccc;

	&.planCompare_th--label {
		text-align: left;
		width: 20%;
	}

	@media (max-width: 768px) {
		font-size: 14px;
		padding: 12px 8px;
	}
}

.planCompare_td {
	padding: 20px 12px;
	font-size: 15px;
	text-align: center;
	border-bottom: 1px solid #ddd;

	&.planCompare_td--label {
		text-align: left;
		font-weight: normal;
		color: #666;
	}

	&.planCompare_td--highlight {
		color: #71ba30;
		font-weight: bold;
	}

	@media (max-width: 768px) {
		font-size: 13px;
		padding: 16px 8px;
	}
}

.planCompare_note {
	text-align: center;
	font-size: 16px;
	color: #333;

	@media (max-width: 768px) {
		font-size: 14px;
	}
}


/**
 * 19.0 - Price Calculation Section
 */

.priceCalc_title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 16px;

	@media (max-width: 768px) {
		font-size: 22px;
	}
}

.priceCalc_description {
	margin-bottom: 32px;

	@media (max-width: 768px) {
		font-size: 14px;
		margin-bottom: 24px;
	}
}

.priceCalc_formula {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 24px;

	@media (max-width: 768px) {
		flex-direction: column;
		gap: 12px;
	}
}

.priceCalc_item {
	text-align: center;
	padding: 16px 24px;
	background-color: #fff;
	border-radius: 8px;
	min-width: 160px;

	@media (max-width: 768px) {
		padding: 12px 16px;
	}
}

.priceCalc_item_label {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 4px;

	@media (max-width: 768px) {
		font-size: 15px;
	}
}

.priceCalc_item_sub {
	font-size: 13px;
	color: #666;
}

.priceCalc_operator {
	font-size: 24px;
	font-weight: bold;
	color: #333;

	@media (max-width: 768px) {
		font-size: 20px;
	}
}

.priceCalc_note {
	font-size: 14px;

	@media (max-width: 768px) {
		font-size: 12px;
	}
}


/**
 * 20.0 - Surcharge Section
 */

.surcharge_title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 16px;

	@media (max-width: 768px) {
		font-size: 22px;
	}
}

.surcharge_description {
	margin-bottom: 32px;

	@media (max-width: 768px) {
		font-size: 14px;
		margin-bottom: 24px;
	}
}

.surcharge_chart {
	text-align: center;
}

.surcharge_chartCaption {
	text-align: center;
	font-size: 14px;
	margin-bottom: 24px;

	@media (max-width: 768px) {
		font-size: 12px;
	}
}

.surcharge_notes {
	& li {
		font-size: 12px;

		+ li {
			margin-top: 4px;
		}
	}
}

/* タイムラインチャート */
.timelineChart {
	max-width: 520px;
	margin: 0 auto;
}

.timelineChart_title {
	font-size: 18px;
	margin: 0 0 6px;
}

.timelineChart_subtitle {
	margin: 0 0 14px;
	font-size: 13px;
	color: var(--muted);
	line-height: 1.4;
}

/* タイムライン */
.timelineChart_timeline {
	position: relative;
	height: 34px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	background: rgba(0,0,0,.04);
}

/* セグメント（時間割合で配置） */
.timelineChart_segment {
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc((var(--start) / 24) * 100%);
	width: calc(((var(--end) - var(--start)) / 24) * 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 6px;
	cursor: pointer;

	&:focus {
		outline: none;
	}

	&:focus-visible {
		box-shadow: inset 0 0 0 2px rgba(113,186,48,.65);
	}
}

.timelineChart_segment_label {
	font-size: 12px;
	white-space: nowrap;

	@media (max-width: 360px) {
		font-size: 11px;
	}
}

.timelineChart_segment--base {
	background: var(--baseFill);
}

.timelineChart_segment--extra {
	background: var(--extraFill);
}

.timelineChart_segment--night {
	background: var(--nightFill);
}

/* x軸 */
.timelineChart_axis {
	position: relative;
	height: 18px;
	margin-top: 8px;
	font-size: 12px;
	color: var(--muted);
}

.timelineChart_tick {
	position: absolute;
	left: calc((var(--h) / 24) * 100%);
	transform: translateX(-50%);

	&.timelineChart_tick--end {
		transform: translateX(-100%);
	}
}

/* 凡例 */
.timelineChart_legend {
	display: grid;
	gap: 8px;
	margin-top: 14px;
	font-size: 13px;
	color: var(--muted);
}

.timelineChart_legend_item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.timelineChart_legend_swatch {
	width: 14px;
	height: 14px;
	border-radius: 4px;
	border: 1px solid var(--border);

	&.timelineChart_legend_swatch--base {
		background: var(--baseFill);
	}

	&.timelineChart_legend_swatch--extra {
		background: var(--extraFill);
	}

	&.timelineChart_legend_swatch--night {
		background: var(--nightFill);
	}
}

/* tooltip */
.timelineChart_tooltip {
	position: absolute;
	z-index: 20;
	max-width: 260px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: rgba(251,249,240,.98);
	color: var(--text);
	box-shadow: 0 10px 25px rgba(0,0,0,.12);
	opacity: 0;
	transform: translateY(2px);
	pointer-events: none;
	transition: opacity .12s ease, transform .12s ease;

	&.is-open {
		opacity: 1;
		transform: translateY(0);
	}
}

.timelineChart_tooltip_title {
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 4px;
}

.timelineChart_tooltip_body {
	font-size: 12px;
	line-height: 1.3;
	color: rgba(6,6,11,.78);
}

.timelineChart_tooltip_arrow {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 50%;
	bottom: -5px;
	transform: translateX(-50%) rotate(45deg);
	background: rgba(251,249,240,.98);
	border-right: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}


/**
 * 21.0 - Usage Scene Section
 */

.usageScene_title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 40px;

	@media (max-width: 768px) {
		font-size: 22px;
		margin-bottom: 32px;
	}
}

.usageScene_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;

	@media (max-width: 768px) {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

.usageScene_column {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.usageScene_card {
	background-color: #fff;
	border-radius: 8px;
	padding: 24px;
	flex: 1;

	@media (max-width: 768px) {
		padding: 20px;
	}
}

.usageScene_card_title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 16px;
	line-height: 1.5;

	@media (max-width: 768px) {
		font-size: 15px;
		margin-bottom: 12px;
	}
}

.usageScene_card_titleHighlight {
	color: #71ba30;
}

.usageScene_card_calc {
	background-color: #F5F5F5;
	padding: 12px;
	border-radius: 4px;
	margin-bottom: 12px;

	& p {
		font-size: 14px;
		margin-bottom: 0;

		+ p {
			margin-top: 4px;
		}
	}
}

.usageScene_card_total {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 20px;

	@media (max-width: 768px) {
		margin-bottom: 12px;
	}
}

.usageScene_card_price {
	font-size: 24px;
	font-weight: bold;
	color: #71ba30;
}

.usageScene_card_note {
	font-size: 12px;
	margin-bottom: 16px;
	line-height: 1.25;
}

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

.usageScene_card_tag {
	display: inline-block;
	padding: 4px 10px;
	font-size: 12px;
	border: 1px solid #71ba30;
	border-radius: 20px;
	color: #71ba30;
	background-color: #ECF5D6;
}

/**
 * 22.0 - Member Fee Section
 */

.memberFee_title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 16px;

	@media (max-width: 768px) {
		font-size: 22px;
	}
}

.memberFee_description {
	margin-bottom: 40px;

	@media (max-width: 768px) {
		font-size: 14px;
		margin-bottom: 32px;
	}
}

.memberFee_tableTitle {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 24px;

	@media (max-width: 768px) {
		font-size: 18px;
		margin-bottom: 20px;
	}
}

.memberFee_table {
	width: 100%;
	border-collapse: collapse;
}

.memberFee_th {
	padding: 16px 12px;
	font-size: 14px;
	font-weight: normal;
	color: #666;
	text-align: center;
	border-bottom: 1px solid #ccc;

	@media (max-width: 768px) {
		font-size: 13px;
		padding: 12px 8px;
	}
}

.memberFee_td {
	padding: 24px 12px;
	font-size: 16px;
	text-align: center;
	border-bottom: 1px solid #ddd;

	&.memberFee_td--label {
		font-weight: normal;
	}

	&.memberFee_td--note {
		font-size: 14px;
		color: #666;
	}

	@media (max-width: 768px) {
		font-size: 14px;
		padding: 20px 8px;

		&.memberFee_td--note {
			font-size: 12px;
		}
	}
}


/**
 * 23.0 - Member Plan Section
 */

.memberPlan_title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 16px;

	@media (max-width: 768px) {
		font-size: 22px;
	}
}

.memberPlan_description {
	margin-bottom: 40px;

	@media (max-width: 768px) {
		font-size: 14px;
		margin-bottom: 32px;
	}
}

.memberPlan_subtitle {
	margin-bottom: 24px;

	&:has(+ .memberPlan_subtitleNote) {
		margin-bottom: 12px;
	}
}

.memberPlan_subtitleNote {
	margin-bottom: 40px;

	@media (max-width: 768px) {
		font-size: 14px;
		margin-bottom: 24px;
	}
}

.memberPlan_item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px;
	margin-bottom: 32px;
	padding-bottom: 32px;
	border-bottom: 1px solid #ddd;

	&:first-of-type {
		padding-top: 0;
	}

	@media (max-width: 768px) {
		flex-direction: column;
		gap: 20px;
		padding: 24px 0;
	}
}

.memberPlan_item_main {
	flex: 1;
}

.memberPlan_item_title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 16px;

	@media (max-width: 768px) {
		font-size: 16px;
	}
}

.memberPlan_item_tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.memberPlan_item_tag {
	display: inline-block;
	padding: 4px 12px;
	font-size: 14px;
	border: 1px solid #71ba30;
	border-radius: 20px;
	color: #71ba30;
	background-color: #ECF5D6;

	&.memberPlan_item_tag--disabled {
		border-color: #999;
		color: #999;
		background-color: #eee;
	}
}

.memberPlan_item_description {
	font-size: 14px;
	line-height: 1.8;
	color: #333;

	@media (max-width: 768px) {
		font-size: 13px;
	}
}

.memberPlan_item_price {
	text-align: right;
	min-width: 200px;

	.arrowLink {
		justify-content: flex-end;


		@media (max-width: 768px) {
			justify-content: flex-start;
		}
	}

	@media (max-width: 768px) {
		text-align: left;
		min-width: auto;
	}
}

.memberPlan_item_priceValue {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 4px;

	@media (max-width: 768px) {
		font-size: 20px;
	}
}

.memberPlan_item_priceUnit {
	font-size: 14px;
	font-weight: normal;
}

.memberPlan_item_priceNote {
	font-size: 12px;
	margin-bottom: 8px;
	line-height: 1.5;
}

/**
 * 24.0 - Option Fee Section
 */

.optionFee_title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 16px;
	color: #71ba30;

	@media (max-width: 768px) {
		font-size: 22px;
	}
}

.optionFee_description {
	margin-bottom: 8px;

	@media (max-width: 768px) {
		font-size: 14px;
	}
}

.optionFee_note {
	font-size: 12px;
	margin-bottom: 32px;
}

.optionFee_subtitle {
	margin-top: 48px;
	margin-bottom: 12px;

	@media (max-width: 768px) {
		margin-top: 40px;
	}
}

.optionFee_subtitleNote {
	margin-bottom: 24px;

	@media (max-width: 768px) {
		font-size: 14px;
		margin-bottom: 20px;
	}
}

.optionFee_table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
}

.optionFee_th {
	padding: 16px 12px;
	font-size: 14px;
	font-weight: normal;
	color: #666;
	text-align: center;
	border-bottom: 1px solid #ccc;

	&:first-child {
		text-align: left;
	}

	@media (max-width: 768px) {
		font-size: 13px;
		padding: 12px 8px;
	}
}

.optionFee_td {
	padding: 24px 12px;
	font-size: 16px;
	text-align: center;
	border-bottom: 1px solid #ddd;

	&.optionFee_td--label {
		text-align: left;
		font-weight: normal;
	}

	@media (max-width: 768px) {
		font-size: 14px;
		padding: 20px 8px;
	}
}

.optionFee_notes {
	margin-bottom: 16px;

	& li {
		font-size: 12px;

		+ li {
			margin-top: 4px;
		}
	}
}

.optionFee_subSubtitle {
	font-size: 16px;
	font-weight: bold;
	margin-top: 40px;
	margin-bottom: 8px;

	@media (max-width: 768px) {
		font-size: 14px;
		margin-top: 20px;
	}
}

.optionFee_example {
	font-size: 15px;
	line-height: 1.8;

	@media (max-width: 768px) {
		font-size: 14px;
	}
}


/**
 * 25.0 - Price CTA Section
 */

.priceCta {
	padding: 60px 20px 80px;
	text-align: center;

	@media (max-width: 768px) {
		padding: 40px 16px 60px;
	}
}

.priceCta_inner {
	max-width: 900px;
	margin: 0 auto;
}

.priceCta_lead {
	font-size: 18px;
	margin-bottom: 24px;

	@media (max-width: 768px) {
		font-size: 15px;
		margin-bottom: 20px;
	}
}


/**
 * 27.0 - Cancel Policy Section
 */

.cancelPolicy_description {
	margin-bottom: 32px;
	line-height: 1.8;

	@media (max-width: 768px) {
		font-size: 14px;
		margin-bottom: 24px;
	}
}

.cancelPolicy_table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 24px;
}

.cancelPolicy_th {
	padding: 16px 12px;
	font-size: 14px;
	font-weight: normal;
	color: #666;
	text-align: center;
	border-bottom: 1px solid #ccc;

	&:first-child {
		text-align: left;
	}

	@media (max-width: 768px) {
		font-size: 13px;
		padding: 12px 8px;
	}
}

.cancelPolicy_td {
	padding: 24px 12px;
	font-size: 16px;
	text-align: center;
	border-bottom: 1px solid #ddd;

	&.cancelPolicy_td--label {
		text-align: left;
		font-weight: normal;
	}

	@media (max-width: 768px) {
		font-size: 14px;
		padding: 20px 8px;
	}
}

.cancelPolicy_td_note {
	font-size: 12px;
	display: block;
	margin-top: 4px;
}

.cancelPolicy_notes {
	& li {
		font-size: 12px;

		+ li {
			margin-top: 4px;
		}
	}
}


/**
 * 28.0 - Contact Info Section
 */

.contactInfo_description {
	margin-bottom: 8px;
	line-height: 1.8;

	@media (max-width: 768px) {
		font-size: 14px;
	}
}

.contactInfo_note {
	font-size: 12px;
}


/**
 * 29.0 - Ticket Subsidy Section
 */

.ticketSubsidy_description {
	margin-bottom: 8px;
	line-height: 1.8;

	@media (max-width: 768px) {
		font-size: 14px;
	}
}

.ticketSubsidy_note {
	font-size: 12px;
	margin-bottom: 32px;
}

.ticketSubsidy_subtitle {
	margin-top: 32px;
	margin-bottom: 12px;

	@media (max-width: 768px) {
		margin-top: 24px;
	}
}

.ticketSubsidy_text {
	font-size: 15px;
	line-height: 1.8;

	@media (max-width: 768px) {
		font-size: 14px;
	}
}


/**
 * 30.0 - Visitor Plan Section
 */

.visitorPlan_description {
	margin-bottom: 32px;
	line-height: 1.8;

	@media (max-width: 768px) {
		font-size: 14px;
		margin-bottom: 24px;
	}
}

.visitorPlan_item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px;
	padding: 32px 0;
	border-bottom: 1px solid #ddd;

	@media (max-width: 768px) {
		flex-direction: column;
		gap: 20px;
		padding: 24px 0;
	}
}

.visitorPlan_item_main {
	flex: 1;
}

.visitorPlan_item_title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 16px;

	@media (max-width: 768px) {
		font-size: 16px;
	}
}

.visitorPlan_item_tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.visitorPlan_item_tag {
	display: inline-block;
	padding: 4px 12px;
	font-size: 14px;
	border: 1px solid #71ba30;
	border-radius: 20px;
	color: #71ba30;
	background-color: #ECF5D6;
}

.visitorPlan_item_description {
	font-size: 14px;
	line-height: 1.8;
	color: #333;

	@media (max-width: 768px) {
		font-size: 13px;
	}
}

.visitorPlan_item_price {
	text-align: right;
	min-width: 200px;

	@media (max-width: 768px) {
		text-align: left;
		min-width: auto;
	}
}

.visitorPlan_item_priceValue {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 4px;

	@media (max-width: 768px) {
		font-size: 20px;
	}
}

.visitorPlan_item_priceUnit {
	font-size: 14px;
	font-weight: normal;
}

.visitorPlan_item_priceNote {
	font-size: 12px;
	margin-bottom: 8px;
	line-height: 1.5;
}

/**
 * 31.0 - Price FAQ Section
 */

 .priceFaq {
	.faqList {
		margin-block: 0;
		border-top: none;
		border-bottom-width: 1px;
	}
 }

.priceFaq_more {
	margin-top: 32px;
	font-size: 14px;
	line-height: 1.8;

	& a {
		margin-top: 12px;
	}
}


/**
 * 32.0 - Price Contact Section
 */

.priceContact {
	padding: 40px 20px;

	@media (max-width: 768px) {
		padding: 32px 16px;
	}
}

.priceContact_inner {
	max-width: 900px;
	margin: 0 auto;
}


/**
 * 33.0 - Contact Form Section
 */

.contactCommonTitle {
	font-size: 21px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
}

.contactCommonTitle:before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 0 20px 0 0;
	background: url(../../../common/img/dot_30_green.png) no-repeat center center;
	vertical-align: middle;
}

.contactIntro {
	margin: 60px 0 0;
	font-size: 16px;
	line-height: 2;
	text-align: center;
}

.contactTel {
	margin: 55px 0 0;
	text-align: center;
}

.contactTel_tel {
	display: block;
	margin: 60px 0 0;
}

.contactTel_num {
	display: block;
	margin: 0 auto;
}

.contactTel_hour {
	margin: 15px 0 0;
	font-size: 18px;
	line-height: 1.2;
}

.contactMail {
	width: 880px;
	margin: 120px auto 110px;
}

.contactStep {
	counter-reset: step;
	display: table;
	width: 100%;
	height: 60px;
	margin: 50px 0;
	table-layout: fixed;
	background: url(../../../common/img/contact/step_bg.png) no-repeat center center;
	color: #FFF;
}

.contactStep_li {
	counter-increment: step;
	display: table-cell;
	position: relative;
	height: 100%;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	vertical-align: middle;
}

.contactStep_li:before {
	content: "step"counter(step);
	font-family: "Comic Sans MS";
	display: inline-block;
	width: 60px;
	margin: 0 15px 0 0;
	padding: 4px 0;
	background: #FFF;
	color: #71B830;
	font-size: 15px;
	font-weight: normal;
	line-height: 1.2;
	text-align: center;
}

.contactStep_li.contactStep_li-current {
	color: #FF0;
}

.contactStep_li + .contactStep_li:after {
	content: "";
	display: block;
	position: absolute;
	width: 34px;
	height: 60px;
	top: 0;
	left: -10px;
	background: url(../../../common/img/contact/step_arrow.png) no-repeat center center;
}

.formWrap {
	margin-top: 60px !important;
}

.formWrap h3,
.formWrap h4 {
	margin-bottom: 30px;
	text-align: center;
}

.formWrap p {
	margin-bottom: 20px;
}

.formWrap .error_messe {
	margin-bottom: 0 !important;
	color: #F00;
}

.wpcf7cp-btns {
	text-align: center;
}

button.wpcf7cp-cfm-edit-btn {
	margin: 0;
}

/* form (contact, recruit) */
.contactForm_table,
[id="wpcf7cpcnf"] table {
	width: 100%;
	table-layout: fixed;
	border-top: solid 2px #CCC;
	border-bottom: solid 2px #CCC;
	border-collapse: collapse;
}

.contactForm_table th,
[id="wpcf7cpcnf"] table th {
	position: relative;
	width: 300px;
	padding: 15px 35px;
	border-top: solid 1px #CCC;
	background: #ECF5D6;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.6;
	text-align: left;
	vertical-align: top;
	box-sizing: border-box;
}

.contactForm_table td,
[id="wpcf7cpcnf"] table td {
	padding: 10px 0 10px 40px;
	border-top: solid 1px #CCC;
	text-align: left;
	vertical-align: top;
}

.contactForm_textbox,
[id="wpcf7cpcnf"] .contactForm_textbox {
	width: 320px;
	height: 36px;
	padding: 0 10px;
	border: solid 1px #DDD;
	background: #FFF;
	font-size: 16px;
	box-sizing: border-box;
}

.contactForm_textbox.contactForm_textbox-lg,
[id="wpcf7cpcnf"] .contactForm_textbox.contactForm_textbox-lg {
	width: 500px;
}

.contactForm_textbox.contactForm_textbox-sm,
[id="wpcf7cpcnf"] .contactForm_textbox.contactForm_textbox-sm {
	width: 60px;
}

.contactForm_textbox.contactForm_textbox-zip,
[id="wpcf7cpcnf"] .contactForm_textbox.contactForm_textbox-zip {
	width: 160px;
}

.contactForm_label,
[id="wpcf7cpcnf"] .contactForm_label {
	font-size: 16px;
}

.contactForm_label + .contactForm_label,
[id="wpcf7cpcnf"] .contactForm_label + .contactForm_label {
	margin-left: 15px;
}

.contactForm_radio,
[id="wpcf7cpcnf"] .contactForm_radio {
	margin-right: 10px;
}

.contactForm_text,
[id="wpcf7cpcnf"] .contactForm_text {
	font-size: 16px;
	line-height: 1.5;
}

.contactForm_text + .contactForm_textbox,
[id="wpcf7cpcnf"] .contactForm_text + .contactForm_textbox {
	margin-left: 10px;
}

.contactForm_textbox + .contactForm_text,
[id="wpcf7cpcnf"] .contactForm_textbox + .contactForm_text {
	padding-left: 5px;
}

.contactForm_dropdown,
[id="wpcf7cpcnf"] .contactForm_dropdown {
	width: 160px;
	height: 36px;
	padding: 0 10px;
	border: solid 1px #DDD;
	background: #FFF;
	font-size: 16px;
	box-sizing: border-box;
}

.contactForm_textarea,
[id="wpcf7cpcnf"] .contactForm_textarea {
	display: block;
	width: 500px;
	height: 240px;
	padding: 10px;
	border: solid 1px #DDD;
	background: #FFF;
	font-size: 16px;
	box-sizing: border-box;
	resize: none;
}

.contactForm_button_wrap {
	position: relative;
	display: block;
	margin: 55px auto 0;
	width: 420px;
	height: 66px;
}

.contactForm_button_wrap::after {
	content: "\f105";
	font-family: fontawesome;
	display: block;
	position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -10px;
	font-size: 20px;
	font-weight: normal;
	line-height: 1;
	color: #FFF;
	pointer-events: none;
	z-index: 1;
}

.contactForm_button_wrap::before {
	content: "";
	display: inline-block;
	width: 1px;
	height: 100%;
	vertical-align: middle;
}

.contactForm_button,
.wpcf7cp-cfm-submit-btn {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: url(../../../common/img/form_button_bg.png) no-repeat center center;
	color: #FFF;
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
	cursor: pointer;
}

.contactForm_button_text {
	display: inline-block;
	vertical-align: middle;
}

.formWrap .contactForm_button_wrap {
	margin-top: 30px !important;
}

@media screen and (max-width: 639px) {
	.contactCommonTitle {
		font-size: 17px;
	}

	.contactCommonTitle:before {
		margin: 0 10px 0 0;
	}

	.contactIntro {
		margin: 20px 0;
		padding: 0 15px;
		font-size: 14px;
		line-height: 1.6;
		text-align: left;
	}

	.contactTel {
		margin: 30px 0;
		padding: 0 15px;
		text-align: center;
	}

	.contactTel_tel {
		display: block;
		margin: 20px 7px 0;
	}

	.contactTel_hour {
		margin: 10px 0 0;
		font-size: 14px;
		line-height: 1.2;
	}

	.contactMail {
		width: 100%;
		margin: 30px 0 50px;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.contactStep {
		counter-reset: step;
		display: table;
		width: 100%;
		height: 30px;
		margin: 15px 0;
		background: url(../../../common/img/contact/step_bg.png) no-repeat center center;
		background-size: contain;
	}

	.contactStep_li {
		font-size: 11px;
	}

	.contactStep_li:before {
		content: none;
	}

	.contactStep_li.contactStep_li-current {
		color: #FF0;
	}

	.contactStep_li + .contactStep_li:after {
		width: 17px;
		height: 30px;
		top: 0;
		left: -10px;
		background: url(../../../common/img/contact/step_arrow.png) no-repeat center center;
		background-size: contain;
	}

	.contact_back_bt_wrap {
		margin: 20px auto 0 !important;
		width: 290px;
		height: 47px;
	}

	.contact_back_bt {
		border: 0;
		background: url(../../../common/img/bt_bg_green.png) no-repeat center center;
		background-size: contain;
		font-size: 17px;
	}
}


/**
 * 34.0 - Recruit Section
 */

.recruitIntro {
	width: 960px;
	margin: 60px auto;
	text-align: center;
}

.recruitIntro_text {
	font-size: 16px;
	line-height: 2;
}

.recruitIntro_images {
	margin: 60px 0;
}

.recruitIntro_images > li {
	width: 300px;
	float: left;
}

.recruitIntro_images > li + li {
	margin-left: 30px;
}

.recruitIntro_images > li > img {
	display: block;
}


.recruitForm {
	width: 880px;
	margin: 0 auto 120px;
}

.recruitForm_title {
	font-size: 21px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
}

.recruitForm_title:before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 0 20px 0 0;
	background: url(../../../common/img/dot_30_green.png) no-repeat center center;
	vertical-align: middle;
}

.recruitForm_info {
	margin: 50px 0 30px;
	font-size: 16px;
	line-height: 2;
	text-align: center;
}

@media screen and (max-width: 639px) {
	.recruitIntro {
		width: 100%;
		margin: 20px 0 0;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.recruitIntro_text {
		font-size: 14px;
		line-height: 1.6;
		text-align: left;
	}

	.recruitIntro_images {
		margin: 15px 0;
	}

	.recruitIntro_images > li {
		width: 100%;
		float: none;
	}

	.recruitIntro_images > li + li {
		margin: 10px 0 0;
	}

	.recruitIntro_images > li > img {
		margin: 0 auto;
	}


	.recruitForm {
		width: 100%;
		margin: 40px 0 50px;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.recruitForm_title {
		font-size: 17px;
	}

	.recruitForm_title:before {
		margin: 0 10px 0 0;
	}

	.recruitForm_info {
		margin: 15px 0;
		font-size: 14px;
		line-height: 1.6;
		text-align: left;
	}
}

/* ==========================================================================
   Contact Styles (from /common/css/contact.css)
   ========================================================================== */

.contactCommonTitle {
	font-size: 21px;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
}

.contactCommonTitle:before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 0 20px 0 0;
	background: url(../../../common/img/dot_30_green.png) no-repeat center center;
	vertical-align: middle;
}

.contactIntro {
	margin: 60px 0 0;
	font-size: 16px;
	line-height: 2;
	text-align: center;
}

.contactTel {
	margin: 55px 0 0;
	text-align: center;
}

.contactTel_tel {
	display: block;
	margin: 60px 0 0;
}

.contactTel_num {
	display: block;
	margin: 0 auto;
}

.contactTel_hour {
	margin: 15px 0 0;
	font-size: 18px;
	line-height: 1.2;
}

.contactMail {
	width: 880px;
	margin: 120px auto 110px;
}

.contactStep {
	counter-reset: step;
	display: table;
	width: 100%;
	height: 60px;
	margin: 50px 0;
	table-layout: fixed;
	background: url(../../../common/img/contact/step_bg.png) no-repeat center center;
	color: #FFF;
}

.contactStep_li {
	counter-increment: step;
	display: table-cell;
	position: relative;
	height: 100%;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	vertical-align: middle;
}

.contactStep_li:before {
	content: "step"counter(step);
	font-family: "Comic Sans MS";
	display: inline-block;
	width: 60px;
	margin: 0 15px 0 0;
	padding: 4px 0;
	background: #FFF;
	color: #71B830;
	font-size: 15px;
	font-weight: normal;
	line-height: 1.2;
	text-align: center;
}

.contactStep_li.contactStep_li-current {
	color: #FF0;
}

.contactStep_li + .contactStep_li:after {
	content: "";
	display: block;
	position: absolute;
	width: 34px;
	height: 60px;
	top: 0;
	left: -10px;
	background: url(../../../common/img/contact/step_arrow.png) no-repeat center center;
}

.formWrap {
	margin-top: 60px !important;
}

.formWrap h3,
.formWrap h4 {
	margin-bottom: 30px;
	text-align: center;
}

.formWrap p {
	margin-bottom: 20px;
}

.formWrap .error_messe {
	margin-bottom: 0 !important;
	color: #F00;
}

.contact_back_bt_wrap {
	position: relative;
	display: block;
	width: 420px;
	height: 66px;
	margin: 55px auto 0;
}

.contact_back_bt_wrap::before {
	content: "\f104";
	font-family: fontawesome;
	display: block;
	position: absolute;
	top: 50%;
	left: 30px;
	margin-top: -11px;
	font-size: 22px;
	line-height: 1;
	vertical-align: middle;
	color: #FFF;
	pointer-events: none;
	z-index: 1;
}

.contact_back_bt_wrap::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 100%;
	vertical-align: middle;
}

.contact_back_bt,
.wpcf7cp-cfm-edit-btn {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 40px 0 30px;
	background: url(../../../common/img/bt_bg_green.png) no-repeat center center;
	color: #FFF;
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
	box-sizing: border-box;
	border: 0;
	cursor: pointer;
}

.formWrap .contactForm_button_wrap {
    margin-top: 30px !important;
}

.form-label-wrapper {
	display: grid;
	grid-template-columns: 1fr 40px;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;

	@media (width <= 640px) {
		align-items: center;
	}
}

.contactForm_require {
	display: block;
	width: 40px;
	background: #DF5768;
	color: #FFF;
	font-size: 13px;
	line-height: 2;
	text-align: center;
}

[id="wpcf7cpcnf"] .contactForm_require {
	display: none;
}

.wpcf7-spinner {
	display: none;
}

@media screen and (max-width: 639px) {
	.contactCommonTitle {
		font-size: 17px;
	}

	.contactCommonTitle:before {
		margin: 0 10px 0 0;
	}

	.contactIntro {
		margin: 20px 0;
		padding: 0 15px;
		font-size: 14px;
		line-height: 1.6;
		text-align: left;
	}

	.contactTel {
		margin: 30px 0;
		padding: 0 15px;
		text-align: center;
	}

	.contactTel_tel {
		display: block;
		margin: 20px 7px 0;
	}

	.contactTel_hour {
		margin: 10px 0 0;
		font-size: 14px;
		line-height: 1.2;
	}

	.contactMail {
		width: 100%;
		margin: 30px 0 50px;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.contactStep {
		counter-reset: step;
		display: table;
		width: 100%;
		height: 30px;
		margin: 15px 0;
		background: url(../../../common/img/contact/step_bg.png) no-repeat center center;
		background-size: contain;
	}

	.contactStep_li {
		font-size: 11px;
	}

	.contactStep_li:before {
		content: none;
	}

	.contactStep_li.contactStep_li-current {
		color: #FF0;
	}

	.contactStep_li + .contactStep_li:after {
		width: 17px;
		height: 30px;
		top: 0;
		left: -10px;
		background: url(../../../common/img/contact/step_arrow.png) no-repeat center center;
		background-size: contain;
	}

	.contact_back_bt_wrap {
		margin: 20px auto 0 !important;
		width: 290px;
		height: 47px;
	}

	.contact_back_bt {
		border: 0;
		background: url(../../common/img/bt_bg_green.png) no-repeat center center;
		background-size: contain;
		font-size: 17px;
	}

	.contactForm_table thead, .contactForm_table tbody, .contactForm_table tr, .contactForm_table th, .contactForm_table td,
	[id="wpcf7cpcnf"] table thead, [id="wpcf7cpcnf"] table tbody, [id="wpcf7cpcnf"] table tr, [id="wpcf7cpcnf"] table th, [id="wpcf7cpcnf"] table td {
		display: block;
	}

	.contactForm_table th,
	[id="wpcf7cpcnf"] table th {
		width: 100%;
		padding: 5px 0 5px 5px;
		font-size: 14px;
		line-height: 1.6;
	}

	.contactForm_table td,
	[id="wpcf7cpcnf"] table td {
		padding: 5px 0;
	}

	.contactForm_textbox,
	[id="wpcf7cpcnf"] .contactForm_textbox {
		width: 100%;
		height: 36px;
		padding: 0 5px;
	}

	.contactForm_textbox.contactForm_textbox-lg,
	[id="wpcf7cpcnf"] .contactForm_textbox.contactForm_textbox-lg {
		width: 100%;
	}

	.contactForm_label,
	[id="wpcf7cpcnf"] .contactForm_label {
		font-size: 13px;
	}

	.contactForm_label + .contactForm_label,
	[id="wpcf7cpcnf"] .contactForm_label + .contactForm_label {
		margin-left: 10px;
	}

	.contactForm_text,
	[id="wpcf7cpcnf"] .contactForm_text {
		font-size: 13px;
	}

	.contactForm_dropdown,
	[id="wpcf7cpcnf"] .contactForm_dropdown {
		width: 160px;
		height: 36px;
		padding: 0 5px;
	}

	.contactForm_textarea,
	[id="wpcf7cpcnf"] .contactForm_textarea {
		display: block;
		width: 100%;
		height: 150px;
		padding: 5px;
	}

	.contactForm_button_wrap {
		margin: 20px auto 0;
		width: 290px;
		height: 47px;
	}

	.contactForm_button {
		border: 0;
		background: url(../../../common/img/form_button_bg.png) no-repeat center center;
		background-size: contain;
		font-size: 16px;
	}

	.contactForm_require,
	[id="wpcf7cpcnf"] .contactForm_require {
		width: 30px;
		top: 50%;
		right: 5px;
		font-size: 11px;
		line-height: 1.6;
	}
}
