@charset "UTF-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
}

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	color: #000;
	min-width: 1280px;
}

img {
	vertical-align: top;
}

.inside {
	width: 1280px;
	margin: 0 auto;
	overflow: hidden;
}

.sp {
	display: none;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

/* animation */
@keyframes slideIn {
	0% {width: 0; height: 100%; opacity: 1;}
	99.9%,to {width: 100%; height: 100%; opacity: 1;}
}

@-webkit-keyframes slideIn {
	0% {width: 0; height: 100%; opacity: 1;}
	99.9%,to {width: 100%; height: 100%; opacity: 1;}
}

@keyframes wipeInLeft {
	0% {left: -100%; opacity: 1;}
	99.9%,to {left: 0; opacity: 1;}
}

@-webkit-keyframes wipeInLeft {
	0% {left: -100%; opacity: 1;}
	99.9%,to {left: 0; opacity: 1;}
}		

@keyframes slideInLeft {
	0% {transform: translatex(-100%); opacity: 1;}
	99.9%,to {transform: translatex(0); opacity: 1;}
}

@-webkit-keyframes slideInLeft {
	0% {transform: translatex(-100%); opacity: 1;}
	99.9%,to {transform: translatex(0); opacity: 1;}
}		

@keyframes slideInRight {
	0% {transform: translatex(100%); opacity: 1;}
	99.9%,to {transform: translatex(0); opacity: 1;}
}

@-webkit-keyframes slideInRight {
	0% {transform: translatex(100%); opacity: 1;}
	99.9%,to {transform: translatex(0); opacity: 1;}
}		

@keyframes wipeOut {
	0% {width: 100%; height: 100%; left: 0; opacity: 1;}
	99.9%,to {width: 0; height: 100%; left: 100%; opacity: 1;}
}

@-webkit-keyframes wipeOut {
	0% {width: 100%; height: 100%; left: 0; opacity: 1;}
	99.9%,to {width: 0; height: 100%; left: 100%; opacity: 1;}
}		

@keyframes slipIn {
	0% {opacity: 1; transform: translatex(-10px);}
	99.9%,to {opacity: 1; transform: translatex(0);}
}

@-webkit-keyframes slipIn {
	0% {opacity: 1; transform: translatex(-10px);}
	99.9%,to {opacity: 1; transform: translatex(0);}
}

@keyframes fadeIn {
	0% {opacity: 0;}
	99.9%,to {opacity: 1;}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0;}
	99.9%,to {opacity: 1;}
}

@keyframes fadeInUp {
	0% {opacity: 0; transform: translateY(30px);}
	99.9%,to {opacity: 1; transform: translateY(0);}
}

@-webkit-keyframes fadeInUp {
	0% {opacity: 0; transform: translateY(30px);}
	99.9%,to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInDown {
	0% {opacity: 0; transform: translateY(-50px);}
	99.9%,to {opacity: 1; transform: translateY(0);}
}

@-webkit-keyframes fadeInDown {
	0% {opacity: 0; transform: translateY(-50px);}
	99.9%,to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInDown2 {
	0% {opacity: 0; transform: translateY(-30px);}
	99.9%,to {opacity: 1; transform: translateY(0);}
}

@-webkit-keyframes fadeInDown2 {
	0% {opacity: 0; transform: translateY(-30px);}
	99.9%,to {opacity: 1; transform: translateY(0);}
}

.animated {
	visibility: hidden;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

span.animated {
	display: block;
}

.wipe_in {
	position: relative;
	z-index: 1;
	overflow: hidden;
	display: inline-block;
}

.wipe_in:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	background: #000;
	animation: slideIn 0.5s ease-in 0s 1, wipeOut 0.5s ease-out 0.5s 1 forwards;
	-webkit-animation: slideIn 0.5s ease-in 0s 1, wipeOut 0.5s ease-out 0.5s 1 forwards;
}

.wipeOut {
	position: relative;
	z-index: 1;
	overflow: hidden;
	display: inline-block;
}

.wipeOut:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	animation: wipeOut 0.5s ease-out 0.5s 1 forwards;
	-webkit-animation: wipeOut 0.5s ease-out 0.5s 1 forwards;
	z-index: 5;
}

.wipe_in .slipIn {
	opacity: 0;
	animation: slipIn 1s ease-out 0.5s 1 forwards;	
	-webkit-animation: slipIn 1s ease-out 0.5s 1 forwards;		
}

.wipe_in .fadeIn {
	opacity: 0;
	animation: fadeIn 0.5s ease-out 0.5s 1 forwards;	
	-webkit-animation: fadeIn 0.5s ease-out 0.5s 1 forwards;
	position: relative;
	z-index: 1;
}

/*.animated.fadeIn {
	opacity: 0;
	animation: fadeIn 0.5s ease-out 0.5s 1 forwards;	
	-webkit-animation: fadeIn 0.5s ease-out 0.5s 1 forwards;
	position: relative;
	z-index: 1;
}*/

.animated.fadeInUp {
	opacity: 0;
	animation: fadeInUp 0.5s ease-out 0s 1 forwards;	
	-webkit-animation: fadeInUp 0.5s ease-out 0s 1 forwards;			
}

.animated.wipeInLeft {
	animation: wipeInLeft 1s ease-in 0s 1 forwards;
	-webkit-animation: wipeInLeft 1s ease-in 0s 1 forwards;	
}

.animated.slideInLeft {
	animation: slideInLeft 1s ease-in 0s 1 forwards;
	-webkit-animation: slideInLeft 1s ease-in 0s 1 forwards;	
}

.animated.slideInLeft2 {
	animation: slideInLeft 1s ease-in 1s 1 forwards;
	-webkit-animation: slideInLeft 1s ease-in 1s 1 forwards;	
}

.animated.slideInRight1 {
	animation: slideInRight 1s ease-in 0s 1 forwards;
	-webkit-animation: slideInRight 1s ease-in 0s 1 forwards;	
}

.animated.slideInRight2 {
	animation: slideInRight 1s ease-in 1s 1 forwards;
	-webkit-animation: slideInRight 1s ease-in 1s 1 forwards;	
}

.animated.fadeInDown {
	animation: fadeInDown 0.5s ease-in 1s 1 forwards;
	-webkit-animation: fadeInDown 0.5s ease-in 1s 1 forwards;	
}

.animated.fadeInDown2 {
	animation: fadeInDown2 0.5s ease-in 0s 1 forwards;
	-webkit-animation: fadeInDown2 0.5s ease-in 0s 1 forwards;	
}

/* header */
header {
	width: 1280px;
	margin: 0 auto;
	padding-top: 45px;
}

header h1 img {
	width: 343px;
	float: left;
}

header .btn_buy {
	float: right;
}

header .btn_buy img {
	width: 343px;
}

#language_btn {
	text-align: right;
	margin-bottom: 20px;
}

#language_btn:after {
	content: "";
	display: block;
	clear: both;
}

#language_btn p {
	display: inline-block;
	line-height: 36px;
	padding-right: 5px;
}

.lang_buttons {
	float: right;
	width: 64px;
	height: 36px;
	background: url("../img/bg_lang_btn.png") no-repeat;
	background-size: contain;
	position: relative;
}

.lang_buttons img {
	width: 29px;
	list-style: none;
	position: absolute;
}

.lang_buttons img.btn_english {
	top: 3px;
	left: 3px;
}

.lang_buttons img.btn_japanese {
	top: 3px;
	right: 3px;
}

#mainvisual {
	text-align: center;
	padding-bottom: 30px;
}

#mainvisual .img_mainvisual {
	width: 948px;
	height: 948px;
	margin-top: 40px;
	display: inline-block;	
	opacity: 0;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;	
}

/*
#mainvisual .img_mainvisual.wipe_in:before {
	animation: slideIn 0.5s ease-in 0s 1, wipeOut 0.5s ease-out 0.5s 1 forwards;
	-webkit-animation: slideIn 0.5s ease-in 0s 1, wipeOut 0.5s ease-out 0.5s 1 forwards;	
}
*/

#mainvisual .img_catchcopy {
	width: 784px;
	margin-top: 30px;
	display: inline-block;
}

#mainvisual .img_catchcopy.wipe_in img {
	width: 784px;
}


#mainvisual .scroll {
	width: 68px;
	margin-top: 30px;
}

/* intro */
#intro {
	text-align: center;
/*	background: #0074c5;*/
	color: #FFF;
}

#intro .inside {
	background: url("../img/bg_fiirst.jpg") no-repeat;
	background-size: cover;
	height: 917px;
}

#intro .inside .wipe_in:before {
	background: #fff;
}

#intro .inside .ico_new {
	width: 217px;
	height: 217px;
	margin-top: 127px;
	display: inline-block;
}

#intro .inside .ico_new img {
	width: 217px;
}

#intro .inside .logo_aeroelastic {
	width: 294px;
	height: 41px;
	margin-top: 30px;
	display: inline-block;
}

#intro .inside .logo_aeroelastic img {
	width: 294px;
}

#intro .inside .img_ae_saddle {
	width: 450px;
	margin-top: 85px;
	display: inline-block;
}

#intro .inside .img_ae_saddle img {
	width: 450px;
}

#intro .inside p {
	margin-top: 85px;
	font-size: 25px;
	line-height: 1.8;
	letter-spacing: 0.2rem;
}

/* feature */
#feature #feature1 {
	padding-top: 100px;
	padding-left: 90px;
	padding-bottom: 133px;
	box-sizing: border-box;
}

#feature #feature1 .ico_1 {
	width: auto;
	height: auto;
	margin-bottom: 46px;
	display: inline-block;
}

#feature #feature1 .ico_1 img {
	width: 104px;
}

#feature #feature1 .title_1 {
	height: auto;
	width: auto;
	margin-bottom: 90px;
	display: inline-block;
}

#feature #feature1 .title_1 h2 {
	font-size: 40px;
	letter-spacing: 0.6rem;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

#feature #feature1 .title_1 h2.jp {
	wiidth: 350px;
}

#feature #feature1 .title_1 h2.en {
	width: 425px;
}

#feature #feature1 .catch_1 {
	font-size: 25px;
	color: #0078C8;
	line-height: 2;
	letter-spacing: 0.3rem;
	font-weight: bold;
	width: auto;
	display: inline-block;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

#feature #feature1 .catch_1 .jp {
	width: 450px;
	display: inline-block;
}

#feature #feature1 .catch_1 .en {
	width: 800px;
	display: inline-block;
}

#feature #feature1 .discription {
	position: relative;
}

#feature #feature1 .discription p {
	position: relative;
	z-index: 10;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

#feature #feature1 .discription p span {
	background: rgba(255, 255, 255, 0.7);
	font-size: 17px;
	letter-spacing: 0.15rem;
	padding: 50px 40px 45px 0;
	box-sizing: border-box;
	line-height: 2;
	display: block;
}

#feature #feature1 .discription p .jp {
	width: 490px;
}

#feature #feature1 .discription p .en {
	width: 540px;
}

#feature #feature1 .img_product1 {
	width: 940px;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
	z-index: 1;
}

#feature #feature1 .logo_aeroelastic_vartir {
	width: 40px;
	position: absolute;
	right: 90px;
	top: -188px;
	opacity: 0;
	z-index: 5;
}

#feature #feature2 {
	position: relative;
	padding-top: 302px;
	height: 1224px;
	box-sizing: border-box;
}

#feature #feature2 .bg_feature {
	width: 1280px;
	height: 1224px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

#feature #feature2 .bg_feature:before {
	width: 1280px;
	height: 1224px;
}

#feature #feature2 .wipe_in:before {
	background: #fff;
}

#feature #feature2 .discription {
	width: 100%;
	text-align: center;
	color: #fff;
}

#feature #feature2 .ico_2 {
	width: 136px;
	margin-bottom: 18px;
	display: inline-block;
}

#feature #feature2 .ico_2 .fadeIn {
	opacity: 0;
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
}

#feature #feature2 .ico_2.wipe_in:before {
	opacity: 0;
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
}

#feature #feature2 .ico_2 img {
	width: 136px;
}

#feature #feature2 .title_2 {
	width: auto;
	color: #fff;
	margin-bottom: 73px;
	display: inline-block;
}

#feature #feature2 .title_2 h2 {
	width: auto;
	font-size: 40px;
	letter-spacing: 0.6rem;
	display: inline-block;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

#feature #feature2 .title_2 .jp {
	width: 260px;
	margin-left: 60px;
}

#feature #feature2 .title_2 .en {
	margin-left: 20px;
}

#feature #feature2 .catch_2 {
	width: auto;
	margin-left: 20px;
	margin-bottom: 43px;
	font-size: 25px;
	font-weight: bold;
	line-height: 1.8;
	letter-spacing: 0.3rem;
	display: inline-block;
	-webkit-text-size-adjust: 100%;	
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

#feature #feature2 .catch_2 .jp {
	width: 350px;
	display: inline-block;
}

#feature #feature2 .catch_2 .en {
	width: 420px;
	font-size: 23px;
	display: inline-block;
}

#feature #feature2 .img_product2 {
	width: 383px;
	position: absolute;
	top: 103px;
	left: 0;
	opacity: 0;
	z-index: 5;
}

#feature #feature2 .img_product3 {
	width: 383px;
	position: absolute;
	top: 471px;
	right: 0;
	opacity: 0;
	z-index: 5;
}

#feature #feature2 p {
	font-size: 17px;
	letter-spacing: 0.15rem;
	line-height: 2;
	position: relative;
	z-index: 5;
}

#feature #feature2 p .en {
	display: inline-block;
	width: 470px;
	font-size: 15px;
}

#feature #feature3 {
	position: relative;
	height: 1080px;
	margin-bottom: 117px;
}

#feature #feature3 .discription {
	width: 100%;
}

#feature #feature3 .ico_3 {
	width: 136px;
	margin-bottom: 26px;
	margin-left: 735px;
	display: inline-block;
}

#feature #feature3 .ico_3 img {
	width: 136px;
}

#feature #feature3 .title_3 {
	width: auto;
	margin-bottom: 60px;
	margin-left: 735px;
	letter-spacing: 0.6rem;
	display: inline-block;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

#feature #feature3 .title_3 .jp {
	width: 355px;
	font-size: 40px;
	display: inline-block;
}

#feature #feature3 .title_3 .en {
	width: 400px;
	display: inline-block;
	font-size: 40px;
	line-height: 1.2;
}

#feature #feature3 .catch_3 {
	width: auto;
	font-size: 25px;
	color: #0078C8;
	letter-spacing: 0.3rem;
	font-weight: bold;
	margin-bottom: 45px;
	margin-left: 735px;
	padding: 0;
	display: inline-block;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

#feature #feature3 .catch_3 .jp {
	width: 340px;
}

#feature #feature3 .catch_3 .en {
	font-size: 23px;
}

#feature #feature3 .img_product4 {
	width: 940px;
	position: absolute;
	top: 440px;
	left: 0;
	z-index: 1;
}

#feature #feature3 .logo_aeroelastic_vartil {
	width: 40px;
	position: absolute;
	left: 90px;
	top: 255px;
	opacity: 0;
	z-index: 5;
}

#feature #feature3 p {
	width: auto;
	font-size: 17px;
	line-height: 2;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.7);
	padding-left: 30px;
	padding-right: 90px;
	padding-bottom: 47px;
	margin-left: 705px;
	position: relative;
	z-index: 5;
}

#feature #feature3 p .jp {
	letter-spacing: 0.2rem;
	width: 480px;
	display: inline-block;
}

#feature #feature3 p .en {
	letter-spacing: 0.15rem;
	width: 550px;
	line-height: 1.8;
	display: inline-block;
}


/* movie */
#movie_area .inside {
	background: #0078C8;
	text-align: center;
	color: #fff;
	padding-top: 100px;
	padding-bottom: 109px;
}

#movie_area .inside .ico_new {
	width: 216px;
	margin-bottom: 54px;
}

#movie_area .inside .logo_aeroelastic {
	width: 488px;
	margin-bottom: 75px;
}

#movie_area .inside .img_ae_saddle {
	width: 376px;
	margin-bottom: 65px;
}

#movie_area .inside p {
	font-size: 20px;
	letter-spacing: 0.15rem;
	line-height: 2;
	margin-bottom: 72px;
}

#movie_area .inside video {
	width: 1099px;
}

/* PRICE */
#price_area {
	padding-top: 82px;
	margin-bottom: 174px;
}

#price_area .price_box {
	width: 1100px;
	margin: 0 auto;
}

#price_area .price_box div {
	width: 50%;
	float: left;
	position: relative;
	height: 550px;
	overflow: hidden;
}

#price_area .price_box .price_box1 {
	text-align: center;
	opacity: 0;
	border-right: #00a7d9 5px solid;
	border-left: #0078c8 5px solid;
	box-sizing: border-box;
}

#price_area .price_box .price_box1:before {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	position: absolute;
	top: 0;
	left: 0;
	background: rgb(0,120,200);
	background: linear-gradient(90deg, rgba(0,120,200,1) 0%, rgba(0,167,217,1) 100%);	
}

#price_area .price_box .price_box1:after {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgb(0,120,200);
	background: linear-gradient(90deg, rgba(0,120,200,1) 0%, rgba(0,167,217,1) 100%);	
}


#price_area .price_box .price_box1 .img_new {
	width: 146px;
	margin-top: 147px;
	margin-bottom: 55px;
}

#price_area .price_box .price_box1 h2 {
	font-family: "Helvetica Neue", Arial, "sans-serif";
	font-size: 50px;
	letter-spacing: 0.4rem;
	font-weight: 500;
	margin-bottom: 55px;
}

#price_area .price_box .price_box1 p {
	font-size: 22px;
	line-height: 2;
	letter-spacing: 0.2rem;
	font-weight: bold;
}

#price_area .price_box .price_box2 {
	opacity: 0;
}

#price_area .price_box .price_box2 img,
#price_area .price_box .price_box3 img {
	width: 100%;
}

#price_area .price_box .price_box4 {
	text-align: center;
}

#price_area .price_box .price_box4 .old_price {
	font-size: 30px;
	color: #808080;
	margin-top: 65px;
	letter-spacing: 0.1rem;
	opacity: 0;
}

#price_area .price_box .price_box4 .old_price .mid {
	font-size: 16px;
	margin-right: 5px;
	vertical-align: text-bottom;
}

#price_area .price_box .price_box4 .tax_inc {
	font-size: 10px;
	vertical-align: middle;
	letter-spacing: 0.05rem;
	line-height: 1;
	margin-top: -25px;
}

#price_area .price_box .price_box4 .ico_arrowdown {
	width: 25px;
	margin-top: 20px;
	margin-bottom: 20px;
	opacity: 0;
}

#price_area .price_box .price_box4 h3 {
	font-size: 20px;
	letter-spacing: 0.1rem;
	margin-left: 20px;
	opacity: 0;
}

#price_area .price_box .price_box4 .price {
	text-align: left;
	position: relative;
	height: 125px;
	overflow: visible;
	padding-left: 222px;
}

#price_area .price_box .price_box4 .price .img_new {
	width: 101px;
	position: absolute;
	top: 0;
	left: 110px;
	opacity: 0;
}

#price_area .price_box .price_box4 .price p.new_price {
	font-size: 52px;
	letter-spacing: 0.3rem;
	font-weight: bold;
	line-height: 1;
	color: #0078C8;
	margin-top: 23px;
	opacity: 0;
}

#price_area .price_box .price_box4 .price .underline {
	height: 20px;
	overflow: hidden;
	display: block;
}

#price_area .price_box .price_box4 .price .underline.jp {
	width: 97%;
}

#price_area .price_box .price_box4 .price .underline.en {
	width: 91%;
}

#price_area .price_box .price_box4 .price .underline img {
	width: 100%;
	position: relative;
	top: 0;
	left: -100%;
}

#price_area .price_box .price_box4 .price .tax_inc {
	display: inline-block;
	text-align: left;
}

#price_area .price_box .price_box4 .btn_buy {
	width: 343px;
	margin-top: 36px;
	margin-left: 20px;
}

/* DESIGN */
#design .inside {
	position: relative;
	padding-top: 275px;
	padding-bottom: 228px;
}

#design .design_box {
	text-align: center;
	width: 550px;
	height: 550px;
	position: absolute;
	top: 0;
	left: 90px;
	z-index: 10;
	border-right: #00a7d9 5px solid;
	border-left: #0078c8 5px solid;
	box-sizing: border-box;
}

#design .design_box:before {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	position: absolute;
	top: 0;
	left: 0;
	background: rgb(0,120,200);
	background: linear-gradient(90deg, rgba(0,120,200,1) 0%, rgba(0,167,217,1) 100%);	
}

#design .design_box:after {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgb(0,120,200);
	background: linear-gradient(90deg, rgba(0,120,200,1) 0%, rgba(0,167,217,1) 100%);	
}

#design .design_box .img_new {
	width: 146px;
	margin-top: 147px;
	margin-bottom: 55px;
}

#design .design_box h2 {
	font-family: "Helvetica Neue", Arial, "sans-serif";
	font-size: 50px;
	letter-spacing: 0.4rem;
	font-weight: 500;
	margin-bottom: 55px;
}

#design .design_box p {
	font-size: 22px;
	line-height: 2;
	letter-spacing: 0.2rem;
	font-weight: bold;
}

#design .sp-buttons {
	padding-top: 30px;
}

#design .sp-button {
	width: 25px;
	height: 25px;
	border: 3px solid #0078C8;
	margin: 4px 8px;
}

#design .sp-selected-button {
	background-color: #0078C8;
}

/* POINT */
#point .inside {
	background: #EEE;
	padding-top: 78px;
	padding-bottom: 100px;
}

#point .inside h2 {
	text-align: center;
	margin-bottom: 72px;
}

#point .inside h2 img {
	width: 205px;
}

#point .inside .point_box {
	position: relative;
	width: 1100px;
	margin: 0 auto;
	margin-bottom: 60px;
	padding: 50px 30px;
	border-right: #00a7d9 5px solid;
	border-left: #0078c8 5px solid;
	background: #fff;
}

#point .inside .point_box:before {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	position: absolute;
	top: 0;
	left: 0;
	background: rgb(0,120,200);
	background: linear-gradient(90deg, rgba(0,120,200,1) 0%, rgba(0,167,217,1) 100%);	
}

#point .inside .point_box:after {
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgb(0,120,200);
	background: linear-gradient(90deg, rgba(0,120,200,1) 0%, rgba(0,167,217,1) 100%);	
}

#point .inside .point_box ul {
	position: relative;
	z-index: 10;
	width: 1000px;
	margin: 0 auto;
}

#point .inside .point_box ul:after {
	content: "";
	display: block;
	clear: both;
}

#point .inside .point_box ul li {
	width: 55%;
	height: 100%;
	float: left;
	list-style: none;
}

#point .inside .point_box ul li.point_right {
	width: 45%;
}

#point .inside .point_box ul li h3 {
	color: #0078C8;
	font-size: 20px;
	margin-bottom: 50px;
	letter-spacing: 0.2rem;
}

#point .inside .point_box ul li p {
	font-size: 15px;
	line-height: 2;
	letter-spacing: 0.15rem;
}

#point .inside .point_box ul li .img_point1 {
	width: 459px;
	margin-left: 20px;
}

#point .inside .point_box ul li .img_point2 {
	width: 497px;
	margin-top: 30px;
}

/* spec */
#spec .inside {
	background: #0078C8;
	padding-top: 105px;
	padding-bottom: 80px;
	font-size: 13px;
	letter-spacing: 0.2rem;
	line-height: 2;
}

#spec .bg_spec {
	display: block;
	margin: 0 auto;
	margin-top: -1px;
}

#spec h2 {
	color: #0078C8;
	font-size: 20px;
	letter-spacing: 0.2rem;
	font-family: "Helvetica Neue", Arial, "sans-serif";
	margin-bottom: 60px;
	text-align: center;
	font-weight: 400;
}

#spec .size_box {
	width: 1100px;
	background: #fff;
	margin: 0 auto;
	padding-top: 80px;
	padding-bottom: 100px;
	text-align: center;
}

#spec .size_box .img_size1,
#spec .size_box .img_size2 {
	width: 701px;
	margin-top: 60px;
}

#spec #material_box {
	width: 492px;
	float: left;
	background: #fff;
	padding: 40px 70px;
	box-sizing: border-box;
	margin-top: 65px;
	margin-left: 90px;
	height: 262px;	
}

#spec #material_box h2,
#spec #test_box h2 {
	margin-bottom: 0;
}

#spec .space {
	display: block;
	width: 100%;
}

#spec .space.jp {
	height: 40px;
}

#spec .space.en {
	height: 30px;
}

#spec #material_box dl dt {
	width: 100px;
	float: left;
	font-weight: bold;
}

#spec #material_box dl dd {
	padding-left: 100px;
}

#spec #test_box {
	width: 492px;
	float: right;
	background: #fff;
	padding: 40px 60px;
	box-sizing: border-box;
	margin-top: 65px;
	margin-right: 90px;
	height: 262px;
}

/* AE Saddle */
#ae_saddle .inside {
	width: 516px;
	margin: 0 auto;
	margin-top: 200px;
	margin-bottom: 217px;
}

#ae_saddle .inside .img_ae_saddle {
	width: 100%;
	display: inline-block;
}

#ae_saddle .inside .img_ae_saddle img {
	width: 100%;
	opacity: 0;
}

#ae_saddle .inside .new_price {
	position: relative;
}

#ae_saddle .inside .new_price .img_new {
	width: 100px;
	position: absolute;
	top: 0;
	left: 110px;
}

#ae_saddle .inside .new_price .logo_aeroelastic {
	width: 112px;
	padding-left: 230px;
}

#ae_saddle .inside .new_price h2 {
	font-size: 26px;
	letter-spacing: 0.2rem;
	padding-left: 230px;
	margin-top: 20px;
	line-height: 1;
}

#ae_saddle .inside .new_price .p_price {
	font-size: 16px;
	padding-left: 230px;
	margin-top: 10px;
	line-height: 1;
}

#ae_saddle .inside .new_price .p_price .small {
	font-size: 8px;
}

#ae_saddle .inside .btn_buy {
	width: 490px;
	margin-top: 70px;
	margin-left: 13px;
}

/* profile */
#profile .inside {
	background: #eee;
	padding: 77px 0;
}

#profile .inside .prof_box {
	width: 1100px;
	margin: 0 auto;
}

#profile .inside .prof_left {
	width: 50%;
	float: left;
}

#profile .inside .prof_left img {
	width: 492px;
}

#profile .inside .prof_right {
	width: 50%;
	float: left;
}

#profile .inside .prof_right .title {
	font-size: 14px;
	line-height: 1;
	margin-bottom: 20px;
}

#profile .inside .prof_right h2 {
	font-size: 25px;
	line-height: 1;
	margin-bottom: 50px;
}

#profile .inside .prof_right dl {
	margin-bottom: 70px;
}

#profile .inside .prof_right dl dt {
	width: 90px;
	float: left;
	font-size: 12px;
	letter-spacing: 0.2rem;
	line-height: 2;
}

#profile .inside .prof_right dl dd {
	font-size: 12px;
	padding-left: 90px;
	letter-spacing: 0.2rem;
	line-height: 2;
}

#profile .inside .prof_right p {
	font-size: 12px;
	line-height: 2.2;
}

/* banner area */
#banner_area {
	width: 1100px;
	margin: 0 auto;
	padding-top: 144px;
	margin-bottom: 118px;
}

#banner_area .bnr_other_product {
	float: left;
	width: 492px;
}

#banner_area .bnr_blog {
	float: right;
	width: 492px;
}

/* company */
#company .inside {
	background: url("../img/bg_company.jpg") no-repeat;
	background-size: cover;
	text-align: center;
	padding-top: 70px;
	padding-bottom: 5px;
}

#company .inside h2 {
	color: #fff;
	font-size: 20px;
	font-weight: normal;
	letter-spacing: 0.2rem;
	margin-bottom: 74px;
	line-height: 1;
}

#company .inside h3 {
	line-height: 1;
	margin-bottom: 60px;
}

#company .inside h3 img {
	width: 488px;
}

#company .inside table {
	width: 607px;
	margin: 0 auto;
	color: #fff;
	border-spacing: 0;
	margin-bottom: 250px;
}

#company .inside table th {
	font-weight: normal;
	font-size: 13px;
	width: 200px;
	height: 70px;
	vertical-align: middle;
	border-bottom: 1px #fff solid;
}

#company .inside table td {
	font-size: 13px;
	text-align: left;
	height: 70px;
	vertical-align: middle;
	border-bottom: 1px #fff solid;
}

#company .inside copy {
	color: #fff;
	font-size: 13px;
}

@media screen and (max-width: 768px) {
	body {
		min-width: 1280px;
	}
}

@media screen and (max-width: 767px) {
	body {
		width: 100%;
		min-width: auto;
	}
	
	.inside {
		width: 100%;
	}
	
	.sp {
		display: block;
	}
	
	/* header */
	header {
		width: 100%;
		padding: 5px;
		box-sizing: border-box;
	}

	header h1 {
		width: 80%;
		margin: 30px auto 10px;
	}
	
	header h1 img {
		width: 100%;
		float: none;
	}

	header .btn_buy {
		float: none;
		display: block;
		text-align: center;
	}
	
	header .btn_buy img {
		width: 60%;
	}
	
	#language_btn {
		width: 50%;
		margin: 10px auto;
	}
	
	/* mainvisual */
	#mainvisual .img_mainvisual {
		width: 80%;
		height: auto;
	}

	#mainvisual .img_catchcopy {
		width: 90%;
		margin-top: 30px;
		display: inline-block;
	}

	#mainvisual .img_catchcopy.wipe_in img {
		width: 100%;
	}

	#mainvisual .scroll {
		width: 15%;
	}

	/* intro */
	#intro .inside {
		height: auto;
		padding-bottom: 80px;
		background-size: cover;
		background-position: center;
	}

	#intro .inside .ico_new {
		width: 40%;
		height: auto;
		margin-top: 70px;
	}

	#intro .inside .ico_new img {
		width: 100%;
	}

	#intro .inside .logo_aeroelastic {
		width: 60%;
		margin-top: 10px;
	}

	#intro .inside .logo_aeroelastic img {
		width: 100%;
	}

	#intro .inside .img_ae_saddle {
		width: 90%;
		margin-top: 50px;
	}

	#intro .inside .img_ae_saddle img {
		width: 100%;
	}

	#intro .inside p {
		margin-top: 40px;
		font-size: 16px;
		line-height: 1.8;
		letter-spacing: 0.2rem;
	}	
	
	/* feature */
	#feature #feature1 {
		padding-top: 50px;
		padding-left: 20px;
		padding-bottom: 0;
	}

	#feature #feature1 .ico_1 {
		width: 20%;
		margin-bottom: 30px;
	}

	#feature #feature1 .ico_1 img {
		width: 100%;
	}
	
	#feature #feature1 .title_1 {
		margin-bottom: 30px;
		overflow: hidden;
	}
	
	#feature #feature1 .title_1 h2 {
		font-size: 40px;
	}
	
	#feature #feature1 .title_1 h2.en {
		width: 80%;
	}

	#feature #feature1 .catch_1 {
		font-size: 20px;
		letter-spacing: 0.2rem;
		overflow: hidden;
	}

	#feature #feature1 .catch_1 .jp {
		width: auto;
	}

	#feature #feature1 .catch_1 .en {
		width: auto;
	}
	
	#feature #feature1 .discription p span {
		font-size: 16px;
		padding: 20px 0;
	}

	#feature #feature1 .discription p .jp,
	#feature #feature1 .discription p .en {
		width: 95%;
	}
	
	#feature #feature1 .img_product1 {
		width: 100%;
		position: relative;
		left: 0;
	}

	#feature #feature1 .logo_aeroelastic_vartir {
		width: 10%;
		position: absolute;
		opacity: 0;
		z-index: 5;
		top: 65.5%;
		right: 5%;
	}

	#feature #feature2 {
		position: relative;
		padding-top: 400px;
		padding-bottom: 400px;
		height: auto;
		box-sizing: border-box;
	}

	#feature #feature2 .bg_feature {
		width: 100%;
		height: auto;
		position: absolute;
		top: -100px;
		left: 0;
		z-index: 1;
	}
	
	#feature #feature2 .bg_feature img {
		width: 350%;
	}

	#feature #feature2 .bg_feature:before {
		width: 300%;
		height: auto;
	}

	#feature #feature2 .discription {
		width: 100%;
		animation-delay: 0.5s;
		-webkit-animation-delay: 0.5s;
	}

	#feature #feature2 .ico_2 {
		width: 20%;
		margin-bottom: 18px;
	}
	
	#feature #feature2 .ico_2 img {
		width: 100%;
	}

	#feature #feature2 .title_2 {
		width: auto;
		margin-bottom: 30px;
		display: inline-block;
		animation-delay: 0.5s;
		-webkit-animation-delay: 0.5s;
	}

	#feature #feature2 .title_2 h2 {
		width: 80%;
		font-size: 40px;
		letter-spacing: 0.6rem;
	}

	#feature #feature2 .title_2 .jp {
		width: 100%;
		margin-left: 30px;
	}

	#feature #feature2 .title_2 .en {
		width: 100%;
		margin-left: 10px;
	}

	#feature #feature2 .catch_2 {
		width: 80%;
		margin-left: 20px;
		margin-bottom: 30px;
		font-size: 20px;
		letter-spacing: 0.2rem;
		animation-delay: 0.5s;
		-webkit-animation-delay: 0.5s;
	}

	#feature #feature2 .catch_2 .jp {
		width: auto;
	}

	#feature #feature2 .catch_2 .en {
		width: auto;
	}

	#feature #feature2 .img_product2 {
		width: 60%;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		z-index: 5;
	}

	#feature #feature2 .img_product3 {
		width: 60%;
		position: absolute;
		top: 75%;
		right: 0;
		opacity: 0;
		z-index: 5;
	}

	#feature #feature2 p {
		width: 90%;
		margin: 0 auto;
		font-size: 16px;
	}

	#feature #feature2 p .en {
		width: 100%;
	}

	#feature #feature3 {
		width: auto;
		position: relative;
		height: auto;
		margin-bottom: 0;
		padding-top: 20px;
		padding-left: 20px;
	}

	#feature #feature3 .discription {
		width: 100%;
	}

	#feature #feature3 .ico_3 {
		width: 20%;
		margin-bottom: 18px;
		margin-left: 0;
	}

	#feature #feature3 .ico_3 img {
		width: 100%;
	}

	#feature #feature3 .title_3 {
		margin-bottom: 30px;
		margin-left: 0;
		letter-spacing: 0.6rem;
		overflow: hidden;
	}

	#feature #feature3 .title_3 .jp {
		width: auto;
		font-size: 40px;
	}

	#feature #feature3 .title_3 .en {
		width: auto;
		font-size: 40px;
	}

	#feature #feature3 .catch_3 {
		width: 90%;
		font-size: 20px;
		letter-spacing: 0.3rem;
		margin-bottom: 30px;
		margin-left: 0;
		padding: 0;
		overflow: hidden;
	}

	#feature #feature3 .catch_3 .jp {
		width: auto;
	}

	#feature #feature3 .catch_3 .en {
		font-size: 23px;
	}

	#feature #feature3 .img_product4 {
		width: 100%;
		position: static;
		margin-left: -6%;
	}

	#feature #feature3 .logo_aeroelastic_vartil {
		width: 10%;
		position: absolute;
		left: 8%;
		top: 77.5%;
		opacity: 0;
		z-index: 0;
	}

	#feature #feature3 p {
		font-size: 16px;
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 47px;
		margin-left: 0;
		position: relative;
		z-index: 5;
		width: 95%;
		box-sizing: border-box;
	}

	#feature #feature3 p .jp {
		width: auto;
	}

	#feature #feature3 p .en {
		width: auto;
	}
	
	/* movie area */
	#movie_area .inside {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	#movie_area .inside .ico_new {
		width: 40%;
		margin-bottom: 30px;
	}

	#movie_area .inside .logo_aeroelastic {
		width: 90%;
		margin-bottom: 50px;
	}

	#movie_area .inside .img_ae_saddle {
		width: 80%;
		margin-bottom: 40px;
	}

	#movie_area .inside p {
		font-size: 16px;
		margin-bottom: 40px;
	}

	#movie_area .inside video {
		width: 100.5%;
	}

	/* PRICE */
	#price_area {
		padding-top: 82px;
		margin-bottom: 174px;
	}

	#price_area .price_box {
		width: 100%;
		margin: 0 auto;
	}

	#price_area .price_box div {
		width: 100%;
		height: auto;
		overflow: hidden;
	}

	#price_area .price_box .price_box1 {
		text-align: center;
		opacity: 0;
		padding-bottom: 15%;
	}

	#price_area .price_box .price_box1 .bg_blue_box {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}

	#price_area .price_box .price_box1 .img_new {
		margin-top: 15%;
		margin-bottom: 11%;
	}

	#price_area .price_box .price_box1 h2 {
		margin-bottom: 10%;
	}

	#price_area .price_box .price_box1 p.en {
		font-size: 20px;
	}
	
	#price_area .price_box .price_box2 {
		opacity: 0;
	}

	#price_area .price_box .price_box2 img,
	#price_area .price_box .price_box3 img {
		width: 100%;
	}

	#price_area .price_box .price_box4 {
		text-align: center;
	}

	#price_area .price_box .price_box4 .old_price {
		font-size: 30px;
		color: #808080;
		margin-top: 65px;
		letter-spacing: 0.1rem;
		opacity: 0;
	}

	#price_area .price_box .price_box4 .old_price .mid {
		font-size: 16px;
		margin-right: 5px;
		vertical-align: text-bottom;
	}

	#price_area .price_box .price_box4 .tax_inc {
		font-size: 10px;
		vertical-align: middle;
		letter-spacing: 0.05rem;
	}

	#price_area .price_box .price_box4 .ico_arrowdown {
		width: 25px;
		margin-top: 20px;
		margin-bottom: 20px;
		opacity: 0;
	}

	#price_area .price_box .price_box4 h3 {
		font-size: 20px;
		letter-spacing: 0.1rem;
		margin-left: 20px;
		opacity: 0;
	}

	#price_area .price_box .price_box4 .price {
		padding-left: 30%;
	}

	#price_area .price_box .price_box4 .price .img_new {
		width: 18%;
		top: 7%;
		left: 3%;
	}

	#price_area .price_box .price_box4 .price p.new_price {
		font-size: 50px;
	}
	
	#price_area .price_box .price_box4 .price p.new_price .jp {
		font-size: 48px;
	}

	#price_area .price_box .price_box4 .price .underline {
		margin-top: 4px;
	}

	#price_area .price_box .price_box4 .price .underline.jp {
		width: 247px;
	}

	#price_area .price_box .price_box4 .price .underline.en {
		width: 242px;
	}	
	
	#price_area .price_box .price_box4 .price .underline img {
		width: 100%;
		position: relative;
		top: 0;
		left: -100%;
	}

	#price_area .price_box .price_box4 .btn_buy {
		width: 80%;
		margin-left: 0;
	}
	
	/* DESIGN */
	#design .inside {
		position: relative;
		padding-top: 0;
		padding-bottom: 50px;
	}

	#design .design_box {
		text-align: center;
		width: 100%;
		height: auto;
		position: static;
		padding-bottom: 14%;
	}

	#design .design_box .img_new {
		margin-top: 14%;
		margin-bottom: 12%;
	}

	#design .design_box h2 {
		font-size: 50px;
		margin-bottom: 10%;
	}

	#design .design_box p {
		font-size: 22px;
		line-height: 2;
		letter-spacing: 0.2rem;
		font-weight: bold;
	}

	#design .sp-buttons {
		padding-top: 30px;
	}

	#design .sp-button {
		width: 15px;
		height: 15px;
	}

	/* POINT */
	#point .inside {
		background: #EEE;
		padding-top: 78px;
		padding-bottom: 50px;
	}

	#point .inside h2 {
		text-align: center;
		margin-bottom: 72px;
	}

	#point .inside h2 img {
		width: 150px;
	}

	#point .inside .point_box {
		width: 100%;
		margin-bottom: 60px;
		padding: 50px 30px;
		box-sizing: border-box;
	}

	#point .inside .point_box .bg_blue_box {
		width: 100%;
		height: 100%;
	}

	#point .inside .point_box ul {
		width: 100%;
	}

	#point .inside .point_box ul li {
		width: 100%;
		float: none;
	}

	#point .inside .point_box ul li.point_right {
		width: 100%;
	}

	#point .inside .point_box ul li h3 {
		width: auto;
	}

	#point .inside .point_box ul li p {
		width: auto;
	}

	#point .inside .point_box ul li .img_point1 {
		width: 100%;
		margin: 20px auto;
	}

	#point .inside .point_box ul li .img_point2 {
		width: 100%;
		margin: 30px auto;
	}
	
	/* spec */
	#spec .inside {
		padding-top: 60px;
		padding-bottom: 30px;
	}

	#spec .bg_spec {
		width: 100%;
	}

	#spec .size_box {
		width: 95%;
		padding: 40px 15px;
		box-sizing: border-box;
	}

	#spec .size_box h2 {
		margin-bottom: 20px;
	}
	
	#spec .size_box .img_size1,
	#spec .size_box .img_size2 {
		width: 95%;
		margin-top: 60px;
	}

	#spec #material_box {
		width: 95%;
		float: none;
		margin: 30px auto;
		padding: 30px 10px 40px;
		height: auto;
	}

	#spec #material_box h2,
	#spec #test_box h2 {
		margin-bottom: 0;
	}

	#spec .space.jp {
		height: 20px;
	}

	#spec .space.en {
		height: 30px;
	}
	
	#spec #material_box dl {
		width: 95%;
		margin: 0 auto;
	}
	
	#spec #test_box {
		width: 95%;
		float: none;
		padding: 30px 15px 40px;
		margin: 30px auto;
		height: auto;
	}
	
	/* AE Saddle */
	#ae_saddle .inside {
		width: 80%;
		margin-top: 50px;
		margin-bottom: 100px;
	}

	#ae_saddle .inside .img_ae_saddle {
		margin-bottom: 40px;
	}
	
	#ae_saddle .inside .new_price {
		position: relative;
	}

	#ae_saddle .inside .new_price .img_new {
		width: 100px;
		position: absolute;
		top: 0;
		left: 0;
	}

	#ae_saddle .inside .new_price .logo_aeroelastic {
		padding-left: 110px;
	}

	#ae_saddle .inside .new_price h2 {
		padding-left: 110px;
		margin-top: 20px;
		line-height: 1;
	}

	#ae_saddle .inside .new_price .p_price {
		padding-left: 110px;
	}

	#ae_saddle .inside .new_price .p_price .small {
		font-size: 8px;
	}

	#ae_saddle .inside .btn_buy {
		width: 90%;
	}
	
	/* profile */
	#profile .inside {
		padding: 30px 0;
	}

	#profile .inside .prof_box {
		width: 100%;
		margin: 0 auto;
	}

	#profile .inside .prof_left {
		width: 100%;
		float: none;
		text-align: center;
		margin-bottom: 30px;
	}

	#profile .inside .prof_left img {
		width: 90%;
	}

	#profile .inside .prof_right {
		width: 90%;
		float: none;
		margin: 0 auto;
	}

	#profile .inside .prof_right .title {
		font-size: 14px;
		line-height: 1;
		margin-bottom: 20px;
	}

	#profile .inside .prof_right h2 {
		font-size: 25px;
		line-height: 1;
		margin-bottom: 50px;
	}

	#profile .inside .prof_right dl {
		margin-bottom: 30px;
	}

	#profile .inside .prof_right dl dt {
		width: 90px;
		float: left;
		font-size: 12px;
		letter-spacing: 0.2rem;
		line-height: 2;
	}

	#profile .inside .prof_right dl dd {
		font-size: 12px;
		padding-left: 90px;
		letter-spacing: 0.2rem;
		line-height: 2;
	}

	#profile .inside .prof_right p {
		font-size: 12px;
		line-height: 2.2;
	}
		
	/* banner area */
	#banner_area {
		width: 90%;
		padding-top: 50px;
		margin-bottom: 50px;
	}

	#banner_area .bnr_other_product {
		float: none;
		width: 100%;
		margin-bottom: 20px;
	}

	#banner_area .bnr_blog {
		float: none;
		width: 100%;
	}
	
	/* company */
	#company .inside {
		padding-top: 50px;
		padding-bottom: 5px;
	}

	#company .inside h2 {
		margin-bottom: 40px;
	}

	#company .inside h3 {
		margin-bottom: 50px;
	}

	#company .inside h3 img {
		width: 90%;
	}

	#company .inside table {
		width: 90%;
		margin-bottom: 100px;
	}

	#company .inside table th {
		width: 130px;
	}
	
}