/*@font-face {
font-family: 'a1min';
  src: url('../font/A-OTF-A1MingChaoStd-Bold-2.otf') format('opentype');
}*/
* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-family: "A1明朝", "A1 Mincho", sans-serif;
	font-feature-settings: "pkna" 1;
	font-weight: 400;
	position: relative;
	line-height: 1;
}
img {
	vertical-align: bottom;
	border: none;
}
a {
	color: #000;
	text-decoration: none;
}
ul {
	list-style-type: none;
}
br.sp-br {
	display: none;
}
sup {
    font-size: 10px;
    position: relative;
    top: 0;
    margin-right: 4px;
}
input[type="text"], select, textarea {
    -webkit-appearance: none;
    appearance: none;
}
input[type="submit"], input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	padding: 48px;
	z-index: 9999;
}
.header--fixed {
	position: fixed;
}
.header__logo--black {
	display: block;
}
.header__logo--white {
	display: none;
}
.header--fixed .header__logo--black {
	display: none;
}
.header--fixed .header__logo--white {
	display: block;
}
.header__menu {
	position: absolute;
	top: 48px;
	right: 48px;
}
.hamburger {
	position: relative;
  width: 40px;
  height: 40px;
  background-color: #282828;
  border-radius: 50%;
  z-index: 9999;
  transition: background-color .2s linear;
  margin-bottom: 5px;
}
.header__menu--active .hamburger {
	background-color: #ebe8e1;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
	position: absolute;
	top: 16px;
	left: 11px;
	width: 18px;
	height: 8px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background-color: #FAFAFA;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  bottom: 0;
}
.header__menu--active .menu-trigger span {
	background-color: #282828;
}
.header__menu--active .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(4px) rotate(-45deg);
  transform: translateY(4px) rotate(-45deg);
}
.header__menu--active .menu-trigger span:nth-of-type(2) {
  -webkit-transform: translateY(-4px) rotate(45deg);
  transform: translateY(-3px) rotate(45deg);
}
.header__menu .menu-text {
	font-size: 10px;
	color: #282828;
	text-align: center;
}
.menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9998;
	justify-content: space-between;
	display: none;
}
.menu--open {
	display: flex;
}
.menu__logo {
	display: none;
}
.menu__head {
	position: relative;
	flex-basis: 25%;
}
.menu__pic {
	position: absolute;
	top: 0;
	height: 100%;
}
.nav__top {
	display: flex;
	margin-bottom: 54px;
}
.btn {
	display: flex;
	justify-content: center;
	background-image: url(../img/btn-bg.png);
	font-size: 15px;
	color: #fafafa;
}
.nav__top .btn {
	width: 168px;
	height: 40px;
	padding: 11px 0 9px;
	margin-right: 12px;
}
.search {
	position: relative;
	width: 307px;
	height: 40px;
	padding: 1px;
	background-image: url(../img/btn-bg.png);
}
.search input {
	font-family: 'a1min';
	font-size: 13px;
	height: 38px;
	width: 266px;
	padding: 0 12px;
	border: none;
	background-image: url(../img/menu-bk.jpg);
}
.search input::placeholder {
	color: #808080;
}
.search__btn {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 40px;
	height: 40px;
	display: flex;
	background-image: url(../img/icon-search.png);
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}

.nav__bottom {
	display: flex;
	justify-content: space-between;
}
.nav__bottomLeft {
	flex-basis: 33.333%;
}
.nav__bottomRight {
	flex-basis: 66.666%;
	display: flex;
	flex-wrap: wrap;
}
.nav__bottomRightTop {
	flex-basis: 100%;
	display: flex;
	justify-content: space-between;
}
.nav__bottomRightTopLeft {
	flex-basis: 50%;
}
.nav__bottomRightTopRight {
	flex-basis: 50%;
}
.nav__bottomRightBottom {
	flex-basis: 100%;
}

.list--link {

}
.list--link .list__head {
	font-size: 14px;
	color: #F2522E;
	margin-bottom: 20px;
}
.list--link .list__item {
	margin-bottom: 8px;
}
.list--link .list__text {
	position: relative;
	font-size: 16px;
	color: #282828;
	padding-left: 10px;
	line-height: 1.5;
}
.list--link .list__text::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 2px;
	height: 1px;
	width: 4px;
	background-color: #282828;
}

.menu--open .menu__pic {
	left: 0;
	animation:menu_on0 1s ease-in-out forwards;
}
.menu--close .menu__pic {
	right: 0;
	animation:menu_off0 1s ease-in-out forwards;
}
@keyframes menu_on0 {
	0%{width:0;opacity:0}100%{width:100%;opacity:1}
}
@keyframes menu_off0 {
	0%{width:100%;opacity:1}100%{width:0;opacity:0}
}
.menu__pic img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation:select_img_on0 1s ease-in-out forwards;
}
@keyframes select_img_on0 {
	0%{opacity:0;transform:scale(1.5)}100%{opacity:1;transform:scale(1)}
}
.menu__content {
	position: relative;
	flex-basis: 75%;
	background-image: url(../img/menu-bk.jpg);
	display: flex;
}
.menu__inner {
	position: absolute;
	top: 0;
	height: 100%;
	left: 0;
	animation:menu_on0 1s ease-in-out forwards;
	display: flex;
	align-items: center;
	justify-content: center;
}
.menu--open .menu__inner {
	left: 0;
	animation:menu_on0 1s ease-in-out forwards;
}
.menu--close .menu__inner {
	right: 0;
	animation:menu_off0 1s ease-in-out forwards;
}
.menu__fixImg {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 516px;
	height: 156px;
	background-image: url(../img/menu-pic.png);
}
.container {
	margin: 0 auto;
	max-width: 2000px;
	overflow-y: hidden;
	position: relative;
	background-image: url(../img/bg.png);
	background-position: top center;
	overflow: hidden;
}
.fv {
	position: relative;
	height: 952px;
	display: flex;
}
.fv__video {
	position: absolute;
	top: -112px;
	width: 864px;
	height: 864px;
	left: calc(50% - 432px);
	z-index: -1;
}
.fv__video video {
	width: 100%;
}
.fv__card {
        position: absolute;
        top: 444px;
        left: calc(50% - 572px);
        z-index: 2;
}
.fv__scroll {
	position: absolute;
	top: 647px;
	left: calc(50% - 4px);
	animation-name: pullDown;
	-webkit-animation-name: pullDown;	

	animation-duration: 4s;	
	-webkit-animation-duration: 4s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	

	transform-origin: 50% 0%;
	-ms-transform-origin: 50% 0%;
	-webkit-transform-origin: 50% 0%; 	
}
.pullDown{
	
}

@keyframes pullDown {
	0% {
		transform: scaleY(0.1);
	}
	40% {
		transform: scaleY(1.02);
	}
	60% {
		transform: scaleY(0.98);
	}
	80% {
		transform: scaleY(1.01);
	}
	100% {
		transform: scaleY(0.98);
	}				
	80% {
		transform: scaleY(1.01);
	}
	100% {
		transform: scaleY(1);
	}							
}

@-webkit-keyframes pullDown {
	0% {
		-webkit-transform: scaleY(0.1);
	}
	40% {
		-webkit-transform: scaleY(1.02);
	}
	60% {
		-webkit-transform: scaleY(0.98);
	}
	80% {
		-webkit-transform: scaleY(1.01);
	}
	100% {
		-webkit-transform: scaleY(0.98);
	}				
	80% {
		-webkit-transform: scaleY(1.01);
	}
	100% {
		-webkit-transform: scaleY(1);
	}		
}
.fv__fixImg {
	position: absolute;
}
.fv__fixImg--left {
	left: 48px;
	top: 248px;
	width: 17px;
	height: 144px;
	background-image: url(../img/fv-left.png);
}
.fv__fixImg--right {
	right: 48px;
	top: 248px;
	width: 16px;
	height: 144px;
	background-image: url(../img/fv-right.png);
}
.fv__fixImg--bottomLeft {
	left: 0;
	width: 183px;
	height: 272px;
	background-image: url(../img/top-fixed-left_pc.png);
	bottom: 186px;
}
.fv__fixImg--bottomRight {
	right: 0;
	width: 191px;
	height: 267px;
	background-image: url(../img/top-fixed-right_pc.png);
	bottom: 190px;
}
.aboutTop {
	position: relative;
	height: 1042px;
}
.title--aboutTop {
	position: relative;
	display: flex;
	justify-content: center;
	margin-bottom: 198px;
  padding-top: 6px;
  padding-left: 16px;
}
.title--aboutTop .title__horizon {

}
.title--aboutTop .title__vertical {
	position: absolute;
	top: 6px;
	left: calc(50% - 47px);
}
.box--aboutTop {
  max-width: 1270px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.box--aboutTop .box__desc {
	flex-basis: 800px;
	line-height: 2;
	padding-top: 0;
	padding-left: 200px;
}
.fadein {
	opacity: 0;
}
.fadein__br {
  display: inline-block;
  margin-bottom: 20px;
}
.fadein__br:before {
  white-space: pre;
}
.fadein__br--pc:before {
	content: "\A";
	white-space: pre;
}
.box--aboutTop .box__desc--tb {
	display: none;
}

.box--aboutTop .box__pic {
	padding-top: 3px;
  flex-basis: 457px;
}
.box--aboutTop .box__pic img {
  width: 100%;
}
.aboutTop__fixImg {
	position: absolute;
	bottom: -2px;
}
.aboutTop__fixImg--pc {
	left: 0;
	width: 120px;
	height: 290px;
	background-image: url(../img/about-fixed_pc.png);
}
.aboutTop__fixImg--tb {
	display: none;
}

.aboutBottom {
	position: relative;
	height: 2336px;
}
.block--about {
	height: 750px;
}
.block--about .block__top {
	position: relative;
	height: 432px;
}
.block--about .block__card {
	position: absolute;
	top: 316px;
	left: calc(50% - 595px);
}
.block--about:nth-child(even) .block__card {
	left: auto;
	right: calc(50% - 595px);
}
.block--about .block__pic img {
	position: absolute;
	top: 0;
	letter-spacing: 0;
	width: 100%;
	height: 101%;
	object-fit: cover;
	z-index: -1;
}
.block--about .block__bottom {
	padding-top: 92px;
}
.block--about .block__bottom .block__inner {
	width: 885px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
}
.block--about:nth-child(even) .block__bottom .block__inner {
	justify-content: flex-start;
  padding-left: 10px;
}
.block--about .block__text {
	flex-basis: 540px;
	line-height: 2;
}

.component {
	position: relative;
	height: 1855px;
}
.title--component {
	margin: 0 auto 32px;
	padding-top: 38px;
	width: 1060px;
	display: flex;
	justify-content: flex-end;
}
.block--componentTop {
	width: 1070px;
	margin: 0 auto 69px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.block--componentTop .block__pic {
	flex-basis: 491px;
}
.block--componentTop .block__content {
	flex-basis: 536px;
	padding-top: 30px;
}
.block--componentTop .block__head {
	padding-left: 103px;
	margin-bottom: 37px;
}
.block--componentTop .block__desc {
	font-size: 16px;
	line-height: 1.8;
	padding-right: 90px;
}
.block--componentTop .annotation {
	font-size: 10px;
}
.block--componentTop .block__text {
	display: none;
}

.block--componentBottom {
	width: 862px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.block--componentBottom .block__item {
	flex-basis: 50%;
	padding-left: 64px;
	margin-bottom: 72px;
}
.block--componentBottom .block__head {
	margin-bottom: 32px;
}
.block--componentBottom .block__desc {
	font-size: 16px;
	line-height: 2;
	padding-left: 30px;
}
.block--componentBottom .block__annotation {
	font-size: 10px;
	padding-left: 30px;
	padding-top: 10px;
}

.component__fixImg {
	position: absolute;
	top: 863px;
	left: 0;
	width: 121px;
	height: 286px;
	background-image: url(../img/component-fixed_pc.png);
}

.use {
	position: relative;
	padding-top: 153px;
	height: 590px;
}
.title--use {
	position: absolute;
	top: 0;
	left: calc(50% - 530px);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.use__fixImg {
	position: absolute;
	top: -141px;
	right: 0;
	width: 120px;
	height: 282px;
	background-image: url(../img/use-fixed_pc.png);
}
.block--use {
	width: 1124px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding-left: 32px;
}
.block--use .block__head {
	flex-basis: 32px;
}
.block--use .block__content {
	flex-basis: 996px;
}
.list--use {
	display: flex;
	justify-content: space-between;
}
.list--use .list__item {
	flex-basis: 25%;
	padding-right: 32px;
}
.list--use .list__pic {
	position: relative;
	width: 100%;
	height: 186px;
	margin-bottom: 16px;
}
.list--use .list__pic img {
	position: absolute;
	top: 0;
	left: 0;
}
.list--use .list__desc {
	font-size: 13px;
	line-height: 1.8;
}
.buy {
	position: relative;
	padding-top: 227px;
	height: 1215px;
}
.title--buy {
	position: absolute;
	top: 64px;
	right: calc(50% - 530px);
}
.title--buy .title__top {
	margin-bottom: 54px;
}
.title--buy .title__bottom {
	text-align: center;
}
.buyPkg {
	position: relative;
	display: flex;
	justify-content: center;
}
.block--pkg {
}
.block--pkg .block__content {
	margin-bottom: 48px;
	-webkit-clip-path: circle(0% at 50% 50%);
	clip-path: circle(0% at 50% 50%);
}
.block--pkg .block__content.block--show {
   animation: img-wrap 4s;
	-webkit-clip-path: circle(50% at 50% 50%);
	clip-path: circle(100% at 50% 50%);
}
@keyframes img-wrap {
  0% {
		-webkit-clip-path: circle(0% at 50% 50%);
		clip-path: circle(0% at 50% 50%);
  }
  100% {
		-webkit-clip-path: circle(50% at 50% 50%);
		clip-path: circle(100% at 50% 50%);
  }
}
.block--pkg .block__info {
	position: absolute;
	top: 225px;
	left: calc(50% - 385px);
}
.buy__fixImg {
	position: absolute;
}
.buy__fixImg--left {
	top: 360px;
	left: 0;
	width: 217px;
	height: 216px;
	background-image: url(../img/buy-fixed_pc.png);
}
.buy__fixImg--bottomLeft {
	bottom: -3px;
	left: 0;
	width: 183px;
	height: 245px;
	background-image: url(../img/bottom-fixed-left_pc.png);
}
.buy__fixImg--bottomRight {
	bottom: -3px;
	right: 0;
	width: 191px;
	height: 247px;
	background-image: url(../img/bottom-fixed-right_pc.png);
}
.buyInfo .block--buy {
	display: flex;
	justify-content: center;
	margin-bottom: 16px;
}
.block--componentAll {
	display: flex;
	justify-content: center;
}
.block--componentAll .block__text {
	font-size: 14px;
	color: #e9370d;
	text-decoration: underline;
	line-height: 1;
	cursor: pointer;
}
.bottom__pic {
	position: relative;
	height: 422px;
}
.bottom__pic img {
	position: absolute;
	top: 0;
	letter-spacing: 0;
	width: 100%;
	height: 101%;
	object-fit: cover;
	z-index: -1;
}


.footer {
	background-color: #282828;
	padding: 64px 0 54px;
}
.footer__inner {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.footer__head {
	flex-basis: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}
.footer__account {
	flex-basis: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 64px;
}
.list--account {
	display: flex;
	justify-content: center;
}
.list--account .list__item {
	flex-basis: 52px;
	margin: 0 12px;
}
.list--account .list__item .list__pic img{
	width: 100%;
}
.list--account .list__name {
	color: #fff;
	font-size: 10px;
	text-align: center;
	padding-top: 6px;
}
.footer__breadcrumb {
	flex-basis: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 64px;
}
.list--breadcrumb {
	display: flex;
	justify-content: center;
	align-items: center;
}
.list--breadcrumb .list__item {
	color: #fff;
	font-size: 12px;
}
.list--breadcrumb .list__item::after {
	content: "＞";
	margin: 0 12px;
}
.list--breadcrumb .list__item:last-child::after {
	display: none;
}
.footer__head {
	margin-bottom: 42px;
}
.footer__menu {
	flex-basis: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 24px;
}
.list--footerMenu {
	display: flex;
	justify-content: center;
	align-items: center;
}
.list--footerMenu .list__item {
	color: #fff;
	font-size: 14px;
	margin: 0 12px;
}
.footer__copy {
	flex-basis: 100%;
	text-align: center;
	color: #b2b2b2;
	font-size: 12px;
}

.footerNav {
	display: none;
}

@media screen and (max-width: 768px) {
	header {
		justify-content: center;
	}
	.header__logo img {
		width: 142px;
	}
	.header__logo--black {
		display: block!important;
	}
	.header__logo--white {
		display: none!important;
	}
	.menu__head {
		display: none;
	}
	.menu__content {
		flex-basis: 100%;
	}
	.container {
		position: relative;
		background-image: url(../img/bg-tb.png);
		background-position: top center;
		background-size: 100% auto;
	}
	.sec__inner {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.fv {
		height: auto;
		padding-top: 136.7%;
	}
	.fv__video {
		width: 87.63%;
		height: auto;
		top: 14.5%;
		left: 6.185%;
	}
	.fv__fixImg--left,
	.fv__fixImg--right {
		display: none;
	}
	.fv__card {
		top: 50.9%;
		left: 12.5%;
		width: 23.82%;
		height: auto;
	}
	.fv__card img {
		width: 100%;
	}
	.fv__scroll {
		top: 730px;
	}
	.fv__fixImg--bottomRight {
		width: 20.7%;
		height: auto;
		padding-top: 30.4%;
		background-size: 100% auto;
		background-repeat: no-repeat;
		bottom: 6.1%;
	}
	.fv__fixImg--bottomLeft {
		width: 19.79%;
		height: auto;
		padding-top: 30.9%;
		background-size: 100% auto;
		background-repeat: no-repeat;
		bottom: 6.1%;
	}
	.aboutTop {
		height: auto;
		padding-top: 127.8%;
	}
	.aboutTop__inner {
	}
	.title--aboutTop {
		margin-bottom: 24%;
	}
	.title--aboutTop .title__horizon {
		width: 453px;
	}
	.title--aboutTop .title__horizon img,
	.title--aboutTop .title__vertical img,
	.box--aboutTop .box__pic img,
	.block--about .block__card img,
	.block--componentTop .block__pic img,
	.block--componentTop .block__head img,
  .title--use img,
  .block--use .block__head img,
  .title--buy .title__top img,
  .title--buy .title__bottom img,
  .block--pkg .block__content img,
  .block--pkg .block__info img {
		width: 100%;
	}
	.title--aboutTop .title__vertical {
		width: 84px;
		left: calc(50% - 43px);
	}
	.box--aboutTop {
		width: 100%;
	}
	.box--aboutTop .box__desc {
		flex-basis: 50%;
		padding-top: 0;
		padding-left: 48px;
		padding-right: 26px;
		font-size: 14px;
	}
	.box--aboutTop .box__desc--pc {
		display: none;
	}
	.box--aboutTop .box__desc--tb {
		display: block;
	}
  .box--aboutTop .box__desc .fadein__br {
    margin-bottom: 16px;
  }
	.box--aboutTop .box__desc .fadein__br:before {

	  white-space: pre;
	}
	.box--aboutTop .box__pic {
		flex-basis: 50%;
		padding-right: 0;
    padding-left: 13px;
    padding-top: 6px;
	}
	.aboutTop__fixImg--pc {
		display: none;
	}
	.aboutTop__fixImg--tb {
		display: block;
		right: 0;
		width: 28.125%;
		height: auto;
		padding-top: 10.9%;
		background-image: url(../img/about-fixed_tb.png);
		background-size: 100% auto;
		background-repeat: no-repeat;
	}
	.aboutBottom {
		height: auto;
		padding-top: 271.4%;
	}
	.block--about {
		position: relative;
		padding-top: 86.84%;
    height: auto;
	}
	.block--about .block__top {
		height: auto;
		padding-top: 49.6%;
	}
	.block--about .block__card {
		left: 0;
		top: 67.368%;
		width: 34.765%;
	}
	.block--about:nth-child(even) .block__card {
		left: auto;
		right: 0;
	}
	.block--about .block__bottom {
		padding-top: 11%;
	}
	.block--about .block__bottom .block__inner {
		width: 100%;
		padding: 0 47px;
	}
  .block--about:nth-child(even) .block__bottom .block__inner {
    padding: 0 48px;
  }
	.block--about .block__text {
		flex-basis: 385px;
		font-size: 14px;
	}
  .component {
		height: auto;
		padding-top: 226.5%;
  }
	.title--component {
		padding-top: 8px;
		margin: 0 auto 9px;
		width: 87.5%;
	}
	.title--component img {
		width: 45.684%;
		height: 45.684%;
	}
	.block--componentTop {
    width: 88.5%;
		margin: 0 auto 100px;
	}
	.block--componentTop .block__pic {
		flex-basis: 64.67%;
	}
	.block--componentTop .block__content {
		flex-basis: 26.35%;
		padding-right: 24px;
    padding-top: 32px;
	}
	.block--componentTop .block__head {
		padding-left: 0;
	}
	.block--componentTop .block__content .block__desc,
	.block--componentTop .block__content .block__annotation {
		display: none;
	}
	.block--componentTop .block__text {
		flex-basis: 100%;
		padding-top: 18px;
	}
	.block--componentTop .block__text--tb {
		display: block;
	}
	.block--componentTop .block__desc,
	.block--componentTop .block__text {
		padding-right: 0;
		font-size: 14px;
		line-height: 2;
	}
	.block--componentBottom {
		position: relative;
		width: 81.77%;
		z-index: 3;
	}
	.block--componentBottom .block__item {
		flex-basis: 42.35%;
		padding-left: 0;
    margin-bottom: 89px;
	}
	.block--componentBottom .block__head {
		margin-bottom: 13px;
	}
	.block--componentBottom .block__head img {
		width: 100%;
	}
	.block--componentBottom .block__desc {
		padding-left: 0;
		font-size: 16px;
		line-height: 1.8;
	}
	.component__fixImg {
		top: 48.7%;
		width: 14.19%;
		height: auto;
		padding-top: 20.96%;
		background-image: url(../img/component-fixed_tb.png);
		background-size: 100% auto;
		background-repeat: no-repeat;
	}
  .use {
  	padding-top: 64.5%;
    height: auto;
  }
  .use .sec__inner {
  	padding-top: 13.5%;
  }
  .title--use {
    width: 31.9%;
    left: 6.25%;
  }
	.block--use {
		width: 100%;
		padding-left: 6.25%;
    padding-right: 2%;
	}
  .block--use .block__head {
    flex-basis: 3.8%;
  }
	.block--use .block__content {
    flex-basis: 90%;
	}
	.list--use .list__item {
		padding-right: 0;
	}
	.list--use .list__pic {
		padding-top: 115%;
		height: auto;
		margin-bottom: 8px;
	}
	.list--use .list__pic img {
		width: 107.14%;
	}
  .list--use .list__desc {
    font-size: 12px;
    padding-right: 30px;
  }
  .use__fixImg {
    top: -18.3%;
    right: 0;
    width: 13.8%;
    height: auto;
    padding-top: 22.2%;
    background-image: url(../img/use-fixed_tb.png);
		background-size: 100% auto;
		background-repeat: no-repeat;
  }
  .buy {
    height: auto;
    padding-top: 157.3%;
  }
  .buy .sec__inner {
  	padding-top: 48.17%;
  }
  .title--buy {
  	width: 19.15%;
  	top: 3.5%;
    right: 6.25%;
    text-align: center;
  }
  .title--buy .title__top {
    width: 100%;
    margin-bottom: 46px;
  }
  .title--buy .title__bottom {
  	width: 74.8%;
  	margin: 0 auto;
  }
  .block--pkg {
  	flex-basis: 90.2%;
  }
  .block--pkg .block__info {
		top: 31%;
    left: 6.3%;
    width: 88px;
  }
	.buy__fixImg--left {
    top: 19.37%;
    left: 0;
    width: 25%;
    height: auto;
    padding-top: 21.35%;
    background-image: url(../img/buy-fixed_tb.png);
  	background-size: 100% auto;
		background-repeat: no-repeat;
	}
	.buy__fixImg--bottomRight {
		width: 20.7%;
		height: auto;
		bottom: -5px;
		padding-top: 28.645%;
		background-image: url(../img/top-fixed-right_tb.png);
		background-size: 100% auto;
		background-repeat: no-repeat;
	}
	.buy__fixImg--bottomLeft {
		width: 19.79%;
		height: auto;
		padding-top: 26.69%;
		background-size: 100% auto;
		background-repeat: no-repeat;
	}
	.bottom {
		position: relative;
		padding-top: 48%;
	}
  .bottom__pic {
  	position: static;
    height: auto;
  }
	.footer {
		padding: 64px 0 100px;
	}
	.footerNav {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		display: block;
		z-index: 10000;
	}
	.nav--footer {
		display: flex;
		background-color: #000;
	}
	.nav--footer .nav__item {
		flex-basis: 25%;
		height: 46px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 16px;
		color: #fff;
		border-right: 1px solid #999;
	}
}
@media screen and (max-width: 480px) {
	br.sp-br {
		display: block;
	}
	header {
		padding: 24px;
	}
	.header--fixed .header__logo--black {
		display: none!important;
	}
	.header__logo img {
		width: 122px;
	}
	.header__menu {
		top: 24px;
		right: 24px;
	}
	.menu {
		overflow-y: scroll;
		background-image: url(../img/menu-bk.jpg);
	}
	.menu__logo {
		display: block;
		position: absolute;
		top: 24px;
		left: calc(50% - 61px);
		width: 122px;
	}
	.menu__logo img {
		width: 100%;
	}
	.menu__inner {
		justify-content: flex-start;
		align-items: flex-start;
		padding-top: 137px;
		padding-right: 85px;
		padding-left: 24px;
		padding-bottom: 150px;
		height: auto;
		animation: none!important;
	}
	.menu .nav {
		position: relative;
		z-index: 10000;
		background-image: url(../img/menu-bk.jpg);
	}
	.nav__top {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.nav__top .btn {
		width: 48%;
		margin-right: 0;
	}
	.nav__top .btn--shop {
		margin-right: 8px;
	}
	.search {
		margin-top: 12px;
		width: 100%;
	}
	.search input {
		width: calc(100% - 40px);
	}
	.nav__bottom {
		flex-wrap: wrap;
	}
	.nav__bottomLeft,
	.nav__bottomRight {
		flex-basis: 100%;
	}
	.nav__bottomRightTop {
		flex-wrap: wrap;
	}
	.nav__bottomRightTopLeft,
	.nav__bottomRightTopRight {
		flex-basis: 100%;
	}
	.list--link {
		margin-bottom: 32px;
	}
	.list--link .list__text br {
		display: none;
	}
	.menu__fixImg {
		width: 87.2%;
    left: 6.4%;
    bottom: 46px;
    height: auto;
    padding-top: 26%;
    background-size: 100% auto;
    background-repeat: no-repeat;
	}
	.container {
		background-image: url(../img/bg-sp.png);
	}
	.fv {
		padding-top: 194%;
	}
	.fv__video {
		top: 13.9%;
		left: -6.4%;
		width: 112.8%;
	}
	.fv__card {
                width: 38.933%;
                top: 62.8%;
                left: 30.5335%;
	}
	.fv__scroll {
		top: 64.4%;
                display: none;
	}
	.fv__scroll img {
		width: 8px;
	}
	.fv__fixImg--bottomLeft {
                bottom: 12%;
		width: 24.26%;
		padding-top: 43.6%;
		background-image: url(../img/top-fixed-left_sp.png);
	}
	.fv__fixImg--bottomRight {
                bottom: 12.2%;
		width: 25.6%;
		padding-top: 42.666%;
		background-image: url(../img/top-fixed-right_sp.png);
	}
	.aboutTop {
		padding-top: 307%;
	}
	.title--aboutTop {
		margin-bottom: 38%;
    padding-top: 0;
    padding-left: 0;
	}
	.title--aboutTop .title__horizon {
		width: 75.6%;
	}
	.title--aboutTop .title__vertical {
		width: 16.4%;
		left: 42.1575%;
                top: 2%;
	}
	.box--aboutTop {
		justify-content: center;
		flex-wrap: wrap;
	}
	.box--aboutTop .box__pic {
		order: 1;
		flex-basis: 90.666%;
		margin-bottom: 5%;
      padding-left: 0px;
    padding-top: 2px;
	}
	.box--aboutTop .box__desc {
		order: 2;
		flex-basis: 100%;
		padding: 0 6.4%;
		line-height: 1.66;
    font-size: 16px;
	}
	.aboutTop__fixImg--pc {
		display: block;
		width: 42.4%;
		height: auto;
		bottom: -2px;
		padding-top: 14.933%;
		background-image: url(../img/about-fixed_sp.png);
		background-size: 100% auto;
		background-repeat: no-repeat;
	}
	.aboutTop__fixImg--tb {display: none;}
	.aboutBottom {
		padding-top: 438.666%;
	}
	.block--about {
		padding-top: 143.333%;
	}
  .block--about .block__text {
    line-height: 1.8;
    font-size: 16px;
  }
	.block--about .block__top {
		padding-top: 70.666%;
	}
	.block--about .block__card {
		top: 38.2%;
		width: 49.6%;
	}
  .block--about:nth-child(2) .block__card,
  .block--about:nth-child(3) .block__card {
    top: 40%;
  }
	.block--about .block__bottom {
		padding-top: 18%;
	}
	.block--about .block__bottom .block__inner,
  .block--about:nth-child(even) .block__bottom .block__inner {
		padding: 0 24px;
	}
	.component {
		padding-top: 650%;
	}
	.title--component {
    padding-top: 5px;
		margin: 0 auto 20%;
	}
	.title--component img {
		width: 57.8%;
		height: 57.8%;
	}
	.block--componentTop {
		width: 87.2%;
		justify-content: center;
    margin-bottom: 24%;
	}
	.block--componentTop .block__pic {
		order: 2;
		flex-basis: 100%;
	}
	.block--componentTop .block__content {
		order: 1;
		flex-basis: 50.3%;
		padding: 0;
	}
	.block--componentTop .block__head {
		margin-bottom: 18.25%;
	}
	.block--componentTop .block__text {
		order: 3;
	}
	.block--componentTop .block__text--tb {
		display: none;
	}
	.block--componentTop .block__text--sp {
		display: block;
                padding-top: 24px;
                line-height: 1.8;
                font-size: 16px;
	}
	.block--componentTop .annotation {
		display: block;
		line-height: 1.8;
		margin-top: 4px;
                font-size: 12px;
	}
	.block--componentTop .block__annotation {
		display: block;
		line-height: 1.5;
	}
	.block--componentBottom {
		width: 87.2%;
	}
	.block--componentBottom .block__item {
		flex-basis: 100%;
		margin-bottom: 50px;
	}
	.block--componentBottom .block__head {
		text-align: center;
		margin-bottom: 4px;
	}
	.block--componentBottom .block__head img {
		width: 85.32%;
	}
  .block--componentBottom .block__annotation {
    padding-left: 0;
  }
	.component__fixImg {
    top: 40.7%;
    width: 17.6%;
    padding-top: 36%;
    background-image: url(../img/component-fixed_sp.png);
	}
	.use {
		padding-top: 186.9%;
	}
	.use .sec__inner {
    padding-top: 18%;
}
	.title--use {
		width: 55.6%;
		left: 6.4%;
	}
	.block--use {
		padding-left: 6.4%;
		padding-right: 0;
	}
	.list--use {
		flex-wrap: wrap;
	}
	.block--use .block__head {
		flex-basis: 6.9%;
	}
	.list--use .list__item {
		flex-basis: 50%;
		margin-bottom: 24px;
	}
	.block--use .block__content {
		padding-top: 48px;
		flex-basis: 86.18%;
	}
	.list--use .list__pic {
		padding-top: 0;
		margin-bottom: 0;
	}
	.list--use .list__pic img {
		position: static;
		width: 100%;
	}
	.list--use .list__desc {
                font-size: 14px;
		padding-right: 18px;
                margin-top: -10px;
	}
	.use__fixImg {
    top: -7.2%;
    width: 15.733%;
    padding-top: 37%;
    background-image: url(../img/use-fixed_sp.png);
	}
	.buy {
		padding-top: 230.5%;
	}
	.title--buy {
		width: 24.133%;
		right: 12.8%;
		top: 2.13%;
	}
	.title--buy .title__top {
		margin-bottom: 26px;
	}
	.title--buy .title__bottom {
		width: 86.74%;
	}
	.buy .sec__inner {
		padding-top: 80%;
	}
	.block--pkg {
		width: 100%;
		flex-basis: 100%;
	}
	.block--pkg .block__info {
		width: 18.4%;
		left: 6.4%;
		top: 24%;
	}
	.buy__fixImg--left {
		top: 15.615%;
		width: 34.4%;
		padding-top: 88.37%;
		background-image: url(../img/buy-fixed_sp.png);
	}
	.block--pkg .block__content {
		margin-bottom: 18px;
	}
	.block--buy .block__btn {
		flex-basis: 74.4%;
	}
	.block--buy .block__btn img {
		width: 100%;
	}
  .buyInfo .block--buy {
    margin-bottom: 19px;
  }
	.buy__fixImg--bottomLeft {
		width: 24.266%;
		padding-top: 36%;
		background-image: url(../img/bottom-fixed-left_sp.png);
	}
	.buy__fixImg--bottomRight {
		width: 25.6%;
		padding-top: 37%;
		background-image: url(../img/bottom-fixed-right_sp.png);
	}
	.bottom {
		padding-top: 53%;
	}
	.nav--footer .nav__item {
		font-size: 13px;
	}
	.footer__account {
		margin-bottom: 12px;
	}
	.list--account {
		flex-wrap: wrap;
	}
	.list--account .list__item {
		margin: 0 12px 21px;
	}
	.footer__account {
		flex-basis: 66%;
	}
  .footer__head {
    margin-bottom: 34px;
  }
	.footer__head img {
		width: 175px;
		height: 37px;
	}
	.list--breadcrumb .list__item {
		font-size: 10px;
	}
	.list--footerMenu {
		flex-wrap: wrap;
	}
	.list--footerMenu .list__item {
		margin-bottom: 16px;
    font-size: 12px;
	}
  .footer__breadcrumb {
    margin-bottom: 29px;
  }
	.footer__menu {
		margin-bottom: 14px;
	}
	.footer__copy {
		font-size: 10px;
	}
}



/*  Loding
-------------------------- */
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 1;
}
#loader {
  display: none;
  position: absolute;
  top: 80%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

#loader .load-logo img {
  width: 149px;
}

#loader .load-anime {
  margin: 20px auto;
}

#loader .load-anime img {
  width: 115px;
}

#loader .load-txt img {
  width: 77px;
}

#container {
    animation: fadeIn 4s ease 0s 1 normal;
    -webkit-animation: fadeIn 4s ease 0s 1 normal;
    -moz-animation: fadeIn 4s ease 0s 1 normal;
}

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

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


@media screen and (max-width:768px){
  #loader img {
    width: 32px;
  }
}


.block--componentTop .block__desc .annotation .char2,
.block--componentTop .block__desc .annotation .char20,
.block--componentTop .block__text .annotation .char2,
.block--componentTop .block__text .annotation .char20 {
	margin-right: 2px;
}


/*--------------------
component
--------------------*/
#overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9900;
    opacity: 0.6;
    background-color: rgb(136, 136, 136);
    display: none;
}
#component {
  position: fixed;
  top: 10%;
  left: 0;
  right: 0;
  display: none;
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  text-align: center;
  height: 80%;
  z-index: 9999;
}
#component .cinner {
  padding: 5%;
  width: 100%;
  height: 100%;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}
#component .m_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: url(../img/close.png)no-repeat 0 0;
  cursor: pointer;
}
#component h2 {
  font-size: 18px;
  font-weight: normal;
  color: #666666;
  text-align: center;
}
#component .component_inner {
  margin: 50px 0;
  padding: 50px 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  text-align: left;
}
#component .component_inner p {
  line-height: 1.6;
  color: #666666;
  padding-bottom: 20px;
  font-size: 14px;
}
#component .component_inner p span {
  font-size: 12px;
}
#component .component_inner p:last-child {
  padding-bottom: 0;
}
#component .m_close_button {
  display: inline-block;
  width: 260px;
  line-height: 50px;
  background: #8e8e8e;
  color: #fff;
  cursor: pointer;
  margin: 0 auto;
}

#component .sp_show {
  display: none;
}

@media screen and (max-width: 768px) {
#component {
  position: fixed;
  top: 5%;
  left: 0%;
  right: 0;
  display: none;
  width: 90%;
  max-width: 980px;
  background: #fff;
  text-align: center;
  height: 80%;
  z-index: 9999;
}

}

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

#component .m_close {
  display: none;
}

#component .sp_show {
  display: block;
  margin-bottom: 50px;
}
}
