@charset "utf-8";

/**
 * ---------------------------------------------------
 * overseas_shipping
 * ---------------------------------------------------
 */
 .overseas_shipping {
	font-size: 62.5%;
 }
.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;
}
/* about_area */
.about_area {
	margin: 125px 0 0 0;
}
.about_area ul {
	width: calc(100vw * 1045 / 1400);
	max-width: 1045px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: clamp(0px, calc(100vw * 45 / 1400), 45px);
}
.about_area ul li {
	width: calc(100vw * 500 / 1400);
	max-width: 500px;
}
.about_area ul li h3 {
	font-size: 2rem;
	font-weight: 600;
	color: #005EAC;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
}
.about_area ul li.jp h3 {
	letter-spacing: 0.15em;
}
.about_area ul li p {
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
	margin: 15px 0 0 0;
}
@media only screen and (max-width: 767px) {
	.about_area {
		margin: 65px 0 0 0;
	}
	.about_area ul {
		width: 80vw;
		max-width: 80vw;
		display: block;
	}
	.about_area ul li {
		width: 100%;
		max-width: 100%;
	}
	.about_area ul li:nth-child(n + 2) {
		margin: 45px 0 0 0;
	}
	.about_area ul li p {
		margin: 10px 0 0 0;
	}
}
/* method */
.method {
	width: calc(100vw * 1100 / 1400);
	max-width: 1100px;
	margin: 125px auto 0 auto;
	padding: 125px 0;
	position: relative;
}
.method.method_02 {
	margin: 0 auto;
}
.method::before {
	content: "";
	width: 100%;
	height: 5px;
	background: repeating-linear-gradient(
		45deg,
		rgba(0, 94, 172, .2) 0,
		rgba(0, 94, 172, .2) 2.8px,
		#fff 2.8px,
		#fff 5.6px
	);
	position: absolute;
	top: 0;
	left: 0;
}
.method h3 {
	display: inline-block;
	font-size: 3.6rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: #005EAC;
	position: relative;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
}
.method h3.jp {
	letter-spacing: 0.15em;
}
.method h3.jp span.en {
	display: block;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}
.method h3::before {
	content: "";
	font-family: "Roboto", sans-serif;
	font-size: 10rem;
	font-weight: 500;
	color: #005EAC;
	opacity: .1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
.method.method_01 h3::before {
	content: "01";
}
.method.method_02 h3::before {
	content: "02";
}
.method.method_01 .list {
	width: calc(100vw * 620 / 1400);
	max-width: 620px;
	margin: 65px auto 0 auto;
}
.method.method_01 .list ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: clamp(0px, calc(100vw * 60 / 1400), 60px);
}
.method.method_01 .list ul li {
	width: calc(100vw * 280 / 1400);
	max-width: 280px;
}
.method.method_01 .list ul li p.link a,
.method.method_02 .link p:nth-child(1) a,
.guide .item .element p:nth-child(2) a {
	display: block;
	background-color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: #005EAC;
	text-align: center;
	border: 1px solid #005EAC;
	padding: 25px 0;
	position: relative;
	transition: background-color .3s ease, color .3s ease;
}
.method.method_02 .link p:nth-child(1) a,
.guide .item .element p:nth-child(2) a {
	display: inline-block;
	padding: 25px 60px;
}
.method.method_01 .list ul li p.link a:hover,
.method.method_02 .link p:nth-child(1) a:hover,
.guide .item .element p:nth-child(2) a:hover {
	background-color: #005EAC;
	color: #fff;
	text-decoration: none;
}
.method.method_01 .list ul li p.link a::before,
.method.method_02 .link p:nth-child(1) a::before,
.guide .item .element p:nth-child(2) a::before {
	content: "";
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(
		45deg,
		rgba(0, 94, 172, .2) 0,
		rgba(0, 94, 172, .2) 2.8px,
		#fff 2.8px,
		#fff 5.6px
	);
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: -1;
	transition: top .3s ease, left .3s ease;
}
.method.method_01 .list ul li p.link a:hover::before,
.method.method_02 .link p:nth-child(1) a:hover::before,
.guide .item .element p:nth-child(2) a:hover::before {
	top: 0;
	left: 0;
}
.method.method_01 .list ul li p:nth-child(2) {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
	margin: 15px 0 0 0;
}
.method.method_02 .link {
	width: fit-content;
	margin: 65px auto 0 auto;
}
.method.method_02 .link p:nth-of-type(2) {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
	margin: 15px 0 0 0;
	text-align: left;
}
.method.method_02 ul {
	margin: 65px 0 0 0;
	text-align: center;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}
.method.method_02 ul li:nth-child(n + 2) {
	margin: 5px 0 0 0;
}
@media only screen and (max-width: 767px) {
	.method {
		width: 80vw;
		max-width: 80vw;
		margin: 65px auto 0 auto;
		padding: 65px 0;
	}
	.method h3 {
		font-size: 2.4rem;
	}
	.method h3::before {
		font-size: 8rem;
	}
	.method.method_01 .list {
		width: 80vw;
		max-width: 80vw;
		margin: 45px auto 0 auto;
	}
	.method.method_01 .list ul {
		display: block;
	}
	.method.method_01 .list ul li {
		width: 100%;
		max-width: 100%;
	}
	.method.method_01 .list ul li p.link a,
	.method.method_02 .link p:nth-child(1) a,
	.guide .item .element p:nth-child(2) a {
		padding: 20px 0;
		transition: none;
		display: block;
	}
	.method.method_02 .link p:nth-child(1) a
	.guide .item .element p:nth-child(2) a {
		display: block;
		padding: 20px 0;
	}
	.method.method_01 .list ul li p.link a:hover,
	.method.method_02 .link p:nth-child(1) a:hover,
	.guide .item .element p:nth-child(2) a:hover {
		background-color: #fff;
		color: #005EAC;
	}
	.method.method_01 .list ul li p.link a::before,
	.method.method_02 .link p:nth-child(1) a::before,
	.guide .item .element p:nth-child(2) a::before {
		transition: none;
	}
	.method.method_01 .list ul li p.link a:hover::before,
	.method.method_02 .link p:nth-child(1) a:hover::before
	.guide .item .element p:nth-child(2) a:hover::before {
		top: 5px;
		left: 5px;
	}
	.method.method_01 .list ul li:nth-child(n + 2) {
		margin: 45px 0 0 0;
	}
	.method.method_02 .link {
		width: 100%;
		margin: 45px auto 0 auto;
	}
	.method.method_02 ul {
		margin: 45px 0 0 0;
	}
}
/* guide */
.guide {
	width: calc(100vw * 1100 / 1400);
	max-width: 1100px;
	margin: 0 auto;
	padding: 125px 0 0 0;
	position: relative;
}
.guide::before {
	content: "";
	width: 100%;
	height: 5px;
	background: repeating-linear-gradient(
		45deg,
		rgba(0, 94, 172, .2) 0,
		rgba(0, 94, 172, .2) 2.8px,
		#fff 2.8px,
		#fff 5.6px
	);
	position: absolute;
	top: 0;
	left: 0;
}
.guide ul {
	text-align: center;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}
.guide ul li:nth-child(n + 2) {
	margin: 5px 0 0 0;
}
.guide .item {
	margin: 65px 0 0 0;
	text-align: center;
}
.guide .item .element p:nth-child(1) {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
}
.guide .item .element p:nth-child(2) {
	margin: 25px 0 0 0;
}
.guide .item .element:nth-child(2) {
	margin: 65px 0 0 0;
}
@media only screen and (max-width: 767px) {
	.guide {
		width: 80vw;
		max-width: 80vw;
		padding: 65px 0 0 0;
	}
	.guide .item {
		margin: 45px 0 0 0;
		text-align: justify;
	}
	.guide .item .element p:nth-child(2) {
		margin: 20px 0 0 0;
	}
	.guide .item .element:nth-child(2) {
		margin: 45px 0 0 0;
	}
}