@charset "UTF-8";

/* ==================== リセット ==================== */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, main, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	background: transparent;
	border: 0;
	box-sizing: border-box;
	font-style: normal;
    line-height: 1.8em;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
iframe {
    border: 0;
    display: block;
    width: 100%;
}
html {
	font-size: 15px;
    letter-spacing: .05em;
}
/* ==================== .clearfix ==================== */
.clearfix::after {
	clear: both;
	content: "";
	display: block;
}
/* ==================== 文字 ==================== */
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}
h1 {
	font-size: 2rem;
}
h2 {
	font-size: 1.8rem;
}
h3 {
	font-size: 1.6rem;
}
h4 {
	font-size: 1.4rem;
}
h5 {
	font-size: 1.2rem;
}
h6 {
	font-size: 1.1rem;
}
strong {
	font-weight: bold;
}
small {
	font-size: smaller;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.notes {
	font-size: 0.85rem;
	line-height: 1.6em;
}
/* ==================== 画像 ==================== */
img {
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}
img.alignleft {
	float: left;
}
img.alignright {
	float: right;
}
img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
/* ==================== リンク ==================== */
a {
	color: #060;
	text-decoration: underline;
}
/* ==================== リスト ==================== */
ol, ul {
	list-style-position: inside;
}
.two, .three, .four, .five, .six {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}
.space > * {
	margin-right: 4%;
}
/* ==================== .two .three ==================== */
.two > * {
	width: 50%;
}
.two.space > * {
	width: 48%;
}
.two.space > *:nth-child(even), .three.space > *:nth-child(3n) {
	margin-right: 0;
}
.three > * {
	width: calc(100%/3);
}
.three.space > * {
	width: calc(92%/3);
}
@media screen and (max-width: 767px) {
.two > *, .two.space > *, .three > *, .three.space > * {
	width: 100%;
}
.two.space > *, .three.space > * {
	margin-right: 0;
}
}
/* ==================== .four .five ==================== */
.four > * {
	width: 25%;
}
.four.space > * {
	width: 22%;
}
.four.space > *:nth-child(4n), .five.space > *:nth-child(5n) {
	margin-right: 0;
}
.five > * {
	width: 20%;
}
.five.space > * {
	width: calc(88%/5);
}
@media screen and (max-width: 767px) {
.four > *, .five > * {
	width: 50%;
}
.four.space > *, .five.space > * {
	width: 48%;
}
}
/* ==================== .six ==================== */
.six > * {
	width: calc(100%/6);
}
.six.space > * {
	width: 15%;
}
@media screen and (max-width: 767px) {
.six > * {
	width: calc(100%/3);
}
.six.space > * {
	width: 32%;
}
}
/* ==================== body ==================== */
body {
    background: url(img/dummy_header_mainvisual_06.jpg) repeat fixed center /1586px 671px;
	color: #333;
	font-family: 'Sawarabi Mincho', sans-serif;
	font-feature-settings: 'palt' 1;
	font-weight: normal;
	position: relative;
}
@media screen and (max-width: 767px) {
body {
    background-size: 1244px 586px;
}
}
/* ==================== ヘッダー ==================== */
header {
	display:flex;
	flex-direction:column;
	justify-content:flex-end;
	height: 640px;
    height: 90vh;
}
header h1 {
    background-color: #fff;
    line-height: 1em;
    padding: 45px 0;
    text-align: center;
}
header .logo_nav{
	display: none;
    text-align: center;
}
header nav{
	background-color: #f9f9f9;
	box-shadow:0px 0px 20px -16px rgba(0,0,0,0.5);
    display: flex;
	gap: 60px;
    justify-content: center;
}
header nav ul {
	display: flex;
	justify-content:center;
	flex-wrap:wrap;
	list-style: none;
}
header nav ul li {
	text-align: center;
}
header nav ul li a {
    color: #999;
    display: block;
    font-size: 0.8rem;
    line-height: 1.5em;
    padding: 15px 15px 20px;
    text-decoration: none;
}
header nav ul li a img {
    height: 12px;
}
@media screen and (max-width: 767px) {
header {
	height: 480px;
    height: 90vh;
}
header h1 {
	padding: 30px 0;
}
header h1 img {
	width: 135px;
}
header .logo_nav{
	display: block;
}
header nav {
	flex-direction: column;
	height: 100%;
	position: fixed;
	opacity: 0;
	top: 0;
	transition: .4s ease;
	width: 100%;
	z-index: -1;
}
header nav ul {
    flex-direction:column;
	/* align-items:center;
    height: 100vh; */
}
header nav ul li {
	width: auto;
}
header nav ul li a {
    padding: 20px 0;
}
}
/* ==================== main ==================== */
main > *, main > section > * {
	margin: 0 auto;
	max-width: 84%;
	width: 720px;
}
main > section {
	background-color: #fff;
	margin: 0 auto;
	max-width: 100%;
    padding: 90px 0 60px;
	width: 100%;
}
main > section > *, main > section > .content > * > * {
	margin-bottom: 30px;
}
main > section h2 {
	color: #999;
	font-size: 0.85rem;
	margin-bottom: 60px !important;
    margin-top: 10px;
}
main > section h2 img {
	margin-bottom: 15px !important;
}
.shadow {
    background-color: #fff;
	box-shadow:-8px -1px 24px -16px rgba(0,0,0,0.5);
    padding: 30px;
}
@media screen and (max-width: 767px) {
main > section {
	padding: 75px 0 45px;
}
main > section h2 {
	margin-bottom: 30px !important;
}
.shadow {
	box-shadow: none;
	padding: 0;
}
}
/* ==================== #concept ==================== */
#concept {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 120px 0;
}
#concept h2 img {
	margin-bottom: 0;
}
#concept p {
	font-size: 1.1rem;
	line-height: 2.4em;
}
@media screen and (max-width: 767px) {
#concept p {
	font-size: 1rem;
	text-align: left;
}
#concept p:last-of-type {
	margin-top: 30px;
	text-align: center;
}
#concept p:last-of-type img {
	width: 90px;
}
#concept br {
	display: none;
}
#concept img {
	max-width: 90%;
}
}
/* ==================== #signpole ==================== */
#signpole {
    background: url(img/signpole_01.png) repeat-y center /100% auto;
    left: 50%;
	margin-bottom: 0;
    margin-left: -6px;
    position: absolute;
    width: 13px;
}
@media screen and (max-width: 767px) {
#signpole {
	left: 0;
	margin-left: 0;
}
}
/* ==================== #menu ==================== */
#menu {
	padding-top: 150px;
}
#menu .two {
	align-items: flex-end;
}
#menu p{
	margin-bottom: 45px;
}
#menu dl {
	margin-bottom: 1em;
}
#menu dt {
    letter-spacing: 0.1em;
    line-height: 1.4em;
    padding-left: 1.5em;
}
#menu dt::before {
	content: "■ ";
    left: 0;
    position: absolute;
}
#menu dd {
    border-bottom: 1px solid #eee;
    line-height: 1.4em;
    padding-bottom: 1em;
    text-align: right;
}
#menu dd span {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 0;
}
/* ==================== #reserve ==================== */
#reserve .two {
	align-items: flex-end;
}
/* ==================== #access ==================== */
#access {
    padding-bottom: 30px;
}
#access #fb {
	margin-top: 150px;
    overflow: scroll;
    width: 560px;
}
/* ==================== フッター ==================== */
footer {
    background-color: #fff;
	padding-bottom: 30px;
}
footer > * {
	color: #999;
	margin: 0 auto;
	max-width: 88%;
	width: 720px;
}
@media screen and (max-width: 767px) {
footer {
	padding-top: 60px;
}
footer div {
    margin: 0 6% 0 14%;
    max-width: 80%;
}
}
/* ==================== #menu, #reserve, #access, footer共通 ==================== */
#menu *, #reserve *, #access *, footer * {
	position: relative;
	z-index: 1;
}
.two.content > * {
    margin-right: 12%;
    width: 44%;
}
.two.content > *.f_right {
	margin-left: auto;
	margin-right: 0;
}
@media screen and (max-width: 767px) {
#menu > *,
#reserve > *,
#access > *,
footer > * {
    margin: 0 6% 30px 14%;
    max-width: 80%;
	width: 100%;
}
.two.content > * {
    margin-right: 0;
	width: 100%;
}
}
