@charset "utf-8";


/* wrapper
----------------------------------------------- */
#wrapper {
	overflow: hidden;
}

.inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}


/* header
----------------------------------------------- */
#header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 99;
}
#header .headerin {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #00B925;
	height: 80px;
	padding: 0 50px;
}
#header .headerlogo {
	margin-right: 10px;
	flex-shrink: 0;
	position: relative;
	z-index: 100;
}

#header .headerbox {
	
}
#header .headermess {
	display: flex;
	align-items: center;
}
#header .gnavi {
	display: flex;
	align-items: center;
}
#header .gnavi li {
	margin-right: 30px;
}
#header .gnavi li a {
	font-size: 20px;
	font-weight: 700;
	display: block;
	position: relative;
}
#header .gnavi li a:before {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: "";
	width: 100%;
	height: 2px;
	background: #000;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}
#header .gnavi li a:hover:before {
	transform-origin: left top;
	transform: scale(1, 1);
}
#header .headerbtn a {
	width: 240px;
	height: 50px;
	border: 2px #000 solid;
	background: #FCEC74;
	font-size: 20px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	-ms-border-radius: 40px;
	-o-border-radius: 40px;
	border-radius: 40px;
}
#header .headerbtn a:hover {
	background: #000;
	color: #fff;
}

.hamburger {
	display: none;
}

@media (max-width: 1024px) {
.nav-open {
}
#header .headerlogo {
	font-size: 0;
	width: 70px;
}
#header .headerin {
	height: 40px;
	background: #49D848;
	padding: 0 0 0 20px;
}
#header .headerbox {
	display: flex;
	align-items: center;
}
#js-nav-bg {
	transform: translateY(-130%);
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: calc(100vh - 40px);
	transition: all 0.6s;
	z-index: 99;
	padding: 20px 20px 100px;
	background: url(../img/bg_nav.jpg) center center no-repeat #49D848;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
.nav-open #js-nav-bg {
	transform: translateY(0);
	background-size: cover;
	transition: all 0.6s;
}
.hamburger {
	display: block;
	width: 44px;
	height: 40px;
	cursor: pointer;
	z-index: 100;
	background: #FCEC74;
	position: relative;
}
.hamburger_border {
	position: absolute;
	left: 11px;
	width: 22px;
	height: 2px;
	transition: all 0.3s;
	background-color: #000;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
}
.hamburger_border_top {
	top: 12px;
}
.hamburger_border_center {
	top: 18px;
}
.hamburger_border_bottom {
	top: 24px;
}
.nav-open .hamburger_border_top {
	transform: rotate(45deg);
	top: 18px;
}
.nav-open .hamburger_border_center {
	opacity: 0;
}
.nav-open .hamburger_border_bottom {
	transform: rotate(-45deg);
	top: 18px;
}
#header .headermess {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#header .gnavi {
	display: block;
	width: 100%;
}
#header .gnavi li {
	margin: 30px 0 0;
	text-align: center;
}
#header .headerbtn {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}
#header .headerbtn a {
	max-width: 100%;
}
#header .gnavi li a:before {
	display: none;
}
}



/* footer
----------------------------------------------- */
#footer {
	background: #00B925;
	position: relative;
}
#footer .footerin {
	padding: 45px 20px;
}
#footer .fnavi {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 30px;
}
#footer .fnavi li a {
	position: relative;
	display: block;
}
#footer .fnavi li a:before {
	position: absolute;
	bottom: -2px;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background: #000;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}
#footer .fnavi li a:hover:before {
	transform-origin: left top;
	transform: scale(1, 1);
}

#footer .policy {
	margin-top: 10px;
}

#footer .copyright {
	position: absolute;
	left: 0;
	bottom: calc(100% + 20px);
	font-size: 12px;
	text-align: center;
	width: 100%;
	z-index: 1;
}

@media (max-width: 767px) {
#footer .footerin {
	padding: 20px 10px;
}
#footer .fnavi {
	column-gap: 20px;
}
#footer .fnavi li {
	font-size: 12px;
}
#footer .fnavi li a:before {
	display: none;
}
#footer .copyright {
	bottom: calc(100% + 50px);
}
}


/* anchor
----------------------------------------------- */
.block {
	position: relative;
}

.anchor {
	margin-top: -80px;
	padding-top: 80px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}
@media (max-width: 1024px) {
.anchor {
	margin-top: -40px;
	padding-top: 40px;
}
}


/* H
----------------------------------------------- */
.hdl {
	text-align: center;
	font-size: 50px;
	font-weight: 900;
	line-height: 1.45;
}
@media (max-width: 767px) {
.hdl {
	font-size: 32px;
}
}

.hdm {
	text-align: center;
	font-size: 40px;
	font-weight: 900;
	line-height: 1.5;
}

@media (max-width: 767px) {
.hdm {
	font-size: 32px;
}
}



/* contact
----------------------------------------------- */
.error {
	color: #ff0000;
}
.contact {
	background: #EBFAEB;
	padding: 100px 0 170px;
}

.contact .formbox {
	max-width: 880px;
	margin: 0 auto;
}
.contact .hdm {
	margin-bottom: 60px;
}
.contact .formtab {
	width: 100%;
}
.contact .formtab th,
.contact .formtab td {
	padding: 20px 0;
	font-weight: 500;
	vertical-align: middle;
}
.contact .formtab th {
	width: 28%;
	padding-right: 10px;
}
.contact .formtab td {
	width: 72%;
}
.contact .formtab th .thtxt {
	padding: 10px 0 10px 90px;
	position: relative;
}
.contact .formtab th .must {
	position: absolute;
	left: 0;
	top: 50%;
	width: 55px;
	height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #49D848;
	font-size: 14px;
	color: #fff;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
	transform: translateY(-50%);
	z-index: 0;
}
.contact .formtab input[type=text],
.contact .formtab input[type=email],
.contact .formtab input[type=tel] {
	width: 100%;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	border: 1px #E1E1E1 solid;
	background: #fff;
	height: 50px;
	outline: none;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 400;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}
.contact .formtab input::placeholder {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	color: #AFAFAF;
	font-size: 16px;
	font-weight: 400;
}
.contact .formtab textarea {
	width: 100%;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	border: 1px #E1E1E1 solid;
	background: #fff;
	height: 230px;
	outline: none;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 400;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}
.contact .formtab select {
	width: 100%;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	border: 1px #E1E1E1 solid;
	background: url(../img/arrow_select.svg) right 20px center no-repeat #fff;
	padding: 10px 30px 10px 20px;
	height: 50px;
	outline: none;
	font-size: 16px;
	font-weight: 400;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
}
.contact .formtab .formradio {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 50px;
}
.contact .formtab .formradio li {
	margin: 2px 0;
}
.contact .formtab .formradio label {
	display: flex;
	align-items: center;
	column-gap: 15px;
}
.contact .formtab .formradio input[type=radio] {
	width: 24px;
	height: 24px;
	border: 1px #000 solid;
	background: #fff;
	-webkit-appearance:none;
	-moz-appearance:none;
	-o-appearance:none;
	-ms-appearance:none;
	appearance: none;
	outline: none;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	position: relative;
}
.contact .formtab .formradio input[type=radio]:checked:before {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	background: #49D848;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	z-index: 0;
}
.contact .privacy {
	background: #fff;
	margin-top: 70px;
	border: 1px #E1E1E1 solid;
	padding: 20px 35px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}
.contact .privacy .privacybox {
	height: 200px;
	overflow-y: scroll;
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
}
.contact .privacy .privacybox::-webkit-scrollbar{
	display: none;
}
.contact .privacy .privacybox {
	scrollbar-width: none;
}
.contact .agreebox {
	margin-top: 55px;
}
.contact .agree {
	font-size: 14px;
	text-align: center;
}
.contact .agree label {
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact .agree .agreetxt {
	font-weight: 700;
	color: #3D3A39;
}
.contact .agree .agreetxt a {
	display: inline-block;
	color: #49D848;
	text-decoration: underline;
}
.contact .agree .agreetxt a:hover {
	text-decoration: none;
}
.contact .agree input[type=checkbox] {
	flex-shrink: 0;
	margin-right: 20px;
	width: 20px;
	height: 20px;
	border: 1px #333 solid;
	background: #fff;
	outline: none;
	-webkit-appearance:none;
	-moz-appearance:none;
	-o-appearance:none;
	-ms-appearance:none;
	appearance: none;
	position: relative;
}
.contact .agree input[type=checkbox]:checked:before {
	position: absolute;
	content: "";
	background: url(../img/ico_check.png) center center no-repeat;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 0;
}
.contact .agree .rror-container {
	text-align: center;
}
.contact .formbtn {
	margin-top: 45px;
	display: flex;
	justify-content: center;
}
.contact .formbtn input[type=submit] {
	border: 1px #00A658 solid;
	background: url(../img/arrow_set.svg) right 40px center no-repeat #fff;
	width: 494px;
	max-width: 100%;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 900;
	color: #49D848;
	height: 80px;
	cursor: pointer;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	border-radius: 50px;
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important; /* Firefox */
	-webkit-transition: all 0.3s !important; /* Chrome&Safari */
}
.contact .formbtn input[type=submit]:hover {
	background: url(../img/arrow_set_on.svg) right 40px center no-repeat #00B925;
	color: #fff;
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important; /* Firefox */
	-webkit-transition: all 0.3s !important; /* Chrome&Safari */
}

@media (max-width: 767px) {
.contact {
	padding: 50px 0 100px;
}
.contact .hdm {
	margin-bottom: 50px;
}
.contact .formtab th,
.contact .formtab td {
	display: block;
	padding: 0;
}
.contact .formtab th {
	width: auto;
	padding: 0 0 10px;
}
.contact .formtab td {
	width: auto;
	padding: 0 0 30px;
}
.contact .formtab th .thtxt {
	padding: 0;
	display: flex;
	align-items: center;
}
.contact .formtab th .must {
	position: relative;
	left: auto;
	top: auto;
	transform: translateY(0);
	margin-right: 10px;
}
.contact .formtab .formradio {
	column-gap: 10px;
}
.contact .privacy {
	margin-top: 20px;
	padding: 15px 20px;
}
.contact .privacy .privacybox {
	height: 220px;
}
.contact .agreebox {
	margin-top: 30px;
}
.contact .formbtn input[type=submit] {
	background: url(../img/arrow_set.svg) right 25px center no-repeat #fff;
	background-size: 5px auto;
	width: 290px;
	font-size: 14px;
	height: 46px;
}
.contact .formbtn input[type=submit]:hover {
	background: url(../img/arrow_set_on.svg) right 25px center no-repeat #00B925;
	background-size: 5px auto;
}
.contact .formtab .formradio label {
	column-gap: 5px;
}
}



/* confirm
----------------------------------------------- */
.formother {
	padding: 180px 0 120px;
	min-height: calc(100vh - 114px);
}
.formother .formbox {
	max-width: 766px;
}

.formback {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.formback a {
	display: block;
	position: relative;
}
.formback a:before {
	position: absolute;
	content: "";
	background: #000;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -3px;
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important; /* Firefox */
	-webkit-transition: all 0.3s !important; /* Chrome&Safari */
	z-index: 0;
}
.formback a:hover:before {
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important; /* Firefox */
	-webkit-transition: all 0.3s !important; /* Chrome&Safari */
	opacity: 0;
}

@media (max-width: 767px) {
.formother {
	padding: 100px 0;
	min-height: calc(100vh - 58px);
}
.formback a {
	font-size: 14px;
}
}



/* thanks
----------------------------------------------- */
.thanksbox {
	text-align: center;
	padding: 10px 0 30px;
}

@media (max-width: 767px) {
.thanksbox {
	padding: 0;
}
}



/* main
----------------------------------------------- */
.main {
	background: url(../img/bg_main.jpg) center bottom no-repeat;
	background-size: cover;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 110px 20px;
	column-gap: 15px;
}
.main .mainmess {
}
.main .maintit {
	text-align: center;
	margin-bottom: 30px;
}
.main .maintype {
	display: flex;
	justify-content: center;
	column-gap: 12px;
}
.main .maintype li {
	background: #F4F4A6;
	width: 166px;
	height: 166px;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}
.main .maintype .typein {
	font-size: 20px;
	font-weight: 900;
	color: #168039;
	text-align: center;
}
.main .maintype .typein .lar {
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
}
.main .maintype .typein .mid {
	font-size: 24px;
	line-height: 1.45;
}
.main .mainimg {
	
}
.main .mainimgsp {
	display: none;
}
@media (max-width: 1024px) {
.main {
	flex-direction: column;
	height: auto;
	column-gap: 0;
	padding: 80px 20px 50px;
}
.main .mainimg {
	display: none;
}
.main .mainimgsp {
	display: block;
	text-align: center;
}
.main .mainimgsp img {
	width: 400px;
}
.main .maintit {
	margin-bottom: 20px;
}
.main .maintit img {
	width: 400px;
}
.main .maintype {
	margin-top: 20px;
}
.main .maintype li {
	width: 120px;
	height: 120px;
}
.main .maintype .typein {
	font-size: 16px;
}
.main .maintype .typein .lar {
	font-size: 30px;
}
.main .maintype .typein .mid {
	font-size: 20px;
}
}

@media (max-width: 767px) {
.main {
	background: url(../img/bg_nav.jpg) center center no-repeat;
	background-size: cover;
	height: 100vh;
	padding: 40px 20px 100px;
}
.main .mainmess {
	max-width: 100%;
}
.main .maintit {
	margin-bottom: 5px;
}
.main .maintype {
	column-gap: 6px;
	margin-top: 20px;
}
.main .maintype li {
	width: 108px;
	height: 108px;
}
.main .maintype .typein {
	font-size: 14px;
}
.main .maintype .typein .lar {
	font-size: 24px;
}
.main .maintype .typein .mid {
	font-size: 16px;
}
}


.mainfix {
	position: fixed;
	left: 0;
	bottom: 30px;
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 0 20px;
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important; /* Firefox */
	-webkit-transition: all 0.3s !important; /* Chrome&Safari */
	z-index: 3;
}
.mainfix a {
	width: 1160px;
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px #000 solid;
	background: #FCEC74;
	height: 80px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	border-radius: 50px;
}
.mainfix a .fixin {
	display: block;
	padding-left: 100px;
	font-size: 32px;
	font-weight: 900;
	line-height: 1.4;
	text-align: center;
	position: relative;
}
.mainfix a .fixin img {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.mainfix a:hover {
	background: #000;
	color: #fff;
}
.showchange .mainfix {
	bottom: 0;
	transform: translateY(150%);
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important; /* Firefox */
	-webkit-transition: all 0.3s !important; /* Chrome&Safari */
}


@media (max-width: 767px) {
.mainfix {
	bottom: 20px;
}
.mainfix a {
	width: 100%;
	height: 50px;
}
.mainfix a .fixin {
	padding-left: 65px;
	font-size: 16px;
}
.mainfix a .fixin img {
	width: 62px;
}
}



/* problem
----------------------------------------------- */
.problem {
	background: #FEFAE7;
	padding: 100px 0 65px;
	position: relative;
}
.problem:before {
	position: absolute;
	content: "";
	left: 0;
	top: 100%;
	border-top: 107px solid #FEFAE7;
	border-bottom: 0;
	border-left: 50vw solid transparent;
	border-right: 50vw solid transparent;
	z-index: 1;
}
.problem .problemhd {
	display: flex;
	justify-content: center;
	margin-bottom: 100px;
}
.problem .problemhd .hdin {
	padding: 0 45px;
	font-size: 40px;
	font-weight: 900;
	text-align: center;
	position: relative;
}
.problem .problemhd .hddot {
	position: relative;
	display: inline-block;
}
.problem .problemhd .hddot:before {
	position: absolute;
	content: "";
	background: #49D848;
	width: 7px;
	height: 7px;
	left: 50%;
	transform: translateX(-50%);
	bottom: calc(100% - 6px);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	z-index: 0;
}
.problem .problemhd .hdin:before {
	position: absolute;
	content: "";
	background: #49D848;
	width: 4px;
	height: 90%;
	left: 0;
	bottom: 0;
	transform: rotate(-20deg);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	z-index: 0;
}
.problem .problemhd .hdin:after {
	position: absolute;
	content: "";
	background: #49D848;
	width: 4px;
	height: 90%;
	right: 0;
	bottom: 0;
	transform: rotate(20deg);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	z-index: 0;
}
.problem .problemlist {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 1.4%;
	margin-bottom: -65px;
	position: relative;
	z-index: 1;
}
.problem .problemlist li {
	width: 32.4%;
	border: 2px #000 solid;
	background: #fff;
	margin-bottom: 65px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	border-radius: 15px;
	-webkit-box-shadow: 3px 3px 0 rgba(0,0,0,0.16);
	-moz-box-shadow: 3px 3px 0 rgba(0,0,0,0.16);
	-ms-box-shadow: 3px 3px 0 rgba(0,0,0,0.16);
	-o-box-shadow: 3px 3px 0 rgba(0,0,0,0.16);
	box-shadow: 3px 3px 0 rgba(0,0,0,0.16);
	position: relative;
}
.problem .problemlist li:before {
	position: absolute;
	content: "";
	background: url(../img/arrow_problem.svg) center center no-repeat;
	width: 28px;
	height: 26px;
	left: 50px;
	top: calc(100% - 7px);
	z-index: 0;
}
.problem .problemlist .problemin {
	background: #fff;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	height: 144px;
	padding: 5px 10px 0;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
	z-index: 1;
}
.problem .problemlist .num {
	position: absolute;
	background: #F4F4A6;
	width: 60px;
	height: 60px;
	top: 0;
	left: 50%;
	border: 2px #000 solid;
	transform: translate(-50%,-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	color: #00B925;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	z-index: 2;
}
.problem .problemlist .problemtxt {
	font-size: 20px;
	font-weight: 700;
}
@media (max-width: 1150px) {
.problem .problemlist .problemtxt {
	font-size: 18px;
}
}
@media (max-width: 1024px) {
.problem .problemlist {
	column-gap: 6%;
}
.problem .problemlist li {
	width: 47%;
}
}

@media (max-width: 767px) {
.problem {
	padding: 50px 0 60px;
}
.problem:before {
	border-top: 25px solid #FEFAE7;
}
.problem .problemhd {
	margin-bottom: 50px;
}
.problem .problemhd .hdin {
	padding: 0;
	font-size: 30px;
}
.problem .problemhd .hddot:before {
	width: 5px;
	height: 5px;
	bottom: calc(100% - 6px);
}
.problem .problemhd .hdin:before {
	height: 50%;
}
.problem .problemhd .hdin:after {
	height: 50%;
}
.problem .problemlist {
	flex-direction: column;
	column-gap: 0;
	margin-bottom: -50px;
}
.problem .problemlist li {
	width: 100%;
	margin-bottom: 50px;
}
.problem .problemlist .problemin {
	width: 100%;
	height: 128px;
}
.problem .problemlist .num {
	width: 40px;
	height: 40px;
	font-size: 24px;
}
.problem .problemlist .problemtxt {
	font-size: 16px;
	line-height: 1.875;
}
}
@media (max-width: 320px) {
.problem .problemhd .hdin {
	font-size: 26px;
}
}




/* company
----------------------------------------------- */
.company {
	padding: 100px 0;
}
.company .hdm {
	margin-bottom: 60px;
}
.company .compbox {
	max-width: 768px;
	margin: 0 auto;
}
.company .compbox > li {
	display: flex;
	align-items: stretch;
}
.company .compbox .compth {
	width: 166px;
	flex-shrink: 0;
	margin-right: 30px;
	border-bottom: 1px #49D848 solid;
	padding: 20px 0 10px;
}
.company .compbox .comptd {
	flex: 1;
	padding: 20px 0 10px;
	border-bottom: 1px #E0E0E0 solid;
}
.company .compbox .compdot li {
	padding-left: 1em;
	text-indent: -1em;
}
.company .compbtn {
	max-width: 784px;
	margin: 120px auto 0;
}
.company .compbtn a {
	display: flex;
	height: 100px;
	font-size: 32px;
	font-weight: 900;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 2px #000 solid;
	background: #FCEC74;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	border-radius: 50px;
}
.company .compbtn a:hover {
	background: #000;
	color: #fff;
}

@media (max-width: 767px) {
.company {
	padding: 50px 0;
}
.company .hdm {
	margin-bottom: 5px;
}
.company .compbox > li {
	display: block;
	padding: 15px 0 2px;
	border-bottom: 1px #49D848 solid;
}
.company .compbox .compth {
	width: auto;
	margin: 0 0 5px;
	padding: 0;
	border-bottom: none;
}
.company .compbox .comptd {
	padding: 0;
	border-bottom: none;
}
.company .compbtn {
	max-width: 305px;
	margin: 40px auto 0;
}
.company .compbtn a {
	height: 40px;
	font-size: 16px;
	font-weight: 700;
	border: 1px #000 solid;
}
}



/* faq
----------------------------------------------- */
.faq {
	padding: 100px 0 110px;
	background: url(../img/bg_faq.jpg) center center no-repeat fixed;
	background-size: cover;
}
.faq .hdl {
	margin-bottom: 80px;
}
.faq .faqbox+.faqbox {
	margin-top: 20px;
}
.faq .faqbox {
	background: #fff;
	padding: 30px 50px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
}
.faq .faqbox .faqico {
	width: 55px;
	flex-shrink: 0;
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
}
.faq .faqbox .qbox {
	display: flex;
	align-items: center;
	padding: 0 20px 0 0;
	cursor: pointer;
	position: relative;
}
.faq .faqbox .qbox:before {
	position: absolute;
	content: "";
	background: url(../img/arrow_faq.svg) center center no-repeat;
	width: 21px;
	height: 12px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important; /* Firefox */
	-webkit-transition: all 0.3s !important; /* Chrome&Safari */
	z-index: 0;
}
.faq .faqbox .qbox.on:before {
	transform: translateY(-50%) rotate(180deg);
	transition: all 0.3s !important;
	-moz-transition: all 0.3s !important; /* Firefox */
	-webkit-transition: all 0.3s !important; /* Chrome&Safari */
}
.faq .faqbox .qtxt {
	font-size: 20px;
	font-weight: 700;
}
.faq .faqbox .qbox .faqico {
	color: #49D848;
}
.faq .faqbox .abox {
	display: none;
	margin-top: 20px;
}
.faq .faqbox .aboxin {
	display: flex;
	align-items: flex-start;
	padding: 0 50px 0 0;
}
.faq .faqbox .abox .faqico {
	color: #FCEC74;
}
.faq .faqbox .atxt {
	align-self: center;
}


@media (max-width: 767px) {
.faq {
	padding: 50px 0;
	background: url(../img/bg_faq_sp.jpg) center center no-repeat fixed;
	background-size: cover;
}
.faq .hdl {
	margin-bottom: 30px;
}
.faq .faqbox {
	padding: 25px 20px 25px 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	border-radius: 15px;
}
.faq .faqbox .faqico {
	width: 25px;
	font-size: 24px;
}
.faq .faqbox .qbox:before {
	background: url(../img/arrow_faq.svg) center center no-repeat;
	background-size: 12px auto;
	width: 12px;
	height: 100%;
}
.faq .faqbox .abox {
	margin-top: 15px;
}
.faq .faqbox .aboxin {
	padding: 0 20px 0 0;
}
}



/* trading
----------------------------------------------- */
.trading {
	padding: 50px 0 90px;
}
.trading .hdl {
	margin-bottom: 30px;
}
.trading .tradinglogo {
	text-align: center;
}

@media (max-width: 767px) {
.trading {
	padding: 25px 0 50px;
}
.trading .hdl {
	margin-bottom: 35px;
}
}



/* price
----------------------------------------------- */
.price {
	padding: 90px 0 50px;
}
.price .hdl {
	margin-bottom: 70px;
}
.price .prifirst {
	max-width: 768px;
	margin: 0 auto 50px;
	position: relative;
}
.price .prifirst .firstico {
	position: absolute;
	left: 55px;
	top: 0;
	transform: translateY(-40%);
	z-index: 0;
}
.price .prifirst .firsttit {
	background: #00B925;
	padding: 27px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 15px;
	-webkit-border-radius: 40px 40px 0 0;
	-moz-border-radius: 40px 40px 0 0;
	-ms-border-radius: 40px 40px 0 0;
	-o-border-radius: 40px 40px 0 0;
	border-radius: 40px 40px 0 0;
}
.price .prifirst .firsttit .titlar {
	font-size: 32px;
	color: #fff;
	font-weight: 900;
	line-height: 1.4375;
}
.price .prifirst .firsttit .titcap {
	background: #fff;
	padding: 0 20px;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.8;
	color: #00B925;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
}
.price .prifirst .firstcont {
	background: #fff;
	border: 2px #00B925 solid;
	border-top: none;
	padding: 20px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	-webkit-border-radius: 0 0 40px 40px;
	-moz-border-radius: 0 0 40px 40px;
	-ms-border-radius: 0 0 40px 40px;
	-o-border-radius: 0 0 40px 40px;
	border-radius: 0 0 40px 40px;
}
.price .prifirst .firstcont .contnote {
	text-align: center;
	margin-top: 2px;
}
.price .prifirst .firstcont .contpoint {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 30px;
	color: #00B925;
	font-size: 20px;
	font-weight: 700;
}
.price .prifirst .firstcont .contlar {
	font-size: 40px;
	line-height: 1.1;
}
.price .priregular {
	background: #EBFAEB;
	padding: 60px 40px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	-ms-border-radius: 40px;
	-o-border-radius: 40px;
	border-radius: 40px;
}
.price .priregular .regulartit {
	border-bottom: 2px #000 solid;
	padding: 0 10px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 15px;
	margin-bottom: 80px;
}
.price .priregular .regulartit .titlar {
	font-size: 32px;
	font-weight: 900;
	line-height: 1.4375;
}
.price .priregular .regulartit .titcap {
	background: #fff;
	padding: 0 20px;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.8;
	color: #00B925;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
}
.price .priregular .regularlist {
	display: flex;
	align-items: stretch;
	column-gap: 10px;
}
.price .priregular .regularlist li {
	flex-grow: 1;
	background: #fff;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	padding: 70px 10px 30px;
	-webkit-border-radius: 32px;
	-moz-border-radius: 32px;
	-ms-border-radius: 32px;
	-o-border-radius: 32px;
	border-radius: 32px;
	position: relative;
}
.price .priregular .regularlist .num {
	font-size: 40px;
	line-height: 1;
}
.price .priregular .regularlist .regularpoint {
	position: absolute;
	background: #FCEC74;
	left: 50%;
	top: 0;
	transform: translate(-50%,-50%);
	width: 92px;
	height: 92px;
	font-size: 20px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}
.price .priregular .regularlist .regularpoint .lar {
	font-size: 40px;
	line-height: 1;
}
.price .priregular .regularlist .regularpoint .pointin {
	
}
.price .priregular .regularnote {
	text-align: center;
	margin-top: 20px;
}
@media (max-width: 1150px) {
.price .priregular .regularlist .num {
	font-size: 34px;
}
}
@media (max-width: 1024px) {
.price .priregular .regularlist {
	column-gap: 2%;
	flex-wrap: wrap;
	margin-bottom: -70px;
}
.price .priregular .regularlist li {
	flex-grow: 0;
	width: 49%;
	margin-bottom: 70px;
}
}

@media (max-width: 767px) {
.price {
	padding: 50px 0 25px;
}
.price .hdl {
	margin-bottom: 50px;
}
.price .prifirst .firstico {
	left: 20px;
	width: 70px;
	transform: translateY(-50%);
}
.price .prifirst .firsttit {
	background: #00B925;
	padding: 27px 10px;
	flex-direction: column;
	column-gap: 0;
}
.price .prifirst .firsttit .titlar {
	margin-bottom: 10px;
}
.price .prifirst .firstcont {
	padding: 30px 10px 50px;
}
.price .prifirst .firstcont .contnote {
	margin-top: 10px;
}
.price .prifirst .firstcont .contpoint {
	flex-direction: column;
}
.price .prifirst .firstcont .contpoint li+li {
	margin-top: 15px;
}
.price .priregular {
	padding: 40px 25px;
}
.price .priregular .regulartit {
	padding: 0 10px 35px;
	flex-direction: column;
	column-gap: 0;
	margin-bottom: 40px;
}
.price .priregular .regulartit .titlar {
	margin-bottom: 15px;
}
.price .priregular .regularlist {
	column-gap: 8%;
	margin-bottom: -40px;
}
.price .priregular .regularlist li {
	font-size: 12px;
	width: 46%;
	padding: 35px 0 15px;
	-webkit-border-radius: 18px;
	-moz-border-radius: 18px;
	-ms-border-radius: 18px;
	-o-border-radius: 18px;
	border-radius: 18px;
	margin-bottom: 40px;
}
.price .priregular .regularlist .num {
	font-size: 20px;
}
.price .priregular .regularlist .regularpoint {
	width: 56px;
	height: 56px;
	font-size: 10px;
}
.price .priregular .regularlist .regularpoint .lar {
	font-size: 20px;
}
.price .priregular .regularnote {
	text-indent: -1em;
	padding-left: 1em;
	text-align: left;
}
}




/* production
----------------------------------------------- */
.production {
	padding: 100px 0;
	background: url(../img/bg_production.jpg) 0 0 repeat;
}
.production .hdl {
	margin-bottom: 80px;
}
.production .proslider .slick-slide {
	padding: 0 8px;
}
.production .proslider .proimg {
	border: 6px #49D848 solid;
	background: #fff;
	overflow: hidden;
	text-align: center;
	padding: 40px 0;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	-ms-border-radius: 40px;
	-o-border-radius: 40px;
	border-radius: 40px;
}
.production .proslider .proimg img {
	display: inline-block;
}
.production .proslider .slick-slide:nth-child(2n) {
	padding-top: 50px;
}

@media (max-width: 767px) {
.production {
	padding: 50px 0;
	background: url(../img/bg_production.jpg) 0 0 repeat;
}
.production .hdl {
	margin-bottom: 50px;
}
.production .proslider .slick-slide {
	padding: 0 5px;
}
.production .proslider .proimg {
	border: 3px #49D848 solid;
	padding: 25px 0;
}
.production .proslider .slick-slide:nth-child(2n) {
	padding-top: 40px;
}
}




/* solve
----------------------------------------------- */
.solve {
	background: url(../img/bg_solve.jpg) center bottom no-repeat;
	background-size: cover;
	padding: 210px 0 100px;
}
.solve .solvebox {
	background: #fff;
	padding: 100px 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
}
.solve .solvehd {
	text-align: center;
	margin-bottom: 50px;
}
.solve .solvehd .hdinner {
	display: inline;
	font-size: 40px;
	font-weight: 900;
	padding: 0 0 0 10px;
	background:rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #F4F4A6 0%) repeat scroll 0 0;
}
.solve .solvehd .hdinner+.hdinner {
	padding: 0 10px 0 0;
}
.solve .solvehd .hdinner .lar {
	font-size: 48px;
	line-height: 1.2;
}
.solve .solvein {
	max-width: 930px;
	margin: 0 auto;
}
.solve .solvepop {
	text-align: center;
	margin-bottom: -40px;
	position: relative;
}
.solve .solveflex+.solveflex {
	margin-top: 30px;
}
.solve .solveflex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.solve .solveflex.end {
	align-items: flex-end;
}
.solve .solveflex.flexleft {
	justify-content: flex-start;
}
.solve .solveflex.flexmid {
	justify-content: center;
}
.solve .solveflex.flexright {
	justify-content: flex-end;
}
.solve .solveflex.reverse {
	flex-direction: row-reverse;
}
.solve .solveflex .fleximg {
	margin: 0 0 0 25px;
	flex-shrink: 0;
}
.solve .solveflex.reverse .fleximg {
	margin: 0 25px 0 0;
}
.solve .solveflex .flexin {
	display: flex;
	align-items: stretch;
}
.solve .solveflex .flexmess {
	margin-right: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex-shrink: 0;
	color: #00B925;
	font-weight: 700;
}
.solve .solveflex .flexmess .messeng {
	font-size: 14px;
}
.solve .solveflex .flexmess .messnum {
	font-size: 64px;
	line-height: 1;
}
.solve .solveflex .flexcont {
	padding: 10px 0 10px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.solve .solveflex .flexcont:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 5px;
	height: 100%;
	background: #FFE780;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	z-index: 0;
}
.solve .solveflex .flextit {
	font-size: 24px;
	font-weight: 700;
}
.solve .solveflex .flextit .green {
	color: #00B925;
}
.solve .solveflex .flextit .lar {
	font-size: 32px;
	line-height: 1;
}
.solve .solveflex .flextxt {
	margin-top: 20px;
}

@media (max-width: 1024px) {
.solve .solvepop {
	margin-bottom: 40px;
}
.solve .solveflex {
	display: block;
}
.solve .solveflex .fleximg {
	margin: 30px 0 0;
	text-align: center;
}
.solve .solveflex.reverse .fleximg {
	margin: 30px 0 0;
}
}

@media (max-width: 767px) {
.solve {
	background: url(../img/bg_solve_sp.jpg) center 0 repeat-y;
	background-size: 100% auto;
	padding: 75px 0 50px;
}
.solve .solvebox {
	padding: 30px 10px 50px;
}
.solve .solvehd {
	display: flex;
	flex-direction: column;
	max-width: 300px;
	margin: 0 auto 30px;
}
.solve .solvehd .hdinner {
	display: inline;
	font-size: 29px;
	align-self: flex-start;
	padding: 0 5px;
}
.solve .solvehd .hdinner+.hdinner {
	align-self: flex-end;
	padding: 0 5px;
	margin-top: 5px;
}
.solve .solvehd .hdinner .lar {
	font-size: 32px;
	line-height: 1.2;
}
.solve .solvepop {
	margin-bottom: 50px;
}
.solve .solvepop img {
	width: 210px;
}
.solve .solveflex+.solveflex {
	margin-top: 50px;
}
.solve .solveflex .fleximg {
	margin: 20px 0 0;
}
.solve .solveflex.reverse .fleximg {
	margin: 20px 0 0;
}
.solve .solveflex .flexmess {
	margin-right: 10px;
}
.solve .solveflex .flexmess .messeng {
	font-size: 14px;
}
.solve .solveflex .flexmess .messnum {
	font-size: 40px;
}
.solve .solveflex .flexcont {
	padding: 0 0 0 20px;
}
.solve .solveflex .flexcont:before {
	width: 3px;
}
.solve .solveflex .flextit {
	font-size: 22px;
}
.solve .solveflex .flextit .lar {
	font-size: 22px;
}
.solve .solveflex .flextxt {
	margin-top: 10px;
}
.solve .solveflex .fleximg img {
	width: 200px;
}
}




/* XXXX
----------------------------------------------- */

@media (max-width: 1024px) {

}

@media (max-width: 767px) {

}



