@charset "utf-8";

*{
	font-size: 100%;
	font-family: 'Noto Serif JP', "游明朝体", "Yu Mincho", YuMincho, "黎ミン L","Reimin Light", "ヒラギノ明朝 ProN W6","HiraMinProN-W6","HG明朝E","ＭＳ Ｐ明朝","MS PMincho","MS 明朝",serif;
}

html{
	word-break:break-all;
	//overflow-y: auto;
	color: #333;
	letter-spacing: 0.05em;
	scroll-behavior: smooth;
}

body{
	backface-visibility: hidden;
}

a{
	color:#333;
	text-decoration:none;
}

a:hover{
	text-decoration:underline;
}

::selection {
	background: #505050;
	color: #fff;
}

body,
header,
footer,
main,
section {
	display: block;
}

section > h2 {
	font-size: 2.5em;
	text-align: center;
	margin: 0 auto;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 750px) {
section > h2 {
	font-size: 1.8em;
}
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
header
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

header {
	position: relative;
	min-height: 100vh;
}

	div#header_box {
		background-color: rgba(255,255,255,0.75);
		padding: 10px 0;
	}
	
		div#header_box > div {
			width: calc(100% - 20px);
			max-width: 1080px;
			margin: 0 auto;
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			align-items: center;
			height: 100px;
			position: relative;
		}
		
			div#header_box > div > h1 {
				width: calc(100% - 20px);
				max-width: 200px;
			}
			
				div#header_box > div > h1 > p {
					font-size: 0.85em;
					text-align: center;
				}
			
				h1 > img {
					width: 100%;
					margin: 5px 0 0;
				}

nav {
	display: flex;
	width: calc(100% - 260px);
	flex-wrap: wrap;
	justify-content: space-between;
}

	nav > a {
		display: flex;
		align-items: center;
		padding: 5px 10px;
		letter-spacing: 0.1em;
	}


.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	display: none;
	position: absolute;
	width: 36px;
	height: 26px;
	background: none;
	border: none;
	appearance: none;
	cursor: pointer;
	top: 18px;
	right: 15px;
	z-index: 100;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #333;
	border-radius: 2px;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 12px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}

.menu-trigger::after {
	position: absolute;
	left: 0;
	bottom: -25px;
	content: 'MENU';
	display: block;
	width: 100%;
	color: #333;
	font-size: 0.7em;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	transition: all .4s;
}
.menu-trigger.active::after {
	content: 'CLOSE';
	bottom: -25px;
}
.menu-trigger.active span:nth-of-type(1) {
	transform: translateY(12px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	transform: translateY(-12px) rotate(45deg);
}



@media screen and (max-width: 800px) {
			div#header_box > div > h1 {
				max-width: 140px;
			}
			
				div#header_box > div > h1 > p {
					font-size: 0.7em;
				}
nav {
	width: calc(100% - 160px);
}

	nav > a {
		font-size: 0.9em;
	}
}

@media screen and (max-width: 700px) {
nav {
	max-width: 400px;
	justify-content: flex-end;
}
	nav > a {
		margin: 0 10px;
	}
}

@media screen and (max-width: 550px) {
	div#header_box {
		padding: 0;
	}
	
		div#header_box > div {
			padding: 20px 0;
			justify-content: center;
			height: auto;
		}
		
			div#header_box > div > h1 {
				max-width: 180px;
			}
			
				div#header_box > div > h1 > p {
					font-size: 0.9em;
				}

.menu-trigger {
	display: inline-block;
}

nav {
	position: fixed;
	top: 0;
	right: -400px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	width: 100%;
	max-width: 300px;
	height: 100vh;
	box-sizing: border-box;
	z-index: 7;
	//background-color: rgba(150,40,27,0.85);
	background-color: rgba(255,255,255,0.9);
	margin: 0;
	padding: 100px 0;
}

	nav > a {
		display: block;
		width: 100%;
		box-sizing: border-box;
		text-align: center;
		//color: #fff;
	}

nav.active {
	animation: nav_open 1.2s ;
	animation-timing-function: ease;
	animation-iteration-count: 1;
	right: 0;
}

nav.close {
	animation: nav_close 1.2s ;
	animation-timing-function: ease;
	animation-iteration-count: 1;
	right: -400px;
}

@keyframes nav_close {
	0% {
		right: 0;
	}
	100% {
		right: -400px;
	}
}
}

@keyframes nav_open {
	0% {
		right: -400px;
	}
	100% {
		right: 0;
	}
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
news
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
section#news {
	padding: 80px 0;
}

iframe#club_news {
	display: block;
	width: 100%;
	margin:0 auto;
	border:none;
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
concept
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

section#concept {
	padding: 120px 0;
	width: calc(100% - 20px);
	margin: 0 auto;
}

	section#concept > p {
		line-height: 1.8em;
		font-size: 1.2em;
		text-align: center;
		margin: 60px auto 0;
	}
	
	section#concept > div {
		max-width: 1080px;
		margin: 80px auto 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	
		section#concept > div > img {
			width: calc(33.3333% - 10px);
		}
	
	
@media screen and (max-width: 750px) {
	section#concept > div {
		max-width: 400px;
		margin: 40px auto 0;
	}
	
		section#concept > div > img {
			width: 100%;
			margin: 20px 0 0;
		}
}




/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
menu
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

section#menu {
	width: calc(100% - 20px);
	max-width: 1080px;
	margin: 80px auto 0;
	padding: 20px 0 0;
}

	section#menu > h3 {
		font-size: 1.8em;
		border-left: 10px #505050 solid;
		margin: 40px 0 0;
		padding: 5px 0 5px 20px;
	}
	
	section#menu > div + h3 {
		margin: 80px 0 0;
	}
	
	section#menu > p {
		margin: 60px 0 0;
	}
	
	section#menu > p + p {
		margin: 0;
	}
	
	
	

div.menu_box {
	margin: 0 auto 0;
}

	div.menu_box > div {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
		margin: 40px auto 0;
	}
	
		div.menu_box > div > img {
			width: 100%;
			max-width: 400px;
		}
		
		div.menu_box > div > div {
			width: calc(100% - 460px);
		}
		
			div.menu_box > div > div > h4 {
				font-size: 1.3em;
			}
			
			div.menu_box > div > div > p {
				margin: 20px auto 0;
				padding: 0 20px;
				font-size: 1.1em;
			}
			

@media screen and (max-width: 850px) {
	section#menu > h3 {
		font-size: 1.4em;
	}
	
		div.menu_box > div > img {
			max-width: 300px;
		}
		
		div.menu_box > div > div {
			width: calc(100% - 320px);
		}
		
			div.menu_box > div > div > h4 {
				font-size: 1.2em;
			}
}

@media screen and (max-width: 650px) {
	div.menu_box > div {
		max-width: 400px;
		justify-content: center;
		margin: 40px auto 0;
	}
	
	div.menu_box > div + div {
		margin: 80px auto 0;
	}
	
		
		div.menu_box > div > img {
			max-width: 400px;
		}
		
		div.menu_box > div > div {
			width: 100%;
			margin: 20px 0 0;
		}
}

@media screen and (max-width: 400px) {
			div.menu_box > div > div > h4 {
				font-size: 1.1em;
			}
			
			div.menu_box > div > div > p {
				margin: 10px auto 0;
				font-size: 1.0em;
			}
}


/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
calendar
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
section#calendar {
	width: calc(100% - 20px);
	max-width: 1080px;
	margin: 80px auto 0;
	padding: 20px 0 0;
}

	section#calendar > p {
		margin: 40px auto 0;
		text-align: center;
	}


div.calendar_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

table.calendar {
	width: calc(50% - 10px);
	max-width: 800px;
	border-collapse: collapse;
	margin: 100px 0 0;
	display: none;
	table-layout: fixed;
}

table.calendar:nth-child(2n) {
	margin: 100px 0 0 20px;
}

table.calendar.active {
	display: table;
}


	table.calendar caption {
		text-align: center;
		font-size: 1.6em;
		letter-spacing: 0.1em;
		padding: 0 0 10px;
	}
	
	table.calendar th {
		border: 1px #1a1a1a solid;
		text-align: center;
		padding: 5px 0;
		box-sizing: border-box;
	}
	
	table.calendar th:last-child {
		width: auto;
	}
	
	
	table.calendar td {
		border: 1px #1a1a1a solid;
		text-align: center;
		padding: 25px 0;
	}
	
	table.calendar th:first-child,
	table.calendar td:first-child,
	table.calendar td.holiday {
		color: #961e1e;
	}
	
	table.calendar th:last-child,
	table.calendar td:last-child {
		color: #0044aa;
	}
	
		table.calendar td p.time {
			letter-spacing: 0.1em;
			font-size: 0.6em;
			margin: 5px auto 0;
			color: #333;
			//text-align: left;
			//max-width: 50px;
		}
	
	table.calendar td.text {
		padding-bottom: 5px;
	}
	
	table.calendar td.close {
		background-color: #aaa;
		padding-bottom: 5px;
	}
	
	table.calendar td.close_text {
		background-color: #aaa;
		padding-bottom: 5px;
	}
	
		table.calendar td.close_text p.time {
			color: #fff;
			letter-spacing: 0.1em;
			font-size: 0.8em;
		}
	
	table.calendar td.close::after {
		content: 'Closed';
		display: block;
		color: #fff;
		letter-spacing: 0.1em;
		font-size: 0.8em;
	}


div.calendar_arrow {
	margin: 20px auto 0;
	display: none;
	justify-content: space-between;
	align-items: center;
}

div.calendar_arrow.active {
	display: flex;
}


	div.calendar_arrow > a {
		display: flex;
		align-items: center;
		padding: 10px 0;
	}
	
		div.calendar_arrow > a > img {
			width: 50px;
		}
		
		div.calendar_arrow > a > img:first-child {
			margin-right: 10px;
		}
		
		div.calendar_arrow > a > img:last-child {
			margin-left: 10px;
		}
	
	div.calendar_arrow > p:first-child,
	div.calendar_arrow > p:last-child {
		width: 50px;
	}

@media screen and (max-width: 800px) {
	table.calendar {
		font-size: 0.85em;
	}
	
		table.calendar td {
			padding: 15px 0;
		}
}

@media screen and (max-width: 650px) {
	table.calendar {
		width: 100%;
		max-width: 400px;
	}
	
	table.calendar:nth-child(2n),
	table.calendar + table.calendar {
		margin: 40px 0 0 0;
	}
}

@media screen and (max-width: 350px) {
		table.calendar td {
			padding: 5px 0;
		}
	
			dl.timetable > dd > p {
				margin: 0 0 10px;
			}
	
				dl.timetable > dd > p.time_right > br {
					display: inline;
				}
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
access
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/
section#access {
	padding: 20px 0;
	margin: 140px auto 0;
}

	section#access > div {
		display: flex;
		justify-content: space-around;
		max-width: 960px;
		margin: 40px auto 0;
		flex-wrap: wrap;
	}
	
		section#access > div > dl {
			margin: 20px 0;
			letter-spacing: 0.1em;
			width: calc(100% - 540px);
		}
		
			section#access > div > dl > dt {
				font-size: 1.4em;
				border-bottom: 1px #000 solid;
				padding: 0 0 5px;
			}
			
			section#access > div > dl > dd + dt {
				margin: 60px auto 0;
			}
			
			
			section#access > div > dl > dd {
				font-size: 1.2em;
				margin: 10px auto 0;
			}
			
		
		section#access > div > div#map {
			width: 100%;
			max-width: 500px;
			margin: 20px 0;
		}
		
			section#access > div > div#map > iframe {
				display: block;
				width: 100%;
			}

@media screen and (max-width: 900px) {
		section#access > div > dl {
			width: calc(100% - 420px);
		}
		
			section#access > div > dl > dt {
				font-size: 1.2em;
			}
			
			section#access > div > dl > dd {
				font-size: 1.0em;
			}
			
		section#access > div > div#map {
			max-width: 400px;
		}
}

@media screen and (max-width: 750px) {
	section#access > div {
		flex-direction: column-reverse;
		align-items: center;
	}
	
		section#access > div > dl {
			width: calc(100% - 20px);
			max-width: 400px;
		}
	
		section#access > div > div#map {
			max-width: 100%;
		}
}


/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
footer
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆*/

footer {
	margin: 120px auto 0;
	padding: 20px 0 0;
}

	footer > div {
		width: calc(100% - 20px);
		max-width: 1080px;
		margin: 0 auto;
	}

.footer_nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}

	.footer_nav > a {
		display: flex;
		align-items: center;
		padding: 10px;
		margin: 0 10px;
		letter-spacing: 0.1em;
	}
	
		.footer_nav > a > img {
			vertical-align: bottom;
		}
	

	footer > div > h2 {
		width: calc(100% - 20px);
		max-width: 240px;
	}

		footer > div > h2 > p {
			font-size: 0.9em;
			text-align: center;
		}

		footer > div > h2 > img {
			width: 100%;
			margin: 5px 0 0;
		}
	
	footer > div > p {
		margin: 10px auto 0;
	}
	
	footer > div > h2 + p,
	footer > div > p:last-child {
		margin: 30px auto 0;
	}
	
footer > p {
	text-align: center;
	margin: 20px auto 0;
	padding: 10px 0;
}

@media screen and (max-width: 750px) {
	.footer_nav > a {
		font-size: 0.8em;
		margin: 0 5px;
	}
}

@media screen and (max-width: 550px) {
.footer_nav {
	max-width: 350px;
	margin: 0 auto;
	justify-content: center;
}
	.footer_nav > a {
		padding: 5px 10px;
	}
	
	footer > div > p {
		font-size: 0.85em;
		text-align: center;
	}
	
	footer > div > h2 {
		max-width: 200px;
		margin: 30px auto 0;
	}
	
footer > p {
	font-size: 0.85em;
}
}