@charset "utf-8";
html {
	scroll-padding-top: 75px;
	scroll-behavior: smooth;
}
body {
	font-family: "Hiragino Sans w4","ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

/* ヘッダー */
header {
	width: 100%;
	height: 65px;
	background-color: #4E5E49;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 900;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
header h1 {
	float: left;
	height: 65px;
	max-width: 250px;
}
header h1 img {
	max-width: 100%;
}
#header_area {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}

/* ナビゲーションメニュー */
nav {
	float: right;
}
#gnavi > ul {
	display: flex;
	height: 65px;
	width: 690px;
}
#gnavi > ul > li {
	width: 20%;
}
#gnavi li {
	list-style-type: none;
	position: relative;
}
#gnavi li a {
	color: #ffffff;
	display: block;
	line-height: 65px;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	width: 100%;
	height: 65px;
}
#gnavi li:hover {
	background-color: #775338;
}

/* ナビゲーションメニュー 子メニュー */
#gnavi li li {
	background-color: #8DA38A;
	height: 0;
	overflow: hidden;
	transition-duration: 0.3s;
}
#gnavi li li a {
	border-top: 1px solid #ffffff;
	line-height: 50px;
}
#gnavi li:hover li {
	height: 50px;
	overflow: visible;
}

/* ハンバーガーメニュー */
#sp_gnavi_check {
	display: none;
}

/* コンテンツ全体 */
main {
	clear: both;
	margin-top: 65px;
}

/* メインビジュアル */
#mainvisual {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #ffffff;
    max-width: 1500px;
    margin: 0 auto;
  }
  
  #mainvisual .slider {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  #mainvisual .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade 15s infinite;
  }
  
  #mainvisual .slide:nth-child(1) { animation-delay: 0s; }
  #mainvisual .slide:nth-child(2) { animation-delay: 5s; }
  #mainvisual .slide:nth-child(3) { animation-delay: 10s; }
  
  @keyframes fade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    30%  { opacity: 1; }
    35%  { opacity: 0; }
    100% { opacity: 0; }
  }
  
  #mainvisual h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "メイリオ", "Hiragino Mincho ProN", serif;
    font-size: 22pt;
    font-weight: 700;
    text-shadow: 2px 2px 5px #ffffff;
    line-height: 180%;
    text-align: center;
    color: #000;
    z-index: 10;
    background: none; /* 背景は削除 */
    padding: 0;
    height: auto;
  }

/* トップページコンテンツ */
#top_contents {
	text-align: center;
}
#top_contents h2:before,#top_contents h2:after {
	content: "-";
	margin: 0.5rem;
}
#top_contents img {
	max-width: 100%;
}
#explanation {
	line-height: 180%;
	margin: 2rem 0;
}

/* メニューボタン */
#menu h2 {
	padding: 1rem 0 0.7rem 0;
}
#menu_btn {
	display: flex;
	justify-content: center;
}
#menu_btn div {
	margin: 15px 40px 40px 40px;
}
#menu_btn img {
	border-radius: 10px;
	box-shadow: 0 5px 5px #331e0a;
	transition-duration: 0.3s;
}
#menu_btn img:hover {
	transform: translate(0, 5px);
	box-shadow: none;
	opacity: 0.85;
}

/* お知らせ */
#info {
	justify-content: center;
	align-items: center;
	width: 100%;
	background-color: #F2EEE8;
}
#info h2 {
	padding: 2rem 0 0.7rem 0;
}
#info_card {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin: 0 auto;
	padding: 1rem 1rem 3rem 1rem;
	max-width: 900px;
}
.card {
	flex-basis: calc((100% - 18px * 2) / 3);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow-wrap: break-word;
	background-color: #ffffff;
	color: #333333;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.card_img img {
	width: 100%;
	object-fit: cover;
}
.card_cont {
	padding: 10px 12px;
	text-align: left;
}
.card_cont h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.card_cont_day {
	font-size: smaller;
	font-weight: 700;
	color: #888888;
	margin-bottom: 0.5rem;
}
.card_cont_summary {
	line-height: 1.5;
	margin-bottom: 0.5rem;
}
.card:hover {
	transform: scale(1.04);
	box-shadow: 0 7px 15px rgba(0, 0, 0, 0.25);
}

/* フッター */
footer {
	background-color: #4E5E49;
}
#footer_inner {
	color: #ffffff;
	margin: 0 auto;
	padding: 2rem;
	font-size: 15px;
	max-width: 1200px;
}
#footer_inner > div {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
address {
	font-style: normal;
}
address ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}
address li {
	display: inline-block;
	margin-right: 15px;
}
address h4::before {
	content: "■";
}
address img {
	margin-bottom: 15px;
	max-width: 100%;
}
address a {
	color: #ffffff;
}
#copyright {
	border-top: 1px solid #ffffff;
	margin-top: 15px;
	padding-top: 5px;
}

/* ソーシャルメディアボタン */
.snsbtn {
	display: inline-block;
	font-size: smaller;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	width: 48%;
	text-align: center;
	margin-bottom: 1rem;
	padding: 5px;
	border: 1px solid #8DA38A;
	border-radius: 5px;
	transition-duration: 0.4s;
}
.snsbtn:hover {
	border: 1px solid #ffffff;
}
.xbtn {
	background: linear-gradient(45deg, #353535 35%, #575757 100%);
	margin-right: 10px;
}
.instabtn {
	background: linear-gradient(45deg, #c15129 35%, #5524af 100%);
}

/* パンくずリスト */
#breadcrumb {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	font-size: smaller;
	background-color: #f1f1f1;
	border-radius: 50px;
	padding: 2px 15px;
}
#breadcrumb li:not(:last-of-type)::after {
	content: "›";
	margin: 0.4rem;
	color: #999999;
}
#breadcrumb a {
	color: #8DA38A;
}
#breadcrumb a:hover {
	text-decoration: none;
}
#breadcrumb a:visited {
	color: #8DA38A;
}

/* 記事ページフォーマット */
#subimg {
	margin: 0 auto;
	display: block;
	max-width: 100%;
}
article {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 15px 50px 15px;
}
article img {
	margin: 2rem auto;
	display: block;
	max-width: 100%;
}
article h1 {
	background: linear-gradient(to right, #ffffff, #C8D5C4, #ffffff);
	box-shadow: 0 12px 8px -8px #999999;
	width: 100%;
	border-bottom: 3px solid #8DA38A;
	font-size: 22pt;
	text-align: center;
	color: #000000;
	text-shadow: 2px 2px 3px rgba(0,0,0,0.2);
	margin-bottom: 3rem;
	padding: 2.8rem 0;
}
article h2 {
	font-weight: 700;
	margin: 2.3rem 0;
	padding: 10px;
	background-color: #C8D5C4;
	border-bottom: 2px dashed #ffffff;
	box-shadow: 0 0 0 8px #C8D5C4;
}
article > p {
	margin: 2rem 0;
}
article ul {
	margin: 2rem 1.3rem;
}
.aboout_img {
	border-radius: 7px;
}
.formbtn {
	display: inline-block;
	color: #173c47;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	border: 2px solid #173c47;
	border-radius: 5px;
	background-color: #ffffff;
	width: 40%;
	padding: 10px 5px;
	transition-duration: 0.2s;
}
.formbtn:hover {
	background-color: #cde2f0;
}
.formbtn:hover, .formbtn:visited {
	color: #173c47;
}
.commentbox {
	margin: 3rem 0;
	padding: 0.5rem 1rem;
	border: 3px solid #32955a;
	position: relative;
}
.commentbox h3 {
	background-color: #32955a;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	border-radius: 5px 5px 0 0;
	padding: 4px 10px 0 10px;
	position: absolute;
	top: -32px;
	left: -3px;
}

/* 目次 */
#mokuji {
	max-width: 450px;
	margin: 1rem auto;
	border: 2px solid #9fbdc7;
	border-radius: 4px;
}
#mokuji a {
	display: block;
	padding: 8px 15px;
	text-decoration: none;
	color: #000000;
}
#mokuji ul {
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
}
#mokuji li {
	overflow: hidden;
	height: 0;
	opacity: 0;
	transition-duration: 0.5s;
}
#mokuji li:hover {
	background-color: #d4d4d4;
}
#mokuji_title:checked ~ #mokuji_inner li {
	height: 38px;
	opacity: 1;
}
#mokuji_title:checked ~ #mokuji_inner_2 li {
	height: 64px;
	opacity: 1;
}
#mokuji input {
	display: none;
}
#mokuji label {
	display: block;
	padding: 10px 15px;
	background-color: #C8D5C4;
	cursor: pointer;
}

/* ページの先頭へ戻る */
#pagetop {
	border-radius: 50%;
	height: 55px;
	width: 55px;
	background-color: #ffffff;
	border: 2px solid #113c4a;
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 100;
	opacity: 0.9;
	display: flex;
	justify-content: center;
	align-items: center;
}
#pagetop:hover {
	background-color: #cde2f0;
}
#pagetop_inner {
	height: 15px;
	width: 15px;
	border-top: 3px solid #8DA38A;
	border-right: 3px solid #8DA38A;
	transform: translate(0, 20%) rotate(-45deg);
}

/* メニューリスト */
#cafe img,#bar img {
	display: block;
	margin: 2rem auto;
	max-width: 100%;
}
.menulist {
	max-width: 700px;
	margin: 2rem auto;
	padding: 20px 30px;
	border: #cde2f0 2px solid;
	border-radius: 10px;
}
.menulist dl {
 	display: table;
	width: 100%;
	border-bottom: 1px dashed #cde2f0;
}
.menulist dt {
	display: table-cell;
	padding: 0.4rem 0 0.4rem 0.8rem;
}
.menulist dd {
	text-align: right;
	display: table-cell;
	min-width: 6rem;
	padding: 0.4rem 0.8rem 0.4rem 0;
}
.menulist h3 {
	text-align: center;
	color: #8DA38A;
}
.menulist h3:before,.menulist h3:after {
	content: "-";
	color: #8DA38A;
	margin: 0.5rem;
}
.gentei {
	display: inline-block;
	background-color: #8DA38A;
	margin-left: 6px;
	padding: 1px 6px 0 6px;
	color: #ffffff;
	border-radius: 4px;
}

/* イベントシリーズ */
#event_series {
	width: 100%;
	max-width: 800px;
}
#event {
	display: flex;
	width: 100%;
	gap: 15px;
}
#event img:hover {
	opacity: 0.8;
	transition-duration: 0.5s;
}

/* address_2 */
address_2 {
	font-style: normal;
}
address_2 ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}
address_2 li {
	display: inline-block;
	margin-right: 15px;
}
address_2 h4::before {
	content: "■";
}
address_2 img {
	margin-bottom: 15px;
	max-width: 100%;
}
address_2 a {
	color: #000000;
}

/* 1225px以下の場合 */
@media(max-width: 1225px) {
	header h1 img {
		margin-left: 8px;
	}
}

/* 959px以下の場合 */
@media(max-width: 959px) {
	/* ハンバーガーメニュー ボタン部分 */
	#sp_gnavi_btn {
		position: fixed;
		top: 10px;
		right: 10px;
		height: 45px;
		width: 45px;
		background-color: #ffffff;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 200;
	}
	#sp_gnavi_btn span, #sp_gnavi_btn span::before, #sp_gnavi_btn span::after {
		content: "";
		display: block;
		position: absolute;
		width: 25px;
		height: 3px;
		background-color: #8DA38A;
		transition: all 0.6s ease-in-out;
	}
	#sp_gnavi_btn span::before {
		bottom: 8px;
	}
	#sp_gnavi_btn span::after {
		top: 8px;
	}
	#sp_gnavi_check:checked ~ #sp_gnavi_btn span {
		background-color: transparent; 
	}
	#sp_gnavi_check:checked ~ #sp_gnavi_btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#sp_gnavi_check:checked ~ #sp_gnavi_btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	
	/* ハンバーガーメニュー ナビゲーションメニュー */
	#gnavi {
		position: fixed;
		top: 0;
		left: 100%;
		width: 100%;
		height: 100%;
		padding-top: 70px;
		background-color: rgba(255, 255, 255, 0.8);
		z-index: 100;
		transition: all 0.6s ease-in-out;
	}
	#sp_gnavi_check:checked ~ #gnavi {
		left: 0%;
	}
	#gnavi > ul {
		display: block;
		width: 100%;
		height: 50px;
	}
	#gnavi > ul > li {
		background-color: #F2EEE8;
		width: 100%;
		height: auto;
	}
	#gnavi ul li a {
		border-top: 1px solid #333333;
		width: 100%;
		margin: 0;
		padding-left: 10px;
		color: #000000;
		text-align: left;
	}
	#gnavi > ul > li:last-child {
		border-bottom: 1px solid #333333;
	}
	#gnavi li li {
		background-color: #C8D5C4;
		height: 45px;
		overflow: visible;
		display: block;
	}
	#gnavi li li a {
		padding-left: 30px;
		line-height: 45px;
	}
	#gnavi li:hover {
		background-color: #cde2f0;
	}
	#gnavi li:hover li {
		height: 45px;
	}
	#gnavi li li:hover {
		background-color: #9fc4d0;
	}
	
	/* メニューボタン */
	#menu_btn div {
		margin: 15px 10px 25px 10px;
	}
	
	/* お知らせ */
	#info h2 {
		padding: 1rem 0;
	}	
	.card_cont {
		padding: 10px 8px;
	}
	.card_cont h3 {
		margin-bottom: 0;
	}
	.card_cont_day, .card_cont_summary {
		margin-bottom: 0.35rem;
	}
}

/* 768px以下の場合 */
@media(max-width: 768px) {
	#explanation, #menu > p, #info > p {
		text-align: left;
		margin-left: 1rem;
		margin-right: 1rem;
	}
	
	/* メニューボタン */
	#menu_btn {
		flex-direction: column;
		margin: 15px 0;
	}
	
	/* お知らせ */
	.card {
		flex-basis: calc((100% - 18px) / 2);
	}
	
	/* お問い合わせ */
	#usercomment {
		width: 100%;
	}
	
	/* フッター */
	#footer_inner {
		max-width: 100%;
	}
	#footer_inner > div {
		justify-content: center;
	}
	#copyright {
		text-align: center;
	}
	
	/* ソーシャルメディアボタン */
	.snsbtn {
		width: 100%;
		font-size: medium;
		padding: 10px;
	}
	
	/* その他ページ */
	.menulist {
		padding: 20px 20px;
	}
	.formbtn {
		width: 100%;
	}
	.input {
		width: 100%;
	}
	button {
		width: 100%;
	}
	#event {
		display: block;
	}
	#event img {
		width: 100%;
	}
}