@charset "utf-8";

/**
 * ---------------------------------------------------
 * overseas_shipping_ws
 * ---------------------------------------------------
 */
 .overseas_shipping {
	font-size: 62.5%;
	font-feature-settings: "palt";
 }
.free_page_body #ulayer_cont .ul_tit_area h2 {
	width: 240px;
}
@media only screen and (max-width: 767px) {
	.free_page_body #ulayer_cont .ul_tit_area h2 {
		width: calc(240px/2);
	}
}
/* web font */
.jp {
	font-family: "Noto Sans JP", sans-serif;
	font-feature-settings: "palt";
}
.en {
	font-family: "Roboto", sans-serif;
}
.sc {
	font-family: "Noto Sans SC", sans-serif;
}
.tc {
	font-family: "Noto Sans TC", sans-serif;
}
.kr {
	font-family: "Noto Sans KR", sans-serif;
}
/* tab_area */
.tab_area {
	width: calc(100vw * 1100 / 1400);
	max-width: 1100px;
	margin: 125px auto 0 auto;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #005EAC;
}
.tab_area li {
	display: block;
	width: calc(100% / 5 - 4px);
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1;
	font-weight: 500;
	cursor: pointer;
	background-color: rgba(0, 94, 172, .05);
	border: 1px solid rgba(0, 94, 172, .05);
	color: #005EAC;
	border-radius: 4px 4px 0 0;
	text-align: center;
	padding: 15px 0;
	transition: background-color .3s ease, border .3s ease, color .3s ease;
}
.tab_area li.active,
.tab_area li:hover {
	background-color: rgba(0, 94, 172, 1);
	border: 1px solid rgba(0, 94, 172, 1);
	color: #fff;
}
@media only screen and (max-width: 767px) {
	.tab_area {
		width: 80vw;
		max-width: 80vw;
		margin: 65px auto 0 auto;
		flex-wrap: wrap;
		gap: 5px;
		border-bottom: none;
	}
	.tab_area li {
		width: calc(100% / 2 - 2.5px);
		border-radius: 4px;
		padding: 12px 0;
		transition: none;
	}
	.tab_area li:hover {
		background-color: rgba(0, 94, 172, .05);
		border: 1px solid rgba(0, 94, 172, .05);
		color: #005EAC;
	}
	.tab_area li.active {
		background-color: rgba(0, 94, 172, 1);
		border: 1px solid rgba(0, 94, 172, 1);
		color: #fff;
	}
}
/* container_area */
.container_area {
	width: calc(100vw * 1100 / 1400);
	max-width: 1100px;
	margin: 65px auto 0 auto;
}
.content_box {
	display: none;
}
.content_box.jp {
	display: block;
}
.content_box article:nth-child(n + 2) {
	margin: 65px 0 0 0;
}
.content_box article h3 {
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #005EAC;
	display: inline-block;
	padding: 14px 35px;
	background: repeating-linear-gradient(
		45deg,
		rgba(0, 94, 172, .1) 0,
		rgba(0, 94, 172, .1) 2.8px,
		#fff 2.8px,
		#fff 5.6px
	);
}
.content_box article .item {
	margin: 30px 0 0 0;
}
.content_box article .item ul.note_count {
	counter-reset: num;
	list-style: none;
	padding: 0;
}
.content_box article .item ul.note_count li {
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
	counter-increment: num;
	position: relative;
	padding: 0 0 0 1.5em;
}
.content_box article .item ul.note_count li::before {
	content: counter(num) ".";
	position: absolute;
	left: 0;
	top: 0;
}
.content_box article .item p {
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
}
.content_box article .item p.link_btn {
	margin: 25px 0 0 0;
	line-height: 1;
}
.content_box article .item p.link_btn a {
	color: #005EAC;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	transition: gap .3s ease, opacity .3s ease;
}
.content_box article .item p.link_btn a:hover {
	gap: 15px;
	opacity: .6;
}
.content_box article .item p.link_btn a:hover {
	text-decoration: none;
}
.content_box article .item p.link_btn a svg {
	width: 25px !important;
	height: auto;
	aspect-ratio: 1 / 1;
}
.content_box article ul.note_circle {
	list-style: none;
	padding: 0;
	margin: 25px 0 0 0;
}
.content_box article ul.note_circle li {
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
	position: relative;
	padding: 0 0 0 1.5em;
}
.content_box article ul.note_circle li::before {
	content: "";
	width: 0.8em;
	height: 0.8em;
	background-color: #005EAC;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.content_box article ul.note_circle li:not(:first-child) {
	margin: 5px 0 0 0;
}
@media only screen and (max-width: 767px) {
	.container_area {
		width: 80vw;
		max-width: 80vw;
		margin: 45px auto 0 auto;
	}
	.content_box article:nth-child(n + 2) {
		margin: 45px 0 0 0;
	}
	.content_box article .item {
		margin: 20px 0 0 0;
	}
	.content_box article .item p.link_btn {
		margin: 20px 0 0 0;
	}
	.content_box article .item p.link_btn a {
		line-height: 1.6;		
		transition: none;
	}
	.content_box article .item p.link_btn a:hover {
		gap: 10px;
		opacity: 1;
	}
	.content_box article ul.note_circle {
		margin: 20px 0 0 0;
	}
}