@charset "UTF-8";
/*-----------------------------------------------------------
*** [ KDDI株式会社 共通 main] ***
------------------------------------------------------------*/
/* = [ 共通 ] ===========================================*/
.text-link {
	color: blue;
}

/* = [ 見出し ] ===========================================*/
h4 {
	margin: 24px 0 12px;
	padding: 8px 12px;
	border-radius: 4px;
	background: #f5f5f5;
	color: var(--text);
	font-weight: 700;
	font-size: 1.7rem;
}

/* = [ アイキャッチ画像 ] ===========================================*/
.img-block,
.sub-img {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}
.img-block {
	max-width: 980px;
	height: 653px;
}
.sub-img {
	max-width: 660px;
	height: 440px;
	margin-top: 30px;
}
.img-block--sample,
.sub-img--sample {
	background-color: #EFEFEF;
}
@media (max-width: 766px) {
	.img-block,
	.sub-img {
		height: auto;
	}
}

/* = [ テーブル ] ===========================================*/

/* === テーブル === */
.table-wrapper {
	overflow-x: auto;
	margin: 20px 0 0;
}
.scroll-hint {
	text-align: center;
	font-size: 12px;
	color: #999;
	margin-bottom: 4px;
	display: none;
}
table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	min-width: 600px;
}
thead th {
	background: #0091D7;
	color: #fff;
	padding: 12px 14px;
	text-align: center;
	font-weight: bold;
	white-space: nowrap;
}
tbody td {
	padding: 10px 14px;
	border-bottom: 1px solid #e8e8e8;
	vertical-align: middle;
}
tbody tr:nth-child(even) { background: #f8fbfd; }
td.service-name {
	font-weight: bold;
	color: #0091D7;
	white-space: nowrap;
}

/* ===== 比較テーブル ===== */
.table-wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 20px 0;
	/* border-radius: 8px; */
	border: 1px solid #ddd;
}
.compare-table {
	width: 100%;
	min-width: 560px;
	border-collapse: collapse;
}
.compare-table th,
.compare-table td {
	padding: 12px 16px;
	text-align: center;
	border: 1px solid #e0e0e0;
	vertical-align: middle;
}
.compare-table thead th {
	background: #0091D7;
	color: #fff;
	font-weight: 700;
	white-space: nowrap;
}
.compare-table thead th:first-child {
	background: #555;
}
.compare-table tbody th {
	background: #f5f5f5;
	font-weight: 600;
	text-align: left;
	white-space: nowrap;
}
.compare-table tbody td {
	background: #fff;
}
.compare-table .highlight {
	background: #fff5f8;
	font-weight: 700;
	color: #E4007F;
}		

/* = [ メリット・デメリット ] ===========================================*/
.merit-box,
.demerit-box { 
	border-radius: 8px;
	padding: 16px 20px;
	margin: 12px 0 20px;
}
.merit-box { 
	background: #e8f5e9; 
	border: 1px solid #a5d6a7;
}
.demerit-box { 
	background: #fce4ec; 
	border: 1px solid #ef9a9a;
}
.merit-box .box-label,
.demerit-box .box-label { 
	font-weight: bold;
	margin-bottom: 6px;
}
.merit-box .box-label { 
	color: #2e7d32;
}
.demerit-box .box-label { 
	color: #c62828;
}
.merit-box ul, .demerit-box ul { 
	padding-left: 20px;
	margin: 0;
}
.merit-box li, .demerit-box li { 
	margin-bottom: 4px;
	font-size: 15px;
}

/* = [ おすすめ ] ===========================================*/
.recommend-box {
	background: #fff;
	border: 2px solid #0091D7;
	border-radius: 10px;
	padding: 20px;
	margin: 20px 0;
}
.recommend-box.main {
	border-color: #E4007F;
}
.recommend-box .service-name {
	margin: 0;
	font-size: 18px;
	font-weight: bold;
	color: #0091D7;
	border-bottom: none;
}
.recommend-box.main .service-name {
	color: #E4007F;
}
.recommend-box .price {
	font-size: 22px;
	font-weight: bold;
	color: #E4007F;
}
.recommend-box .price-note {
	font-size: 13px;
	color: #666;
}
.recommend-box .features {
	margin: 12px 0;
	padding-left: 20px;
}
.recommend-box .features li {
	margin-bottom: 6px;
	font-size: 14px;
}
@media (max-width: 766px) {
	.article-container {
		padding: 12px;
	}
	.recommend-box {
		padding: 14px;
	}
}

/* = [ 注意事項 ] ===========================================*/
.caution-box {
	background: #fff8e1;
	border: 1px solid #ffcc02;
	border-radius: 8px;
	padding: 16px 20px;
	margin: 16px 0;
}
.caution-box .caution-label {
	font-weight: bold;
	color: #f57c00;
	margin-bottom: 8px;
}


/* = [ サービスカード ] ===========================================*/
.service-card {
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	margin: 20px 0;
}
.service-card.recommended {
	border-color: var(--accent);
}
.service-card .service-name {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 12px;
}
.service-card .service-tag {
	display: inline-block;
	background: var(--accent);
	color: var(--white);
	font-size: 1.3rem;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	margin-bottom: 10px;
}
.service-card dl {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 4px 12px;
	font-size: 1.58rem;
}
.service-card dt {
	font-weight: 700;
	color: var(--text-light);
	padding: 4px 0;
}
.service-card dd {
	padding: 4px 0;
}
/* レスポンシブ対応 */
@media (max-width: 766px) {
	.service-card dl { grid-template-columns: 110px 1fr; }
}

/* = [ FAQ ] ===========================================*/
.faq-section {
	margin: 24px 0;
}
.faq-item {
	margin-bottom: 20px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}
.faq-q {
	margin: 0 !important;
	background: var(--bg-info);
	padding: 16px 20px;
	padding-bottom: 16px !important;
	font-weight: 700 !important;
	font-size: 16px !important;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	border: none !important;
}
.faq-q::before {
	content: "Q";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	font-size: 14px;
	font-weight: 800;
}
.faq-a {
	padding: 16px 20px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.8;
}
.faq-a::before {
	content: "A";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	background: var(--accent);
	color: var(--white);
	border-radius: 50%;
	font-size: 14px;
	font-weight: 800;
}

/* = [ リスト ] ===========================================*/
.circle-list {
	padding-left: 1.5em;
}
.circle-list li {
	list-style: disc;
}
.merit-list li::marker {color: #4caf50;}
.demerit-list li::marker {color: #e53935;}

/* = [ フッター ] ===========================================*/
.footer-notes {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}
.footer-notes p {
	font-size: 12px;
	color: #888;
	line-height: 1.7;
	margin-bottom: 4px;
	text-align: left;
}
.internal-link-flex {
	display: inline-flex;
	flex-direction: column;
}
.internal-link {
	display: inline-block;
	margin: 15px 0;
	padding: 8px 16px;
	background: #f0f8ff;
	border: 1px solid #d0e8f5;
	border-radius: 6px;
}
.internal-link::before {
	content: "\25B6 ";
	color: #0091D7;
}
.internal-link a {
	color: #0091D7;
}
