@charset "utf-8";

/*==========================================
 top
===========================================*/
.top p {
	padding: 10px;
}
.top p.overview {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 10px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	background: #f08b00;
	border-radius: 3em;
}
.top p.campaign {
	max-width: 750px;
	margin: 0 auto;
	text-align: left;
}
@media only screen and (max-width: 768px) {
	.top p {
		font-size: 14px;
	}
	.top p.overview {
		font-size: 16px;
	}
}

/*==========================================
 reason
===========================================*/
.reason h2 strong {
	font-size: 35px;
}
.reason ul {
	display: flex;
	justify-content: center;
}
.reason ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	width: 200px;
	height: 150px;
	margin: 0 15px;
	border: solid 3px #e7604b;
	border-radius: 10px;
	counter-increment: reason_item;
	font-weight: 700;
}
.reason ul li:before {
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 35px;
	height: 35px;
	margin: auto;
	border-radius: 35px;
	background: #e7604b;
	color: #fff;
	font-family: Roboto,sans-serif;
	text-align: center;
	content: counter(reason_item);
	transform: translateY(-50%);
}
.reason ul li:nth-child(1) strong {
	font-size: 59px;
	line-height: 52px;
	overflow-y: clip;
}
.reason ul li:nth-child(2) strong {
	font-size: 30px;
	line-height: 25px;
}
.reason ul li:nth-child(2) strong span {
	font-size: 20px;
}
.reason ul li:nth-child(3) strong {
	font-size: 25px;
}
@media only screen and (max-width: 768px) {
	.reason ul {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.reason ul li {
		margin-bottom: 25px;
	}
}

/*==========================================
 item
===========================================*/
.item .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}
.item .list .category {
	position: relative;
	width: calc(100%/4);
	margin: 0 10px;
}
.item .list li .menu {
	cursor: pointer;
}
.item .list li .menu .name {
	padding: 5px 0;
	margin-bottom: 1px;
	border: solid 1px #aaa;
	position: relative;
	font-weight: 600;
}
.item .list li .menu .name:after {
	display: block;
	position: absolute;
	top: 40%;
	right: 0.75em;
	width: 0.5em;
	height: 0.5em;
	border-right: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
	content: '';
	transform: translateY(-50%) rotate(45deg);
}
.item .list li .accordion {
	display: none;
	z-index: 99999999990;
	position: absolute;
	width: 100%;
	opacity: 0.96;
	cursor: pointer;
}
.item .list li .accordion li {
	width: 100%;
	margin: 0;
	padding: 5px 10px;
	background: #333;
	color: #fff;
	border-bottom: solid 1px #fff;
	font-size: 14px;
	font-weight: 600;
	text-align: left;
}
.item .toggle {
	display: none;
}
.item .toggle:checked+.accordion {
	display: block;
}
@media only screen and (max-width: 768px) {
	.item .list .category {
		width: calc(100%/3);
		min-width: 135px;
		margin: 0 5px;
	}
	.item .list li .menu .name {
		font-size: 12px;
	}
	.item .list li .accordion li {
		font-size: 11px;
		font-weight: 500;
	}
}

/*==========================================
 brand
===========================================*/
.brand input[type='radio']{
	display: none;
}
.brand .note {
	font-size: 14px;
	font-weight: bold;
}
.brand .tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.brand .tab_item {
	width: calc(100%/8);
	padding: 10px 0;
	margin: 0 -1px -1px 0;
	border: solid 1px #aaa;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
}
.brand .tabs input[type='radio']:checked+.tab_item {
	background: #333;
	color: #fff;
}
.brand .tab_content {
	margin-top: 20px;
}
.brand .tab_content h3 {
	border-bottom: solid 1px #666;
	font-size: 20px;
	font-weight: bold;
	padding: 5px 10px;
}
.brand .tab_content ul {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
}
.brand .tab_content ul li {
	width: calc(100%/4 - 10px);
	min-height: 50px;
	background: #f2f2f2;
	box-shadow: inset 0 -1px 1px rgb(0 0 0 / 20%);
	text-align: left;
	margin: 5px;
	padding: 5px;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: 900;
}
.brand .tab_content ul li span {
	display: block;
	font-size: 11px;
	line-height: 18px;
}
.brand button {
	position: relative;
	min-width: 250px;
	width: 50%;
	height: 40px;
	background: #fff;
	border: solid 1px #666;
	margin-top: 30px;
	font-weight: 600;
}
.brand button:after {
	display: block;
	position: absolute;
	top: 40%;
	right: 0.75em;
	width: 0.5em;
	height: 0.5em;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	content: '';
	transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 1040px) {
	.brand .tab_item {
		width: calc(100%/4);
	}
	.brand .tab_content ul li {
		width: calc(100%/2 - 10px);
	}
}
@media only screen and (max-width: 768px) {
	.brand .tab_item {
		width: calc(100%/2);
	}
}

/*==========================================
 record
===========================================*/
.record .record_item {
	margin-top: 30px;	
}
.record .record_item h3 {
	padding: 10px 15px;
	margin: 10px 0 20px;
	text-align: left;
	background: #430e0e;
	border-radius: 5px;
	color: #fff;
	font-size: 20px;
}
.record .record_item ul {
	display: flex;
	flex-wrap: wrap
}
.record .record_item ul li {
	display: flex;
	flex-direction: column;
	width: 25%;
	padding: 0 20px;
	text-align: left;
	margin-bottom: 35px;
}
.record .record_item ul li .products-wrap {
	display: flex;
	flex: 1;
	flex-direction: column;
}
.record .record_item ul li .products-img {
	height: 200px;
}
.record .record_item ul li .products-img img {
	display: block;
	max-width: 200px;
	width: auto;
	max-height: 200px;
	margin: auto;
}
.record .record_item ul li .products-box {
	display: flex;
	flex: 1;
	flex-direction: column;
	margin-top: 10px;
}
.record .record_item ul li .products-brand {
	display: -webkit-box;
	overflow: hidden;
	min-height: 28px;
	max-height: 54px;
	height: 100%;
	font-size: 18px;
	font-weight: 700;
	line-height: 27px;
	word-wrap: break-word;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow-wrap: break-word;
}
.record .record_item ul li .products-name {
	display: -webkit-box;
	overflow: hidden;
	min-height: 72px;
	margin-top: 8px;
	font-size: 14px;
	line-height: 24px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.record .record_item ul li .products-price {
	margin-top: 10px;
	color: #b70a00;
	font-size: 25px;
	font-weight: 700;
	line-height: 27px;
}
.record .record_item ul li .products-price span,
.record .record_item ul li .products-note {
	font-size: 14px;
}
@media only screen and (max-width: 768px) {
	.record .record_item ul li {
		width: 50%;
		padding: 0 5px;
	}
	.record .record_item ul li .products-img {
		height: 152px;
	}
	.record .record_item ul li .products-img img {
		max-width: 152px;
	}
	.record .record_item ul li .products-box {
		margin-top: 0;
	}
	.record .record_item ul li .products-brand {
		min-height: 18px;
		max-height: 63px;
		font-size: 3.73333vw;
		line-height: 5.6vw;
		-webkit-line-clamp: 3;
	}
	.record .record_item ul li .products-name {
		font-size: 3.2vw;
		line-height: 4.8vw;
		min-height: 14.4vw;
		margin-top: 0;
	}
	.record .record_item ul li .products-price {
		margin-top: 1.33333vw;
		font-size: 5.33333vw;
		line-height: 6.93333vw;
	}
	.record .record_item ul li .products-price span {
		margin-left: 0.26667vw;
		font-size: 2.66667vw;
		line-height: 3.73333vw;
	}
	.record .record_item ul li .products-note {
		margin-top: 1.06667vw;
		font-size: 2.93333vw;
		line-height: 4.26667vw;
	}
}

/*==========================================
 flow
===========================================*/
.flow .list {
	display: flex;
	justify-content: center;
}
.flow .list .step {
	margin-right: 67px;
}
.flow .list .step .step-img {
	position: relative;
}
.flow .list .step .step-img:after {
	position: absolute;
	top: 50%;
	right: -33.5px;
	width: 13px;
	height: 11px;
	background: url(../img/step_arrow.svg) no-repeat center/contain;
	content: '';
	transform: translate(50%,-50%);
}
.flow .list .step:last-child {
	margin-right: 0;
}
.flow .list .step:last-child .step-img:after {
	display: none;
}
.flow .list .step p {
	font-size: 18px;
	font-weight: bold;
}
.flow .list .step p span {
	display: block;
	margin-bottom: 5px;
	color: #430e0e;
	font-size: 26px;
	line-height: 1;
}
.flow .flow-desc {
	margin-top: 40px;
	font-size: 18px;
	font-weight: bold;
}
@media only screen and (max-width: 768px) {
	.flow .list .step {
		margin-right: 0;
		padding: 0 3.46667vw;
	}
	.flow .list .step .step-img:after {
		right: -3.46667vw;
		width: 3.46667vw;
		height: 2.93333vw;
	}
	.flow .list .step p {
		margin-top: 2.13333vw;
		font-size: 3.2vw;
		line-height: 1.5;
	}
	.flow .list .step p span {
		font-size: 4.8vw;
	}
	.flow .flow-desc {
		margin-top: 5.867vw;
		font-size: 3.73333vw;
		line-height: 7.46667vw;
	}
}

/*==========================================
 kit
===========================================*/
@media only screen and (max-width: 768px) {
	
}

/*==========================================
 assessment
===========================================*/
.assessment div.info {
	font-size: 20px;
	margin-bottom: -20px;
}
@media only screen and (max-width: 768px) {
	.assessment div.info {
		font-size: 16px;
		text-align: left;
		margin-bottom: 0px;
	}
}

/*==========================================
 course
===========================================*/
@media only screen and (max-width: 768px) {
	
}

/*==========================================
 required
===========================================*/
.required .desc {
	text-align: left;
}
.required .desc h3 {
	text-align: center;
}
.required .desc p {
	margin-top: 15px;
}
.required .desc h4 {
	margin-top: 30px;
	text-align: center;
	background: #333;
	color: #fff;
	padding: 5px;
}
.required .desc ul li {
	margin: 0;
	font-weight: bold;
}
@media only screen and (max-width: 768px) {
	
}

/*==========================================
 contact
===========================================*/
.contact p {
	font-size: 18px;
}
@media only screen and (max-width: 768px) {
	.contact p {
		font-size: 15px;
		text-align: left;
	}
}

/*==========================================
 faq
===========================================*/
.faq h1 {
	font-size: 32px;
	margin-top: 15px;
}
.faq ul.block {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	font-weight: 500;
}
.faq ul li {
	padding: 10px 0 20px 0;
	border-bottom: solid 1px #aaa;
}
.faq .block .question {
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	min-height: 73px;
	height: auto;
	padding: 18px 30px 18px 24px;
	color: #430e0e;
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
}
.faq .block .question:before {
	position: absolute;
	top: 18px;
	left: 0;
	margin-right: 8px;
	color: #430e0e;
	font-family: Roboto,sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	content: 'Q';
}
.faq .block .answer {
	position: relative;
	margin-top: 0;
	padding-left: 24px;
	text-align: left;
}
.faq .block .answer:before {
	position: absolute;
	top: 1px;
	left: 0;
	margin-right: 0;
	color: #b22222;
	font-family: Roboto,sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	content: 'A';
}
.faq .block .answer .app {
	display: flex;
}
.faq .block .answer .app .item {
	padding: 10px;
}
.faq .block .answer .app div .app_title {
	height: 80px;
}
.faq .block .answer p {
	padding-bottom: 10px;
}
.faq .block .answer a {
	cursor: pointer;
	color: #b22222;
	text-decoration: underline;
}
@media only screen and (max-width: 890px) {
	.faq ul.block {
		padding: 0 15px;
	}
	.faq .block .answer .app div .app_title {
		font-size: 14px;
	}
}
@media only screen and (max-width: 785px) {
	.faq .block .answer .app div .app_title {
		height: 70px;
		font-size: 12px;
	}
}
@media only screen and (max-width: 570px) {
	.faq .block .answer .app {
		flex-direction: column;
		padding: 0;
	}
	.faq .block .answer .app .item {
		padding: 0 0 10px 0;
	}
	.faq .block .answer .app div .app_title {
		height: auto;
		font-size: 15px;
	}
}
