@charset "UTF-8";
/* Reset
============================================ */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	display: block;
}
nav ul {
	list-style: none;
}
li {
	list-style-type: none;
}
ol li {
	list-style-type: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted #000;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}

/* Default
============================================ */
html, body {
	width: 100%;
	height: 100%;
}
body {
	color: #000;
	font-size: 14px;
	font-family:'Helvetica Neue LT W01_55 Roman', sans-serif;
	line-height: 1.7;
}
.fit {
	width: 100%;
	height: auto;
}
.price a {
	font-size: 12px;
	color: #000;
	display: inline-block;
}
.price a:hover {
	text-decoration: none;
}
.cartIco {
	font-size: 16px;
	display: inline-block;
	padding: 15px 40px 15px 60px;
	line-height: 1;
	color: #000;
	border: 2px solid #000;
	text-decoration: none;
	background-image: url(../common/img/ico_cart.svg);
	background-repeat: no-repeat;
	background-position: 30px 13px;
	background-size: auto 16px;
}
.cf {
	zoom: 1;
}
.cf:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}
.noPc { display: none; }
.noSp { display: block; }
@media screen and (max-width: 760px) {
	body {
		font-size: 12px;
	}
	.price {
		font-size: 10px;
	}
	.price a {
		margin: 5px 0;
	}
	.cartIco {
		margin: auto;
		padding: 15px 40px 15px 60px;
		display: block;
		width: 80px;
	}
	.noPc { display: block; }
	.noSp { display: none; }
}

@keyframes prevArrow {
	0% {
		transform: translateX(0);
	}
	20% {
		transform: translateX(-10px);
	}
	40% {
		transform: translateX(0);
	}
}
@keyframes nextArrow {
	0% {
		transform: translateX(0);
	}
	20% {
		transform: translateX(10px);
	}
	40% {
		transform: translateX(0);
	}
}
.intro .prev .arrow {
	-webkit-animation-duration: 3s;
	-webkit-animation-name: prevArrow;
	-webkit-animation-iteration-count: infinite;
	animation-duration: 3s;
	animation-name: prevArrow;
	animation-iteration-count: infinite;
}
.intro .next .arrow {
	-webkit-animation-duration: 3s;
	-webkit-animation-name: nextArrow;
	-webkit-animation-iteration-count: infinite;
	animation-duration: 3s;
	animation-name: nextArrow;
	animation-iteration-count: infinite;
}


/* Layout
============================================ */
@media screen and (min-width: 760px) {
	aside {
		width: 80px;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		background: #fff;
		z-index: 100;
	}
	aside .menu {
		width: 30px;
		height: 17px;
		position: absolute;
		top: 20px;
		left: 25px;
		cursor: pointer;
	}
	aside .menu span {
		content: "";
		height: 3px;
		display: block;
		position: absolute;
		left: 0;
		background: #000;
		border-radius: 1px;
		-webkit-border-radius: 1px;
		transition: .3s;
	}
	aside .menu span:nth-of-type(1) {
		width: 30px;
		top: 0;
	}
	aside .menu span:nth-of-type(2) {
		width: 22px;
		top: 7px;
	}
	aside .menu span:nth-of-type(3) {
		width: 14px;
		top: 14px;
	}
	aside .menu.close span:nth-of-type(1) {
		-webkit-transform: translateY(7px) rotate(45deg);
		transform: translateY(7px) rotate(45deg);
	}
	aside .menu.close span:nth-of-type(2) {
		opacity: 0;
	}
	aside .menu.close span:nth-of-type(3) {
		width: 30px;
		-webkit-transform: translateY(-7px) rotate(-45deg);
		transform: translateY(-7px) rotate(-45deg);
	}
	aside h1 {
		position: absolute;
		top: 70px;
		left: 30px;
	}
	aside nav {
		padding: 90px 0 0 105px;
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 80px;
		display: none;
		overflow: hidden;
		background: rgba(0, 0, 0, .9);
	}
	aside .navbg {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
	aside .navbg img {
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		transition: .5s;
	}
	aside .navbg .show {
		opacity: 1;
	}
	aside nav h1 {
		margin-bottom: 40px;
		position: relative;
		top: 0;
		left: 0;
		z-index: 100;
	}
	aside nav h1:after {
		content: "";
		width: 27px;
		height: 1px;
		background: #fff;
		display: block;
		position: relative;
		top: 10px;
	}
	aside .gnav {
		position: relative;
		z-index: 100;
	}
	aside nav li {
		position: relative;
	}
	aside nav li img {
		width: 100%;
		height: auto;
	}
	aside nav li:nth-of-type(1) {
		width: 160px;
		height: auto;
	}
	aside nav li:nth-of-type(2) {
		width: 160px;
		height: auto;
	}
	aside nav li:nth-of-type(3) {
		width: 160px;
		height: auto;
	}
	aside nav li:nth-of-type(4) {
		width: 160px;
		height: auto;
	}
	aside nav li:nth-of-type(5) {
		width: 160px;
		height: auto;
	}
	aside nav li:nth-of-type(6) {
		width: 160px;
		height: auto;
	}
	aside nav li:nth-of-type(7) {
		width: 160px;
		height: auto;
	}
	aside nav li:nth-of-type(8) {
		width: 160px;
		height: auto;
	}
	aside nav li:nth-of-type(9) {
		width: 160px;
		height: auto;
	}
	aside nav li:nth-of-type(10) {
		width: 160px;
		height: auto;
	}
	aside nav li:not(:first-child) {
		margin-top: 45px;
	}
	aside nav li:hover:after {
		content: "";
		height: 2px;
		display: block;
		position: absolute;
		top: 10px;
		left: -10px;
		background: #fff;
	}
	aside nav li:nth-of-type(1):hover:after {
		width: 160px;
	}
	aside nav li:nth-of-type(2):hover:after {
		width: 160px;
	}
	aside nav li:nth-of-type(3):hover:after {
		width: 160px;
	}
	aside nav li:nth-of-type(4):hover:after {
		width: 160px;
	}
	aside nav li:nth-of-type(5):hover:after {
		width: 160px;
	}
	aside nav li:nth-of-type(6):hover:after {
		width: 160px;
	}
	aside nav li:nth-of-type(7):hover:after {
		width: 160px;
	}
	aside nav li:nth-of-type(8):hover:after {
		width: 160px;
	}
	aside nav li:nth-of-type(9):hover:after {
		width: 160px;
	}
	aside nav li:nth-of-type(10):hover:after {
		width: 160px;
	}

	aside .sns {
		position: absolute;
		left: 25px;
		bottom: 20px;
	}
	aside .sns li {
		margin-top: 20px;
	}
	section {
		margin-left: 80px;
	}
	.intro {
		margin-bottom: 80px;
		position: relative;
	}
	.introInner {
		margin-bottom: 80px;
		position: relative;
		height: 100%;
	}
	.intro h1 {
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 100;
	}
	.intro h1 img {
		width: 43%;
		height: auto;
		position: absolute;
		top: 35%;
		left: 52%;
	}
	.intro h2 {
		position: absolute;
		top: 20px;
		left: 20px;
		z-index: 100;
	}
	.intro .prev,
	.intro .next {
		position: absolute;
		top: 27%;
		z-index: 100;
		box-sizing: border-box;
	}
	.intro .prev {
		padding-left: 20px;
		left: 2%;
	}
	.intro .next {
		padding-right: 10px;
		right: 4%;
	}
	.intro .arrow {
		position: absolute;
		top: 43%;
		transition: 0.3s all;
	}
	.intro .prev .arrow {
		left: 0;
	}
	.intro .next .arrow {
		right: -10px;
	}
	.intro .dirNav .link {
		width: auto;
		height: 40%;
	}
	.intro .dirNav .link p {
		text-align: center;
	}
	.intro .txt p {
		text-align: center;
	}
	.intro .lead {
		position: absolute;
		top: 17%;
		left: 43%;
		z-index: 100;
	}
	.intro .slider {
		width: 100%;
		overflow: hidden;
	}
	.intro .txt p:not(:first-child) {
		margin-top: 45px;
	}
	section .main {
		margin-bottom: 100px;
		position: relative;
	}
	.ani,
	.fix {
		width: 624px;
		height: 147px;
		position: absolute;
		top: 50%;
		left: 50px;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		overflow: hidden;
		background-repeat: no-repeat;
	}
	.ani img,
	.fix img {
		position: absolute;
		top: 0;
		left: 0;
	}
	.is-position-0 img { top: 0; }
	.is-position-1 img { top: -147px; }
	.is-position-2 img { top: -294px; }
	.is-position-3 img { top: -441px; }
	.is-position-4 img { top: -588px; }
	.is-position-5 img { top: -735px; }
	.is-position-6 img { top: -882px; }
	.is-position-7 img { top: -1029px; }
	.is-position-8 img { top: -1176px; }
	.is-position-9 img { top: -1323px; }
	.is-position-10 img { top: -1470px; }
	.is-position-11 img { top: -1617px; }
	.is-position-12 img { top: -1764px; }
	.is-position-13 img { top: -1911px; }
	.is-position-14 img { top: -2058px; }
	.is-position-15 img { top: -2205px; }
	.is-position-16 img { top: -2352px; }
	.is-position-17 img { top: -2499px; }
	.is-position-18 img { top: -2646px; }
	.is-position-19 img { top: -2793px; }
	.is-position-20 img { top: -2940px; }
	.is-position-21 img { top: -3087px; }
	.is-position-22 img { top: -3234px; }
	.is-position-23 img { top: -3381px; }
	.is-position-24 img { top: -3528px; }
	.is-position-25 img { top: -3675px; }
	.is-position-26 img { top: -3822px; }
	.is-position-27 img { top: -3969px; }
	.is-position-28 img { top: -4116px; }
	.is-position-29 img { top: -4263px; }
	.is-position-30 img { top: -4410px; }
	.is-position-31 img { top: -4557px; }
	.is-position-32 img { top: -4704px; }
	.is-position-33 img { top: -4851px; }
	.is-position-34 img { top: -4998px; }
	.is-position-35 img { top: -5145px; }
	.is-position-36 img { top: -5292px; }
	.is-position-37 img { top: -5439px; }
	.is-position-38 img { top: -5586px; }
	.is-position-39 img { top: -5733px; }
	.is-position-40 img { top: -5880px; }
	.is-position-41 img { top: -6027px; }
	.is-position-42 img { top: -6174px; }
	.is-position-43 img { top: -6321px; }
	.is-position-44 img { top: -6468px; }
	.is-position-45 img { top: -6615px; }
	.is-position-46 img { top: -6762px; }
	.is-position-47 img { top: -6909px; }
	#one_code .fix img { top: -5439px; }
	section .main h2 {
		width: 362px;
		height: 38px;
		position: absolute;
		top: 57%;
		left: 50px;
		opacity: 0;
		transform: translateY(10px);
		-webkit-transform: translateY(10px);
		transition-duration: .5s;
	}
section .main .photo {
		width: 80%;
		height: auto;
		float: right;
	}
	section .block {
		margin-bottom: 50px;
		position: relative;
	}
	section .number,
	section .name01,
	section .name02 {
		position: absolute;
		transform: translateY(10px);
		-webkit-transform: translateY(10px);
		transition-duration: .5s;
	}
	section .number {
		width: auto;
		height: 34px;
		opacity: 0;
	}
	section .name01,
	section .name02 {
		opacity: 0;
		transition-delay: .3s;
	}
	section .show {
		opacity: 1 !important;
		transform: translateY(0) !important;
		-webkit-transform: translateY(0) !important;
	}
	section .txt {
		clear: both;
    margin-bottom: 100px;
    margin-left: 18%;
    width: 65%;
	}
	section .txt h3 {
		margin-bottom: 50px;
		font-size: 18px;
		font-weight: bold;
	}
	section .txt p:not(:first-child) {
		margin-top: 30px;
	}
	#one_code .block:nth-of-type(2) .number {
		top: 10%;
		left: 64%;
	}
	#one_code .block:nth-of-type(2) .name01 {
		width: 29%;
		top: 35%;
		left: 37%;
	}
	#one_code .block:nth-of-type(2) .photo {
		margin-left: 5%;
		width: 49%;
		height: auto;
	}
	#one_code .block:nth-of-type(3) .number {
		top: 84%;
		right: 1%;
	}
	#one_code .block:nth-of-type(3) .name01 {
		width: 23%;
		top: 61%;
		left: 68%;
	}
	#one_code .block:nth-of-type(3) .photo {
		margin-right: 5%;
		width: 43%;
		height: auto;
		float: right;
	}
	#one_code .block:nth-of-type(4) {
		width: 70%;
		float: left;
	}
	#one_code .block:nth-of-type(4) .number {
		top: 4%;
		left: 3%;
	}
	#one_code .block:nth-of-type(4) .photo {
		margin-left: 10%;
		width: 53%;
		height: auto;
	}
	#one_code .block:nth-of-type(5) {
		margin-top: 20%;
		width: 50%;
		float: right;
	}
	#one_code .block:nth-of-type(5) .number {
		top: 91%;
		right: 3%;
	}
	#one_code .block:nth-of-type(5) .name01 {
		width: 52%;
		top: 68%;
		left: 32%;
	}
	#one_code .block:nth-of-type(5) .photo {
		margin-right: 10%;
		width: 73%;
		height: auto;
		float: right;
	}
	#one_code .block:nth-of-type(6) {
		margin-bottom: 50px;
		clear: both;
	}
	#one_code .block:nth-of-type(6) .number {
		top: 86%;
		right: 8%;
	}
	#one_code .block:nth-of-type(6) .name01 {
		width: 22%;
		top: 65%;
		left: 57%;
	}
	#one_code .block:nth-of-type(6) .photo {
		width: 45%;
		height: auto;
	}
	#tuesday .block:nth-of-type(2) .number {
		top: 10%;
		left: 64%;
	}
	#tuesday .block:nth-of-type(2) .name01 {
		width: 27%;
		top: -15%;
		left: 21%;
	}
	#tuesday .block:nth-of-type(2) .name02 {
		width: 32%;
		top: 44%;
		left: 47%;
	}
	#tuesday .block:nth-of-type(2) .photo {
		margin-left: 5%;
		width: 63%;
		height: auto;
	}
	#tuesday .block:nth-of-type(3) .number {
		top: 84%;
		right: 3%;
	}
	#tuesday .block:nth-of-type(3) .name01 {
		width: 23.5%;
		top: 28%;
		left: 37%;
	}
	#tuesday .block:nth-of-type(3) .photo {
		margin-right: 5%;
		width: 63%;
		height: auto;
		float: right;
	}
	#tuesday .block:nth-of-type(4) {
		width: 50%;
		float: left;
	}
	#tuesday .block:nth-of-type(4) .number {
		top: 5%;
		left: 1.5%;
	}
	#tuesday .block:nth-of-type(4) .name01 {
		width: 59%;
		top: 43%;
		left: 67%;
	}
	#tuesday .block:nth-of-type(4) .name02 {
		width: 44.5%;
		top: 96%;
		left: 18%;
	}
	#tuesday .block:nth-of-type(4) .photo {
		margin-left: 5%;
		width: 95%;
		height: auto;
	}
	#tuesday .block:nth-of-type(5) {
		margin-top: 48%;
		width: 50%;
		float: right;
	}
	#tuesday .block:nth-of-type(5) .number {
		top: 84%;
		right: 6%;
	}
	#tuesday .block:nth-of-type(5) .photo {
		margin-right: 10%;
		width: 100%;
		height: auto;
		float: right;
	}
	#tuesday .block:nth-of-type(6) {
		clear: both;
	}
	#tuesday .block:nth-of-type(6) .number {
		top: 82%;
		right: 2%;
	}
	#tuesday .block:nth-of-type(6) .name01 {
		width: 32%;
		top: 37%;
		left: 11%;
	}
	#tuesday .block:nth-of-type(6) .name02 {
		width: 25%;
		top: 61%;
		left: 41%;
	}
	#tuesday .block:nth-of-type(6) .photo {
		width: 50%;
		margin-right: 5%;
	}
	#tuesday .block:nth-of-type(7) {
		margin-top: 43%;
		margin-left: -10%;
		margin-bottom: 50px;
		float: right;
		width: 60%;
	}
	#tuesday .block:nth-of-type(7) .number {
		top: 77%;
		right: 6%;
	}
	#tuesday .block:nth-of-type(7) .name01 {
		width: 36%;
		top: -26%;
		left: 53%;
	}
	#tuesday .block:nth-of-type(7) .photo {
		margin-right: 10%;
		width: 90%;
		height: auto;
	}
	#03code .block:nth-of-type(2) .number {
		top: 84%;
		left: 64%;
	}
	#03code .block:nth-of-type(2) .name01 {
		width: 32%;
		top: 11%;
		left: 49%;
	}
	#03code .block:nth-of-type(2) .photo {
		margin-left: 5%;
		width: 63%;
		height: auto;
	}
	#03code .block:nth-of-type(3) .number {
		top: 89%;
		left: 1%;
	}
	#03code .block:nth-of-type(3) .name01 {
		width: 24%;
		top: 27%;
		left: 22%;
	}
	#03code .block:nth-of-type(3) .name02 {
		width: 19%;
		top: 78%;
		left: 68%;
	}
	#03code .block:nth-of-type(3) .photo {
		margin-left: 5%;
		width: 90%;
		height: auto;
	}
	#03code .block:nth-of-type(4) {
		width: 50%;
		float: left;
	}
	#03code .block:nth-of-type(4) .number {
		top: 8%;
		right: 2%;
	}
	#03code .block:nth-of-type(4) .name01 {
		width: 52%;
		top: 11%;
		left: 21%;
	}
	#03code .block:nth-of-type(4) .name02 {
		width: 44.5%;
		top: 82%;
		left: 16%;
	}
	#03code .block:nth-of-type(4) .photo {
		margin-left: 10%;
		width: 83%;
		height: auto;
	}
	#03code .block:nth-of-type(5) {
		margin-top: 8%;
		width: 50%;
		float: right;
	}
	#03code .block:nth-of-type(5) .number {
		top: 89%;
		right: 6%;
	}
	#03code .block:nth-of-type(5) .name01 {
		width: 41%;
		top: 63%;
		left: -4%;
	}
	#03code .block:nth-of-type(5) .photo {
		margin-right: 10%;
		width: 83%;
		height: auto;
		float: right;
	}
	#03code .block:nth-of-type(6) {
		clear: both;
		width: 60%;
		float: left;
	}
	#03code .block:nth-of-type(6) .number {
		top: 80%;
		right: 2%;
	}
	#03code .block:nth-of-type(6) .name01 {
		width: 43%;
		top: 34%;
		left: 12%;
	}
	#03code .block:nth-of-type(6) .name02 {
		width: 29%;
		top: 65%;
		left: 22%;
	}
	#03code .block:nth-of-type(6) .photo {
		margin-left: 10%;
		width: 83%;
		height: auto;
	}
	#03code .block:nth-of-type(7) {
		margin-top: 20%;
		width: 50%;
		float: right;
	}
	#03code .block:nth-of-type(7) .number {
		top: 86%;
		left: -3%;
	}
	#03code .block:nth-of-type(7) .photo {
		margin-right: 10%;
		width: 83%;
		height: auto;
		float: right;
	}
	#04code .block:nth-of-type(2) .number {
		top: 13%;
		left: 64%;
	}
	#04code .block:nth-of-type(2) .name01 {
		width: 26%;
		top: 38%;
		left: 49%;
	}
	#04code .block:nth-of-type(2) .name02 {
		width: 33%;
		top: 65%;
		left: 0%;
	}
	#04code .block:nth-of-type(2) .photo {
		margin-left: 5%;
		width: 63%;
		height: auto;
	}
	#04code .block:nth-of-type(3) .number {
		top: 76%;
		left: 26%;
	}
	#04code .block:nth-of-type(3) .name01 {
		width: 34%;
		top: -14%;
		left: 59%;
	}
	#04code .block:nth-of-type(3) .name02 {
		width: 27%;
		top: 40%;
		left: 10%;
	}
	#04code .block:nth-of-type(3) .photo {
		margin-left: 30%;
		width: 65%;
		height: auto;
	}
	#04code .block:nth-of-type(4) {
		width: 95%;
	}
	#04code .block:nth-of-type(4) .number {
		top: 85%;
		left: 1%;
	}
	#04code .block:nth-of-type(4) .name01 {
		width: 37%;
		top: 37%;
		left: 12%;
	}
	#04code .block:nth-of-type(4) .name02 {
		width: 40%;
		top: 54%;
		left: 26%;
	}
	#04code .block:nth-of-type(4) .photo {
		margin-left: 5%;
		width: 90%;
		height: auto;
	}
	#04code .block:nth-of-type(5) {
		width: 50%;
		float: left;
	}
	#04code .block:nth-of-type(5) .number {
		top: 6%;
		right: -4%;
	}
	#04code .block:nth-of-type(5) .name01 {
		width: 63%;
		top: 16%;
		left: 71%;
	}
	#04code .block:nth-of-type(5) .name02 {
		width: 62%;
		top: 45%;
		left: 75%;
	}
	#04code .block:nth-of-type(5) .photo {
		width: 100%;
	}
	#04code .block:nth-of-type(6) {
		margin-top: 49%;
		width: 50%;
		float: right;
	}
	#04code .block:nth-of-type(6) .number {
		top: 79%;
		right: 0%;
	}
	#04code .block:nth-of-type(6) .name01 {
		width: 66%;
		top: 65%;
		left: -56%;
	}
	#04code .block:nth-of-type(6) .photo {
		margin-top: 10%;
		margin-right: 5%;
		width: 110%;
		height: auto;
		float: right;
	}
	#05code .block:nth-of-type(2) .number {
		top: 84%;
		left: 65%;
	}
	#05code .block:nth-of-type(2) .name01 {
		width: 33%;
		top: 44%;
		left: 50%;
	}
	#05code .block:nth-of-type(2) .name02 {
		width: 24%;
		top: 5%;
		left: 49%;
	}
	#05code .block:nth-of-type(2) .photo {
		margin-left: 5%;
		width: 63%;
		height: auto;
	}
	#05code .block:nth-of-type(3) .number {
		top: 78%;
		left: 28%;
	}
	#05code .block:nth-of-type(3) .name01 {
		width: 29%;
		top: 88%;
		left: 44%;
	}
	#05code .block:nth-of-type(3) .photo {
		margin-right: 5%;
		width: 63%;
		height: auto;
		float: right;
	}
	#05code .block:nth-of-type(4) .number {
		top: 9%;
		left: 1%;
	}
	#05code .block:nth-of-type(4) .name01 {
		width: 32%;
		top: 36%;
		left: 59%;
	}
	#05code .block:nth-of-type(4) .name02 {
		width: 30%;
		top: 82%;
		left: 16%;
	}
	#05code .block:nth-of-type(4) .photo {
		margin-left: 5%;
		width: 90%;
		height: auto;
	}
	#05code .block:nth-of-type(5) {
		width: 50%;
		float: left;
	}
	#05code .block:nth-of-type(5) .number {
		top: 10%;
		right: -14%;
	}
	#05code .block:nth-of-type(5) .photo {
		margin-left: 5%;
		width: 105%;
	}
	#05code .block:nth-of-type(6) {
		margin-top: 46%;
		width: 50%;
		float: right;
	}
	#05code .block:nth-of-type(6) .number {
		top: 17%;
		right: 0%;
	}
	#05code .block:nth-of-type(6) .name01 {
		width: 52%;
		top: 65%;
		left: -7%;
	}
	#05code .block:nth-of-type(6) .photo {
		margin-right: 5%;
		width: 105%;
		height: auto;
		float: right;
	}
	#06code .block:nth-of-type(2) {
		margin-bottom: 50px;
		float: right;
		width: 50%;
	}
	#06code .block:nth-of-type(2) .number {
		top: 55%;
		left: -7%;
	}
	#06code .block:nth-of-type(2) .name01 {
		width: 44%;
		top: 13%;
		left: 15%;
	}
	#06code .block:nth-of-type(2) .photo {
		margin-right: 5%;
		width: 90%;
		height: auto;
	}
	#06code .block:nth-of-type(3) {
		margin-top: 50%;
		margin-right: -24%;
		float: left;
		width: 74%;
	}
	#06code .block:nth-of-type(3) .number {
		top: 77%;
		right: 5%;
	}
	#06code .block:nth-of-type(3) .name01 {
		width: 36%;
		top: 46%;
		left: 34%;
	}
	#06code .block:nth-of-type(3) .photo {
		margin-left: 7%;
		width: 83%;
		height: auto;
	}
	#06code .block:nth-of-type(4) {
		clear: both;
	}
	#06code .block:nth-of-type(4) .number {
		top: 86%;
		right: 2%;
	}
	#06code .block:nth-of-type(4) .name01 {
		width: 28%;
		top: 45%;
		left: 52%;
	}
	#06code .block:nth-of-type(4) .photo {
		margin-left: 5%;
		width: 90%;
		height: auto;
	}
	#06code .block:nth-of-type(5) .number {
		top: 80%;
		left: 64%;
	}
	#06code .block:nth-of-type(5) .name01 {
		width: 35%;
		top: 16%;
		left: 32%;
	}
	#06code .block:nth-of-type(5) .name02 {
		width: 32%;
		top: 71%;
		left: 7%;
	}
	#06code .block:nth-of-type(5) .photo {
		margin-left: 5%;
		width: 43%;
		height: auto;
	}
	#06code .block:nth-of-type(2) {
		margin-bottom: 50px;
		float: right;
		width: 50%;
	}
	#06code .block:nth-of-type(2) .number {
		top: 5%;
		left: -7%;
	}
	#06code .block:nth-of-type(2) .name01 {
		width: 80%;
		top: 43%;
		left: -45%;
	}
	#06code .block:nth-of-type(2) .photo {
		margin-right: 5%;
		width: 90%;
		height: auto;
	}
	#06code .block:nth-of-type(3) {
		margin-top: 50%;
		margin-right: -24%;
		float: left;
		width: 74%;
	}
	#06code .block:nth-of-type(3) .number {
		top: 77%;
		right: 5%;
	}
	#06code .block:nth-of-type(3) .name01 {
		width: 30%;
		top: 24%;
		left: 15%;
	}
	#06code .block:nth-of-type(3) .photo {
		margin-left: 7%;
		width: 83%;
		height: auto;
	}
	#06code .block:nth-of-type(4) {
		clear: both;
	}
	#06code .block:nth-of-type(4) .number {
		top: 8%;
		right: 2%;
	}
	#06code .block:nth-of-type(4) .name01 {
		width: 35%;
		top: 33%;
		left: 56%;
	}
	#06code .block:nth-of-type(4) .photo {
		margin-left: 5%;
		width: 90%;
		height: auto;
	}
	#06code .block:nth-of-type(5) .number {
		top: 86%;
		left: 65%;
	}
	#06code .block:nth-of-type(5) .name01 {
		width: 29%;
		top: 47%;
		left: 47%;
	}
	#06code .block:nth-of-type(5) .name01 {
		width: 26%;
		top: 18%;
		left: 8%;
	}
	#06code .block:nth-of-type(5) .name02 {
		width: 26%;
		top: 59%;
		left: 61%;
	}
	#06code .block:nth-of-type(5) .photo {
		margin-left: 5%;
		width: 63%;
		height: auto;
	}
	#06code .block:nth-of-type(6) .number {
		top: 85%;
		left: 27%;
	}
	#06code .block:nth-of-type(6) .name01 {
		width: 29%;
		top: 92%;
		left: 65%;
	}
	#06code .block:nth-of-type(6) .photo {
		margin-right: 5%;
		width: 63%;
		height: auto;
		float: right;
	}
	section.next {
		position: relative;
	}
	section.next h1,
	section.next p {
		position: absolute;
	}
	section.next h1 {
		top: 37%;
		left: 12%;
	}
	section.next p {
		top: 45%;
		left: 12%;
	}
	section.next .photo {
		vertical-align: bottom;
	}
	footer {
		margin-left: 80px;
		padding: 60px;
	}
	footer h1 {
		margin-bottom: 110px;
		font-size: 21px;
	}
	footer h1:after {
		width: 27px;
		height: 1px;
		top: 50px;
	}
	footer dl {
		font-size: 13px;
	}
}
@media screen and (max-width: 760px) {
	aside {
		position: relative;
		z-index: 100;
	}
	aside .menu {
		width: 34px;
		height: 34px;
		background: #141512;
		border-radius: 50%;
		-webkit-border-radius: 50%;
		position: fixed;
		top: 15px;
		left: 15px;
	}
	aside .menu span {
		content: "";
		height: 2px;
		display: block;
		position: absolute;
		left: 10px;
		background: #fff;
		border-radius: 1px;
		-webkit-border-radius: 1px;
	}
	aside .menu span:nth-of-type(1) {
		width: 15px;
		top: 10px;
	}
	aside .menu span:nth-of-type(2) {
		width: 13px;
		top: 16px;
	}
	aside .menu span:nth-of-type(3) {
		width: 10px;
		top: 22px;
	}
	aside .close {
		width: 34px;
		height: 34px;
		background: #fff;
		border-radius: 50%;
		-webkit-border-radius: 50%;
		position: fixed;
		top: 15px;
		left: 15px;
	}
	aside .close span {
		content: "";
		width: 15px;
		height: 2px;
		display: block;
		position: absolute;
		top: 16px;
		left: 9px;
		background: #000;
		border-radius: 1px;
		-webkit-border-radius: 1px;
	}
	aside .close span:nth-of-type(1) {
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
	}
	aside .close span:nth-of-type(2) {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	aside nav {
		padding: 50px 25% 0 30%;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .9);
		position: fixed;
		top: 0;
		left: 0;
		display: none;
		box-sizing: border-box;
	}
	aside .gnav {
		margin-bottom: 40px;
	}
	aside .gnav li img {
		width: 100%;
		height: auto;
	}
	aside .gnav li a {
		display: block;
	}
	aside .gnav li:nth-of-type(1) {
		width: 80%;
		height: auto;
	}
	aside .gnav li:nth-of-type(2) {
		width: 78%;
		height: auto;
	}
	aside .gnav li:nth-of-type(3) {
		width: 100%;
		height: auto;
	}
	aside .gnav li:nth-of-type(4) {
		width: 83%;
		height: auto;
	}
	aside .gnav li:nth-of-type(5) {
		width: 75%;
		height: auto;
	}
	aside .gnav li:nth-of-type(6) {
		width: 93%;
		height: auto;
	}
	aside .gnav li:nth-of-type(7) {
		width: 80%;
		height: auto;
	}
	aside .gnav li:not(:first-child) {
		margin-top: 20px;
	}
	aside .sns li {
		margin: 0 10px;
		width: 25%;
		float: left;
	}
	aside .sns li .cls-1 {
		width: 100%;
		fill: #fff;
		opacity: 1;
	}
	section {
		margin-top: 60px;
	}
	.intro {
		margin-top: 0;
	}
	.introInner {
		margin-bottom: 50px;
		position: relative;
		height: 100%;
	}
	.intro h1 {
		position: absolute;
		top: 48%;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		width: 66%;
		height: auto;
		z-index: 100;
	}
	.intro h2 {
		width: 180px;
		height: 10px;
		position: absolute;
		top: 10px;
		right: 10px;
		z-index: 100;
	}
	.intro .prev,
	.intro .next {
		position: absolute;
		top: 23%;
		z-index: 100;
		box-sizing: border-box;
	}
	.intro .prev {
		padding-left: 20px;
		left: 2%;
	}
	.intro .next {
		padding-right: 20px;
		right: 2%;
	}
	.intro .arrow {
		position: absolute;
		top: 44%;
	}
	.intro .prev .arrow {
		left: 0;
	}
	.intro .next .arrow {
		right: 0;
	}
	.intro .dirNav .link {
		width: auto;
		height: 50%;
	}
	.intro .lead {
		position: absolute;
		top: 74px;
		left: 50%;
		transform: translateX(-113px);
		-webkit-transform: translateX(-113px);
		width: 225px;
		height: 71px;
		z-index: 100;
	}
	.intro .slider {
		width: 100%;
		min-height: 358px;
	}
	.intro .txt p:not(:first-child) {
		margin-top: 20px;
	}
	section .block {
		position: relative;
	}
	section .number {
		display: none;
	}
	section .photo {
		width: 100%;
		height: auto;
	}
	section .name01,
	section .name02 {
		position: absolute;
		opacity: 0;
		transform: translateY(10px);
		-webkit-transform: translateY(10px);
		transition: .5s;
	}
	section .show {
		opacity: 1;
		transform: translateY(0);
		-webkit-transform: translateY(0);
	}
	.ani {
		margin: 0 auto;
		width: 208px;
		height: 49px;
		position: relative;
		overflow: hidden;
	}
	.ani img {
		position: absolute;
		top: 0;
		left: 0;
	}
	.is-position-0 img { top: 0; }
	.is-position-1 img { top: -49px; }
	.is-position-2 img { top: -98px; }
	.is-position-3 img { top: -147px; }
	.is-position-4 img { top: -196px; }
	.is-position-5 img { top: -245px; }
	.is-position-6 img { top: -294px; }
	.is-position-7 img { top: -343px; }
	.is-position-8 img { top: -392px; }
	.is-position-9 img { top: -441px; }
	.is-position-10 img { top: -490px; }
	.is-position-11 img { top: -539px; }
	.is-position-12 img { top: -588px; }
	.is-position-13 img { top: -637px; }
	.is-position-14 img { top: -686px; }
	.is-position-15 img { top: -735px; }
	.is-position-16 img { top: -784px; }
	.is-position-17 img { top: -833px; }
	.is-position-18 img { top: -882px; }
	.is-position-19 img { top: -931px; }
	.is-position-20 img { top: -980px; }
	.is-position-21 img { top: -1029px; }
	.is-position-22 img { top: -1078px; }
	.is-position-23 img { top: -1127px; }
	.is-position-24 img { top: -1176px; }
	.is-position-25 img { top: -1225px; }
	.is-position-26 img { top: -1274px; }
	.is-position-27 img { top: -1323px; }
	.is-position-28 img { top: -1372px; }
	.is-position-29 img { top: -1421px; }
	.is-position-30 img { top: -1470px; }
	.is-position-31 img { top: -1519px; }
	.is-position-32 img { top: -1568px; }
	.is-position-33 img { top: -1617px; }
	.is-position-34 img { top: -1666px; }
	.is-position-35 img { top: -1715px; }
	.is-position-36 img { top: -1764px; }
	.is-position-37 img { top: -1813px; }
	.is-position-38 img { top: -1862px; }
	.is-position-39 img { top: -1911px; }
	.is-position-40 img { top: -1960px; }
	.is-position-41 img { top: -2009px; }
	.is-position-42 img { top: -2058px; }
	.is-position-43 img { top: -2107px; }
	.is-position-44 img { top: -2156px; }
	.is-position-45 img { top: -2205px; }
	.is-position-46 img { top: -2254px; }
	.is-position-47 img { top: -2303px; }
	section .main h2 {
		margin: 0 auto;
		width: 145px;
		height: 16px;
		opacity: 0;
		transition: .5s;
		transform: translate(-24px, 0);
		-webkit-transform: translate(-24px, 0);
	}
	section .main .show {
		opacity: 1;
		transform: translate(-24px, -10px);
		-webkit-transform: translate(-24px, -10px);
	}
	section .txt {
		clear: both;
		margin: 0 20px 20px;
	}
	section .txt h3 {
		margin: 30px 0;
		font-size: 16px;
		font-weight: bold;
	}
	section .txt p:not(:first-child) {
		margin-top: 20px;
	}
	#one_code .block:nth-of-type(2) .name01 {
		width: 47%;
		top: 35%;
		left: 51%;
	}
	#one_code .block:nth-of-type(3) .name01 {
		width: 51%;
		top: 50%;
		left: 46%;
	}
	#one_code .block:nth-of-type(4) .name01 {
		width: 61%;
		top: 59%;
		left: 36%;
	}
	#one_code .block:nth-of-type(4) .name02 {
		width: 45%;
		top: 82%;
		left: 13%;
	}
	#one_code .block:nth-of-type(5) .name01 {
		width: 64%;
		top: 72%;
		left: 7%;
	}
	#one_code .block:nth-of-type(6) .name01 {
		width: 41%;
		top: 53%;
		left: 58%;
	}
	#tuesday .block:nth-of-type(2) {
		margin-top: 15%;
	}
	#tuesday .block:nth-of-type(2) .name01 {
		width: 46%;
		top: -17%;
		left: 21%;
	}
	#tuesday .block:nth-of-type(2) .name02 {
		width: 41%;
		top: 38%;
		left: 56%;
	}
	#tuesday .block:nth-of-type(3) .name01 {
		width: 35%;
		top: 21%;
		left: 13%;
	}
	#tuesday .block:nth-of-type(4) {
		margin-bottom: 15%;
	}
	#tuesday .block:nth-of-type(4) .name01 {
		width: 33%;
		top: 33%;
		left: 66%;
	}
	#tuesday .block:nth-of-type(4) .name02 {
		width: 44.5%;
		top: 95%;
		left: 16%;
	}
	#tuesday .block:nth-of-type(6) .name01 {
		width: 43%;
		top: 41%;
		left: 4%;
	}
	#tuesday .block:nth-of-type(6) .name02 {
		width: 38%;
		top: 62%;
		left: 38%;
	}
	#tuesday .block:nth-of-type(7) .name01 {
		width: 33%;
		top: -12%;
		left: 65%;
	}
	#03code .block:nth-of-type(2) .name01 {
		width: 34%;
		top: 11%;
		left: 65%;
	}
	#03code .block:nth-of-type(3) .name01 {
		width: 44%;
		top: 9%;
		left: 6%;
	}
	#03code .block:nth-of-type(3) .name02 {
		width: 31%;
		top: 73%;
		left: 68%;
	}
	#03code .block:nth-of-type(4) .name01 {
		width: 44%;
		top: 17%;
		left: 16%;
	}
	#03code .block:nth-of-type(5) .name01 {
		width: 39%;
		top: 59%;
		left: 18%;
	}
	#03code .block:nth-of-type(6) .name01 {
		width: 51%;
		top: 33%;
		left: 2%;
	}
	#03code .block:nth-of-type(6) .name02 {
		width: 43%;
		top: 61%;
		left: 5%;
	}
	#04code .block:nth-of-type(2) .name01 {
		width: 28%;
		top: 33%;
		left: 71%;
	}
	#04code .block:nth-of-type(2) .name02 {
		width: 43%;
		top: 62%;
		left: 2%;
	}
	#04code .block:nth-of-type(3) {
		margin-top: 10%;
	}
	#04code .block:nth-of-type(3) .name01 {
		width: 51%;
		top: -10%;
		left: 46%;
	}
	#04code .block:nth-of-type(3) .name02 {
		width: 45%;
		top: 64%;
		left: 1%;
	}
	#04code .block:nth-of-type(4) .name01 {
		width: 54%;
		top: 38%;
		left: 3%;
	}
	#04code .block:nth-of-type(4) .name02 {
		width: 56%;
		top: 53%;
		left: 10%;
	}
	#04code .block:nth-of-type(5) .name01 {
		width: 30%;
		top: 19%;
		left: 69%;
	}
	#04code .block:nth-of-type(5) .name02 {
		width: 33%;
		top: 47%;
		left: 66%;
	}
	#04code .block:nth-of-type(6) .name01 {
		width: 40%;
		top: 67%;
		left: 1%;
	}
	#05code .block:nth-of-type(2) .name01 {
		width: 30%;
		top: 33%;
		left: 69%;
	}
	#05code .block:nth-of-type(3) .name01 {
		width: 44%;
		top: 80%;
		left: 19%;
	}
	#05code .block:nth-of-type(4) .name01 {
		width: 48%;
		top: 22%;
		left: 50%;
	}
	#05code .block:nth-of-type(4) .name02 {
		width: 44%;
		top: 72%;
		left: 1%;
	}
	#05code .block:nth-of-type(6) .name01 {
		width: 54%;
		top: 53%;
		left: 1%;
	}
	#06code .block:nth-of-type(2) .name01 {
		width: 45%;
		top: 15%;
		left: 20%;
	}
	#06code .block:nth-of-type(3) .name01 {
		width: 50%;
		top: 57%;
		left: 46%;
	}
	#06code .block:nth-of-type(4) .name01 {
		width: 55%;
		top: 48%;
		left: 42%;
	}
	#06code .block:nth-of-type(5) .name01 {
		width: 55%;
		top: 26%;
		left: 43%;
	}
	#06code .block:nth-of-type(5) .name02 {
		width: 55%;
		top: 72%;
		left: 1%;
	}
	#06code .block:nth-of-type(2) .name01 {
		width: 55%;
		top: 49%;
		left: 2%;
	}
	#06code .block:nth-of-type(3) .name01 {
		width: 55%;
		top: 24%;
		left: 4%;
	}
	#06code .block:nth-of-type(4) .name01 {
		width: 55%;
		top: 27%;
		left: 43%;
	}
	#06code .block:nth-of-type(5) .name01 {
		width: 42%;
		top: 17%;
		left: 6%;
	}
	#06code .block:nth-of-type(5) .name02 {
		width: 42%;
		top: 65%;
		left: 48%;
	}
	#06code .block:nth-of-type(6) {
		margin-bottom: 18%;
	}
	#06code .block:nth-of-type(6) .name01 {
		width: 55%;
		top: 87%;
		left: 35%;
	}
	section.next {
		position: relative;
	}
	section.next h1,
	section.next p {
		position: absolute;
	}
	section.next h1 {
		width: 65%;
		height: auto;
		top: 38%;
		left: 4%;
	}
	section.next p {
		width: 30%;
		height: auto;
		top: 48%;
		left: 4%;
	}
	section.next .photo {
		vertical-align: bottom;
	}
	footer {
		padding: 20px 15px;
	}
	footer h1 {
		margin-bottom: 30px;
		font-size: 18px;
	}
	footer h1:after {
		width: 18px;
		height: 1px;
		top: 10px;
	}
	footer .beamslogo {
		display: none;
	}
}
footer {
	color: #fff;
	text-align: center;
	background: #000;
}
footer h1:after {
	content: "";
	margin: auto;
	display: block;
	background: #fff;
	position: relative;
}
footer dl {
	margin-bottom: 50px;
}
footer dt {
	margin-bottom: 10px;
	font-weight: bold;
}
footer li {
	display: inline-block;
}
footer li:not(:first-child):before {
	content: "/";
}
footer li a {
	color: #fff;
	text-decoration: none;
}
footer li a:hover {
	text-decoration: underline;
}
.copy {
	font-size: 12px;
}
#loading {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 100;
}

.wait {
    overflow: hidden;
}

#progress {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -100px;
    width: 200px;
    height: 1px;
    background: #ddd;
}

#progressBar {
    width: 0;
    height: 1px;
    background-color: #000;
}
