@charset "utf-8";
body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

.noscroll {
    overflow: hidden;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


/* header
-------------------------------------------------------------------*/
header{
	display:flex;
	justify-content:space-between;
	padding:0 20px;
	position:absolute;
	top:60px;
	left:0;
	right:0;
	z-index:999;
}

header nav{
	height:70px;
	max-width:1200px;
	background:#fff;
	border-radius:80px;
	margin:0 auto;
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:0 10px;
	box-sizing:border-box;
}


header .logo{
	padding:5px 20px 0 20px;
	min-width:180px;
}
header .logo a img{
	height: 54px;
}

header nav ul{
	display:flex;
}

header nav ul li{
	position:relative;
	text-align:center;
	font-weight:700;
}

header nav ul li:nth-child(1):after,
header nav ul li:nth-child(2):after,
header nav ul li:nth-child(3):after{
	position:absolute;
	content:"";
	background:#b3b3b3;
	width:1px;
	height:15px;
	right:0;
	top:15px;
}

header nav ul li a{
	display:block;
	width:180px;
	padding:10px 0;
	box-sizing:border-box;
}

header nav ul li:last-child a{
	width:160px;
	color:#fff;
	border:1px solid #00AEC2;
	background:#00AEC2;
	border-radius:70px;
}

header nav ul li a:hover,
header nav ul li.on a{
	color:#00AEC2;
}

header nav ul li:last-child a:hover{
	color:#00AEC2;
	background:#fff;
}


@media screen and (max-width: 1100px) {

header .logo{
	padding:5px 20px 0 20px;
}

header nav ul li:nth-child(1):after,
header nav ul li:nth-child(2):after,
header nav ul li:nth-child(3):after{
	position:absolute;
	content:"";
	background:#b3b3b3;
	width:1px;
	height:15px;
	right:0;
	top:15px;
}

header nav ul li a{
	width:140px;
}

header nav ul li:last-child a{
	width:150px;
}
}


.noscroll .clone_gnav{
	background:none;
}

.noscroll .clone_gnav .logo,
.noscroll .clone_gnav .nav{
	opacity:0;
}

.is-show {
	transform: translateY(0);
	top: 0;
}


.spgnav{
	display:none;
}
@media screen and (max-width: 800px) {
header{
	display:none;
}

.gnav{
	display:none;
}

.spgnav{
	display:block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background:#fff;
	z-index:999;
	height:60px;
}
	
.spgnav ul li ul{
	display:none;
}

.spgnav .logo{
	padding:8px 0 0 10px;
	width:150px;
}

.topmenu {
    display: block;
    height: 60px;
    position: fixed;
	right:0;
	margin:0 auto;
    top: 0;
	background:#00AEC2;
    width: 60px;
    z-index: 9999;
    cursor: pointer;
}

.sptrigger,
.sptrigger span {
	display: block;
	transition: all .4s;
	box-sizing: border-box;
    z-index: 99999;
}
.sptrigger {
    position: relative;
    width: 100%;
    height: 100%;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.sptrigger span {
	position: absolute;
	left: 50%;
	width: 30px;
	margin-top:-10px;
	margin-left: -15px;
	height: 3px;
	background-color: #fff;
	border-radius: 4px;
    z-index: 99999;
}
.sptrigger.active span {
	background-color: #fff;
}
.sptrigger span:nth-of-type(1) {
    top: 34px;
}
.sptrigger span:nth-of-type(2) {
    top: 44px;
}
.spmenu {
    top: 60px;
    left: 0;
    z-index: 1000;
    display: none;
    position: fixed;
    width: 100%;
	padding:0;
    background:#f2f2f2;
}
.spmenu .box_in{
    width: 100%;
	text-align:center;
}

.spmenu ul{
	text-align:center;
}

.spmenu ul li{
	border-bottom:1px solid #fff;
}
	
.spmenu ul li:last-child{
	border-bottom:none;
}

.spmenu ul li a,
.spmenu ul li span{
	font-size:14px;
	letter-spacing:0.1em;
	font-weight:bold;
	color:#000;
	padding:15px 0;
	display:block;
	transition: .3s;
	position:relative;
}

.spmenu ul li:last-child a{
	background:#00AEC2;
	color: #fff;
}

.spmenu ul li ul li{
	border-bottom:none;
	background:#fff;
}
	
.spmenu ul li ul li a{
	font-size:13px;
	border-top:1px solid #00AEC2;
	color: #222222;
}

.spmenu ul li span:after{
	content: "";
	position: absolute;
    right: 20px;
    top: 35%;
	transition: all 0.2s ease-in-out;
	display: block;
	width: 8px;
	height: 8px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
	
.spmenu ul li span.on:after{
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 45%;
}

.movmobb1 .active span:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	    transform: translateY(8px) rotate(-45deg);
}
.movmobb1 .active span:nth-of-type(2) {
	-webkit-transform: translateY(-2px) rotate(45deg);
	transform: translateY(-2px) rotate(45deg);
}

}


/* contents
-------------------------------------------------------------------*/
.wrap {
	min-width:1024px;
	overflow:hidden;
	position:relative;
}

.wd{
	max-width:1100px;
	margin:0 auto;
}

.contents{
	clear:both;
}

.scale{
	width:100%;
	height:auto;
}

.sp{
	display:none;
}

.left{
	float:left;
}

.right{
	float:right;
}

img{
	max-width:100%;
	height:auto;
}

.coverimg{
	overflow:hidden;
	position:relative;
}

.coverimg:after{
	content: "";
	display: block;
	padding-top: 100%;
}

.coverimg img{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	object-fit: cover;
}
@media screen and (max-width: 800px) {
.wrap {
	min-width:100%;
	overflow:hidden;
}

.spleft{
	float:left;
}

.spright{
	float:right;
}

.spscale{
	width:100%;
	height:auto;
}

.contents{
	overflow:hidden;
	width:100%;
	box-sizing:border-box;
}

.wd{
	width:100%;
	margin:0 auto;
	box-sizing:border-box;
}

.spscale{
	width:100%;
	height:auto;
}

img{
	max-width:100%;
	height:auto;
	margin:0 auto;
}

.none{
	display:none;
}

.pc{
	display:none;
}

.sp{
	display:block;
}

.spleft{
	float:left;
}

.spright{
	float:right;
}

input{
	font-size:16px;
}
}

/* footer
-------------------------------------------------------------------*/
footer{
	padding:50px 20px 40px 20px;
	background:#00AEC2;
	text-align:center;
	color:#fff;
}

footer ul li{
	display:inline-block;
	width:180px;
	position:relative;
}

footer ul li:not(:nth-child(1)):after{
	content:"";
	position:absolute;
	background:#9cb6d7;
	width:1px;
	height:15px;
	left:0;
	top:5px;
}

footer ul li a{
	color:#fff;
	font-weight:500;
}

footer .copy{
	font-size:14px;
	line-height:3em;
	padding:50px 0 0 0;
}
@media screen and (max-width: 800px) {
footer{
	padding:30px 20px 30px 20px;;
}

footer ul{
	margin:0 -20px;
}

footer ul li{
	display:block;
	width:100%;
	position:relative;
}

footer ul li:not(:nth-child(1)):after{
	display:none;
}

footer ul li a{
	color:#fff;
	padding:10px 0;
	display:block;
	border-bottom:1px solid #fff;
	font-weight:500;
}

footer .copy{
	font-size:13px;
	line-height:2em;
	padding:40px 0 0 0;
}
}
