@charset "UTF-8";
/* CSS Document */

html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, strong, img, a, table, tr, th, td,
article, header, footer, aside, figure, figcaption, picture, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: normal;
	font-size: 100%;
	text-decoration: none;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ol, ul {
	list-style: none;
	list-style-type: none;
}

img {
	vertical-align: bottom;
}

html { font-size: 62.5%; }

body {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size: 1.3rem;
	color: #333;
	line-height: 1.7;
}

a {
	color: #333;
	-webkit-transition: all .2s;
	transition: all .2s;
}

a:hover {
	filter:alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
}




/*===============================================
	Common
===============================================*/
@media screen and (min-width: 960px) {
	#header {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		width: 100%;
		height:  60px;
		background:  #fff;
		display: flex;
		align-items: center;
		padding-left: 20px;
	}

	.head-logo {
		width: 15%;
		max-width: 200px;
		padding-right: 20px;
	}

	.head-logo img {
		width: 100%;
	}

	#nav-drawer {
		flex: 1;
	}

	.nav-unshown {
	  display:none;
	}

	.nav-logo,
	.nav-inquiry {
		display: none;
	}

	.head-navi {
		display: flex;
		align-items: center;
		flex: 1;
		justify-content: space-between;
		padding-right: 20px;
		max-width: 1200px;
		margin: 0 auto;
	}

	.head-navi li {
		text-align: center;
	}
	.head-navi a {
		display: block;
		padding: 0 0.5rem;
	}

	.head-inquiry {
		width: 310px;
		position: relative;
		top: 10px;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	.head-inquiry p {
		float: left;
	}

	.head-inquiry p img {
		width: 100%;
	}
	.head-tel a,
	.foot-tel a {
		pointer-events: none;
	}
}

@media screen and (max-width: 959px) {
	header {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;

		width: 100%;
		height: 46px;
		background:  #fff;
		padding-left: 4%;

		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.head-logo {
		max-width: 160px;
		padding-right: 20px;
	}

	.head-logo img {
		width: 100%;
	}

	#nav-drawer {
		width: 40px;
		position: relative;
		flex: none;
	}

	/*チェックボックス等は非表示に*/
	.nav-unshown {
		display:none;
	}

	/*アイコンのスペース*/
	#nav-open {
		display: inline-block;
		width: 30px;
		height: 22px;
		vertical-align: middle;
	}

	/*ハンバーガーアイコンをCSSだけで表現*/
	#nav-open span, #nav-open span:before, #nav-open span:after {
		position: absolute;
		height: 3px;/*線の太さ*/
		width: 25px;/*長さ*/
		border-radius: 3px;
		background: #13479c;
		display: block;
		content: '';
		cursor: pointer;
	}
	#nav-open span:before {
		bottom: -8px;
	}
	#nav-open span:after {
		bottom: -16px;
	}

	/*閉じる用の薄黒カバー*/
	#nav-close {
		display: none;/*はじめは隠しておく*/
		position: fixed;
		z-index: 999;
		top: 0;/*全体に広がるように*/
		left: 0;
		width: 100%;
		height: 100%;
		background: black;
		opacity: 0;
		transition: .3s ease-in-out;
	}

	/*中身*/
	#nav-content {
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 9999;/*最前面に*/
		width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
		max-width: 280px;/*最大幅（調整してください）*/
		height: 100%;
		background: #fff;/*背景色*/
		transition: .3s ease-in-out;/*滑らかに表示*/
		-webkit-transform: translateX(105%);
		transform: translateX(105%);/*左に隠しておく*/
	}

	/*チェックが入ったらもろもろ表示*/
	#nav-input:checked ~ #nav-close {
		display: block;/*カバーを表示*/
		opacity: .5;
	}

	#nav-input:checked ~ #nav-content {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);/*中身を表示（右へスライド）*/
		box-shadow: 6px 0 25px rgba(0,0,0,.15);
	}
	
	
	#nav-content {
		background: #13479c;
		color: #fff;
	}
		
	.nav-logo {
		display: block;
		width: 200px;
		margin: 1rem;
	}

	.head-navi {
		display: block;
		border-top: 1px solid #3359a4;
		padding-right: 0;
	}
	
	.head-navi li {
		text-align: left;
		font-size: 100%;
		border-bottom: 1px solid #3359a4;
	}
	
	.head-navi li a {
		display:  block;
		padding: 1rem;
		position: relative;
		color: #fff;
	}

	.head-navi li a:after {
		content: "";
		position: absolute;
		right: 2em;
		top: 1.2em;
		width: 6px;
		height: 6px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	.nav-inquiry {
		padding: 2rem;
		text-align: center;
		margin-left: auto;
	}

	.nav-inquiry .foot-mail a {
		display: block;
		color: #fff;
		text-align: center;
		border: 2px solid #fff;
		padding: 0.5em;
	}

	.nav-inquiry .foot-mail a:before {
		content: url(../img/inquiry_mail.png);
		vertical-align: middle;
		margin-right: 1em;
	}

	.nav-inquiry img {
		width: 100%;
		margin: 1rem 0;
	}
	
	.nav-inquiry .nav-logo {
		width: 100%;
		text-align: center;
		margin: 2rem 0;
		background: #fff;
	}
	
	.nav-inquiry .nav-logo img {
		width: 50%;
	}
	
	.head-inquiry {
		position: fixed;
		right: 0;
		bottom: 0;
		top: auto;
		z-index: 100;
		width: 217px;
		visibility: visible;
		transition: 0.3s opacity;
	}
	
	.head-inquiry.fideout {	
		visibility: hidden;
		opacity: 0;
	}
	
	.head-inquiry p {
		float: left;
	}

	.head-inquiry .head-tel {
		width: 161px;
	}

	.head-inquiry .head-mail {
		width: 56px;
	}	

	.head-inquiry img {
		width: 100%;
	}
	
	.head-tel a,
	.foot-tel a {
		pointer-events: auto;
	}
	
}




#page {
	padding-top: 60px;
}

#page h1.pagehead {
	height: 160px;
	background: url(../img/bg_pagehead.png) center center;
	display: flex;
	align-items: center;
	justify-content: center;
}

#page h1.pagehead span {
	text-align: center;
    color: #13479c;
	font-size: 200%;
    font-weight: bold;
}

#page #contents {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 30px;
}

#page #breadcrumb {
	font-size: 90%;
	margin-bottom: 50px;
}

#page #breadcrumb ol {
	height: 30px;
	display: flex;
	align-items: center;
}


#page #breadcrumb li a {
    color: #13479c;
}

#page #breadcrumb li:last-child a {
	color: #888;
}

#page #breadcrumb li {
	padding-right: 0.2em;
}
#page #breadcrumb li+li{
	position: relative;
	padding-left: 1.2em;
}
	
#page #breadcrumb li+li:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	vertical-align: middle;
	left: 3px;
	width: 4px;
	height: 4px;
	border-top: 1px solid #888;
	border-right: 1px solid #888;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


@media screen and (max-width: 959px) {
	#page {
		padding-top: 46px;
	}

	#page h1.pagehead {
		height: 80px;
		background-size: auto 80px;
	}
	#page h1.pagehead span {
		font-size: 180%;
	}
	
	#page #contents {
		padding: 0 4%;
	}
	#page #breadcrumb {
		margin-bottom: 10px;
	}
}


#inquiry {
	max-width: 100%;
	background: #13479c;
	color: #fff;
	padding: 60px 0;
}

#inquiry h3 {
	text-align: center;
	font-size: 150%;
	margin-bottom: 1em;
}

#inquiry h3 span {
	display: inline-block;
	background: #d2152c;
	color: #fff;
	font-weight: bold;
	padding: 0 0.5em;
	margin-right: 0.5em;
}

#inquiry > div {
	max-width: 770px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

#inquiry > div p {

}

#inquiry img {
	width: 100%;
}

#inquiry .foot-mail a {
	display: block;
	color: #fff;
	text-align: center;
	border: 2px solid #fff;
	padding: 1em;
}

#inquiry .foot-mail a:before {
	content: url(../img/inquiry_mail.png);
	vertical-align: middle;
	margin-right: 1em;
}

@media screen and (max-width: 959px) {
	#inquiry {
		padding: 5vh 4%;
	}
	
	#inquiry h3 {
		font-size: 120%;
	}
	
}

@media screen and (max-width: 768px) {
	#inquiry > div {
		display: block;
		width: 92%;
		margin: 0 auto;
	}
	
		#inquiry h3 {
		font-size: 100%;
	}

	#inquiry h3 span {
		display: block;
		width: 10em;
		margin: 0 auto;
	}
	#inquiry .foot-mail {
		margin-top: 2em;
		font-size: 90%;
	}
}


#footnav{
	max-width: 1160px;
	margin: 0 auto;
	padding: 60px 30px;
	font-size: 90%;
	overflow: hidden;
}

footer .campany {
	width: 40%;
	float: left;
}

footer .campany b {
	display: inline-block;
	color: #0f206a;
	font-size: 120%;
	margin: 10px 0 0;
}

footer nav {
	width: 60%;
	float:right;
	
	display: flex;
	justify-content: space-between;
}

footer nav li {
	margin-bottom: 0.8em;
	list-style-type: disc;
}

footer aside {
	clear: both;
	background: #13479c;
	color: #fff;
	font-size: 90%;
	text-align: center;
	padding: 2em;
}

@media screen and (max-width: 959px) {
	#footnav {
		padding: 5vh 0;
	}
	
	footer .campany,
	footer nav {
		width: 96%;
		margin: 0 auto;
	}
	
	footer .campany {
		text-align: center;
	}
	
	footer .foot-logo img {
		width: 100%;
		max-width: 180px;
	}
	
	footer nav ul {
		text-align: center;
		margin: 4rem auto 0;
	}
	
	footer nav li {	
		display: inline-block;
		margin-right: 1em;
		font-size: 80%;
	}
	
	footer nav li+li:before {
		content: "|";
		margin-right: 1em;
	}
	
	footer nav ul:first-child,
	footer nav ul:nth-of-type(2){
		display: none;
	}
	
	footer aside {
		font-size: 80%;
		padding: 1em;
	}

}





/*===============================================
	Top page
===============================================*/

@media screen and (min-width: 960px) {
	#topimg {
		height: 100vh;
		position: relative;
	}

	#topimg #main {
		width:  100%;
		height: calc(100vh - 60px);
		min-height: 450px;
		overflow: hidden;

		background: url(../img/head_img.jpg) no-repeat center center;
		background-size: cover;
		position: fixed;

		display: flex;
		align-items: center;
	}	

	#main .catch {
		margin-left: 8%;
	}

	#main .catch:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		width: 40%;
		min-width: 650px;
		height: 120vh;
		margin-top: -10vh;
		margin-left: -80px;
		background: rgba(19,71,156,0.9);
		color: #fff;	
		-webkit-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	
	#main .catch p {
		margin: 3rem 0 5rem;
		font-size: calc(100% + 0.3vw);
		color: #fff;
	}

	#topimg #header {
		position: absolute;
		top: auto;
		left: 0;
		bottom: 0;
	}
	#topimg .head-inquiry {
		top: -10px;
	}

	#header.fixed {
		position: fixed !important;
		top: 0 !important;
		left: 0;
		z-index: 100;
	}

	#header.fixed .head-inquiry {
		top: 10px;
	}
	
}
@media screen and (max-width: 959px) {
	#main {
		background-image: url(../img/head_img.jpg);
		background-position: center center;
		background-size: cover;
		padding: 5vh 2%;
		margin-top: 46px;
		margin-top: 46px;
	}
		
	#main .catch {
		background: rgba(19,71,156,0.7);
		padding: 4vh 3vh;
	}
	
	#main .catch p {
		font-size: calc(100% + 0.25vw);
		margin: 1rem 0 3rem 0;
		color: #fff;
	}

	
	#main .catch img {
		width: 100%;
	}
}


#toppage {
	position: relative;
    z-index: 99;
	background: #fff;
	overflow: hidden;
}

#toppage section {
	max-width: 1100px;
	margin: 150px auto 0;
}

h2 {
	text-align: center;
	color: #13479c;
	font-size: 230%;
	font-weight: bold;
	margin-bottom: 1em;
}


@media screen and (max-width: 1100px) {
	#toppage section {
		margin: 10vh auto 0;
	}
	
	h2 {
		font-size: 180%;
	}
}




#point{
	padding: 5em 0;
	position: relative;
}
#point:after {
	content: "";
	width: 80%;
	height: 100%;
	background: url(../img/point_img.jpg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 40%;
	z-index: -1;
}
#point h2 {
	text-align: left;
}

#point p {
	width: 70%;
	margin-bottom: 2em;
}

#point ol {
  counter-reset: point;
  list-style: none;
  padding: 0;
}

#point li {
	margin-top: 1em;
	font-size: 150%;
	font-weight: bold;
}

#point li br {
	display: none;
}
#point li:before {
	content: "POINT" counter(point);
	counter-increment: point;
	display: inline-block;
	width: 5em;
	text-align: center;
	background-color: #13479c;
	color: #fff;
	font-size: 80%;
	margin-right: 0.5em;
}

#point li strong {
	font-weight: bold;
	background: linear-gradient(transparent 40%, #dfe716 40%);
	position: relative;
}

@media screen and (max-width: 959px) {
	#point {
		padding: 5em 4%;
	}
}

@media screen and (max-width: 768px) {	
	#point {
		padding: 0 4%;
	}

	#point h2,
	#point p {
		width: 100%;
		text-align: center;
	}
	
	#point:after {
		display: none;
	}
	
	#point ol {
		margin: 0 auto;
	}
	#point li {
		font-size: 120%;
		text-align: center;
	}
	
	#point li:before {
		display: block;
		margin: 0 auto 0.5rem;
		padding: 0.5rem;
	}
	
	#point li br {
		display: block;
	}
}


.srv-box {
	width: 40%;
	padding: 5em 1em;
	text-align: center;
	margin: 20px 0;
	position: relative;
}

.srv-box.rental,
.srv-box.welfare,
.srv-box.sell {
	margin: 0 0 0 auto;
}

.srv-box:after {
	content: "";
	width: 200%;
	height: 100%;
	background: no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 0;
	right: auto;
	left: 100%;
}
.srv-box.night:after { background-image: url(../img/srv_night.jpg); }
.srv-box.rental:after { background-image: url(../img/srv_rental.jpg); }
.srv-box.welfare:after { background-image: url(../img/srv_welfare.jpg); }
.srv-box.darts:after { background-image: url(../img/srv_darts.jpg); }
.srv-box.sell:after { background-image: url(../img/srv_sell.jpg); }

.srv-box.rental:after,
.srv-box.welfare:after,
.srv-box.sell:after {
	right: 100%;
	left: auto;
}

.srv-box h3 {
	font-size: 175%;
	font-weight: bold;
	margin-bottom: 1rem;
}

.srv-box h3 span {
	font-size: 75%;
	font-weight: bold;
}

.srv-txt {
	min-height: 8em;
}
.btn_blue {
	margin-top: 2rem;
}

.btn_blue a {
	display:  inline-block;
	background: #13479c;
	color: #fff;
	font-weight: bold;
	padding: 1rem 3rem 1rem 2rem;
	box-shadow: 6px 6px rgba(0,0,0,0.06);
	position: relative;
}

.btn_blue a:before{
	content: "";
	position: absolute;
	right: 1em;
	top: 1.3em;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


@media screen and (max-width: 959px) {
	.srv-box {
		width: 100%;
		padding: 25vh 4% 5vh;
	}
	
	.srv-box:after {
		width: 100%;
		left: 0 !important;
		right: 0 !important;
		z-index: -1;
		height: 23vh;
	}
	
	.srv-box h3 {
		font-size: 130%;
	}
	
	.srv-txt {
		min-height: inherit;
	}

}



#machine ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

}

#machine ul li {
	width:  31%;
	border: 8px solid #f8f8f8;
	padding: 1em 1em 3em 1em;
	margin-bottom: 3%;
	text-align: center;
	position: relative;
}

#machine ul li img {
	width: 100%;
	max-width: 280px;
}

.mch-txt {
	text-align: left;
}

.mch-price {
	width: 100%;
	position: absolute;
	bottom: 0.5em;
	left: 0;
	color: #d2152c;
	font-weight: bold;
}
.mch-price span {
	font-size: 150%;
	font-weight: bold;
}

.ban-full img,
.ban-harf img {
	width: 100%;
}

.ban-full {
	margin: -10px 0 30px;
}

.ban-harf {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.ban-harf p {
	width: 49%;
}

@media screen and (max-width: 959px) {
	#machine {
		padding: 0 4%;
	}
	#machine ul li {
		width: 49%;
		border: 5px solid #f8f8f8;
	}
	.mch-txt {
		font-size: 80%;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
	}
}

@media screen and (max-width: 600px) {
	.ban-full {
		margin: 0 0 10px;
	}

	.ban-harf p {
		width: 100%;
		margin-bottom: 10px;
	}
	.mch-price span {
		font-size: 120%;
	}

}



#news dl {
	width: 70%;
	margin:  0 auto;
	border-top: 1px solid #e7e8f0;
}
#news dt {
	float: left;
	width: 9em;
	padding: 1.3em 0;
	color: #13479c;
}
#news dd {
	border-bottom: 1px solid #e7e8f0;
	padding: 1.3em 0 1.3em 9.5em;
}


@media screen and (max-width: 959px) {
	#news {
		padding: 0 4%;
	}
	#news dl {
		width: 100%;
	}
	#news dt {
		float: none;
		padding: 1.3em 0 0 0;
	}
	#news dd {
		padding: 0 0 1.3em 0;
	}
}



#link {
	max-width: 100% !important;
	background: #f3f4f7;
}

#link ul {
	max-width: 1100px;
	margin: 0 auto;
	padding: 60px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#link li {
	width: 30%;
}

#link li a {
	display: block;
	background-color: #fff;
	box-shadow: 6px 6px rgba(0,0,0,0.06);
	padding: 2em 3em 2em 6em;
	position: relative;
	background-repeat: no-repeat;
	background-position: 2em center;
}

#link li a:after{
	content: "";
	position: absolute;
	right: 2em;
	top: 2.5em;
	width: 6px;
	height: 6px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width: 959px) {
	#link ul {
		padding: 5vh 0;
	}
	
	#link li {
		width: 90%;
		margin: 0 auto 10px;
	}	
	#link li a {
		padding: 1em 1.5em 1em 3em;
		background-position: 1em center;
		background-size: 20px;
	}
	
	#link li a:after{
		top: 1.5em;
	}
	
	
}
