@charset "utf-8";

/* ================================
   ヘッダー
================================ */
header {
	background-color: #004080;
	color: white;
	padding: 1em;
	text-align: center;
}

header h1 {
	margin: 0;
	font-size: 1.5em;
}

/* ================================
   トグルボタン切り替え
================================ */
.toggle-buttons {
	margin-top: 1em;
}

.toggle-btn {
	background: white;
	color: #004080;
	border: 2px solid #004080;
	padding: 0.5em 1em;
	margin: 0.2em;
	cursor: pointer;
	border-radius: 5px;
}

.toggle-btn.active {
	background-color: #004080;
	color: white;
}

/* ================================
   コンテンツ基本設定
================================ */
.contact-wrap {
	font-family: "Helvetica Neue", sans-serif;
	background-color: #f7f9fb;
	color: #333;
	line-height: 1.6;
}

.container {
	max-width: 600px;
	margin: auto;
	padding: 20px;
}

/* ================================
   リンク装飾
================================ */
a.textlink {
	display: inline-block;
	margin: 0;
	color: #0a3d63;
	text-decoration: underline;
	transition: color 0.3s;
}

a.textlink:hover {
	color: #063249;
}

/* ================================
   価格表示セクション
================================ */
.price-content {
	display: none;
}

.price-content:not(.hidden) {
	display: block;
}

.price-card {
	background: #ffffff;
	padding: 1rem;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	margin-bottom: 1.5rem;
}

.price-card ul {
	list-style: none;
	padding: 0;
}

.price-card li {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0.4em 0;
	border-bottom: 1px solid #eee;
	flex-wrap: wrap;
}

/* ================================
   価格表示パーツ
================================ */
.label-block {
	flex: 1;
	min-width: 40%;
}

.price-block {
	text-align: right;
	flex: 1;
	min-width: 50%;
}

.price {
	font-weight: bold;
	color: #004080;
}

.highlight {
	color: red;
	font-weight: bold;
}

.annotation {
	display: block;
	font-size: 0.9em;
	color: #555;
	margin-top: 0.2em;
}

.attention {
	display: block;
	color: red;
	font-weight: bold;
}

.note {
	font-size: 0.85em;
	text-align: center;
	margin-top: 2em;
	color: #666;
}
