/* REVIEW Import */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');

/* STUB Font Family */
.ff-1 {font-family: 'M PLUS Rounded 1c', sans-serif;}
.ff-2 {font-family: 'Sawarabi Mincho', sans-serif;}

/* STUB Blocks */
.container {
	margin-left: auto;
	margin-right: auto;
	width: 1000px;
}

/* STUB Position */
.pos-a {position: absolute;}
.pos-r {position: relative;}
.pos-u {position: unset;}

/* STUB tlbr */
.-t-80 {top: -80px;}
.t-0 {top: 0;}
.r-0 {right: 0;}
.l-0 {left: 0;}
.t-150 {top: 150px;}
.t-250 {top: 250px;}

/* STUB Text Align */
.ta-l {text-align: left;}
.ta-r {text-align: right;}
.ta-c {text-align: center;}

/* STUB Margins */
.mx-a {margin-left: auto; margin-right: auto;}
.my-0 {margin-top: 0; margin-bottom:0;}
.my-5 {margin-top: 5px; margin-bottom:5px;}
.my-10 {margin-top: 10px; margin-bottom:10px;}
.-mt-p20 {margin-top: -20%;}
.-mt-80 {margin-top: -80px;}
.-mb-20 {margin-bottom: -20px;}
.-mb-15 {margin-bottom: -15px;}
.mt-0 {margin-top: 0;}
.mt-50 {margin-top: 50px;}
.mt-80 {margin-top: 80px;}
.mb-0 {margin-bottom: 0;}
.mb-5 {margin-bottom: 5px;}
.mb-10 {margin-bottom: 10px;}
.mt-30 {margin-top: 30px;}
.mb-50 {margin-bottom: 50px;}
.mr-40 {margin-right: 40px;}
.mb-40 {margin-bottom: 40px;}
.mt-100 {margin-top: 100px;}
.mt-130 {margin-top: 130px;}
.mt-150 {margin-top: 150px;}
.mb-200 {margin-bottom: 200px;}
.mt-310 {margin-top: 310px;}
.ml-70 {margin-left: 70px;}


/* STUB Padding */
.p-30 {padding: 30px;}
.pr-0 {padding-right: 0;}
.pr-20 {padding-right: 20px;}
.px-20 {padding-left: 20px; padding-right: 20px;}
.py-5 {padding-top: 5px; padding-bottom: 5px;}
.pt-40 {padding-top: 40px;}
.pr-50 {padding-right: 50px;}

/* STUB Font Size */
.fs-14 {font-size: 14px;}
.fs-18 {font-size: 18px;}
.fs-20 {font-size: 20px;}
.fs-23 {font-size: 23px;}
.fs-35 {font-size: 35px;}
.fs-38 {font-size: 38px;}

/* STUB Font Weight */
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-700 {font-weight: 700;}

/* STUB Colors */
.co-blue {color: #28a7e1;}
.co-darkBlue {color: #036EB8;}
.co-white {color: #ffffff;}
.co-magenta {color: #EC008C;}
.co-violet {color: #2E3192;}

/* STUB Background Colors */
.bgc-blue {background-color: #28a7e1;}
.bgc-lightGray {background-color: #EEF3FA;}

/* STUB Background */
.bgpos-c {background-position: center;}
.bgpos-t {background-position: top;}
.bgs-cover {background-size: cover;}
.bgs-contain {background-size: contain;}
.bgr-nore {background-repeat: no-repeat;}

/* STUB Broders */
.bdra-20 {border-radius: 20px;}

/* STUB Letter Spacing */
.-ls-1 {letter-spacing: -1px;}
.ls-8 {letter-spacing: 8px;}

/* STUB Line Height */
.lh-28 {line-height: 28px;}
.lh-32 {line-height: 32px;}
.lh-38 {line-height: 38px;}

/* STUB Display */
.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.block {display: block;}
.iblock {display: inline-block;}

/* STUB Tables */
.tab-collapse {border-collapse: collapse}

/* STUB Flex */
.ju-sb {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
			justify-content: space-between;
}

/* STUB Z-Index */
.-z-1 {z-index: -1;}
.z-1 {z-index: 1;}
.z-2 {z-index: 2;}


/* STUB Text */
.wb-ka {word-break: keep-all;}
.ws-nowrap {white-space: nowrap;}

/* Sizing */
.w-p100 {width: 100%;}
.h-a {height: auto;}
.w-1000 {width: 1000px;}
.w-1200 {width: 1200px;}
.w-800 {width: 800px;}
.minh-600 {min-height: 600px;}
.maxw-600 {max-width: 600px;}

/* STUB Misc */
.underline-magenta:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #EC008C;
}