@charset "UTF-8";

/* ========================================================
	Faundation
======================================================== */

/* 1rem = 10pxにするための設定。フォントサイズの単位はremを使用する。 */

html {
	font-size: 62.5%;
	margin: 0;
	padding: 0;
	line-height: 1.8;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	color: #555;
	font-family: 'Noto Sans Japanese', sans-serif;
	font-size: 1.4rem;
	-webkit-font-kerning: normal;
	-moz-font-kerning: normal;
	font-kerning: normal;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	margin: 0;
	padding: 0;
	background: none;
}

ul ,
li {
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: #09f;
}

a:hover {
	text-decoration: underline;
}

a img:hover {
	-webkit-filter: brightness(1.1);
	-moz-filter: brightness(1.1);
	-ms-filter: brightness(1.1);
	filter: brightness(1.1);
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

p {
	margin: 0;
	padding: 0;
}

figure,
figcation {
	margin: 0;
	padding: 0;
}

/* ========================================================
Layout
======================================================== */

header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;

	position: fixed;
	top: 0;
	left: 0;
	height: 35px;
	width: 100%;
	background: #fff;
	border-bottom: 2px solid #354052;
	box-sizing: border-box;
	box-shadow: 0 0px 20px 7px rgba(0, 0, 0, 0.2);
	z-index: 999;
	-webkit-transition: 1s;
	transition: 1s;
}

@media screen and (max-width: 1024px) {
	header {
		height: 50px;
	}
}

.logo {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	margin: 0 0 0 10px;
}

.logo img {
	height: 20px;
}

main {
	padding: 25px;
	margin: 0px auto 100px;
	max-width: 1280px;
	overflow: hidden;
}

@media screen and (max-width: 1024px) {
	main {
		padding: 10px;
		margin: 50px 10px 100px;
	}
}

section.top {
	background: none;
	border: none;
}

footer {
	background: #333;
	color: #fff;
}

/* ========================================================
object
======================================================== */

/* -----------------------------------
	ドロワーメニュー
----------------------------------- */

@media screen and (max-width: 1024px) {
	.drawer_menu {
		display: none;
		background: #fff;
		position: absolute;
		top: 50px;
		left: 0;
		width: 100%;
		margin: 0;
		padding: 0;
		z-index: 998;
	}
}

.drawer_menu ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 1024px) {
	.drawer_menu ul {
		display: block;
	}
}

@media screen and (max-width: 1024px) {
	.drawer_menu ul li {
		margin: 0 10px 0 0;
		list-style: none;
		text-align: center;
		margin: 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.3);
		cursor: pointer;
	}
}

.drawer_menu ul li a,
.drawer_menu ul li span {
	text-decoration: none;
	color: #333;
	padding: .6em 2.4rem;
	display: block;
	margin: 0;
	cursor: pointer;
}

@media screen and (max-width: 1024px) {
	.drawer_menu ul li a,
	.drawer_menu ul li span {
		padding: .6em 2.4rem;
		display: block;
		margin: 0;
	}
}

@media screen and (max-width: 1024px) {
	.drawer_menu ul li:last-child {
		border-bottom: 2px solid #354052;
	}
}

.drawer_btn {
	display: none;
}

@media screen and (max-width: 1024px) {
	.drawer_btn {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.drawer_btn img {
		display: block;
		width: 40px;
	}
}

/* -----------------------------------
	ソーシャルリスト
----------------------------------- */

.social {
	margin: 20px 0;
	background: none;
	border: none;
}

.social p {
	color: #FFF;
	text-align: center;
}

.social ul {
	text-align: center;
}

.social ul li {
	display: inline-block;
	margin: 10px;
}

.social ul li a {
	display: block;
	vertical-align: middle;
	padding: 13px;
	border-radius: 3px;
	outline: 0px solid rgba(255,255,255,0);
	transition .1s;
	-webkit-transition: .1s;
}

.social ul li a:hover {border-radius: 0;}

.social ul li a svg {
	display: block;
	width: 39px;
	height: 39px;
}

.social ul li a svg path {
	fill: #FFF;
}

.social ul li:hover {
	border-radius: 0;
}

.social ul li.social_twitter a:link {background: #1DA1F2;}
.social ul li.social_twitter a:hover {outline: 5px solid #1DA1F2;}

.social ul li.social_facebook a:link {background: #3B5998;}
.social ul li.social_facebook a:hover {outline: 5px solid #3B5998;}

.social ul li.social_line a:link {background: #00C300;}
.social ul li.social_line a:hover {outline: 5px solid #00C300;}

.social ul li.social_tumblr a:link {background: #36465D;}
.social ul li.social_tumblr a:hover {outline: 5px solid #36465D;}

.social ul li.social_mail a:link {background: #f90;}
.social ul li.social_mail a:hover {outline: 5px solid #f90;}
.social ul li.social_mail a:hover img {opacity: 1;}

/* -----------------------------------
	グッズ
----------------------------------- */

.goods ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: space-between;
}

.goods ul li {
	display: inline-flex;
	align-items: center;
	width: 24%;
	margin: 0.5%;
	padding: 1%;
	background: #FFF;
}

.goods ul li a:hover {
	text-decoration: none;
}

.goods ul li a figure div {
	display: flex;
	flex-flow: row nowrap;
	align-items: baseline;
}

.goods ul li a figure div img {
	display: block;
}

.goods ul li a figcaption {
	display: flex;
	flex-flow: row nowrap;
	align-items: baseline;
}

.goods ul li a figcaption p {
	display: block;
}

.inline {
	display: none;
}

#cboxLoadedContent .inline {
	background: #FFF;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#cboxLoadedContent .inline div {
	width: 50%;
}

#cboxLoadedContent .inline div:nth-child(2) {
	padding: 20px;
}

#cboxLoadedContent .inline div dl {
	display: flex;
	flex-flow: row wrap;
}

#cboxLoadedContent .inline div dl dt ,
#cboxLoadedContent .inline div dl dd {
	display: inline-flex;
	margin: 0;
	padding: 0;
}

#cboxLoadedContent .inline div dl dt {
	width: 20%;
}

#cboxLoadedContent .inline div dl dd {
	width: 80%;
}

#cboxLoadedContent .inline div dl dd:nth-of-type(2)::before {
	content: "￥";
	margin: 0 1px 0 0;
}

#cboxLoadedContent .inline div dl dd:nth-of-type(2)::after {
	content: "＋税";
}

#cboxLoadedContent .inline{
	margin: 2px;
	padding: 0 0 2px;
}

#cboxLoadedContent .inline dl {
	margin: 15px 0 0;
	font-size: 0.9em;
}

#cboxLoadedContent .inline dl dt {
	background: #EEE;
	outline: 2px solid #FFF;
}

#cboxLoadedContent .inline dl dt span {
	display: block;
	width: 100%;
	text-align: center;
}

#cboxLoadedContent .inline dl dd {
	text-indent: 5px;
}

main .goods a:hover , main .goods a:active {
	text-decoration: none;
}

@media screen and (max-width: 460px) {
	#cboxLoadedContent .inline {
		background: #FFF;
		display: flex;
		flex-flow: column;
		align-items: center;
		justify-content: center;
		overflow: hidden;
	}

	#cboxLoadedContent .inline div {
		width: 90%;
		margin: 5%;
	}
}

/* -----------------------------------
	アクセス
----------------------------------- */

.access div div {
	display: flex;
}

.access div div iframe {
	display: inline-flex;
	width: 50%;
	height: 300px;
	margin: 1em 2em 1em 0;
	border: none;
}

.access div div iframe + div {
	display: flex;
	flex-flow: column wrap;
	width: 50%;
	vertical-align: top;
	margin: 1em 0 1em 0;
}

.access div div iframe + div p {
	display: flex;
	flex-flow: column wrap;
}

 dl {
	margin: 0;
	padding: 0 0 1em 0;
	font-size: 1em;
}

.access dl dd {
	margin: 0 0 0.5em;
}

@media screen and (max-width: 460px) {
	.access div div {
		display: flex;
		flex-flow: column wrap;
	}

	.access div div iframe {
		display: inline-flex;
		width: 100%;
	}

.access div div iframe + div {
	width: 100%;
}

}

/* -----------------------------------
	フッター
----------------------------------- */

footer p {
	text-align: center;
	margin: 0;
	padding: 1em 0;
}

footer p small {
	display: block;
}

/* -----------------------------------
	トップへもどる
----------------------------------- */

.page_top {
	display: none;
	position: fixed;
	width: 55px;
	height: 50px;
	right: 16px;
	bottom: 105px;
}

.page_top a {
	color: #FFF;
	display: block;
	text-align: center;
	background: #555;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.page_top a:hover {
	background: #FF9900;
	opacity: 1;
}
