@charset "UTF-8";

/* CSS Document */

/*==================================================

container
=================================================*/

html {
	background: #edf1f3;
}
body {
    position: relative;
    left: 0;
}

/* sp menu setting */

.layer{
    display: none;
    width: 100%;
    height: 100%;
	position: fixed;
    top: 0;
	left: 0;
    background: rgba(0, 0, 0, 0.8);
	z-index: 1002!important;
}
body.open{
	width: 100%;
    position: fixed;
}

#wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}

/*==================================================

header
=================================================*/

header {
	width: 100%;
	position: fixed;
	min-width: 100%;
	background-color: rgba(0, 0, 0, 0);
	top: 0;
	left: 0;
	z-index: 8!important;
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

#header-inner {
	width: 100%;
	position: relative;
	margin: 0 auto;
	background-color: #FFF;
	background-image: url(../../images/index_01.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: cover;
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	padding: 15px 0;
}
.headerbg {
	
}
.headerbg #header-inner  {
	background-image: url(../../images/header_bg_sk.png);
}
.headerbg nav {
   
}

/* cf */

#header-inner:after,.nv-bg:after {
    content:" ";
    display:block;
    clear:both;
}

/* header PC */

#header-logo {
	width: 50%;
	max-width: 477px;
	position: absolute;
	line-height: 0;
	top: 50%;
	left: 5%;
	-webkit-transform: translate(0, -50%); /* Safari用 */
	transform: translate(0, -50%);
	
	background-image: url(../../images/logo_w.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	
	z-index: 5!important;
	
}

/* header img */

#header-logo img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
.headerbg #header-logo {
	background-image: url(../../images/logo_w.png);
}
.headerbg #header-logo.wh {
	background-image: url(../../images/logo_w.png);
}
.headerbg .header-spmenu {
	margin: 0 15px;
}

/* header entry */

.head-entry-b {
	width: 320px;
	height: 110px;
	display: table;
	float: right;
}
.head-entry-b a {
	width: 50%;
	display: table-cell;
	color: #FFF;
	font-size: 2rem;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	background-color: #d90000;
	border: 4px solid #d90000;
	padding: 5%;
}
.head-entry-b a:hover {
	color: #d90000;
	background-color: #FFF;
}
.head-entry-b a:nth-of-type(2) {
	background-color: #001fd9;
	border: 3px solid #001fd9;
}
.head-entry-b a:nth-of-type(2):hover {
	color: #001fd9;
	background-color: #FFF;
}

/* header SP */

.header-spmenu {
	width: 60px;
	height: 55px;
	display: block;
	position: relative;
	float: right;
	text-align: center;
	background-color: #333;
	cursor: pointer;
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	margin: 15px;
}
.header-spmenu span {
	width: 38%;
	height: 2px;
	display: block;
	position: absolute;
	background-color: #CCC;
	border-radius: 2px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.header-spmenu span:nth-of-type(1) {
	top: 37%;
}
.header-spmenu span:nth-of-type(3) {
	top: 63%;
}
.header-spmenu:hover span:nth-of-type(1) {
	top: 50%;
}
.header-spmenu:hover span:nth-of-type(2) {
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	transform: translate(-50%, -50%) rotate(90deg);
}
.header-spmenu:hover span:nth-of-type(3) {
	top: 50%;
}
.header-spmenu img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

/*==================================================
	
	Navi
	=================================================*/
	
	
nav {
	/* モバイルメニュー幅 */
	width: 240px;
	height: 100vh;
	position: absolute;
	background-color: #d21b18;
	/*background-image: url(../../images/navi_bg.jpg);*/
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	top: 0;
	right: -240px;
	-webkit-transform: translate(0, 0); /* Safari用 */
	transform: translate(0, 0);
	margin-top: 0;
	margin-right: 0;
	padding: 0;
	z-index: 1003!important;
}

nav > ul {
	width: 100%;
	height: 100%;
	position: relative;
	display: block;
	padding: 0;
	overflow: hidden;
}
nav > ul > li {
	width: 100%;
	display: block;
	border-bottom: 1px solid #c55b5a;
}
nav > ul > li.blank {
	background-image: url(../images/blank_w_icon.png);
	background-position: right 20px center;
	background-repeat: no-repeat;
	background-size: auto;
}
nav > ul > li br {
	display: none;
}
nav > ul > li > a {
	width: 100%;
	display: block;
	font-size: 1.4rem;
	color: #FFF;
	text-align: left;
	text-decoration: none;
	padding: 5% 5% 5% 5%;
}
nav > ul > li > a:hover {
	color: #CCC;
}
/* メインメニューのサブタイトル */

nav > ul > li > a span {
	font-size: 80%;
	color: #CCC;
	letter-spacing: 0;
}

/* メインメニューのオーバーカラー */

nav > ul > li > a:hover {

}
nav > ul > li > ul {
	width: 100%;
	position: relative;
	background-color: #FFF;
	border-left: none;
	visibility: visible;
	opacity: 1;
	transition: 0s;
	left: 0;
	-webkit-transform: translate(0, 0); /* Safari用 */
	transform: translate(0, 0);
	padding: 0;
}
nav li:hover ul {
	top: 0;
	left: 0;
	-webkit-transform: translate(0, 0); /* Safari用 */
	transform: translate(0, 0);
}

/* サブメニュー表示設定 */

nav li:hover ul {
	visibility: visible;
	top: 100%;
	right: 0;
	opacity: 1;
}
nav li ul li a {
	visibility: visible;
	opacity: 1;
	transition: 0s;
}
nav > ul > li > ul li a:hover {
	background-color: #CCC;
}
nav li:hover ul li a {
	visibility: visible;
	opacity: 1;
}

/* サブメニュー詳細設定 */

nav > ul > li > ul li {
	width: 100%;
	float: none;
	border-top: 1px solid #CCC;
	border-bottom: 0;
	padding: 0;
}
nav > ul > li > ul li a {
	width: 100%;
	display: block;
	font-size: 1.5rem;
	color: #000;
	text-align: left;
	text-decoration: none;
	padding: 5% 5% 5% 35px;
}

/*  img */

nav > ul > li > ul li a img {
	display: none;
}
.entry-button {
	background-color: #d90000;
	background-image: url(../images/blank_w_icon.png);
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: auto;
}
.corprate-button {
	background-color: #001fd9;
	background-image: url(../images/blank_w_icon.png);
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: auto;
}
.close-button {
	width: 80%;
	cursor: pointer;
	font-size: 1.4rem;
	color: #FFF;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
	border: none;
	margin: 20px auto;
	padding: 10px 5px;
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.close-button:hover {
	background-color: #333;
}

.pc-only {
	display: block;
}
.sp-only {
	display: none;
}


/*==================================================

scroll button
=================================================*/

.scroll-item {
	width: 40px;
	height: 70px;
	position: relative;
	margin: 0 auto;
}
@-webkit-keyframes ani-mouse {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}
@-moz-keyframes ani-mouse {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}
@keyframes ani-mouse {
    0% {
    opacity: 1;
    top: 29%;
    }
    15% {
    opacity: 1;
    top: 50%;
    }
    50% {
    opacity: 0;
    top: 50%;
    }
    100% {
    opacity: 0;
    top: 29%;
    }
}
 .scroll-btn {
	display: block;
	position: absolute;
	left: 50%;
	-webkit-transform: translate(-50%, 0); /* Safari用 */
	transform: translate(-50%, 0);
	text-align: center;
}
.scroll-btn > * {
    display: inline-block;
    line-height: 18px;
    font-size: 1rem;
	letter-spacing: 0;
    font-weight: normal;
    color: #666;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
    color: #666;
}
/*
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
    opacity: 0.8;
    filter: alpha(opacity=80);
}
*/
.scroll-btn .mouse {
    position: relative;
    display: block;
    width: 20px;
    height: 35px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #666;
    border-radius: 18px;
}
.scroll-btn .mouse > * {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 4px;
    height: 8px;
    margin: -4px 0 0 -2px;
    background: #666;
    -webkit-animation: ani-mouse 2.5s linear infinite;
    -moz-animation: ani-mouse 2.5s linear infinite;
    animation: ani-mouse 2.5s linear infinite;
}

/*==================================================

contents
=================================================*/

#contents {
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 0 0 150px;
	z-index: 7!important;
}
.nomb {
	padding: 0!important;
}
.contents-section {
	width: 100%;
	max-width: 1400px;
	position: relative;
	margin: 80px auto 0;
}
.contents-section-full {
	width: 100%;
	position: relative;
	margin: 80px auto 0;
}
.contents-inner {
	width: 90%;
	max-width: 1000px;
	position: relative;
	margin: 0 auto;
}
.contents-item {
	width: 90%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
}
.dot-item {
	width: 100%;
	height: 100%;
	position: absolute;
	background: url('../images/dot.png') repeat;
	background-size: auto;
	top: 0;
	left: 0;
	z-index: 1;
}
.anchor-item {
	width: 1px;
	height: 1px;
	position: absolute;
	top: -120px;
	left: 0;
}

.click-b {
	width: 90%;
	max-width: 600px;
	display: block;
	color: #000;
	font-size: 2.2rem;
	text-align: center;
	letter-spacing: .2em;
	text-decoration: none;
	border: 3px solid #999;
	background-color: #FFF;
	margin: 80px auto 0;
	padding: 1.5em 1em;
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.click-b:hover {
	opacity: 1;
	color: #7ec700;
	border: 3px solid #7ec700;
	background-color: #FFF;
}
.click-b.gray {
	color: #333;
	border: 3px solid #e2e2e2;
	background-color: #e2e2e2;
}
.click-b.gray:hover {
	opacity: 1;
	color: #0060b1;
	border: 3px solid #0060b1;
	background-color: #FFF;
}


/* cf */
#contents:after,.contents-inner:after {
    content:" ";
    display:block;
    clear:both;
}

.category-title {
	width: 90%;
	font-size: 5rem;
	color: #999;
	text-align: center;
	line-height: 140%;
	font-weight: 300;
	letter-spacing: 0.04em;
	margin: 0 auto;
}
.category-title span {
	display: block;
	font-size: 1.6rem;
	font-weight: 400;
}

/* 印刷時 */

@media print {
	header {
		position: absolute;
	}
	html {
		background: #FFF;
	}
	body {
		color: #000;
	}
}

/*==================================================

button
=================================================*/

/* ボタン */

.button {
	width: 100%;
	max-width: 250px;
	display: block;
	position: relative;
	cursor: pointer;
	font-size: 1.5rem;
	color: #FFF;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
	font-weight: 500;
	background-color: #ce1a18;
	border: 2px solid #ce1a18;
	padding: 1em 1em;
}
.button:hover {
	opacity: 1;
	color: #ce1a18;
	background-color: #FFF;
}
.button.rt {
	margin: 0 0 0 auto;
}
.button:before {
	content:url(../images/opt_arrow.png);
	width: 19px;
	height: 19px;
	display: block;
	position: absolute;
	top: 48%;
	right: 0;
	-webkit-transform: translate(-15px, -50%); 
	transform: translate(-15px, -50%);
	z-index: 1;
	
	/* animation */
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.button:hover:before {
	-webkit-transform: translate(-10px, -50%); 
	transform: translate(-10px, -50%);
}

.list-button {
	width: 100%;
	max-width: 315px;
	display: block;
	cursor: pointer;
	color: #000;
	text-align: center;
	text-decoration: none;
	border: 3px solid #999;
	background-color: #FFF;
	background-image: url(../images/icon_mail.png);
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: auto;
	margin: 20px auto;
	padding: 15px 1em;
}
.list-button:hover {
	opacity: 1;
	color: #FFF;
	border: 3px solid #333;
	background-color: #333;
}

[class^="button"] {
	
	/* animation */
	
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

/*==================================================

map
=================================================*/

.map {
	width: 100%;
	height: 430px;
	position: relative;
	overflow: hidden;
	margin: 0;
}
.map iframe,
.map object,
.map embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*==================================================

table
=================================================*/

.data-tstyle {
	width: 100%;
	background-color: #FFF;
}
.data-tstyle th {
	width: 14em;
	text-align: left;
	font-weight: normal;
	border-bottom: 2px solid #ce1a18;
	padding: 2em;
}
.data-tstyle th span {
	font-size: 1rem;
	color: #F00;
}
.data-tstyle td {
	text-align: left;
	border-bottom: 2px solid #999;
	padding: 2em;
}
.data-tstyle tr:nth-last-of-type(1) th {
	border-bottom: none;
}
.data-tstyle tr:nth-last-of-type(1) td {
	border-bottom: none;
}
.data-tstyle td span {
	font-size: 1.4rem;
	color: #F00;
}
.data-tstyle.list {
	width: 100%;
	background-color: #FFF;
	margin-top: 40px;
}
.data-tstyle.list tr:nth-of-type(odd) {
	background-color: #EEE;
}
.data-tstyle.list th {
	background-color: transparent;
}
.data-tstyle.list td {
	border-bottom: none;
}

.data-equipment {
	width: 100%;
	max-width: 1000px;
	background-color: #FFF;
}
.data-equipment tr {
	
}
.data-equipment tr:nth-of-type(odd) {
	background-color: #FFF;
}
.data-equipment td:nth-last-of-type(1) {
	text-align: center;
	border-left: 2px solid #999;
}
.data-equipment th {
	width: 20%;
	min-width: 8em;
	line-height: 140%;
	text-align: left;
	background-color: transparent;
	font-weight: normal;
	border-bottom: 2px solid #ce1a18;
	padding: 2em;
}
.data-equipment td {
	text-align: left;
	line-height: 140%;
	border-bottom: 2px solid #999;
	padding: 2em;
}

.paging {
	display: table;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	margin: 8% auto 0;
}
.paging li {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	border-left: 1px solid #000;
}
.paging li a {
	display: block;
	color: #999;
	text-decoration: none;
	padding: .2em 1em;
}
.paging li a.active {
	color: #FFF;
	background-color: #000;
}
.paging li a:hover {
	color: #FFF;
	background-color: #000;
}


/*==================================================

footer
=================================================*/

/*==================================================

footer
=================================================*/

.pagetop {
	width: 150px;
	height: 45px;
	position: fixed;
	right: -150px;
	bottom: 150px;
	z-index: 1001!important;
	
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.pagetop-visible {
	right: 0;
}
#footer-pagetop {
	width: 100%;
	max-width: 49px;
	text-align: center;
	margin: 5% auto 0;
}
#footer-banner {
	width: 100%;
	max-width: 1200px;
	margin: 80px auto 0;
}
footer {
	width: 100%;
	background-color: #FFF;
}
footer .footer-logo {
	width: 90%;
	max-width: 477px;
	margin: 0 auto;
	padding: 50px 0 0;
}
footer .footer-head {
	width: 100%;
	max-width: 1200px;
	display: table;
	position: relative;
	z-index: 5!important;
	margin: 0 auto;
}
.footer-inner {
	width: 50%;
	display: table-cell;
	vertical-align: top;
	padding: 40px 0;
}
.footer-head > div:nth-of-type(1) .inner {
	border-right: 1px solid #CCC;
}
.footer-inner .inner {
	width: 100%;
	margin: 0 0 0 auto;
	padding: 0 50px;
}
.footer-inner .inner p {
	max-width: 400px;
	color: #FFF;
	text-align: center;
	background-color: #333;
	border-radius: 30px;
	margin: 0 auto;
	padding: 10px;
}
.footer-inner .inner p a {
	font-size: 1.2rem;
	color: #FFF;
	text-decoration: none;
}
.footer-inner .inner ul {
	text-align: center;
	margin-top: 20px;
}
.footer-inner .inner ul li {
	display: block;
	color: #d01b18;
	font-size: 1.8rem;
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
	margin: 10px auto 0;
}
.footer-inner .inner ul li a {
	color: #000;
	text-decoration: none;
}
.footer-inner .inner ul li strong {
	color: #000;
	font-size: 3rem;
}

footer .footer-bottom {
	width: 100%;
	position: relative;
	background-color: #000;
	background-image: url(../../images/footer_ar_l.png),url(../../images/footer_ar_r.png),url(../../images/footer_bg.jpg);
	background-position: left top,right top,center center;
	background-repeat: no-repeat,no-repeat,no-repeat;
	background-size: auto,auto,cover;
}
footer .footer-bottom .inner {
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 60px 0;
}
footer .footer-bottom .inner:after {
	content: " ";
	display: block;
	clear: both;
}
footer .footer-bottom .inner .footer-mark {
	width: 30%;
	max-width: 262px;
	float: right;
	line-height: 0;
}
footer .footer-bottom .inner .footer-menu {
	width: 65%;
	float: left;
}
footer .footer-bottom .inner .footer-menu > ul {
	width: 85%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
footer .footer-bottom .inner .footer-menu > ul > li {
	width: 50%;
	line-height: 180%;
	padding: 2% 5% 0 0;
}
footer .footer-bottom .inner .footer-menu ul li a {
	color: #FFF;
	text-decoration: none;
}
footer .footer-bottom .inner .footer-menu ul li ul li {
	padding: 0;
}
footer .footer-bottom .inner .footer-menu ul li ul li a {
	font-size: 1.4rem;
}
.footer-tel {
	font-size: 2rem;
	color: #FFF;
	line-height: 180%;
	font-weight: 500;
	letter-spacing: .1em;
	text-align: right;
	margin-top: 5%;
}
footer .footer-bottom .link {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}
footer .footer-bottom .link h2 {
    width: 100%;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: normal;
    margin-top: 5%;
}
footer .footer-bottom .link a {
    width: 40%;
    max-width: 376px;
    display: block;
    background-color: #fff;
    margin: 2% 2% 0 0;
}
footer .footer-bottom .link img {
    width: 100%;
	max-width: 100%;
	height: auto;
}

#copyright {
	color: #FFF;
	line-height: 180%;
	text-align: center;
	background-color: #ce1a18;
	margin-top: 3%;
	padding: 20px;
}
#copyright p {
	font-size: 1.2rem;
	text-align: center;
}
#copyright a {
	color: #FFF;
	text-decoration: none;
}

/* footer img */

#footer-pagetop img,.footer-logo img,#footer-banner img {
	width: 100%;
	max-width: 100%;
	height: auto;	
}

/* footer cf */

.footer-inner:after,.footer-menu:after,.foot-item .inner:after,.footer-add:after {
    content:" ";
    display:block;
    clear:both;
}

@media only screen and (min-width:1px) and (max-width: 800px) {
	
	footer {
		width: 100%;
	}
	footer .footer-logo {
		padding: 8% 0;
	}
	footer .footer-head {
		width: 100%;
		display: block;
	}
	.footer-head > div:nth-of-type(1) .inner {
		border-right: none;
	}
	.footer-inner {
		width: 100%;
		display: block;
		padding: 0 0 5%;
	}
	.footer-inner .inner {
		width: 100%;
		color: #FFF;
		margin: 0 0 0 auto;
		padding: 0 50px;
	}
	.footer-inner .inner ul li {
		margin: 10px auto 0;
	}
	.footer-inner .inner ul li strong {
		font-size: 2.4rem;
		font-weight: 500;
	}
	footer .footer-bottom {
		background-size: 40px,40px,cover;
	}
	footer .footer-bottom .inner {
		width: 90%;
		max-width: 1000px;
		margin: 0 auto;
		padding: 5% 0;
	}
	footer .footer-bottom .inner .footer-mark {
		width: 100%;
		max-width: 262px;
		float: none;
		margin: 5% auto 0;
	}
	footer .footer-bottom .inner .footer-menu {
		width: 80%;
		float: none;
		margin: 0 auto;
	}
	footer .footer-bottom .inner .footer-menu ul {
		width: 100%;
	}
	footer .footer-bottom .inner .footer-menu ul li {
		width: 100%;
		text-align: center;
		padding: 8px 0 0 0;
	}
	footer .footer-bottom .inner .footer-menu ul li.full {
		width: 100%;
	}
	footer .footer-bottom .inner .footer-menu ul li a {
		font-size: 1.4rem;
		color: #FFF;
		text-decoration: none;
	}
	.footer-tel {
		text-align: center;
		margin-top: 3%;
	}
    
    footer .footer-bottom .link {
        width: 100%;
        max-width: 376px;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
    footer .footer-bottom .link a {
        width: 100%;
        display: block;
        background-color: #fff;
        margin: 3% 0 0;
    }
    footer .footer-bottom .link h2 {
        text-align: center;
    }
	
}

@media only screen and (min-width:1px) and (max-width: 768px) {
	
	#wrapper {
		width: 100%;
		min-width: 100%;
	}
	
	/*==================================================
	
	header
	=================================================*/
	
	header {
		width: 100%;
		min-width: 100%;
		position: fixed;
		background-color: rgba(0, 0, 0, 0);
	}
	#header-inner {
		width: 100%;
		position: relative;
		background-image: url(../../images/index_01_sp.png);
		background-position: right center;
		background-size: cover;
		margin: 0 auto;
		padding: 0;
	}
	.head-entry-b {
		display: none;
	}
	#header-logo {
		width: 70%;
		max-width: 300px;
		position: relative;
		float: left;
		top: 0;
		left: 0;
		-webkit-transform: translate(0, 0); /* Safari用 */
		transform: translate(0, 0);
		margin: 12px 0 12px 3%;
		padding: 0;
	}	
	.headerbg #header-logo {
		width: 70%;
		max-width: 300px;
		position: relative;
		top: 0;
		left: 0;
		-webkit-transform: translate(0, 0); /* Safari用 */
		transform: translate(0, 0);
	}
	
	/* header img */

	#header-logo img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
	
	/* header SP*/
	
	.header-spmenu {
		width: 45px;
		height: 45px;
		display: block;
		position: relative;
		float: right;
		text-align: center;
		cursor: pointer;
		margin: 8px 3% 12px 0;
	}
	.header-spmenu span {
		width: 45%;
		height: 2px;
	}
	.header-spmenu span:nth-of-type(1) {
		top: 33%;
	}
	.header-spmenu span:nth-of-type(3) {
		top: 67%;
	}
	.headerbg {
		background-color: rgba(0, 0, 0, 0);
	}
	.headerbg .header-spmenu {
		margin: 8px 3% 12px 0;
	}
	/*==================================================
	
	Navi
	=================================================*/
	
	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
	
	/*==================================================
	
	contents
	==================================================*/
	
	#contents {
		padding: 0 0 15%;
	}
	.contents-section {
		margin: 8% auto 0;
	}
	.contents-inner {
		margin: 0 auto;
	}
	.contents-section-full {
		margin-top: 8%;
	}
	.category-title {
		font-size: 3rem;
	}
	.click-b {
		font-size: 2rem;
		margin-top: 8%;
	}
	.anchor-item {
		top: -80px;
	}
	
	/*==================================================
	
	map
	==================================================*/
	
	.map {
		width: 100%;
		height: 240px;
	}
	
	/*==================================================
	
	table
	==================================================*/
	
	.data-tstyle {
		width: 100%;
	}
	.data-tstyle th {
		width: 100%;
		display: block;
		color: #FFF;
		background-color: #666;
		border: none;
		padding: .8em 1em;
	}
	.data-tstyle td {
		width: 100%;
		display: block;
		text-align: left;
		border: none;
		padding: .8em 1em;
	}
	
	.data-tstyle.list {
		width: 100%;
		background-color: #FFF;
		margin-top: 5%;
	}
	.data-tstyle.list tr:nth-of-type(odd) {
		background-color: transparent;
	}
	.data-tstyle.list th {
		background-color: #EEE;
	}
	.data-tstyle.list td:nth-of-type(1) {
		border-left: none;
		background-color: #FFF;
		margin-bottom: 0;
		padding: 0 1em 1em;
	}
	
	.data-equipment {
		font-size: 1.4rem;
	}
	.data-equipment th {
		padding: 1em;
	}
	.data-equipment td {
		padding: 1em;
	}
	.paging li a {
		font-size: 1.4rem;
		padding: 0 .8em;
	}
	
	/*==================================================
	
	footer
	=================================================*/
	
	.pagetop {
		bottom: 150px;
	}
	.pagetop-visible {
		right: -100px;
	}
	#copyright {
		font-size: 1.2rem;
		text-align: center;
	}
	
}

/*==================================================

size s
==================================================*/

@media only screen and (min-width:1px) and (max-width: 568px) {
	
	
	/*==================================================
	
	header
	==================================================*/

		
	/*==================================================
	
	Navi
	==================================================*/
	
	
	/*==================================================
	
	contents
	==================================================*/
	
	
	/*==================================================
	
	footer
	==================================================*/
	
	.footer-entry {
		width: 100%;
		display: block;
	}
	.footer-entry li {
		width: 100%;
	}
	.footer-entry li a {
		padding: 5% 3%;
	}

}

@media only screen and (min-width:1px) and (max-width: 480px) {
	
	
	/*==================================================
	
	header
	==================================================*/

	
	/*==================================================
	
	Navi
	==================================================*/
	
	
	/*==================================================
	
	contents
	==================================================*/
	
	
	/*==================================================
	
	table
	==================================================*/
	

	/*==================================================
	
	footer
	==================================================*/
	
	
}