﻿@charset 'utf-8';

/* ++++++++++++++++++++++++++++++++++++++++

	Reset and Clearfix

++++++++++++++++++++++++++++++++++++++++ */

html, body,
div, p,
table, tr, th, td,
ul, ol, li,
dl, dt, dd,
h1, h2, h3, h4, h5, h6,
img, a, address, figure {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
}

li {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.clearfix {
	min-height: 1px;
}
.clearfix:after {
	content: '.';
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	font-size: 0;
	line-height: 0;
}


/* ++++++++++++++++++++++++++++++++++++++++

	Common Settings

++++++++++++++++++++++++++++++++++++++++ */

body {
	color: #333;
	font-size: 14px;
	line-height: 1.5;
	font-family: YakuHanJP, -apple-system, "游ゴシック体", YuGothic, "Yu Gothic Medium", BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	-webkit-text-size-adjust: 100%;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

a,
input[type=submit],
input[type=image] {
	transition: .2s;
}
a {
	text-decoration: none;
	color: #1f1f1f;
	cursor: pointer;
}
a:hover,
input[type=submit]:hover,
input[type=image]:hover {
	opacity: .7;
}

#container {
	position: relative;
	z-index: 1;
	padding-top: 100px;
}

.scrLock #container {
	position: fixed;
	left: 0;
	right: 0;
}


/* ----------------------------------------
	header
---------------------------------------- */

header {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
}
header>div#navi {
    	background: white;
	border-top: #000 3px solid;
	border-bottom: #000 3px solid;
}

h1 {
	margin: 20px auto;
	max-width: 1200px;
}
h1 img.logo_icon {
	width: 60px;
	vertical-align: middle;
}
h1 img.logo_title {
	width: 180px;
	vertical-align: middle;
}

nav {
	margin: auto;
	width: 1200px;
	text-align: center;
}
nav ul {
	float: left;
	letter-spacing: -.4em;
}
nav li {
	display: inline-block;
	width: 171px;
	letter-spacing: 0;
	line-height: 3em;
	border-right: 1px solid;
}
nav li:last-child {
	border-right: 0;
}


nav a {
	display: block;
    	font-weight: 600;
	font-size: 13px;
}
nav a:hover {
	background: yellow;
	opacity: 0.9;
}


/* ----------------------------------------
	article
---------------------------------------- */

article {
	margin: 70px 0;
	padding-top: 5px;
	margin-bottom: 100px;
}

article div#article_in {
	position: relative;
	z-index: 1;
	width: 1200px;
	margin: auto;
}

h3 {
	margin-bottom: 30px;
	padding: 7px 0;
	text-align: center;
	font-size: 13px;
	background: black;
	color: white;
}

#news dt{
  float: left;
}

#news dd{
	margin-bottom: 10px;
	border-bottom: 1px dotted;
}


/* ----------------------------------------
	footer
---------------------------------------- */

footer {
}
footer a {
}

footer #footer_in {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 25px 0;
}

footer ul {
	float: left;
}
footer li {
	display: inline-block;
	margin-bottom: 5px;
	font-size: 13px;
}
footer div #inc {
	text-align: center;
	padding-right: 50px;
	margin-right: 50px;
	border-right: 1px solid #fff;
}
footer div#inc p {
	margin-top: 5px;
	font-size: 10px;
}


#btnPagetop {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	bottom: 30px;
	right: 30px;
	padding: 10px;
	border-radius: 4px;
	background: rgba(0,0,0,.5);
	color: #fff;
	line-height: 1;
	transition: .3s;
	transition-property: visibility, opacity;
}
#btnPagetop:before {
	content: '';
	display: inline-block;
	margin-right: 5px;
	border: solid transparent;
	border-width: 0 6px 12px;
	border-bottom-color: #fff;
	vertical-align: middle;
}

#btnPagetop.on,
#btnPagetop.onScrLock {
	visibility: visible;
	opacity: 1;
	z-index: 55;
}

#btnPagetop.edge,
#btnPagetop.edgeScrLock {
	position: absolute;
	bottom: 100%;
	margin-bottom: 30px;
}


/* ----------------------------------------
	modal
---------------------------------------- */

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.content{
    margin: 0 auto;
    padding: 40px;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 999;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    left: 50%;
    position: absolute;
    top: 45%;
    transform: translate(-50%,-50%);
	width: 500px;
	text-align: right;
}
.modal__content a {
    color: #fff;
    font-size: 40px;
}
.modal__content img {
	width: 100%;
}





/* ++++++++++++++++++++++++++++++++++++++++

	PC

++++++++++++++++++++++++++++++++++++++++ */

@media (min-width: 768px) {
	.sp {
		display: none !important;
	}

	#container,
	header {
		min-width: 980px;
	}


	/* ----------------------------------------
		header.fixed
	---------------------------------------- */

	header.fixed {
		overflow-y: hidden;
		position: fixed;
		min-width: auto;
	}
	header.fixed h1 {
		display: none;
	}
}



/* ++++++++++++++++++++++++++++++++++++++++

	SP

++++++++++++++++++++++++++++++++++++++++ */

@media (max-width: 767px) {
	.pc {
		display: none !important;
	}

	#container {
		padding-top: 75px;
	}


	/* ----------------------------------------
		header
	---------------------------------------- */

	header {
		padding: 0;
		text-align: left;
		margin: 0 auto;
	}
	header div {
		width: 95%;
	}
	header>div#title {
		width: 95%;
		margin-left: 1.5%;
	}

	header>div#navi {
		border-top: 0;
		border-bottom: 0;
	}

	h1 {
		position: relative;
		line-height: 30px;
		margin: 10px auto;
	}
	h1 img.logo_icon {
		width: 55px;
		max-width: 75px;
		vertical-align: middle;
	}
	h1 img.logo_title {
		width: 160px;
		vertical-align: middle;
	}

	h2 {
		width: 100%;
	}
	
	h2 img {
		width: 100%;
	}

	h3 {
		font-size: 12px;
	}

	#navBtn,
	#navBtn:before,
	#navBtn:after,
	#navBtn span {
		position: absolute;
	}
	#navBtn {
		opacity: 1;
		right: 10px;
		top: 42px;
		z-index: 2;
		width: 30px;
		height: 26px;
		margin-top: -13px;
	}
	#navBtn:before,
	#navBtn:after,
	#navBtn span {
		left: 0;
		width: 100%;
		height: 2px;
		background: #000;
		transition: .3s;
	}
	#navBtn:before,
	#navBtn:after {
		content: '';
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
	#navBtn:before {
		top: 0;
	}
	#navBtn:after {
		bottom: 0;
	}
	#navBtn span {
		overflow: hidden;
		top: 12px;
		text-indent: 100%;
	}

	.navOpen #navBtn:before,
	.navOpen #navBtn:after {
		background: #fff;
	}
	.navOpen #navBtn:before {
		top: 12px;
		-webkit-transform: rotateZ(-135deg);
		transform: rotateZ(-135deg);
	}
	.navOpen #navBtn:after {
		bottom: 12px;
		-webkit-transform: rotateZ(135deg);
		transform: rotateZ(135deg);
	}
	.navOpen #navBtn span {
		background: transparent;
		transition: 0s;
	}

	nav {
		visibility: hidden;
		opacity: 0;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 1;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		padding-top: 110px;
		background: rgba(0,0,0,.5);
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		transition: .3s;
	}

	.navOpen nav {
		visibility: visible;
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	nav ul {
		overflow-x: hidden;
		height: 100%;
		width: 100%;
	}
	nav li {
		display: block;
		line-height: 50px;
		width: 90%;
		margin: 0 auto;
		background-color: rgba(250, 250, 0, 0.8);
	}
	nav li+li {
		margin-top: 1px;
	}
	nav a {
		padding-left: 20px;
	}


	/* ----------------------------------------
		article
	---------------------------------------- */
	article {
		margin: 0;
		padding-top: 10px;
		background: #fff;
	}

	article div#article_in {
		width: auto;
		padding: 5px 0 0;
	}
	#store iframe {
		width: 100%;
	}
	section {
		width: 100%;
	}
	
	div #banner,div .aside {
		float: none;
		margin-top: 20px;
	}
	div #banner img,div .aside img {
		width: 100%;
	}
	#newitems img {
		width: 100%;
	}
	
	article #newitems ul {
	 	width: 90%;
	 	margin: 0 auto;
	}
	article #newitems ul li {
		width: 98%;
		margin: 10px 0;
	}
	
	#newitems>div {
    		margin-top: 20px;
    		width: 90%;
    		margin: 0 auto;
	}
	
	
	
	/* ----------------------------------------
		footer
	---------------------------------------- */
	
	footer div {
		width: 90%;
		padding: 20px 5%;
	}
	footer #footer_in {
		width: 100%;
	}
	footer div #inc {
		margin-right: 0;
		border-right: 0;
		padding-right: 0;
	}

	/* ----------------------------------------
		Modal
	---------------------------------------- */
	
	#modal {
		padding: 9.375%;
	}
	.modal__content {
		top: 45%;
	}
}

/* ↓動作確認用なので削除してください。*/
@media (max-width: 767px) {
}
/* ↑動作確認用なので削除してください。*/