@charset "UTF-8";


/* =================================================================================
共通部分の指定
==================================================================================*/

/* リセット */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

body {
	color: #333333;
}

img {
	max-width: 100%;
	height: auto;
	object-fit: cover;
}

ul {
	list-style-type: none;
}

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

/* フォントの指定 */

h1,
h2,
h3,
ul {
	/* font-family: 'Noto Serif JP', serif; */
	font-family: 'heisei-mincho-std', 'Noto Serif JP', serif;
}

p,
figcaption {
	/* font-family: 'Noto Sans JP', sans-serif; */
	font-family: 'source-han-sans-japanese', 'Noto Sans JP', sans-serif;
}

small {
	font-size: 0.75rem;
}

/* header */

header {
	width: auto;
	height: 60px;
	margin: 0 30px;
}

.header_wrap {
	max-width: 980px;
	width: 100%;
}

header h1 a {
	display: block;
	width: 80px;
	height: 60px;
	position: relative;
}

header h1 a img {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

/* pcサイズのグローバルナビを非表示 */
.pcNav {
	display: none;
}

/* ハンバーガーメニュー */

#js_toggle {
	position: fixed;
	top: 7px;
	right: 9px;
	z-index: 20;
	width: 45px;
	height: 45px;
	background-color: #1C305C;
	box-shadow: 2px 2px 3px #333333;
	cursor: pointer;
}

#js_toggle span {
	position: absolute;
	display: block;
	width: 25px;
	height: 2px;
	border-radius: 1px;
	background-color: #fff;
	transition: all .4s ease-in-out;
}

#js_toggle span:nth-of-type(1) {
	top: 13px;
	left: 10px;
}

#js_toggle span:nth-of-type(2) {
	top: 22px;
	left: 10px;
}

#js_toggle span:nth-of-type(3) {
	top: 31px;
	left: 10px;
}

/* .toggleに.activeがついた場合 */

#js_toggle.active {
	background-color: #808080;
	border: 1px solid #fff;
}
#js_toggle.active span:nth-of-type(1) {
	transform: translateY(9px) rotate(45deg);
}

#js_toggle.active span:nth-of-type(2) {
	opacity: 0;
}

#js_toggle.active span:nth-of-type(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* ハンバーガーメニューで開いたnav */
#js_spNav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	width: 100vw;
	height: 100vh;
	padding-top: 140px;
	background-color: #808080;
	color: #fff;
	transform: translateX(100%);/* 値100%で右にスライド、値０で開く */
	transition: all .4s ease-in-out;
}

/* ハンバーガーメニューが押された場合 */
#js_spNav.active {
	transform: translateX(0);
}


.js_spNav-logo {
	width: 130px;
	margin: 0 auto;
}

.js_spNav-gNav {
	width: 100px;
	margin: 120px auto 0;
}

.js_spNav-gNav ul li {
	text-align: center;
	margin-top: 30px;
}

.js_spNav-gNav ul li a {
	font-size: 20px;
	padding: 10px;
	text-transform: uppercase;
	color: #fff;
}

.js_spNav-icon {
	margin-top: 50px;
	text-align: center;
}

.js_spNav-icon ul {
	display: flex;
	justify-content: center;
}

.js_spNav-icon ul li {
	margin: 5px;
}

.js_spNav-icon img {
	width: 44px;
	height: 44px;
}

.js_spNav-copy {
	margin-top: 50px;
	text-align: center;
}

/* main visual */

.main_visual {
	/* index.htmlで画像上に文章配置のため */
	position: relative;
	/* slider使用時の右に余白が発生している対策 */
	overflow: hidden;
}

.main_visual img {
	width: 100%;
	height: calc(100vw / 3 * 2);
}


/* main */
.main_wrap {
	width: auto;
	margin: 0 30px;
}

/* footer */
footer {
	width: 100%;
	height: 85px;
	margin-top: 100px;
	background-color: #1C305C;
}

.footer_wrap {
	margin: 0 30px;
	display: flex;
	justify-content: space-between;
	padding-top: 10px;
}

.footer_logo {
	width: 80px;
	height: auto;
	margin-top: 5px;
}

.footer_shopInfo {
	display: none;
}

.footer_right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer_icon {
	display: flex;
	justify-content: flex-end;
}

footer small {
	color: #fff;
}


/* =================================================================================
index.html
==================================================================================*/

/* main_visual */

.main_visual-desc {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.main_visual-desc p {
	font-size: 20px;
	font-family: heisei-mincho-std, serif;
	text-align: center;
	letter-spacing: 0.04em;
}

.main_visual-desc p:nth-of-type(1) {
	margin-bottom: 10px;
}

.main_visual-desc p:nth-of-type(2) {
	margin-bottom: 30px;
}

/* main */

main {
	margin-top: 120px;
}

main section:first-of-child {
	margin-bottom: 120px;
}

main section h2{
	text-align: center;
	letter-spacing: 0.074em;
	margin-bottom: 40px;
}

.about_content {
	height: auto;
	width: 315px;
	margin: 60px auto 90px;
}

.about_content h3 {
	color: #fff;
	background-color: #1C305C;
	width: 100px;
	height: 40px;
	line-height: 20px;
	padding-top: 14px;
	padding-bottom: 5px;
	text-align: center;
	vertical-align: center;
	box-shadow: 2px 2px 5px #000000;
}

.about_content figure,
.about_content p {
	width: 315px;
	margin-top: 20px;
}

.menu_content {
	width: 315px;
	height: auto;
	margin: 60px auto 0;
}

.menu_content .menu_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0;
}

.menu_content .menu_item h3 {
	position: relative;
	padding-left: 10px;
	line-height: 24px;
	letter-spacing: 0.072rem;
}

/* メニュー名の前の装飾 */
.menu_content .menu_item h3:before {
	content: "";
	position: absolute;
	top: -3px;
	left: 0;
	width: 5px;
	height: 24px;
	background-color: #1C305C;
}

.menu_content .menu_item p {
	font-family: heisei-mincho-std, serif;
	font-size: 18.72px;
	line-height: 24px;
}

.menu_content .menu_item p span {
	margin-left: 2px;
}

.menu_content figcaption {
	margin-top: 5px;
}

/* もっと見るボタン */

.moreBtn {
	display: block;
	width: 140px;
	margin: 30px auto 0 auto;
	padding: 16px 0 14px;
	font-family: heisei-mincho-std, serif;
	line-height: 14px;
	text-align: center;
	color: #fff;
	background-color: #1C305C;
	box-shadow: 2px 2px 3px #333333;
	border-radius: 22px;
}


/* =================================================================================
menu.html
==================================================================================*/

.menu_osusume {
	margin-bottom: 100px;
}

.menu_osusume .osusume_left,
.menu_osusume .osusume_right {
	width: 320px;
	margin: 60px auto;
}

.menu_osusume figure img {
	width: 320px;
}

.menu_osusume .menu_group {
	display: flex;
	justify-content: center;
	margin-top: 10px;
	font-size: 20px;
	position: relative;
}

.menu_osusume .osusume_left .menu_group::after {
	content: "";
	width: 200px;
	height: 5px;
	background-color: #1C305C;
	position: absolute;
	top: 26px;
	right: 60px;
	z-index: -1;
}

.menu_osusume .osusume_right .menu_group::after {
	content: "";
	width: 200px;
	height: 5px;
	background-color: #1C305C;
	position: absolute;
	top: 26px;
	left: 60px;
	z-index: -1;
}

.menu_osusume .menu_group .menu_name {
	margin-right: 20px;
}

.menu_tanpin h2 {
	margin-top: 100px;
}

.menu_tanpin h3 {
	margin: 30px 0 10px;
	padding-left: 10px;
	position: relative;
}

.menu_tanpin h3:before {
	content: "";
	position: absolute;
	top: -3px;
	left: 0;
	width: 5px;
	height: 20px;
	background-color: #1C305C;
}

.menu_tanpin .leftBox,
.menu_tanpin .rightBox {
	width: 330px;
	margin: 0 auto;
}

.menuBox {
	width: 330px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.menuList li {
	display: flex;
	gap: 10px;
}

.menuList li .menuName {
	width: 99px;
	text-align: justify;
	text-align-last: justify;
}

.menuList li p span {
	font-size: 12px;
	margin-left: 2px;
}

/* =================================================================================
info.html
==================================================================================*/

.infoSec {
	margin-bottom: 80px;
}

.infoSec h2 {
	text-align: center;
	margin-bottom: 50px;
}

.infoSec_wrap {
	width: 315px;
	margin: 0 auto 90px;
}

.infoSec figure {
	max-width: 315px;
	margin-bottom: 30px;
}

.infoSec ul {
	width: 315px;
	margin: 0 auto;
}

.infoSec ul li {
	display: flex;
	margin-bottom: 5px;
}

.infoSec ul li .infoSec_liHead {
	width: 65px;
	text-align: justify;
	text-align-last: justify;
	margin-right: 20px;
}

.infoSec ul li .infoSec_libody {
	width: 215px;
}

.infoSec .mapLink {
	display: inline-block;
	/* width: 110px; */
	padding: 3px 15px 6px 15px;
	margin: 10px 0;
	border-radius: 15px;
	text-align: center;
	background-color: #1C305C;
	color: #ffffff;
	box-shadow: 2px 2px 3px #333333;
}

.infoSec figure img {
	width: 100%;
	height: auto;
}

.infoSec_parking-p {
	width: 315px;
}