@charset "utf-8";

/*---------------------------------------------------------------------- .underline --*/

a.underline::after,
.underline a::after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--color);
}

@media (hover: hover) and (pointer: fine) {
	a:not(.disabled).underline:hover,
	.underline a:not(.disabled):hover {
		color: var(--hover);
	}
	
	a:not(.disabled).underline:hover::after,
	.underline a:not(.disabled):hover::after {
		background: var(--hover);
	}
}

/*---------------------------------------------------------------------- .hover_underline --*/

@media (hover: hover) and (pointer: fine) {
	a.hover_underline::after,
	.hover_underline a::after {
		content: '';
		position: absolute;
		bottom: -3px;
		left: 0;
		width: 0;
		height: 1px;
		background: var(--theme);
	}
	
	a.hover_underline:hover::after,
	.hover_underline a:hover::after {
		width: 100%;
	}
}

/*---------------------------------------------------------------------- .glass --*/

.glass {
	background: rgba(255, 255, 255, 0.33);
	box-shadow: 0 0 10px #ddd;
}

/*---------------------------------------------------------------------- .tasuki --*/

.tasuki, .tasuki_2, .tasuki_3 {
	position: relative;
	overflow: hidden;
}

.tasuki:before {
	content: '';
	display: block;
	position: absolute;
	top: 200px;
	left: -35%;

	width: 200%;
	height: 500px;
	transform: rotate(-20deg);

	background: linear-gradient(#f2f2f2, #eef);
	
	z-index: -1;
	opacity: 0.9;
}

.tasuki:after {
	content: '';
	display: block;
	position: absolute;
	top: 360px;
	left: -65%;

	width: 200%;
	height: 20px;
	transform: rotate(-20deg);

	background: linear-gradient(#f0f0f0, #f3f3f3);
	z-index: -1;
	opacity: 0.9;
}

.tasuki_2:before {
	content: '';
	display: block;
	position: absolute;
	top: 250px;
	left: -35%;

	width: 200%;
	height: 500px;
	transform: rotate(-20deg);

	background: linear-gradient(#f2f2f2, #ffffff);
	
	z-index: -1;
	opacity: 0.9;
}

.tasuki_2:after {
	content: '';
	display: block;
	position: absolute;
	top: 360px;
	left: -75%;

	width: 200%;
	height: 1000px;
	transform: rotate(20deg);

	background: linear-gradient(#fff, #eee);
	z-index: -2;
	opacity: 0.9;
}

.tasuki_3:before {
	content: '';
	display: block;
	position: absolute;
	top: 250px;
	left: -35%;

	width: 200%;
	height: 500px;
	transform: rotate(-20deg);

	background: linear-gradient(#f2f2f6, #f2f2f2);
	
	z-index: -1;
	opacity: 0.75;
}

.tasuki_3:after {
	content: '';
	display: block;
	position: absolute;
	top: 360px;
	left: -75%;

	width: 200%;
	height: 500px;
	transform: rotate(20deg);

	background: linear-gradient(#fafafa, #f0f0f6);
	z-index: -2;
	opacity: 0.9;
}

/*---------------------------------------------------------------------- .cover --*/

.cover {
	display: flex;
	align-items: center;
	justify-content: right;
	flex-flow: wrap;
	position: relative;
	height: calc(100vh - var(--header_height) - var(--category_menu_height));
	border-radius: var(--border_radius);
	overflow: hidden;
	background: #226;
}

.cover_bg {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	animation: cover_bg 10s linear infinite;
	filter: brightness(0.8);
}

@keyframes cover_bg {
	to {
		transform: scale(1.1);
	}
}

.cover_title, .cover_title_en {
	bottom: 0;
	left: 0;
	z-index: 1;
	color: #fff;
}

.cover_title {
	width: 100%;
	padding: 0 100px;
	text-shadow: 0 0 10px rgba(50, 50, 50, 0.5);
	font-family: YuGo-B;
	font-size: 65px;
	font-size: var(--font_cover_title);
	line-height: 1em;
}

@media (width <= 1280px) {
	.cover_title {
		text-align: center;
	}
}

@media (width <= 1024px) {
	.cover {
		height: calc(50vh - var(--header_height));
	}
}

@media (width <= 767px) {
	.cover {
		width: 100%;
		margin: 0;
		border-radius: 0;
	}
}

/*---------------------------------------------------------------------- .smart_cover --*/

.smart_cover {
	display: flex;
	align-items: center;
	padding: 0 100px;
	height: 250px;
	border-radius: var(--border_radius);
	background: var(--theme);
}

.smart_cover .title {
	width: 100%;
	font-family: YuGo-B;
	font-size: 65px;
	font-size: var(--font_cover_title);
	line-height: 1em;
	color: #fff;	
}

@media (width <= 1366px) {
	.smart_cover {
		height: 200px;
	}
}

@media (width <= 1024px) {
	.smart_cover {
		height: 150px;
		padding: 0 50px;
	}
}

@media (width <= 767px) {
	.smart_cover {
		width: 100%;
		height: 150px;
		padding: 0;
		border-radius: 0;
	}
	
	.smart_cover .title {
		text-align: center;
	}
}

/*---------------------------------------------------------------------- .box --*/
/*
.box {
	margin-top: 50px;	
	padding: 100px;
	border-radius: var(--border_radius);  
	box-shadow: var(--box_shadow_light);
	background: #fff;
}

.box.no_border {
	padding-bottom: 0;
	box-shadow: none;
}

@media (width <= 1024px) {
	.box {
		margin: 0;
		padding: 50px 50px;
	}
	
	.box.no_border {
		padding: 0;
	}
	
	.box_title {
		margin: -15px 0 30px;
		font-size: 40px;
	}
}

@media (width <= 768px) {
	.box {
		padding: 50px 25px 25px;
	}
}
*/
/*---------------------------------------------------------------------- .section_title --*/

.wrap_section_title {
	margin: calc(var(--margin) * -1.5) 0 50px;
}

.wrap_section_title * {
	line-height: 1em;
}
	
.section_title_en {
	color: var(--theme);
	font-family: RobotoCnd-B;
	font-size: var(--font_title_en);
}

.section_title {
	position: relative;
	margin-top: 5px;
}

.section_title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 2em;
	height: 1px;
	background: var(--theme);
}

@media (width <= 767px) {
	.wrap_section_title {
		margin-top: 0 0 30px;
	}
}

/*---------------------------------------------------------------------- .general_copy --*/

.general_copy {
	padding: 100px 0;

	font-size: 22px;
	letter-spacing: 2px;
	text-align: center;
}

@media (width <= 1024px) {
	.general_copy {
		padding: 75px 0;

		font-size: 18px;
	}
}

@media (width <= 768px) {
	.general_copy {
		padding: 50px 15px;

		font-size: 13px;
		text-align: left;
	}
}

/*---------------------------------------------------------------------- .general_title --*/

.general_title {
	font-weight: bold;
	text-align: center;
	line-height: 1em;
}

.general_title:after {
	content: '';
	display: block;	
	margin-left: calc(50% - 25px);
	width: 50px;
	height: 1px;
	margin-top: 20px;
	background: #333;
}

@media (min-width: 769px) {
	.general_title {
		margin-bottom: 50px;
	}
	
	.general_title {
		font-size: 42px;
	}
}

@media (width <= 768px) {
	.general_title {
		margin-bottom: 30px;
	}
	
	.general_title {
		font-size: 22px;
	}

	.general_title:after {
		margin-top: 15px;
	}
}

.general_title_note {
	font-weight: bold;
	text-align: center;
}

@media (hover: hover) and (pointer: fine) {
	
}

/*---------------------------------------------------------------------- .general_button --*/

.general_button {
	display: block;
	border: 0px solid #eee;
	border-radius: 3px;
	background: url(/asset/image/general/footer/arrow_3_000.png?m=20000101) no-repeat center right / auto 100%, linear-gradient(to right, #ddf, #ffd);
	text-align: center;
	font-family: Caveat-R;
}

@media (min-width: 1025px) {
	.general_button {
		width: 100%;
		margin: 50px 0% 0;
		line-height: 100px;
		font-size: 28px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.general_button {
		transition: 0.2s;
	}
	
	.general_button:hover {
		background: linear-gradient(to right, #226, #226 82.49%, #fc0 82.5%, #fc0);
		background: url(/asset/image/general/footer/arrow_3_fff.png?m=20000101) no-repeat center right / auto 100%, #226;
		color: #fff;
	}
}

/*---------------------------------------------------------------------- .agreement --*/

.agreement {
	display: flex;
	flex-wrap: wrap;
}

.agreement div {
	width: 100%;
}

.agreement dt {
	width: 100%;
	margin: 100px 0 15px;
	font: var(--font_title); 
}

.agreement dd {
	width: 100%;
	padding-left: 20%;
}

.agreement span {
	padding-right: 15px;
	font-family: Helvetica-B;
	font-size: 32px;
}

@media (width <= 1024px) {
	.agreement dt {
		width: 100%;
		margin: 30px 0 10px;
		font: var(--font_title); 
	}
	
	.agreement dd {
		padding-left: 23px;
	}
	
	.agreement span {
		padding-right: 5px;
		font-size: 28px;
	}
}

@media (width <= 500px) {
	.agreement span {
		font-size: 22px;
	}
}