
/* START WSYS-11233 渡航中容量追加とは？ページ_対応国追加 20240806 N.Kita */

/* country_area_list */
.country_area_list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}
.country_area_list > li {
	width: 19%;
}
.country_area_list > li:nth-child(-n+4) {
	width: 24%;
	margin-bottom: 12px;
}
.country_area_list > li a {
	display: block;
	padding: 10px 10px 10px 5px;
	border: 1px solid #c4c4c4;
	border-bottom: 3px solid #184ea6;
	color: #184ea6;
	font-size: 1.2rem;
	text-align: center;
}
.country_area_list > li a.current {
	background-color: #184ea6;
	border-color: #184ea6;
	color: #fff;
}
.country_area_list > li a:hover {
	background-color: #184ea6;
	color: #fff;
	text-decoration: none;
}

/* country_area */
.country_area ul {
	display:flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.country_area ul > li {
	display: flex;
	flex-direction: column;
	width: calc(100% / 4);
}
.country_area ul > li a {
	display: flex;
	justify-content: flex-start;
	flex-grow: 1;
	padding: 10px 12px;
	background-repeat: no-repeat;
	background-position: 5px center;
	color: #0a4087;
	font-size: 1.3rem;
	pointer-events: none;
	line-height: 25px;
}
.country_area ul > li a.color {
	background-color: #f8f8f8;
}
.country_area ul > li a .flag_icon {
	width: 25px;
	height: 25px;
	margin-right: 10px;
	border: 1px solid #cecece;
	border-radius: 50%;
}

/* notes */
/* WSYS-11341 【フロント】容量追加不可の特定のWiFi機器を削除 20240820 N.Kita - .notesのCSSを全体的に調整 */
.notes {
	background: #fff;
	padding: 15px 30px;
	border: solid 2px #e30000;
	display: flex;
	justify-content: space-around;
	margin-top: 20px;
}
.notes_textArea {
	width: 100%;
}
.notes_title {
	font-size: 2rem;
	padding-bottom: 5px;
}
.notes_list {
	padding-top: 5px;
}

/* sp用 */
@media screen and (max-width: 768px) {
	.countries_area_table {
		width: 100%;
		border-spacing: 0;
		border-collapse: collapse;
	}
	.countries_area_table td {
		width: 50%;
		padding: 10px;
		border: 1px solid #ddd;
	}
	.countries_area_table tr:nth-of-type(even) td {
		background: #f8f8f8;
	}
	.notes {
		flex-direction: column;
		align-items: center;
		padding: 1.5rem 1.2rem;
	}
	.notes_title {
		font-size: 1.4rem;
	}
}
/* E N D WSYS-11233 渡航中容量追加とは？ページ_対応国追加 20240806 N.Kita */