@charset "UTF-8";

/*
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
* {
	font-family: 'Noto Sans TC';
}
*/

body {
	margin: 0;
	font-family: 'Microsoft JhengHei', '微軟正黑體';
}

ul,
li,
p {
	margin: 0;
	padding: 0;
	display: block;
}

a {
	color: #4f4f4f;
	text-decoration: none;
}

li {
	list-style: none;
}

.pc,
.pc920 {
	display: block;
}

.rwd,
.rwd920 {
	display: none;
}


/*header*/

header {
	height: 70px;
	width: calc(100% - 40px);
	display: block;
	background: url(../img/pc_header_bg.png)0 0;
	box-shadow: rgb(177, 179, 194, 0.57) 5px 5px 16px;
	padding: 0 20px;
	z-index: 99;
	position: fixed;
	top: 0;
}

.nav.container {
	position: static;
}

.logo {
	float: left;
	margin: 13px 0;
	width: 120px;
}

.logo a {
	float: left;
	display: block;
}

.logo img {
	width: 100%;
}

nav {
	float: right;
	margin-top: 24px;
}

nav ul,
nav ul li {
	float: left;
}

nav.pc ul li,
nav.rwd ul li {
	cursor: pointer;
	transition: all .2s;
	-webkit-transition: all .2s;
	padding: 9px 0px;
	font-size: 18px;
	margin: 0 20px;
}

nav.pc ul li.active,
nav.rwd ul li.active {
	border-bottom: 4px solid #ff2d32;
}

nav li a {
	width: 100%;
	display: block;
	height: 100%;
}

.pc .submenu__title {
	position: relative;
}

.pc .submenu__list {
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	left: 0;
	width: 100%;
	margin-top: 12px;
	background: #eeeeee;
	transition: all 0.3s ease-in-out;
}

.pc .submenu:hover .submenu__list {
	max-height: 100px;
	opacity: 1;
	visibility: visible;
}

.pc .submenu__wrapper {
	max-width: 920px;
	margin: 0 auto;
	padding: 10px 25px 15px;
	text-align: right;
}

.pc .submenu__item {
	font-size: 16px;
	transition: color 0.3s;
}

.pc .submenu__item:not(:last-of-type) {
	padding-right: 20px;
}

.pc .submenu__item:hover {
	color: #ff2d32;
}

.lanBtn {
	border-radius: 5px;
	padding: 2px 7px;
	border: 1px solid #4f4f4f;
	margin: 4px 0 0 20px;
	float: left;
}

.lanBtn:hover {
	opacity: .8;
}

/* ---------------------------------
section hero carousel
--------------------------------- */
.sec-hero {
	background: url('../img/hero_bg.jpg') 50% 0 no-repeat;
	background-size: cover;
	height: 745px;
}

.sec-hero__container {
	max-width: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
	margin: 4em auto 0;
	padding: 6em 4em 0;
}

.hero-carousel {
  overflow: hidden;
	display: flex;
	/* margin-left: 5em; */
}

.hero-carousel__item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-right: -100%;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.8s;
}

.hero-carousel__item.slide-is-active {
  opacity: 1;
  transform: translateX(0%);
}

.hero-carousel__item.slide-is-active ~ .hero-carousel__item {
  transform: translateX(100%);
}

.hero-carousel__img-wrapper {
	margin-right: 2em;
	max-width: 440px;
	width: 80%;
}

.hero-carousel__img {
	display: block;
	width: 310px;
	height: auto;
	/* width: 100%;
	height: 100%;
	max-width: 440px; */
  margin-left: auto;
}

.hero-carousel__title {
  font-size: 2.8em;
  font-weight: 700;
	letter-spacing: 1px;
	margin: 0.15em 0;
}

.hero-carousel__subtitle {
	font-size: 1.4em;
	color: #000;
	padding-bottom: 0.3em;
	border-bottom: 1px solid #ccc;
}

.hero-carousel__description {
	font-size: 1.1em;
	margin-top: 0.3em;
}

.hero-carousel__more-text {
	display: inline-block;
	font-size: 0.8em;
	color: #000;
	cursor: pointer;
}

.hero-nav {
  margin-top: 0.8em;
}

.hero-nav__list {
  display: inline-flex;
  white-space: nowrap;
  overflow-x: auto;
	overflow-y: hidden;
	user-select: none;
  margin: 10px 0;
  width: 100%;
}

.hero-nav__list::-webkit-scrollbar {
	display: none;
}

.hero-nav__item {
  display: inline-block;
  position: relative;
  padding: 13px 1em;
  margin: 7px 0;
  cursor: pointer;
  border-bottom-style: outset;
  border-top: 3px solid #cfcccc;
  border-bottom: 3px solid #cfcccc;
  -webkit-box-shadow: 
    inset 0px 10px 5px -10px #CCC,
    inset 0px 0px 0px -10px #CCC;
  box-shadow: 
    inset 0px 10px 5px -10px #CCC,
	inset 0px 0px 0px -10px #CCC;
}

.hero-nav__title {
  color: #7b7b7b;
  font-size: 1.25em;
}

.hero-nav__item.slide-is-active .hero-nav__title {
	color: #000;
}

.hero-nav__circle {
  background: url('../img/bg_circle.png') no-repeat;
  position: absolute;
  top: -8px;
  left: 0;
  width: 69px;
  height: 69px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.hero-nav__item.slide-is-active .hero-nav__circle {
  opacity: 1;
  visibility: visible;
}

/* ---------------------------------
section
--------------------------------- */
.container {
	max-width: 920px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: block;
	position: relative;
	z-index: 2;
}

section {
	position: relative;
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

.left,
.right {
	display: inline-block;
	vertical-align: top;
	position: relative;
}

section p {
	display: block;
	font-size: 18px;
	color: #6b6b6b;
}

section span {
	display: block;
	font-size: 13px;
	color: #3b3b3b;
}

section .iframeBlock {
	width: calc(100% - 20px);
	height: 500px;
	padding: 10px;
	margin-top: 40px;
	background: #000;
	float: left;
}

section .iframeBlock iframe {
	width: 100%;
	height: 100%;
}

/* ---------------------------------
section 01
--------------------------------- */
.sec01 {
	background: url(../img/pc_sec01_bg.jpg)0 0 no-repeat;
	background-position: top center;
	height: 985px;
}

.en.sec01 {
	margin-top: 3em;
}

.sec01 .road {
	position: absolute;
	bottom: -5px;
}

.sec01 .road img {
	width: 100%;
}

.sec01 .hand {
	position: absolute;
	right: 0;
	top: 40px;
	z-index: 3;
}

.sec01 .title {
	text-align: center;
	padding-top: 116px;
}

.sec01 .title img {
	display: inline-block;
}

.sec01 .title p {
	display: inline-block;
	font-size: 20px;
	color: #dcf3d8;
	background: #00b39c;
	width: 580px;
	letter-spacing: 7px;
	padding: 3px 15px;
}

.sec01 .content {
	margin-top: 54px;
	position: relative;
}

.sec01 .content .boy {
	position: absolute;
	bottom: 0;
	left: 400px;
}

.sec01 .right .txt {
	width: 324px;
	margin: 20px 0 0 58px;
}

.sec01 .right .txt p {
	margin-bottom: 20px;
}

/* ---------------------------------
section 02
--------------------------------- */
.sec02 {
	background: url(../img/pc_sec02_bg.jpg) center 0 no-repeat;
	background-size: cover;
	height: 956px;
}

.sec02__container {
	max-width: 1366px;
	margin: auto;
}

.sec02 .right {
	width: 334px;
	top: 123px;
	left: -72px;
}

.sec02 .left {
	bottom: -60px;
	left: -56px;
}

.sec02 .panel_mask_bg {
	width: 81%;
	height: 418px;
	float: left;
	overflow: hidden;
	left: 258px;
	position: relative;
	top: 4px;
}

.sec02 .panel_mask_bg ul {
	position: relative;
}

.sec02 .panel_mask_bg li {
	float: left;
	margin: 40px -95px 40px 0;
	position: relative;
	z-index: 2;
}

.sec02 .panel_mask_bg li.style {
	z-index: 10;
	margin: 0 -95px;
}

.sec02 .panel_mask_bg li img {
	width: 75%;
}

.sec02 .panel_mask_bg li.style img {
	width: 100%;
}

.sec02 .panel_mask {
	position: absolute;
	left: 80px;
	max-width: 1042px;
}

.sec02 .panel_mask .btn {
	width: 200px;
	height: 195px;
	cursor: pointer;
	display: block;
	position: absolute;
	right: 0;
	top: 228px;
}

.sec02 .panel_mask .txt_up1 {
	width: 154px;
	height: 80px;
	top: 239px;
	right: 133px;
	position: absolute;
}

.sec02 .panel_mask-border {
	position: absolute;
	z-index: 22;
	left: 345px;
	width: 338px;
	height: 338px;
}

.sec02 .panel_mask-border img {
	width: 100%;
}

.sec02 .left {
	bottom: -60px;
	left: -56px;
	width: 63%;
}

.sec02 .panel_maskPic {
	width: 1042px;
	float: left;
}

.sec02 .panel_maskPic img {
	width: 100%;
}

.montePrev,
.montePlay {
	display: none;
}

.monteNext {
	display: block;
	width: 100px;
	height: 100px;
	position: absolute;
	z-index: 10;
	top: 250px;
	right: -78px;
}

.sec02 .panel_mask_bg {
	overflow: inherit;
	z-index: 21;
}

/* ---------------------------------
section 03
--------------------------------- */
.sec03 {
	background: url(../img/pc_sec03_bg.jpg) center 0 no-repeat;
	background-size: cover;
	height: 925px;
}

.sec03 .title {
	padding-top: 23px;
}

.sec03 .title p {
	margin-top: 20px;
}

/* ---------------------------------
section 04
--------------------------------- */
.sec04 {
	background: url(../img/pc_sec04_bg.jpg) 50% 0 no-repeat;
	background-size: cover;
	height: 737px;
}

.sec04 .title {
	text-align: center;
}

.sec04 .title p {
	width: 880px;
}

.sec04 .stepCont {
	margin-top: 20px;
}

.sec04 .stepCont ul li {
	float: left;
	width: 20%;
	text-align: center;
}

.sec04 .stepCont ul li span {
	width: 100%;
}

.sec04 .stepCont ul li .stepInfo p {
	height: 55px;
	margin: 10px 0;
}

.sec04 .stepCont ul li:nth-child(2) .stepVid:last-child {
	margin-top: 20px;
}

.stepVid {
	position: relative;
	width: 100%;
}

.stepVid a {
	position: absolute;
	width: 50%;
	height: 100%;
	display: block;
	cursor: pointer;
}

.stepVid a.ios {
	left: 0;
}

.stepVid a.android {
	right: 0;
}

section.sec-map {
    background: #f4f8f9;
}
/* 英文版暫時 */
.en.sec04 {
	background: url(../img/pc_sec04_bg_en.jpg) 50% 0 no-repeat;		
}

.en.sec04 .faqBtn {
	margin-top: 8px;
}

/* ---------------------------------
section map
--------------------------------- */
.sec-map img {
	width: 100%;
}

.sec-map .pc {
	max-width: 1366px;
	margin: auto;
}

.sec4v5 {
	margin-bottom: 1.5em;
}

.sec4v5 img {
	margin: auto;
}

/* ---------------------------------
section 05
--------------------------------- */
.sec05 {
	background: url(../img/pc_sec05_bg.jpg)0 0 no-repeat;
	height: 1007px;
}

.sec05 .title {
	text-align: center;
	padding-top: 57px;
}

.sec05 .sub-title {
	background: url(../img/pc_sec05_sub2-titBg.png)0 center repeat-x;
	text-align: center;
	margin: 20px 0;
}

.sec05 .sub-title p {
	color: #89aad2;
	background: #fff;
	display: inline-block;
	padding: 5px 10px;
}

.sec05 .phoneCont {
	margin-top: 20px;
	float: left;
}

.sec05 .phoneCont ul {
	float: left;
	width: 100%;
}

.sec05 .phoneCont ul li {
	float: left;
	width: 26%;
	text-align: center;
	margin: 60px 1%;
	position: relative;
	cursor: pointer;
	transition: all .2s;
	-webkit-transition: all .2s;
}

.sec05 .phoneCont ul li.active {
	width: 33%;
	margin: 0 5%;
}

.sec05 .phoneCont ul li img {
	width: 100%;
	margin: 0 auto;
}

.sec05 .phoneCont ul li.active p {
	color: #e03a45;
	font-size: 28px;
}

.sec05 .phoneCont ul li .txt_up {
	position: absolute;
	display: none;
}

.sec05 .phoneCont ul li.active .txt_up {
	display: block;
}

.sec05 .phoneCont ul li .txt_up1-1 {
	width: 85px;
	height: 62px;
	top: 117px;
	left: -47px;
}

.sec05 .phoneCont ul li .txt_up1-2 {
	width: 100px;
	height: 62px;
	top: 226px;
	right: -51px;
}

.sec05 .phoneCont ul li .txt_up2-1 {
	width: 100px;
	height: 95px;
	top: 40px;
	left: -56px;
}

.sec05 .phoneCont ul li .txt_up2-2 {
	width: 67px;
	height: 161px;
	top: 190px;
	right: 11px;
}

.sec05 .phoneCont ul li .txt_up2-3 {
	width: 112px;
	height: 74px;
	top: 418px;
	right: -47px;
}

.sec05 .phoneCont ul li .txt_up3-1 {
	width: 90px;
	height: 62px;
	top: 88px;
	right: -46px;
}

.sec05 .phoneCont ul li .txt_up3-2 {
	width: 173px;
	height: 83px;
	top: 110px;
	left: -49px;
}

.sec05 .phoneCont ul li .txt_up3-3 {
	width: 107px;
	height: 91px;
	top: 228px;
	right: -41px;
}

/* ---------------------------------
section function
--------------------------------- */
.sec-function {
	margin: 3em 0;
}

.sec-function__compass {
	position: relative;
}

.sec-function__bg-wrapper {
	position: relative;
	max-width: 920px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.sec-function__bg--gray {
	background: #F8F8F8;
}

.sec-function__bg--img {
	background: url('../img/function_motor_bg.jpg') center 0 no-repeat;
	background-size: cover;
	height: 794px;
}

.sec-function__dashboard-small,
.sec-function__dashboard-large {
	position: absolute;
	z-index: 2;
}

.sec-function__dashboard-small {
	bottom: 20%;
	left: 60%;
}

.sec-function__dashboard-large {
	top: 5%;
	left: 70%;
}

.sec-function__compass-content {
	padding: 2em 0;
}

.sec-function__content {
	display: flex;
	padding: 2em 0;
}

.sec-function__content--album {
	justify-content: space-between;
	align-items: center;
}

.sec-function__album-img, 
.sec-function__text--album {
	margin-top: -5em;
}

.sec-function__text {
	margin-left: 2em;
}

.sec-function__text--single,
.sec-function__text--album {
	width: 520px;
}

.sec-function__text--left {
	margin-left: 0;
}

.sec-function__text--right {
	margin-right: 2em;
}

.sec-function__description {
	margin: 0.5em 0;
}

.sec-function__video {
	width: 519px;
}

.sec-function__tutorial {
	display: flex;
	align-items: center;
}

.sec-function__btn {
	margin-top: 0.4em;
}

.sec-function__btn-title {
	display: inline-block;
	margin-right: 0.5em;
}

.sec-function__btn-link {
	display: block;
	margin-top: 0.8em;
}

.sec-function__group .stepVid {
	width: auto;
}

.sec-function__demo-img {
	position: absolute;
}

.sec-function__demo-rider {
	top: 5%;
	left: 48%;
	z-index: 2;
}

.sec-function__demo-traffic-light {
	top: 10%;
	right: -5%;
}

/* ---------------------------------
section artwork
--------------------------------- */
.sec-artwork {
	overflow: hidden;
}

.sec-artwork__video-image {
	display: block;
	width: 100%;
}

.sec-artwork__video-image-rwd {
	display: none;
}

.sec-artwork__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

/* ---------------------------------
section artwork text
--------------------------------- */
.sec-artwork-text {
	margin-top: -315px;
	margin-bottom: 3em;
}

.sec-artwork-text__container {
	max-width: 1000px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: block;
	position: relative;
}

.sec-artwork-text__wrapper {
	background: rgba(253, 249, 248, 0.97);
	padding: 2.5em 3em 0;
}

.title-underline {
	width: 100%;
	height: 3px;
	background: #5eb7a3;
	margin: 1em 0;
}

.sec-artwork-text__tutorial {
	display: flex;
	align-items: center;
	padding: 1em 0 0.5em;
}

.sec-artwork-text__btn-title {
	display: inline-block;
	margin-right: 0.5em;
}

.sec-artwork-text .stepVid {
	width: auto;
}

.sec-artwork-text__video-wrapper {
	display: grid;
	grid-gap: 2em;
	grid-template-columns: repeat(3, 1fr);
}

.sec-artwork-text__video {
	width: 100%;
}

/* ---------------------------------
section 10
20170811適用車種 by pollor
--------------------------------- */
.sec_10 {
	width: 1366px;
	margin: 0 auto 2em;
	background: #f5f5f5;
	overflow: hidden;
}

.sec_10__bg {
	display: block;
	margin: auto;
}

.sec_10__bg-rwd {
	display: none;
}

.locomotive {
	position: absolute;
	top: 220px;
	display: block;
	width: 90%;
	margin: 0 5%;
	background: none;
}

.locomotive ul {
	width: 100%;
	text-align: center;
}

.locomotive li {
	width: 50%;
	float: left;
}

.locomotive ul li a {
	display: block;
	width: 100%;
	height: auto;
	margin: 10px 0 100px 0;
}

.locomotive p {
	font-size: 20px;
	display: block;
	color: #27a7e1;
	margin-top: 20px;
}

.locomotive span {
	margin-left: 10px;
	color: #959595;
}

.locomotive .owl-dots {
	display: none!important;
}

.locomotive .owl-prev,
.locomotive .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.locomotive .owl-prev {
	left: 5px;
}

.locomotive .owl-next {
	right: 5px;
}

.locomotive .owl-prev span,
.locomotive .owl-next span {
	display: block;
	text-indent: -99999px;
	width: 44px;
	height: 83px;
}

.locomotive .owl-prev span {
	background: url(../img/arrowBack.png)0 0 no-repeat;
	background-size: 100%;
}

.locomotive .owl-next span {
	background: url(../img/arrowNext.png)0 0 no-repeat;
	background-size: 100%;
}

.locomotive ul li lable {
	width: 100%;
	display: block;
}

.locomotive ul li img {
	width: auto!important;
	display: inline-block!important;
}

/* ---------------------------------
section version
--------------------------------- */
.sec-version {
	background: url('../img/version_bg.jpg') 50% 0 no-repeat;
	background-size: cover;
	height: 947px;
}

.sec-vertion__title {
	display: block;
	margin: auto;
	padding: 3.5em 0 0;
}

.sec-version .sec-version__video {
	margin-top: 1.5em;
}

/* ---------------------------------
section instruction
操作說明
--------------------------------- */
.sec-instruction {
	background: url(../img/instruction_bg_pc.jpg) 50% 0 no-repeat;
	background-size: cover;
	height: 1093px;
}

.sec-instruction__content {
	display: flex;
	padding: 2.5em 0 1.25em;
	border-bottom: 1px solid #CCCCCC;
}

.sec-instruction__result {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 518px;
	margin-right: 1.25em;
}

.result__img {
	margin: 2em 0 1em;
}

.result__note {
	font-size: 18px;
	color: #8e8686;
}

.steps__item {
	position: relative;
	width: 100%;
	float: left;
	margin: 0;
	padding: 0 0 10px 20px;
	border-left: 1px solid #CCCCCC;
	font-size: 18px;
	color: #8e8686;
	cursor: pointer;
}

.steps__item::before {
	content: '';
	position: absolute;
	top: 10px;
	left: -4px;
	width: 8px;
	height: 8px;
	background: #B7B5B3;
	border-radius: 100%;
}

.is-selected.steps__item {
	color: #ff8135;
}

.is-selected.steps__item::before {
	background: #ff8135;
}

/* ---------------------------------
section more
更多詳細操作說明
--------------------------------- */
.sec-more {
	background: url(../img/more_btn_pc.jpg) 50% 0 no-repeat;
	background-size: cover;
	height: 160px;
}

.sec-more .faqBtn {
	float: left;
	background: url(../img/pc_sec04_faqBg1.jpg)0 0 no-repeat, url(../img/pc_sec04_faqBg2.jpg)0 bottom no-repeat, url(../img/pc_sec04_faqBg3.jpg)right 0 no-repeat, url(../img/pc_sec04_faqBg4.jpg)right bottom no-repeat;
	text-align: center;
	padding: 5px 0;
	margin: 30px 0 60px;
	width: 100%;
}

.sec-more .faqBtn a {
	color: #fff;
	background: #ff7200;
	text-align: center;
	width: calc(100% - 10px);
	display: inline-block;
	padding: 7px 0;
	font-size: 30px;
}

.sec-more .faqBtn a:hover {
	opacity: 0.95;
}

/* ---------------------------------
media queries
--------------------------------- */
@media only screen and (max-width: 1366px) {
	.enPage .sec02 .left {
		bottom: 0;
		top: 4vw;
		width: 80%;
		left: -4vw;
	}
}

@media only screen and (max-width: 1280px) {
	.sec01 {
		height: 77vw;
	}
	.sec01 .hand img,
	.sec01 .left img,
	.sec01 .right img,
	.sec01 .title img,
	.sec01 .content .boy img {
		width: 100%;
	}
	.sec01 .hand {
		width: 23vw;
		top: 8vw;
	}
	.sec01 .left {
		width: 39vw;
	}
	.sec01 .right {
		30vw;
	}
	.sec01 .title {
		padding-top: 10vw;
	}
	.sec01 .content {
		width: 100%;
		display: inline-block;
		margin: 5vw auto 0 auto;
		text-align: center;
	}
	.sec01 .content p {
		text-align: left;
	}
	.sec01 .content .boy {
		left: 33vw;
		width: 10vw;
	}
	.sec01 .title {
		padding-top: 10vw;
		width: 48vw;
		text-align: center;
		margin: 0 auto;
	}
	.sec01 .title p {
		font-size: 126%;
		width: 94%;
		padding: 3px 3%;
	}
	section .iframeBlock {
		height: 450px;
	}
	.sec-instruction {
		background: url(../img/instruction_bg_pc.jpg) 50% 0 no-repeat;
		background-size: cover;
		height: 1050px;
	}

/*owl*/

.sec05 .owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
	border-radius: 30px;
	background-color: #c6c6c6;
}

.sec05 .owl-theme .owl-dots .owl-dot {
	display: inline-block;
}

.sec05 .owl-dots {
	display: block;
	width: 100%;
	position: absolute!important;
	height: 20px;
	bottom: -30px;
	z-index: 5;
	text-align: center;
}

.sec05 .owl-theme .owl-dots .owl-dot.active span,
.sec05 .owl-theme .owl-dots .owl-dot:hover span {
	background-color: #0188f2;
}

.sec05 .owl-nav {
	position: relative;
	width: 100%;
	bottom: 310px;
}

.sec05 .owl-prev span {
	display: block;
	text-indent: -999999px;
	width: 44px;
	height: 83px;
	background: url(../img/sliderLeft.png)0 0 no-repeat;
}

.sec05 .owl-next span {
	display: block;
	text-indent: -999999px;
	width: 44px;
	height: 83px;
	background: url(../img/sliderRight.png)0 0 no-repeat;
}

.sec05 button.owl-prev {
	position: absolute;
	left: 5px;
}

.sec05 button.owl-next {
	position: absolute;
	right: 5px;
}

/enpage*/ .enPage .sec01 .left {
	width: 50%;
}

.enPage .sec01 .right {
	width: 45%;
}

.enPage .sec01 .right img,
.enPage .sec01 .left img {
	width: 100%;
}

.enPage .sec01 .right .txt {
	width: 372px;
	margin: 20px 0 0 42px;
}

.enPage .sec02 .content {
	padding-top: 78px;
}

.enPage .sec02 .panel_mask .txt_up1 {
	width: 18.5%;
	height: 80px;
	top: 37%;
	right: 12%;
}

.enPage .sec04 .stepCont ul li .stepInfo p {
	height: 77px;
}

.enPage section .iframeBlock {
	height: 470px;
}

.enPage .sec04 {
	height: 870px;
}

.enPage .sec04 .stepCont ul li .stepVid {
	width: 74%;
	margin: 0 auto;
}

.enPage .sec04 .stepCont ul li .stepPic {
	margin-right: 5%;
}

.enPage section p {
	margin: 3% 0;
	line-height: 150%;
}

.enPage .sec01 .title {
	text-align: center;
	padding-top: 65px;
}

.enPage section .iframeBlock {
	margin-top: 0px;
}

.enPage .sec05 .title img {
	width: 100%;
}

.enPage .sec04 .title img {
	width: 100%;
}

.enPage .sec05 .phoneCont ul li .txt_up1-2 {
	width: 121px;
	height: 85px;
	top: 219px;
	right: -48px;
}

.enPage .sec05 .phoneCont ul li .txt_up2-2 {
	width: 106px;
	height: 162px;
	top: 204px;
	right: -21px;
}

.enPage .sec05 .phoneCont ul li .txt_up2-3 {
	width: 122px;
	height: 94px;
	top: 422px;
	right: -47px;
}

.enPage .sec05 .phoneCont ul li .txt_up3-1 {
	width: 104px;
	height: 75px;
	top: 100px;
	right: -64px;
}

.enPage .sec05 .phoneCont ul li .txt_up2-1 {
	top: 54px;
}

.enPage .sec05 .phoneCont ul li .txt_up3-3 {
	top: 244px;
}

.enPage .sec02 .right {
	position: absolute;
	left: 56%;
	top: 8%;
	width: 357px;
}

.enPage .sec05 {
	background: url(../img/pc_sec05_bg.jpg)0 0 no-repeat;
	height: 1050px;
	background-size: cover;
}

@media only screen and (max-width: 1380px) {
	.sec02 .panel_maskPic {
		width: 134%;
	}
}

@media only screen and (max-width: 1265px) {
	.inner-wrapper {
		margin-top: 4vw;
		padding: 4% 5% 0;
	}
	.sec01 .title p {
		letter-spacing: 6px;
	}
}

@media only screen and (max-width: 1217px) {
	.sec01 {
		height: 80vw;
	}
	.sec01 .title {
		width: 52vw;
	}
	.sec01 .hand {
		width: 22vw;
		top: 13vw;
	}
}

@media only screen and (max-width: 1123px) {
	.sec01 {
		height: 83vw;
	}
}

@media only screen and (max-width: 1140px) {
	.enPage .sec01 {
		height: 84vw;
	}
	.enPage .sec01 .content {
		margin: 4vw auto 0 auto;
	}
	.enPage .sec01 .left {
		margin-top: 3vw;
	}
	.enPage .sec02 .left {
		top: 10vw;
		width: 91%;
		left: -4vw;
	}
	.enPage .sec02 .right {
		left: 63vw;
	}
}

@media only screen and (max-width: 1080px) {
	.sec01 {
		height: 85vw;
	}
	.sec01 .content .boy {
		left: 38vw;
	}
	.sec01 .content {
		margin: 7vw auto 0 auto;
	}
	.enPage .sec01 .left {
		margin-top: 3vw;
	}
	.enPage .sec01 .content {
		margin: 4vw auto 0 auto;
	}
	.enPage .sec01 {
		height: 89vw;
	}
	.enPage .sec01 .left {
		margin-top: 8vw;
	}
}

@media only screen and (max-width: 1024px) {
	.sec-hero__container {
		padding: 8em 2em 0;
	}
	.enPage .sec01 .content {
		margin: 2vw auto 0 auto;
	}
	.enPage .sec01 .left {
		margin-top: 6vw;
	}
	.sec-artwork.mobile .sec-artwork__video-image-pc {
		display: none;
	}
	.sec-artwork.mobile .sec-artwork__video-image-rwd {
		display: block;
	}
	.sec-artwork-text {
		margin: 0;
	}
	.sec-artwork-text__wrapper {
		background: none;
	}
	.sec-artwork-text__video-wrapper {
		display: none;
	}
	.result__img {
		width: 100%;
	}
	.sec-instruction {
		height: 980px;
	}
	.sec-instruction__result {
		flex: 1;
	}
	.sec-instruction__steps {
		flex: 1;
	}
}

@media only screen and (max-width: 920px) {
	.sec-hero {
		background: url('../img/hero_bg_rwd.jpg') 50% 100% no-repeat;
		background-size: cover;
		height: 840px;
	}
	.sec-hero__container {
    padding: 4em 2em 0;
}
	.inner-wrapper {
		padding: 10% 5% 0;
	}
	.hero-carousel {
		margin: 0 3vw;
	}
	.hero-carousel__item {
		flex-direction: column;
	}
	.hero-carousel__title {
		margin-bottom: 0.15em;
	}
	.hero-carousel__title--multi-line {
		line-height: 1;
	}
	.hero-carousel__img-wrapper {
		margin-right: 0;
	}
	.hero-carousel__img {
		width: 310px;
		margin: auto;
	}
	.hero-nav {
		margin-top: 2em;
	}
	section p {
		font-size: 1.3em;
	}
	.container {
		width: 90%;
		margin: 0 5%;

	}
	.sec01 {
		background: url(../img/rwd_sec01_bg.jpg)0 bottom no-repeat;
		background-size: cover;
		background-position: top center;
		height: 189vw;
	}
	.sec01 .title {
		width: 100%;
		padding-top: 7vw;
	}
	.sec01 .title p {
		margin-top: 10px;
		font-size: 257%;
	}
	.sec01 .hand {
		width: 28vw;
		top: 41vw;
	}
	.sec01 .right {
		top: 0;
		width: 68%;
	}
	.sec01 .right {
		position: absolute;
		display: block;
	}
	.sec01 .road {
		display: none;
	}
	.sec01 .right .txt {
		width: 64vw;
		margin: 3vw 10vw;
	}
	.sec01 .left {
		top: 54vw;
		width: 65vw;
	}
	.sec01 .content .boy {
		left: 64vw;
		top: 105vw;
		width: 16vw;
	}
	.sec02 {
		background: url(../img/rwd_sec02_bg.jpg)0 top no-repeat;
		background-size: 100%;
		height: 149vw;
	}
	.sec03 {
		background: url(../img/rwd_sec03_bg.jpg)0 top no-repeat;
		background-size: 100%;
		height: 135vw;
	}
	.sec03 .title {
		padding-top: 8vw;
	}
	section .iframeBlock {
		height: 51vw;
		margin-top: 1vw;
	}
	.sec04 {
		background: url(../img/rwd_sec04_bg.jpg) 50% 100% no-repeat;
		background-size: 100%;
		height: 210vw;
	}
	.en.sec04 {
		background: url(../img/rwd_sec04_bg_en.jpg) 50% 0 no-repeat;	
		background-size: 100%;	
	}
	.sec04 .title p {
		width: 100%;
	}
	.sec04 .stepCont ul li {
		width: 100%;
		padding: 2vw 0;
	}
	.sec04 .stepCont ul li .stepPic {
		float: left;
		width: 30%;
		margin-right: 8%;
		margin-left: 15%;
	}
	.sec04 .stepCont ul li .stepInfo {
		float: left;
		width: 30%;
	}
	.sec04 .stepCont ul li .stepPic img,
	.sec04 .stepCont ul li .stepInfo img {
		width: 100%;
	}
	.sec04 .stepCont ul li .stepInfo p {
		height: auto;
	}
	.sec04 .stepCont ul li:nth-child(1) {}
	.sec04 .stepCont ul li:nth-child(1) .stepInfo {
		margin-top: 3vw;
	}
	.sec04 .stepCont ul li:nth-child(2) {}
	.sec04 .stepCont ul li:nth-child(2) .stepPic {
		margin-top: 7vw;
	}
	.sec04 .stepCont ul li:nth-child(3) {}
	.sec04 .stepCont ul li:nth-child(4) {}
	.sec04 .stepCont ul li:nth-child(3) .stepInfo,
	.sec04 .stepCont ul li:nth-child(4) .stepInfo,
	.sec04 .stepCont ul li:nth-child(5) .stepInfo {
		margin-top: 1vw;
	}
	.sec04 .stepCont ul li:nth-child(5) {}
	.sec05 .phoneCont ul li.active {
		width: 33%;
		margin: 0 10%;
	}
	.sec05 .phoneCont ul li {
		width: 20%;
		margin: 109px 1%;
	}
	.sec05 .phoneCont ul li .txt_up1-1 {
		top: 103px;
	}
	.sec05 .phoneCont ul li .txt_up2-1 {
		top: 35px;
		left: -67px;
	}
	.sec05 .phoneCont ul li .txt_up2-2 {
		top: 163px;
		right: 5px;
	}
	.sec05 .phoneCont ul li .txt_up2-3 {
		top: 368px;
	}
	.sec05 .phoneCont ul li .txt_up3-2 {
		top: 11vw;
		left: -4vw;
		width: 54%;
		height: auto;
	}
	.sec05 .phoneCont ul li .txt_up3-1 {
		top: 9vw;
		right: -7vw;
		width: 11vw;
		height: auto;
	}
	.sec05 .phoneCont ul li .txt_up3-3 {
		top: 209px;
		width: 12vw;
		height: auto;
		top: 23vw;
		right: -6vw;
	}
	.sec05 .phoneCont ul li .txt_up2-1 {
		top: 5vw;
		left: -7vw;
		width: 10vw;
		height: auto;
	}
	.sec05 .phoneCont ul li .txt_up2-2 {
		top: 17vw;
		right: 0vw;
		width: 8vw;
		height: auto;
	}
	.sec05 .phoneCont ul li .txt_up2-3 {
		top: 41vw;
		right: -4vw;
		width: 12vw;
		height: auto;
	}
	.sec05 .phoneCont ul li .txt_up1-1 {
		top: 103px;
		top: 10vw;
		left: -8vw;
		width: 11vw;
		height: auto;
	}
	.sec05 .phoneCont ul li .txt_up1-2 {
		width: 13vw;
		height: auto;
		top: 23vw;
		right: -8vw;
	}
	.sec05 {
		height: 118vw;
		background-size: cover;
	}
	.sec01 .content {
		margin: 3vw auto 0 auto;
	}
	.sec-version {
		background: url(../img/version_bg_rwd.jpg) 50% 0 no-repeat;
    background-size: cover;
    height: 118vw;
	}
	.sec-instruction .sec-instruction__video {
		margin-top: 40px;
	}
	.enPage .sec01 .title p {
		font-size: 220%;
		line-height: 1.2;
		letter-spacing: 3px;
	}
	.enPage .sec01 .hand {
		width: 28vw;
		top: 43vw;
	}
	.enPage .sec01 .right {
		width: 70%;
	}
	.enPage .sec01 .right .txt {
		width: 64vw;
		margin: 20px 0 0 42px;
		margin: 0vw 6vw;
	}
	.enPage .sec01 .hand {
		width: 26vw;
		top: 43vw;
	}
	.enPage .sec01 .content .boy {
		left: 65vw;
		top: 111vw;
	}
	.enPage .sec02 .right {
		margin: 0% 0 1% 5%;
	}
	.enPage .sec03 .title {
		padding-top: 5vw;
	}
	.enPage section .iframeBlock {
		height: 50vw;
	}
	.enPage .sec01 .left {
		margin-top: 0;
	}
	.enPage .sec01 {
		height: 186vw;
	}
	.enPage .sec04 .stepCont ul li .stepInfo {
		width: 38%;
	}
	.enPage .sec04 .stepCont ul li:nth-child(3) .stepInfo,
	.enPage .sec04 .stepCont ul li:nth-child(4) .stepInfo,
	.enPage .sec04 .stepCont ul li:nth-child(5) .stepInfo {
		margin-top: 2vw;
	}
	.enPage .sec04 {
		height: 215vw;
	}
	.enPage .sec04 .stepCont ul li .stepInfo p {
		height: auto;
	}
	.enPage .sec05 .phoneCont ul li .txt_up1-2 {
		width: 13vw;
		height: auto;
		top: 23vw;
		right: -8vw;
	}
	.enPage .sec05 .phoneCont ul li .txt_up2-1 {
		top: 5vw;
	}
	.enPage .sec05 .phoneCont ul li .txt_up2-2 {
		top: 20vw;
		right: -4vw;
		width: 11vw;
		height: auto;
	}
	.enPage .sec05 .phoneCont ul li .txt_up2-3 {
		top: 40vw;
		right: -6vw;
		width: 13vw;
		height: auto;
	}
	.enPage .sec05 .phoneCont ul li .txt_up3-3 {
		top: 24vw;
	}
	.enPage .sec05 .phoneCont ul li .txt_up3-1 {
		top: 10vw;
		right: -7vw;
		width: 11vw;
		height: auto;
	}
	.enPage .sec02 .right {
		position: static;
		left: 5%;
		top: 13%;
		width: 70%;
		margin: 10% 0 1% 5%;
	}
	.pc920 {
		display: none;
	}
	.rwd920 {
		display: block;
	}
	.enPage .sec02 .panel_mask .txt_up1 {
		width: 26.5%;
		height: 80px;
		top: 12%;
		right: -5%;
	}
	.enPage .sec02 .left {
		bottom: -4vw;
	}
	.enPage .sec02 .left {
		bottom: 1vw;
	}
	.sec-function__dashboard-small,
	.sec-function__dashboard-large {
		display: none;
	}
	.sec-function__content {
		flex-direction: column;
	}
	.sec-function__text--single {
		width: 100%;
	}
	.reverse .sec-function__text {
		order: 1;
		margin-left: 0;
	}
	.reverse .video-container {
		order: 2;
		margin: 1em 0;
	}
	.reverse .sec-function__album-img,
	.sec-function__text--album {
		margin-top: 0;
	}
	.sec-function__text--album {
		order: 1;
	}
	.reverse .sec-function__album-img {
		order: 2;
	}
	.sec-function__demo {
		overflow: hidden;
	}
	.sec-function__demo-social {
		width: 40%;
	}
	.sec-function__demo-rider {
		left: 20%;
	}
	.sec-function__demo-traffic-light {
		right: -10%
	}
	.video-container {
		position: relative;
		padding-bottom: 56.25%;
    height: 0;
	}
	.video-container iframe {
		position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	}
}

@media only screen and (max-width: 897px) {
	.enPage .sec01 .title p {
		font-size: 200%;
	}
	.enPage .sec04 {
		height: 217vw;
	}
}

@media only screen and (max-width: 846px) {
	.enPage .sec04 {
		height: 222vw;
	}
}

@media only screen and (max-width: 830px) {
	.enPage .sec03 .title {
		padding-top: 5vw;
	}
	.enPage section .iframeBlock {
		height: 49vw;
	}
}

@media only screen and (max-width: 798px) {
	.enPage section .iframeBlock {
		height: 42vw;
	}
}

@media only screen and (max-width: 780px) {
	.sec03 .title {
		padding-top: 4vw;
	}
	.enPage .sec01 {
		height: 193vw;
	}
	.enPage .sec01 .left {
		margin-top: 8vw;
	}
	.enPage .sec01 .content .boy {
		top: 128vw;
	}
	.enPage .sec01 .right .txt {
		width: 75vw;
	}
}

@media only screen and (max-width: 768px) {
	nav.pc ul li {
		margin: 0 10px;
	}
	.lanBtn {
		margin-left: 10px;
	}
	.sec-hero__container {
		padding: 4em 1em 0;
	}
	.hero-carousel__text-wrapper {
		margin-top: 1em;
	}
	.hero-nav__list {
		-webkit-overflow-scrolling: touch;
	}
	.sec01 {
		height: 192vw;
	}
	.sec01 .left {
		top: 57vw;
	}
	.sec01 .content .boy {
		left: 64vw;
		top: 114vw;
	}
	.sec01 .hand {
		width: 27vw;
		top: 44vw;
	}
	.sec01 .title p {
		font-size: 230%;
	}
	.sec04 .stepCont ul li .stepPic {
		width: 34%;
		margin-left: 10%;
	}
	.sec04 .stepCont ul li .stepInfo {
		width: 34%;
	}
	.sec04 .stepCont ul li:nth-child(2) .stepPic {
		margin-top: 8vw;
	}
	.sec02 {
		height: 149vw;
	}
	.sec04 {
		height: 235vw;
	}
	.sec_10.mobile {
		display: block;
		width: 100%;
		max-width: 1080px;
	}
	.mobile .sec_10__bg-pc {
		display: none;
	}
	.mobile .sec_10__bg-rwd {
		display: block;
		width: 100%;
	}
	.mobile .locomotive ul li a {
		margin: 2vw 0;
	}
	.mobile .locomotive img {
		width: 80%!important;
		display: inline-block!important;
	}
	.locomotive .owl-prev span,
	.locomotive .owl-next span {
		width: 2.5vw;
		height: 6vw;
	}
	.sec-instruction {
		background: url(../img/instruction_bg_rwd.jpg) 50% 100% no-repeat;
		background-size: cover;
		height: 170vw;
	}
	.sec-instruction__content {
		flex-direction: column;
		align-items: center;
	}
	.sec-instruction__result {
		margin-right: 0;
	}
	.sec-instruction__steps {
    width: 90%;
    padding: 1em 0 0 3em;
	}
	.sec-instruction .sec-instruction__video {
		margin-top: 20px;
	}
	.sec-more {
		height: 90px;
	}
	.sec-more .faqBtn {
		margin: 0 0 15px 0;
	}
	.enPage .sec04 {
		height: 245vw;
	}
	.enPage .sec04 .stepCont ul li .stepInfo {
		width: 45%;
	}
	.enPage .sec04 .stepCont ul li .stepVid {
		width: 66%;
	}
	.enPage .sec04 .stepCont ul li:nth-child(1) .stepInfo {
		margin-top: 4vw;
	}
	.enPage .sec04 .stepCont ul li:nth-child(2) .stepPic {
		margin-top: 7vw;
	}
	.enPage .sec04 .stepCont ul li:nth-child(3) .stepInfo,
	.enPage .sec04 .stepCont ul li:nth-child(4) .stepInfo,
	.enPage .sec04 .stepCont ul li:nth-child(5) .stepInfo {
		margin-top: 3vw;
	}
}

@media only screen and (max-width: 764px) {
	.sec05 {
		height: 131vw;
	}
	.sec-instruction {
		height: 175vw;
	}
}

@media only screen and (max-width: 731px) {
	section .iframeBlock {
		height: 44vw;
	}
	.enPage .sec01 .title p {
		font-size: 195%;
	}
	.enPage section .iframeBlock {
		height: 39vw;
	}
}

@media only screen and (max-width: 720px) {
	section .iframeBlock {
		height: 46vw;
	}
}

@media only screen and (max-width: 714px) {
	.sec01 {
		height: 194vw;
	}
	.sec01 .left {
		top: 61vw;
	}
}

@media only screen and (max-width: 680px) {
	.sec05 {
		height: 140vw;
	}
	.sec04 {
		height: 240vw;
	}
	section .iframeBlock {
		height: 42vw;
	}
	.sec-instruction {
		height: 180vw;
	}
	.enPage section .iframeBlock {
		height: 36vw;
	}
	.enPage .sec04 {
		height: 250vw;
	}
}

@media only screen and (max-width: 650px) {
	.bg-wrapper {
		height: 150vw;
	}
	.enPage .sec04 {
		height: 257vw;
	}
}


/*

@media only screen and (max-width: 480px) {
	body {
		width: 100%;
	}
	.sec01 .title p {
		font-size: 100%;
	}
	section p {
		font-size: 16px;
	}
	.sec01 .hand {
		width: 27%;
		top: 45vw;
	}
	.sec01 {
		height: 217vw;
	}
	.sec01 .right .txt {
		width: 118%;
		margin: 3vw 16%;
	}
	.sec01 .left {
		top: 82vw;
		width: 72%;
	}
	.sec01 .content .boy {
		left: 66vw;
		top: 139vw;
		width: 18%;
	}
	.sec02 {
		height: 148vw;
	}
	.sec03 .title img {
		width: 58%;
	}
	.sec03 .title p {
		margin-top: 3vw;
	}
	.sec03 .title {
		padding-top: 5vw;
	}
	section .iframeBlock {
		height: 43vw;
		margin-top: 3vw;
	}
	.sec04 .title img {
		width: 80%;
	}
	.sec04 .stepCont ul li .stepPic {
		width: 41%;
		margin-left: 3%;
		margin-right: 8%;
	}
	.sec04 .stepCont ul li .stepInfo {
		width: 45%;
	}
	.sec04 .stepCont ul li .stepInfo img {
		width: 86%;
		margin: 0 auto;
	}
	.sec04 .stepCont ul li:nth-child(2) .stepPic {
		margin-top: 15vw;
	}
	.sec04 {
		height: 303vw;
	}
	.sec04 .faqBtn a {
		font-size: 22px;
	}
	.sec05 .title {
		padding-top: 10vw;
	}
	.owl-nav {
		position: relative;
		width: 100%;
		bottom: 50vw;
	}
	.sec05 {
		height: 167vw;
	}
	.sec05 .phoneCont ul li .txt_up1-1 {
		top: 14vw;
		left: -14vw;
		width: 20vw;
	}
	.owl-prev span {
		width: 6vw;
		height: 13vw;
		background: url(../img/sliderLeft.png)0 0 no-repeat;
		background-size: 100%;
	}
	.owl-next span {
		width: 6vw;
		height: 13vw;
		background: url(../img/sliderRight.png)0 0 no-repeat;
		background-size: 100%;
	}
	.sec05 .phoneCont ul li .txt_up1-2 {
		width: 23vw;
		top: 30vw;
		right: -13vw;
	}
	.sec05 .phoneCont ul li .txt_up2-1 {
		top: 5vw;
		left: -12vw;
		width: 18vw;
	}
	.sec05 .phoneCont ul li .txt_up2-2 {
		top: 25vw;
		right: -3vw;
		width: 15vw;
	}
	.sec05 .phoneCont ul li .txt_up2-3 {
		top: 62vw;
		right: -9vw;
		width: 22vw;
	}
	.sec05 .phoneCont ul li .txt_up3-2 {
		top: 14vw;
		left: -11vw;
		width: 31vw;
	}
	.sec05 .phoneCont ul li .txt_up3-1 {
		top: 11vw;
		right: -16vw;
		width: 21vw;
	}
	.sec05 .phoneCont ul li .txt_up3-3 {
		top: 38vw;
		width: 19vw;
		right: -10vw;
	}
	.sec05 .title img {
		width: 78%;
	}
	section .iframeBlock {
		width: calc(100% - 2vw);
		padding: 1vw;
	}
	.sec04 {
		height: 230vw;
	}
	.sec05 .phoneCont ul li p {
		font-size: 24px;
	}
}

@media only screen and (max-width: 450px) {
	.sec04 {
		height: 310vw;
	}
}

@media only screen and (max-width: 420px) {
	.sec04 {
		height: 315vw;
	}
}

@media only screen and (max-width: 411px) {
	.sec04 {
		height: 323vw;
	}
}

@media only screen and (max-width: 408px) {
	.sec04 {
		height: 328vw;
	}
	section .iframeBlock {
		height: 37vw;
		margin-top: 3vw;
	}
}

@media only screen and (max-width: 390px) {
	.sec04 {
		height: 333vw;
	}
}

@media only screen and (max-width: 380px) {
	.sec04 {
		height: 339vw;
	}
	.sec04 .stepCont ul li:nth-child(2) .stepPic {
		margin-top: 17vw;
	}
	.sec04 .stepCont ul li:nth-child(3) .stepInfo,
	.sec04 .stepCont ul li:nth-child(4) .stepInfo,
	.sec04 .stepCont ul li:nth-child(5) .stepInfo {
		margin-top: 1vw;
	}
	.sec03 .title {
		padding-top: 3vw;
	}
}

@media only screen and (max-width: 375px) {
	.sec05 {
		height: 176vw;
	}
	.sec01 .right .txt {
		width: 129%;
		margin: 3vw 15%;
	}
	.sec01 .left {
		top: 86vw;
	}
}

@media only screen and (max-width: 360px) {
	.sec04 {
		height: 354vw;
	}
	.sec04 .faqBtn a {
		width: calc(100% - 40px);
		padding: 7px 14px;
	}
}

@media only screen and (max-width: 355px) {
	.sec04 {
		height: 360vw;
	}
}

@media only screen and (max-width: 350px) {
	.sec04 {
		height: 360vw;
	}
	section p {
		font-size: 15px;
	}
}

@media only screen and (max-width: 337px) {
	.sec04 {
		height: 365vw;
	}
}

@media only screen and (max-width: 330px) {
	.sec04 {
		height: 370vw;
	}
}

@media only screen and (max-width: 320px) {
	.sec04 {
		height: 393vw;
	}
	.sec05 {
		height: 182vw;
	}
}*/

@media only screen and (max-width: 641px) {
	body {
		overflow-x: scroll;
	}
	.pc {
		display: none;
	}
	.rwd {
		display: block;
	}
	.sec01 .hand {
		width: 170px;
		top: 347px;
	}
	.sec01 .right .txt {
		width: 107%;
		margin: 20px 16%;
	}
	.sec01 .left {
		top: 66vw;
	}
	/* .sec01 {
		height: 1247px;
	} */
	.sec01 .content .boy {
		left: 64vw;
		top: 122vw;
	}
	.sec01 .content {
		margin: 30px auto 0 auto;
	}
	.sec01 .left {
		top: 500px;
		width: 72%;
	}
	.sec01 .content .boy {
		left: 417px;
		top: 858px;
		width: 95px;
	}
	.sec01 .title {
		padding-top: 90px;
	}
	.menu {
		position: absolute;
		top: 0;
		right: 0;
		width: 70px;
		height: 70px;
		cursor: pointer;
		z-index: 6;
	}
	.menu div {
		position: absolute;
		left: 50%;
		width: 34px;
		height: 3px;
		border-radius: 1px;
		margin-left: -17px;
		background-color: #4b4c4e;
		transition: all .3s;
	}
	.menu .top {
		top: 23px;
	}
	.menu .mid {
		top: 35px;
	}
	.menu .bot {
		top: 47px;
	}
	.menu.active .top {
		top: 35px;
		transform: rotate(45deg);
	}
	.menu.active .mid {
		opacity: 0;
	}
	.menu.active .bot {
		top: 35px;
		transform: rotate(-45deg);
	}
	nav.rwd {
		display: none;
		width: 100%;
		margin: 0;
	}
	nav.rwd ul,
	nav.rwd ul li {
		width: 100%;
		margin: 0;
	}
	nav.rwd ul {
		border-top: 1px solid #d4d4d4;
		box-shadow: rgb(177, 179, 194, 0.57) 1px 9px 16px;
		background: url(../img/pc_header_bg.png)0 0;
	}
	nav.rwd ul li {
		background: url(../img/pc_header_bg.png)0 0;
		width: calc(100% - 60px);
		padding: 9px 30px;
		cursor: pointer;
	}
	header {
		width: 100%;
		padding: 0;
	}
	nav.rwd ul li {
		border-bottom: 1px solid #d4d4d4;
	}
	nav.rwd ul li:last-child {
		border-bottom: none;
	}
	nav.rwd .lanBtn {
		border-radius: 0;
		padding: 0;
		border: 0;
		margin: 0;
		float: left;
	}
	nav.rwd ul li.active {
		border-bottom: 4px solid #ff2d32;
	}
	.rwd .submenu {
		display: none;
		flex-direction: column;
		width: 100%;
		padding: 0;
		border-bottom: none;
	}
	.rwd li.active + .submenu {
		display: flex;
	}
	.rwd .submenu__item {
		position: relative;
		padding: 9px 30px 5px 70px;
		border-bottom: 1px solid #d4d4d4;
	}
	.rwd .submenu__item::before {
		content: '';
    display: block;
    position: absolute;
    top: 20px;
    left: 53px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #6b6b6b;
	}
	.is-selected.submenu__item {
		color: #ff2d32;
	}
	.is-selected.submenu__item::before {
		background: #ff2d32;
	}
	section .iframeBlock {
		height: 265px;
		margin-top: 5px;
	}
	.sec03 .title {
		padding-top: 26px;
	}
	.sec04 .stepCont ul li .stepPic {
		float: left;
		width: 250px;
		margin-right: 45px;
		margin-left: 5px;
	}
	.sec04 .stepCont ul li {
		width: 100%;
		padding: 20px 0;
	}
	.sec04 .stepCont ul li:nth-child(3) .stepInfo,
	.sec04 .stepCont ul li:nth-child(4) .stepInfo,
	.sec04 .stepCont ul li:nth-child(5) .stepInfo {
		margin-top: 7px;
	}
	.sec02 {
		height: 956px;
	}
	.sec04 {
		background: url(../img/rwd_sec04_bg.jpg) 0 top no-repeat;
		background-size: 100%;
		height: 1960px;
	}
	.sec04 .stepCont ul li:nth-child(1) .stepInfo {
		margin-top: 24px;
	}
	.sec04 .stepCont ul li:nth-child(2) .stepInfo {
		margin-top: 0px;
	}
	.sec05 .phoneCont ul li {
		width: 50%;
		margin: 0 25%;
	}
	.sec05 .phoneCont {
		overflow: hidden;
		width: 100%;
	}
	.sec05 .phoneCont ul li .txt_up {
		display: block;
	}
	.sec05 .phoneCont ul li .txt_up1-1 {
		top: 103px;
		top: 73px;
		left: -84px;
		width: 120px;
	}
	.sec05 .phoneCont ul li .txt_up1-2 {
		width: 134px;
		top: 190px;
		right: -87px;
	}
	.sec05 .phoneCont ul li .txt_up2-1 {
		top: 35px;
		left: -56px;
		width: 96px;
	}
	.sec05 .phoneCont ul li .txt_up2-2 {
		top: 154px;
		right: -10px;
		width: 83px;
	}
	.sec05 .phoneCont ul li .txt_up2-3 {
		top: 386px;
		right: -42px;
		width: 115px;
	}
	.sec05 .phoneCont ul li .txt_up3-2 {
		top: 89px;
		left: -44px;
		width: 164px;
	}
	.sec05 .phoneCont ul li .txt_up3-1 {
		top: 65px;
		right: -77px;
		width: 108px;
	}
	.sec05 .phoneCont ul li .txt_up3-3 {
		top: 209px;
		width: 96px;
		right: -31px;
	}
	.sec05 {
		height: 1090px;
		background: url(../img/pc_sec05_bg.jpg)0 0 no-repeat;
		background-size: cover;
	}
	.sec01 .title p {
		font-size: 224%;
		line-height: 1.4;
	}
	.sec04 .stepCont ul li .stepInfo {
		width: 250px;
	}
	.sec05 .phoneCont ul li p {
		font-size: 30px;
		margin-bottom: 10px;
		color: #e03a45;
	}
	.sec04 .stepCont ul li:nth-child(2) .stepPic {
		margin-top: 80px;
	}
	.sec03 {
		height: 863px;
	}
	.sec-instruction {
		height: 183vw;
	}
	.enPage .sec01 .hand {
		top: 52vw;
	}
	.enPage .sec01 .title p {
		font-size: 175%;
	}
	.enPage .sec01 {
		height: 225vw;
	}
	.enPage .sec01 {
		height: 1369px;
		margin-top: 70px;
	}
	.enPage .sec01 .hand {
		top: 293px;
		width: 166px;
	}
	.enPage .sec01 .right {
		width: 410px;
	}
	.enPage .sec01 .right .txt {
		width: 480px;
	}
	.enPage .sec01 .left {
		margin-top: 0;
		top: 495px;
	}
	.enPage .sec01 .content .boy {
		top: 874px;
		left: 417px;
		width: 95px;
	}
	.enPage .sec03 .title {
		padding-top: 23px;
	}
	.enPage section .iframeBlock {
		height: 245px;
		margin: 0;
	}
	.enPage .sec02 .content {
		padding-top: 0;
	}
	.enPage .sec04 {
		height: 1900px;
	}
	.enPage .sec04 .stepCont ul li:nth-child(1) .stepInfo {
		margin-top: 47px;
	}
	.enPage .sec04 .stepCont ul li:nth-child(2) .stepPic {
		margin-top: 40px;
	}
	.enPage .sec04 .stepCont ul li:nth-child(3) .stepInfo,
	.enPage .sec04 .stepCont ul li:nth-child(4) .stepInfo,
	.enPage .sec04 .stepCont ul li:nth-child(5) .stepInfo {
		margin-top: 30px;
	}
	.enPage .sec05 .phoneCont ul li .txt_up1-1 {
		top: 96px;
	}
	.enPage .sec05 .phoneCont ul li .txt_up1-2 {
		width: 134px;
		top: 205px;
		right: -87px;
	}
	.enPage .sec05 .phoneCont ul li .txt_up2-1 {
		top: 57px;
		left: -56px;
		width: 96px;
	}
	.enPage .sec05 .phoneCont ul li .txt_up2-2 {
		top: 199px;
		right: -23px;
		width: 98px;
	}
	.enPage .sec05 .phoneCont ul li .txt_up2-3 {
		top: 406px;
		right: -42px;
		width: 115px;
	}
	.enPage .sec05 .phoneCont ul li .txt_up3-2 {
		top: 105px;
	}
	.enPage .sec05 .phoneCont ul li .txt_up3-1 {
		top: 93px;
		right: -77px;
		width: 108px;
	}
	.enPage .sec05 .phoneCont ul li .txt_up3-3 {
		top: 235px;
		width: 107px;
		right: -53px;
	}
	.enPage .sec05 {
		height: 990px;
	}
	.enPage .sec02 .panel_mask .txt_up1 {
		width: 150px;
		height: auto;
		right: -30px;
		top: 40px;
	}
}