@charset "utf-8";

/* ------------------------------
 PC、SP共通
------------------------------ */

* {
	margin: 0;
	padding: 0;
}
html,body{
	width: 100%;
}

html {
	-webkit-text-size-adjust: none;
	scroll-behavior: smooth;
}
body {
	background-color: #FFF;
	margin: 0 auto;
	font-family: 'Noto Serif JP', serif;
	color: #111;
	text-align: center;
}
table {
	text-align: left;
}
td {
	vertical-align: top;
}
hr {
	clear: both;
}
img {
	border: none;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
	max-width: 100%;
	height: auto;
	width /***/:auto;
}
ul {
	margin: 0;
	padding: 0;
}
ol {
	margin: 0;
	padding: 0;
}
a {
	transition: all 100ms 0s ease;
}
a:hover {
	opacity: 0.5;
}

span.none {
	display: none;
}
.clear {
	clear: both;
}
.fnt_s {
	font-size: 0.7em;
}
.fnt_l {
	font-size: 1.3em;
}
.bg_gray {
	background-color: #EEE;
}
p.p_right {
	text-align: right;
}
span.red {
	color: #E10000;
	font-weight: bold;
}
span.blue {
	color: #0065CB;
	font-weight: bold;
}
span.bg_y {
	background-image: linear-gradient(transparent 60%, #fcd900 50%);
}
span.bold {
	color: #000000;
	font-weight: bold;
}


/* ------------------------------
 トップボタン（PC、SP共通）
------------------------------ */

div.pagetop {
	width: auto;
	margin: 0;
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 900;
	pointer-events: none;
	font-size: 14px;
}
div.pagetop a {
	background-color: #FFF;
	padding: 15px 20px;
	border: solid 1px #BBB;
	text-decoration: none;
	color: #555;
	pointer-events: auto;
}
div.pagetop a:hover {
	opacity: 1;
	color: #FFF;
	background-color: #555;
}


/* ------------------------------
 以降PCのみ
------------------------------ */


.smart_only {
	display: none;
}
.hamburger-menu {
	display: none;
}

.slide_menu {
	display: none;
}
#menu-box {
	display: none;
}
.toggle_menu {
	display: none;
}


p {
	line-height: 1.75em;
}
li {
	line-height: 2em;
}

/* ------------------------------
 見出し部分
------------------------------ */

h1 {
	width: 100px;
	margin: 0 auto;
	padding: 0;
}
h2 {
	text-align: center;
	font-size: 30px;
	margin-bottom: 30px;
}
h2.index {
	display: flex;
	align-items: center;
	justify-content: center;
}
h2.index:before,
h2.index:after {
	border-top: 1px solid #AAA;
	content: "";
	width: 10em;
}
h2.index:before {
	margin-right: 3rem;
}
h2.index:after {
	margin-left: 3rem;
}
h3 {
	font-size: 28px;
	border-bottom: 1px solid #AAA;
	padding-bottom: 10px;
	margin-bottom: 30px;
	clear: both;
}
h4 {
	clear: both;
}

/* ------------------------------
 セクション
------------------------------ */

article {
}
section {
	overflow: hidden;
	text-align: left;
}
section p {
	margin: 30px 0;
}
section div.wrapper ul,
section div.wrapper ol {
	margin: 30px 40px;
}
section div.wrapper li {
	margin-bottom: 5px;
}

/* ------------------------------
 flex
------------------------------ */

.flex_between {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex_start {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.flex_center {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.align_center {
	align-items: center;
}
.align_end{
	align-items: flex-end;
}
.reverse {
	flex-direction: row-reverse;
}

/* ------------------------------
 画像関連
------------------------------ */

img.imgleft {
	float: left;
	margin: 0 40px 40px 0;
}
img.imgright {
	float: right;
	margin: 0 0 40px 40px;
}

/* ------------------------------
 テキスト関連
------------------------------ */

p.center {
	text-align: center;
	margin: 50px auto !important;
	clear: both;
}
p.pc_center {
	text-align: center;
	margin: 50px auto !important;
	clear: both;
}

/* ------------------------------
 全体
------------------------------ */

div.wrapper {
	margin: 0 auto;
	text-align: left;
}
div.wrapper01 {
	max-width: 1080px;
	padding: 0 40px;
}
div.wrapper02 {
}
section div.wrapper {
	margin: 30px auto !important;
}
section div {
	overflow: hidden;
	clear: both;
}


/* ------------------------------
 ヘッダー
------------------------------ */

header {
	width: 100%;
	overflow: hidden;
	border-bottom: solid 1px #DDD;
}

/* ------------------------------
 メニュー
------------------------------ */

div.wrapper_nav {
	max-width: 900px;
}
nav {
	width: 100%;
	height: 50px;
	overflow: hidden;
}
nav ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
nav li {
	width: calc( 100% / 5 );
	text-align: center;
	line-height: 1.5em;
}
nav li a {
	color: #000;
	text-align: center;
	text-decoration: none;
	line-height: 50px;
	position: relative;
	display: block;
	box-sizing: border-box;
}

nav li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 5px;
	background: #CCC;
	transform: scale(0, 1);
	transition: transform .2s;
}
nav li a:hover::after {
	transform: scale(1, 1);
}
nav li a::after {
	transform-origin: center top;
}
nav a:hover {
	opacity: 1 !important;
}


/* ------------------------------
 メイン画像
------------------------------ */

div.topimg {
	margin: 0 auto;
	background-color: #DDD;
}

/* ------------------------------
 トップページ
------------------------------ */

p.index_text01 {
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
}
p.index_text02 {
	font-size: 1.2em;
	text-align: center;
}

div.index_info {
	width: 820px;
	margin: 0 auto;
}
div.index_info ul {
	list-style: none;
	height: 170px;
	overflow: auto;
}
div.index_info ul li {
	margin-bottom: 18px;
}
div.index_info p {
	text-align: right;
}

/* ------------------------------
 パンくず
------------------------------ */

p.bread {
	font-size: 11px;
	margin: 10px 0 !important;
}

/* ------------------------------
 ギャラリー
------------------------------ */

div.gallery01 {
	margin: 0 100px 30px;
}
div.gallery01 img {
	width: 48%;
	margin-bottom: 30px;
}

div.gallery02 {
	margin: 0 auto 30px;
}
div.gallery02 div {
	width: 33%;
	text-align: center;
	margin-bottom: 30px;
}
div.gallery02 img {
	width: 95%;
}

/* ------------------------------
 お知らせ
------------------------------ */

div.info_box {
	margin-bottom: 30px;
}
div.info_date {
	width: 15%;
}
div.info_text {
	width: 83%;
}
p.info_title {
	font-weight: bold;
}

/* ------------------------------
 飲み物
------------------------------ */

div.drink_wrapper {
	margin-bottom: 30px;
}
div.drink_text {
	width: 68%;
}
div.drink_photo {
	width: 30%;
}
div.drink_photo img {
	margin-top: 30px;
}

/* ------------------------------
 アクセス
------------------------------ */

.google-maps {
	position: relative;
	padding-bottom: 50%;
	padding-top: 30px;
	height: 0;
}

.google-maps iframe,
.google-maps object,
.google-maps embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 600px !important;
}

div.about_wrapper {
	max-width: 800px;
	margin: 30px auto;
}
div.about {
	border-bottom: solid 1px #DDD;
}
div.about00 {
}
div.about p,
div.about00 p {
	margin: 10px 10px;
}
div.about01 {
	width: 25%;
	font-weight: bold;
	color: #000;
	border-right: solid 1px #DDD;
	text-align: center;
}
div.about02 {
	width: 72%;
}
div.about02 ul {
	margin: 10px 30px;
}


/* ------------------------------
 フッター
------------------------------ */

footer {
	overflow: hidden;
	font-size: 14px;
	margin: 40px 0 0 0;
	padding: 10px 0 60px;
	border-top: solid 1px #DDD;
}
div.footer_img {
	width: 100px;
}
div.footer_address {
}
div.footer_address p {
	margin: 10px 30px;
}
p.footer01 {
	font-size: 18px;
}
p.footer02 {
}
p.footer03 {
	font-size: 20px;
}
footer p.copy {
	margin: 10px auto;
	color: #777;
}
