@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	Reset Section
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
html, body, h1, h2, h3, h4, h5,
div, p, span, strong, small, a,
ol, ul, li, dl, dt, dd,
table, th, td {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

html {
	height: 100%;
	font-size: 62.5%;
	font-weight: 500;
	font-family: "fontAwesome",
		"游ゴシック", YuGothic,
		"ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
		"メイリオ", "Meiryo",
		"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
		"ＭＳ ゴシック", "MS Gothic",
		monospace;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	overflow: auto;
}
@media all and (-ms-high-contrast:none){
	*::-ms-backdrop, html {
		font-family: "fontAwesome",
			"メイリオ", "Meiryo",
			"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
			"ＭＳ ゴシック", "MS Gothic",
			monospace;
	}
}
@media screen and (min-width: 641px) {
    html {
		/* x1.2 */
		font-size: 74.7%;
		line-height: 31.5px;
    }
}

body {
	min-width: 100%;
	min-height: 100%;
	color: #111;
}


table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	width /***/: auto;
	height: auto;
	max-width: 100%;
	border: 0;
    vertical-align: bottom;
    -ms-interpolation-mode: bicubic;
}

a {
    color: #4AF;
/*    font-weight: bold; /**/
    text-decoration: underline;
    -webkit-transition: color 0.2s linear;
    transition: color 0.2s linear;
}
a:hover {
    color: #F93;
    text-decoration: underline;
}

address, caption, cite, code, dfn, em, strong, th {
	font-style: normal;
	font-weight: normal;
}

ul {
	list-style: none;
}

caption, th {
	text-align: left;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
	Base Section
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body {
	background-color: #FFF;
/*    background-image: url(./img/body_back.jpg); /**/
    background-position: center center;
    background-repeat: repeat;
	position: relative;
	z-index: 20;
}

#wrapper, #detail {
	font-size: 1.4rem;
	line-height: 24px;
	position: relative;
	z-index: 20;
}

@media screen and (min-width: 641px) {
	#wrapper, #detail {
		line-height: 31.5px;
	}
}

#wrapper div.inner {
	margin: 0 auto;
	padding: 0 10px;
	max-width: 960px;
	position: relative;
	z-index: 20;
}




/*━━━━━━━━━━━━━━━━━━━━
▼ Toplink
━━━━━━━━━━━━━━━━━━━━━*/
#toplink {
    width: 50px;
    height: 50px;
    position: fixed;
    z-index: 100;
    bottom: 30px;
    right: 30px;

	animation-name: fadeOut;
	animation-fill-mode: both;
	animation-duration: 0.5s;
}
#toplink.on {
	animation-name: fadeIn;
}
#toplink a {
    width: 50px;
    height: 50px;
    background-color: #333;
    box-shadow: 3px 3px 6px rgba( 0, 0, 0, 0.3 );
    border: solid 1px #FFF;
    color: #FFF;
    font-size: 40px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    display: block;
    -weblit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}
#toplink a:before {
    content: "\f176";
    font-family: "fontAwesome";    
    -weblit-transform: rotateZ(-45deg) translateY(-2px);
    transform: rotateZ(-45deg) translateY(-2px);
    display: block;
}

@media screen and (min-width: 1150px) {
    #toplink {
	    margin-right: -540px;
	    bottom: 30px;
	    right: 50%;
    }
}



/*━━━━━━━━━━━━━━━━━━━━
▼ Loader
━━━━━━━━━━━━━━━━━━━━━*/
#loader {
	background-color: #FFF;
	width: 100%;
	height: 100%;
	z-index: 500;
	position: fixed;
	top: 0;
	left: 0;
}
#loading {
	width: 300px;
	height: 300px;
	margin: auto;
	border: 5px dotted #915221;
	border-radius: 150px;
	text-align: center;
	overflow: hidden;
	position: absolute;
	z-index: 20;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
}
#loading.in {
	animation: loading_in 0.3s ease-out 0s 1 normal;
	-webkit-animation-name: loading_in;
	-webkit-animation-duration: 0.3s;
	-webkit-animation-timing-function: ease-out;
	-webkit-animation-delay: 0s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-direction: normal;
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
	display: block;
}
@keyframes loading_in {
	0%  {transform: translate(0, -150px) scale(0.5,0.5); opacity: 0;}
	100%{transform: translate(0, 0) scale(1,1); opacity: 1;}
}
#loading.out {
	animation: loading_out 0.3s ease-in 0s 1 normal;
	-webkit-animation-name: loading_out;
	-webkit-animation-duration: 0.3s;
	-webkit-animation-timing-function: ease-in;
	-webkit-animation-delay: 0s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-direction: normal;
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
	display: block;
}
@keyframes loading_out {
	0%  {transform: translate(0, 0) scale(1,1); opacity: 1;}
	100%{transform: translate(0, 0) scale(2,2); opacity: 0;}
}

#loading .box {
	width: 60px;
	height: 60px;
	background-color: #3C781E;
	margin: 50px auto 25px;
	position: relative;
	animation: anime_load 1.5s linear 0s infinite normal;
	-webkit-animation-name: anime_load;
	-webkit-animation-duration: 1.5s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-delay: 0s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: normal;
}
#loading .box:before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background-color: #66CC33;
	position: absolute;
	left: 0;
	top: 0;
}
@keyframes anime_load {
	0%   {transform: rotate(0deg);opacity: 1;}
	50%  {transform: rotate(180deg);opacity: 1;}
	100% {transform: rotate(360deg);opacity: 1;}
}
#loading .text {
	padding: 5px 0;
	background-color: #FFF0CC;
	color: #915221;
	font-size: 16px;
	font-weight: bold;
	font-family: "Candal", sans-serif;
	line-height: 24px;
}




/*━━━━━━━━━━━━━━━━━━━━
▼ Header
━━━━━━━━━━━━━━━━━━━━━*/
#header {
    border-bottom: solid 2px #FFF;
    background: url(./img/header_back.jpg) repeat 0 0;
    box-shadow: 0 0 5px #888 inset;
    position: relative;
    z-index: 20;
    overflow: hidden;
}
#header div.inner {
		/**/
    position: relative;
    z-index: 20;
}
#header div.inner:before,
#header div.inner:after {
	content: "";
	width: 120%;
	padding-top: 120%;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	z-index: 10;
	top: -37%;
	left: -10%;

	will-change: transform;
	animation-duration: 150.0s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-delay: 0.0s;
}
#header div.inner:before {
	background-image: url(./img/circle_in.png);
	-webkit-transform: scale(0.72);
	transform: scale(0.72);
	animation-name: circle_in;
}
@keyframes circle_in {
	0%  {
        -webkit-transform: rotateZ(0deg)  scale(0.72);
        transform: rotateZ(0deg)  scale(0.72);
    }
	100% {
        -webkit-transform: rotateZ(360deg)  scale(0.72);
        transform: rotateZ(360deg)  scale(0.72);
    }    
}
#header div.inner:after {
	background-image: url(./img/circle_out.png);
	animation-name: circle_out;
}
@keyframes circle_out {
	0%  {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
	100% {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }    
}

#header div.inner > div {
		width: 100%;
		padding-top: 12%;
		padding-bottom: 20px;
		text-align: center;
		position: relative;
		z-index: 20;
/*
		padding-left: 35%;
		padding-right: 6%;
		text-align: right;
		position: absolute;
		z-index: 20;
		bottom: 4%;
*/
}
#header div.inner > div p {
		margin-bottom: 10px;
}

#navigation {
		max-width: 600px;
		margin: 0 auto;
}
#navigation h2 {
		display: none;
}
#navigation ul:after {
		content: "";
		height: 0;
		display: block;
		clear: both;
}
#navigation ul li {
		width: 30%;
		height: 0;
		margin: 0 1.5%;
		padding-top: 30%;
		font-weight: bold;
		text-align: center;
		box-shadow:
			0 0 0 2px #FFF,
			0 0 3px rgba(0,0,0,0.3) inset,
			0 0 5px rgba(0,0,0,0.5);
		position: relative;
		z-index: 20;
		overflow: visible;
		float: left;
}
#navigation ul li:nth-child(1) {
		background-color: #FF8080;
}
#navigation ul li:nth-child(2) {
		background-color: #FFAA80;
}
#navigation ul li:nth-child(3) {
		background-color: #809FFF;
}
#navigation ul li a {
		width: 100%;
		height: 100%;
		padding-top: 5%;
		color: #FFF;
		font-size: 3vw;
		text-shadow: 1px 1px 0px rgba(0,0,0,0.25);
		text-decoration: none;
		display: block;
		position: absolute;
		z-index: 20;
		top: 0;

		display: -webkit-flex;
		display: flex;
		-webkit-flex-flow: column nowrap;
		flex-flow: column nowrap;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;

		will-change: transform;
		-webkit-transition: transform 0.1s linear;
		transition: transform 0.1s linear;
}
#navigation ul li img {
		width: 60%;
		max-height: 60%;
		max-width: 114px;
}

/*
#header div.inner > div + p {
		position: relative;
		z-index: 15;
		top: 0;
		right: 20%;
}
*/

#header div.inner > div + p {
		width: 60%;
		margin-top: 0;
		position: absolute;
		z-index: 20;
		top: 0;
		right: 4%;
}

@media screen and (min-width: 768px) {
	#header div.inner > div {
		padding-top: 50px;
	}
	#navigation ul li a {
		font-size: 1.8rem;
	}
	#navigation ul li a:hover {
		-webkit-transform: translateY(5px);
		transform: translateY(5px);
	}
	#navigation ul li img {
		margin-bottom: 4%;
	}
	#header div.inner > div + p {
		width: 300px;
	}
}




/*━━━━━━━━━━━━━━━━━━━━
▼ CONTENT
━━━━━━━━━━━━━━━━━━━━━*/
#content {
		position: relative;
		z-index: 20;
}
#content > div {
    padding-bottom: 60px;
}

#content h2 {
		margin-bottom: 40px;
		padding: 10px;
		color: #FFF;
		border-top: solid 2px #FFF;
		border-bottom: solid 2px #FFF;
		font-weight: bold;
		text-shadow: 1px 1px 0px rgba(0,0,0,0.25);
		position: relative;
		z-index: 20;
}
#content h2 span {
	width: 100%;
	margin: 0 auto;
	padding-left: 90px;
	max-width: 940px;
	font-size: 2.4rem;
	display: block;
	position: relative;
	z-index: 20;
}

#content h2 span:before {
	content: "";
	width: 80px;
	height: 80px;
	background-size: cover;
	display: inline-block;
	position: absolute;
	z-index: 20;
	top: -25px;
	left: 0;
}
#content h2:after {
	content: "";
	width: 100%;
	height: 100%;
    background-image:
		-moz-linear-gradient(top,
			rgba(255,255,255,0.0) 0%,
			rgba(255,255,255,1.0) 100%
	);
    background-image:
		-webkit-linear-gradient(top,
			rgba(255,255,255,0.0) 0%,
			rgba(255,255,255,1.0) 100%
		);
	background-image: linear-gradient(to bottom,
			rgba(255,255,255,0.0) 0%,
			rgba(255,255,255,1.0) 100%
		);
	opacity: 0.1;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}

#content h3 {
	margin-bottom: 15px;
	padding: 5px 10px;
	border-radius: 10px;
	color: #FFF;
	font-size: 1.6rem;
	font-weight: bold;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.25);
	position: relative;
	z-index: 20;
}
#content h3:before {
	margin-right: 8px;
}
#content h3:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 10px;
    background-image:
		-moz-linear-gradient(top,
			rgba(255,255,255,0.0) 0%,
			rgba(255,255,255,1.0) 100%
	);
    background-image:
		-webkit-linear-gradient(top,
			rgba(255,255,255,0.0) 0%,
			rgba(255,255,255,1.0) 100%
		);
	background-image: linear-gradient(to bottom,
			rgba(255,255,255,0.0) 0%,
			rgba(255,255,255,1.0) 100%
		);
	opacity: 0.1;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}

#content p {
	margin: 0px 20px 20px;
}
#content p strong {
	color: #E00;
	font-weight: bold;
}
#content p br {
	display: none;
}
#content a.lead {
    padding: 2px;
    background-color: #CE0045;
    box-shadow: 2px 2px 3px rgba(50,50,50,0.2);
    display: inline-block;
    position: relative;
    z-index: 20;
    
    -webkit-transition: 
        transform 0.1s linear,
        background-color 0.1s linear,
        box-shadow 0.1s linear;
    transition: 
        transform 0.1s linear,
        background-color 0.1s linear,
        box-shadow 0.1s linear;
}
#content a.lead + a.lead {
	margin-top: 8px;
}
#content a.lead:hover {
    background-color: #E6004C;
    position: relative;
}
#content a.lead:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px rgba(50,50,50,0.2);
}
#content a.lead span {
    padding: 8px 20px 8px 15px;
    border: solid 1px #FFF;
    color: #FFF;
	font-weight: bold;
	text-shadow: none;
    position: relative;
    display: inline-block;
}
#content a.lead span:before {
    content: "\f138";
    margin-right: 8px;
}
#content a.lead.download span:before {
	content: "\f019";
}
#content a.link span:after {
    content: "";
    width: 0;
    height: 0;
    border-top: solid 15px transparent;
    border-right: solid 15px #FFF; 
    display: block;
    position: absolute;
    right: 4px;
    bottom: 4px;
}
#content a.link small {
    font-size: 16px;
}

@media screen and (max-width: 639px) {
	#content h2 {
		margin-bottom: 30px;
	}
}

@media screen and (min-width: 768px) {
	#content p br {
		display: inline;
	}
}




/*━━━━━━━━━━━━━━━━━━━━
▼ OUTLINE
━━━━━━━━━━━━━━━━━━━━━*/
#content #outline {
	background: url(./img/outline_back.jpg) repeat left top;
}
#content #outline h2 {
	background-color: #FF8080;
	box-shadow: 0 0 0 2px #FF8080;
}
#content #outline h2 span:before {
	background-image: url(./img/outline_icon.png);
}

#content #outline dt {
	padding: 5px 10px;
	margin-bottom: 10px;
	background-color: #FF8080;
	border-radius: 10px;
	color: #FFF;
	font-size: 1.6rem;
	font-weight: bold;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.25);
	position: relative;
	z-index: 20;
}
#content #outline dt:before {
	content: "\f024";
	margin-right: 8px;
}
#content #outline dt:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 10px;
    background-image:
		-moz-linear-gradient(top,
			rgba(255,255,255,0.0) 0%,
			rgba(255,255,255,1.0) 100%
	);
    background-image:
		-webkit-linear-gradient(top,
			rgba(255,255,255,0.0) 0%,
			rgba(255,255,255,1.0) 100%
		);
	background-image: linear-gradient(to bottom,
			rgba(255,255,255,0.0) 0%,
			rgba(255,255,255,1.0) 100%
		);
	opacity: 0.1;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}

#content #outline dl dd {
	margin: 5px 20px 20px;
}
#content #outline dl dd strong {
	color: #E00;
	font-weight: bold;
}

#content #outline #map {
    width: 100%;
    height: 250px;
		margin: 8px auto 0;
    border: solid 5px #FFF;
    background-color: #FFF;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
#content #outline #map {
	position: relative;
	overflow: hidden;
}
#content #outline #map iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (min-width: 768px) {
	#content #outline dl {
		margin-right: 370px;
	}
	#content #outline dl:after {
		content: "";
		display: table;
		clear: both;
	}
	#content #outline dt {
		width: 145px;
		float: left;
	}
	#content #outline dd {
		float: left;
	}
	#content #outline #map {
		width: 370px;
		height: 350px;
		position: absolute;
		top: 0px;
		right: 20px;
	}
}




/*━━━━━━━━━━━━━━━━━━━━
▼ EVENT
━━━━━━━━━━━━━━━━━━━━━*/
#content #event {
	background: url(./img/event_back.jpg) repeat left top;
}
#content #event h2 {
	background-color: #FFAA80;
	box-shadow: 0 0 0 2px #FFAA80;
}
#content #event h2 span:before {
	background-image: url(./img/event_icon.png);
}

#content #event div[id^=e] {
		margin-bottom: 40px;
}
#content #event div[id^=e]:after {
		content: "";
		height: 0;
		display: block;
		clear: both;
}
#content #event h3 {
	background-color: #FFAA80;
}
#content #event h3:before {
	content: "\f005";
}

#content #event h3 + p {
	max-width: 200px;
	margin: 0 auto 15px;
	box-shadow:
		0 0 0 5px #FFF,
		0 0 3px 5px rgba(0,0,0,0.2);
}
#content #event div[id^=e] div {
	margin-left: 0;
}

#content #event dl {
	margin: 0 20px 10px;
}
#content #event dl dt {
	width: 85px;
	padding: 0 8px;
   background-color: #FFAA80;
	color: #FFF;
	font-weight: bold;
	text-align: center;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.25);
}
#content #event dl dd {
	margin: 10px 0 0 15px;
}

@media screen and (min-width: 640px) {
	#content #event h3 + p {
		width: 200px;
		height: 200px;
		margin: 10px 0 0 10px;
		float: left;
	}
	#content #event div[id^=e] div {
		margin-left: 210px;
	}
	#content #event dl dt {
		float: left;
	}
	#content #event dl dd {
		margin-left: 105px;
	}
}




/*━━━━━━━━━━━━━━━━━━━━
▼ GOODS
━━━━━━━━━━━━━━━━━━━━━*/
#content #goods {
		padding-bottom: 1px;
		background: url(./img/goods_back.jpg) repeat left top;
}
#content #goods h2 {
		background-color: #809FFF;
		box-shadow: 0 0 0 2px #809FFF;
}
#content #goods h2 span:before {
		background-image: url(./img/goods_icon.png);
}
#content #goods h3 {
		background-color: #809FFF;
}
#content #goods h3:before {
	content: "\f290";
}

#content #goods div.inner > p:first-child {
	text-align: center;
}
#content #goods div.inner > p:first-child img {
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
#content #goods div.inner > div {
	margin-bottom: 60px;
}

#content #goods #ordersheet {
	position: relative;
	z-index: 20;
}
#content #goods #ordersheet:after {
	content: "";
	width: 210px;
	height: 280px;
	background-image: url(./img/goods_orderback.png);
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	z-index: -1;
	right: 0;
	bottom: 0;
	opacity: 0.2;
	-webkit-transition:
		opacity 0.2s linear;
	transition:
		opacity 0.2s linear;
}

#content #goods #novelty h3 + p {
	margin-bottom: 10px;
	text-align: center;
}
#content #goods #novelty h3 + p img {
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#content #goods ul.list {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: stretch;
	align-items: stretch;
}

#content #goods ul.list li {
	width: 50%;
	margin: 0 0 20px;
	padding: 0 10px;
}
@media screen and (min-width: 768px) {
	#content #goods ul.list li {
		width: 33.33333%;
	}
}

#content #goods ul.list li section {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: stretch;
	align-items: stretch;
}

#content #goods ul.list li h4 {
	-webkit-order: 3;
	order: 3;

	font-size: 1.4rem;
	text-align: center;
}
#content #goods ul.list li h4 span {
	color: #00E;
	font-size: 1.2rem;
	font-weight: bold;
}
#content #goods ul.list li h4 + p {
	-webkit-order: 1;
	order: 1;

	width: 100%;
	max-width: 300px;
	max-height: 300px;
	margin: 0 auto 5px;
	background-color: rgba(255,255,255,0.5);
	border: solid 1px #FFF;
	box-shadow: 0 0 0 1px #392F2D;
	text-align: center;
	position: relative;
	z-index: 20;
	overflow: hidden;
}
#content #goods ul.list li h4 + p:before {
	content:"";
	padding-top: 100%;
	display: block;
}
#content #goods ul.list li h4 + p:after {
	content: "";
	width: 15%;
	height: 15%;
	background-image: url(./img/icon_zoom.png);
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	z-index: 25;
	bottom: 3%;
	right: 3%;
	pointer-events: none;
}
#content #goods ul.list li h4 + p a {
	width: 100%;
	height: 0;
	max-width: 300px;
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
}

#content #goods ul.list li h4 + p a img {
	width: auto;
	height: auto;
	margin: auto;
	align-self: auto;
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
	right: 0;
}

#content #goods ul.list li h4 + p + p {
	-webkit-order: 2;
	order: 2;

	margin: 5px 0;
	text-align: center;
}
#content #goods ul.list li h4 + p + p span {
	margin-right: 8px;
	padding: 0 8px;
	background-color: #809FFF;
	border-radius: 5px;
	color: #FFF;
	font-size: 1.0rem;
	font-weight: bold;
	text-shadow: none;
	display: inline-block;
}
#content #goods ul.list li h4 + p + p strong {
	color: #E00;
	font-size: 1.2rem;
	font-weight: bold;
	white-space: nowrap;
	position: relative;
	top: 2px;
}

@media screen and (min-width: 639px) {
	#content #goods ul.list li h4 + p + p span {
		font-size: 1.4rem;
	}
	#content #goods ul.list li h4 + p + p strong {
		font-size: 1.8rem;
	}
}
@media screen and (min-width: 900px) {
	#content #goods #ordersheet:after {
		right: 60px;
		opacity: 1.0;
	}
}




/*━━━━━━━━━━━━━━━━━━━━
▼ GOODS DETAIL
━━━━━━━━━━━━━━━━━━━━━*/
#detail,
#detail h1,
#detail div,
#detail p {
		margin: 0;
		padding: 0;
}

#detail {
		width: 100%;
		padding-bottom: 15px;
		background: url(./img/goods_back.jpg) repeat left top;
		position: relative;
		z-index: 20;
}

#detail h1 {
		padding: 8px 20px;
		background-color: #392F2D;
		color: #FFF;
		font-size: 1.6rem;
		font-weight: bold;
		text-shadow: 1px 1px 0px rgba(0,0,0,0.25);
		position: relative;
		z-index: 20;
}
#detail h1:after {
}

#detail #data {
		padding: 20px;
}
#detail #data p:first-child {
		margin-bottom: 15px;
		text-align: center;
}
#detail #data p:first-child img {
		border: solid 1px #FFF;
		box-shadow: 0 0 0 1px #392F2D;
}
#detail #data p:first-child + p {
		padding: 10px;
		margin-bottom: 15px;
		background-color: rgba(255,255,255,0.5);
		border: solid 1px #392F2D;
		border-radius: 10px;
}
#detail #data dt {
		padding: 7px 10px 5px;
		margin-bottom: 10px;
		background-color: #809FFF;
		border-radius: 10px;
		color: #FFF;
		font-weight: bold;
		text-shadow: 1px 1px 0px rgba(0,0,0,0.25);
		position: relative;
		z-index: 20;
}
#detail #data dt:after {
		content: "";
		width: 100%;
		height: 100%;
		border-radius: 10px;
    background-image:
			-moz-linear-gradient(top,
				rgba(255,255,255,0.0) 0%,
				rgba(255,255,255,1.0) 100%
			);
    background-image:
			-webkit-linear-gradient(top,
				rgba(255,255,255,0.0) 0%,
				rgba(255,255,255,1.0) 100%
			);
		background-image:
			linear-gradient(to bottom,
				rgba(255,255,255,0.0) 0%,
				rgba(255,255,255,1.0) 100%
			);
		opacity: 0.1;
		position: absolute;
		z-index: -1;
		top: 0;
		left: 0;
}
#detail #data dd {
		padding: 0 20px 10px;
}
#detail #data dd b {
		margin-left: -10px;
}
#detail #data dd ul {
		margin-left: 17px;
		list-style-type: disc;
}
#detail #data dd strong {
		color: #E00;
		font-size: 2.0rem;
		font-weight: bold;
}

#detail footer {
	width: 100%;
	margin-top: 20px;
	text-align: center;
	clear: both;
}
#detail footer p {
	max-width: 380px;
	margin: 0 auto;
	background-color: #392F2D;
	color: #FFF;
}
#detail footer p small:before {
	content: "\f1f9";
	margin-right: 3px;
}


@media screen and (min-width: 768px) {
	#detail #data p:first-child {
		width: 400px;
		margin-right: 15px;
		margin-bottom: 15px;
		float: left;
	}
	#detail #data p:first-child + p {
		margin-left: 420px;
	}
	#detail #data dl {
		margin-left: 420px;
	}
}


/*━━━━━━━━━━━━━━━━━━━━
▼ CAUTION
━━━━━━━━━━━━━━━━━━━━━*/
#content #caution {
	background: url(./img/caution_back.jpg) repeat left top;
}
#content #caution h2 {
	background-color: #B980FF;
	box-shadow: 0 0 0 2px #B980FF;
}
#content #caution h2 span:before {
	background-image: url(./img/caution_icon.png);
}
#content #caution h3 {
	background-color: #FFAA80;
}
#content #caution h3:before {
	content: "\f005";
}

#content #caution ul li {
    padding-left: 55px;
    margin: 0 10px 40px;
    line-height: 30px;
    position: relative;
    z-index: 20;
}
#content #caution ul li:before {
    content: "\f071";
    color: #555;
    font-size: 40px;
    position: absolute;
    top: 15px;
    left: 0;
}
#content #caution ul li:last-child {
		margin-bottom: 0;
}
#content #caution ul li br {
	display: none;
}

@media screen and (min-width: 768px) {
	#content #caution ul li br {
		display: inline;
	}
}




/*━━━━━━━━━━━━━━━━━━━━
▼ Footer
━━━━━━━━━━━━━━━━━━━━━*/
#footer {
    padding: 20px 0 10px;
	background-color: #383838;
    color: #FFF;
    font-size: 12px;
}

#footer ul {
	width: 240px;
	margin: 0 auto;
}
#footer ul:after {
	content: "";
	display: block;
	clear: both;
}
#footer ul li {
	margin: 0 5px;
	float: left;
}
#footer ul li a {
	width: 50px;
	height: 50px;
	color: #FFF;
	box-shadow: 0px 0px 3px rgba( 0, 0, 0, 0.3);
	border-radius: 5px;
	text-decoration: none;
	text-align: center;
	display: block;

	will-change: transform;
	-webkit-transition: transform 0.2s ease;
	transition: transform 0.2s ease;
}
#footer ul li a:hover {
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
}

#footer ul li a.twitter {
	background-color: #1DA1F3;
}

#footer ul li a.twitter:before {
	content: "\f099";
	font-size: 36px;
	font-family: "fontAwesome";
	line-height: 50px;
}

#footer ul li a.facebook {
	background-color: #3B579D;
}

#footer ul li a.facebook:before {
	content: "\f09a";
	font-size: 32px;
	font-family: "fontAwesome";
	line-height: 52px;
}

#footer ul li a.google {
	background-color: #DF4A32;
}

#footer ul li a.google:before {
	content: "\f0d5";
	font-size: 26px;
	font-family: "fontAwesome";
	line-height: 50px;
}

#footer ul li a.line {
	background-color: #01C301;
}

#footer ul li a.line:before {
	content: "LINE";
	font-size: 20px;
	font-family: "Baloo";
	line-height: 50px;
}

#footer p {
	padding: 0 20px;
	text-align: center;
	line-height: 20px;
}
#footer p a {
	margin-bottom: 10px;
    display: inline-block;
}
#footer p img {
	width: 100px;
}
#footer p small {
    font-size: 1.2rem;
}
#footer p small:before {
	content: "\f1f9";
	margin-right: 3px;
}




/*━━━━━━━━━━━━━━━━━━━━
▼ Extend Animation
━━━━━━━━━━━━━━━━━━━━━*/
/*
#wrapper.on #header div.inner > div + p {
	will-change: opacity, filter;
	animation-name: fadeInBlur;
	animation-duration: 1.0s;
	animation-delay: 1.0s;
	animation-fill-mode: both;
}
*/

@keyframes fadeInBlur {
	0%  {
		opacity: 0.0;
		filter: blur(10px);
    }
	100% {
		opacity: 1.0;
		filter: blur(0px);
    }    
}

