@charset "utf-8";
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	font-size: 62.5%;
}
body {
	text-align: center;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

/*headのスタイル*/

.headarea {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 100;
	background-color: #fff;
	border-bottom:2px solid #b55819;
}

.logo {
	float: left;
	width: 21%;
	margin-left: 2%;
}

.logo img {
	width: 100%;
	padding-top: 5%;
	padding-bottom: 2%;
}

/*チェックボックスを非表示にする*/

.nav-unshown{
    display: none;
}

.gnav {
    display: flex;
    list-style: none;
  justify-content: space-around;
}



.navarea ul {
	float: right;
	width: 60%;
	font-size: 0;
}

.navarea li {
	display: inline-block;
	font-size: 1.4rem;
	width: 25%;
}

.navarea li strong {
	font-size: 1.8rem;
}

.navarea li a {
	display: block;
	width: 100%;
	border-left: 2px solid #fff;
	padding: 8% 0 10%;
	text-decoration: none;
	color: #fff;
	background-color: #b5581a;
	line-height: 1.4;
}
.navarea li a:hover {
  background-color: rgba(229, 0, 18, 0.9);
}
.navopen {
	position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
}
.submenu li{
    display:block;
	height: 0;
	overflow: hidden;
	width: 168%;
}

.navopen:hover .submenu li {
	height: 100%;
	/*overflow: visible;*/
	trainsition:all 3s ease-in-out 3s;
}

.submenu li a{
    background-color: rgba(186, 88, 26, 0.6);
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-top: none;
	padding: 5% 0 6%;
}
.submenu li a:hover{
    background-color: rgba(229, 0, 18, 0.9);
	color: #fff;
}


/*********clearfix*********/

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/*mainのスタイル*/

.mainimage {
	height: 600px;
	width: 100%;
	margin-top: 2%;
	background: url("../images/mainimage.png") center no-repeat;
	background-size: cover;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

.mainlogo {
	position: absolute;
	top: 280px;
	width: 40%;
	margin: 0 30%;
}

.mainlogo img {
	width: 100%;
}

/*コンテンツのスタイル*/

.heading {
	position: relative;
	color: #b5581a;
	font-weight: bold;
	font-size: 5rem;
	display: inline-block;
	padding-bottom: 9px;
	padding-top: 40px;
}

.heading::before,
.heading::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	border-bottom: 3px solid #e50012;
}

.heading::after {
	bottom: 7px;
	border-bottom: 3px solid #004097;
}

/*ニュースのスタイル*/

.newsarea {
	margin: 40px auto;
	overflow: hidden;
	width: 86%;
}

.newsarea .heading {
	padding-top: 0;
	font-size: 4rem;
}

.newsbox {
	text-align: left;
	padding-left: 20px;
	width: 70%;
	height: 100px;
	border: 1px solid #000;
	float: right;
	margin-right: 10%;
	overflow-y: scroll;
}

.news-item {
	font-size: 1.6rem;
	list-style-type: none;
	line-height: 2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news-item a {
	text-decoration: none;
	color: #000;
}

.news-item a:hover {
	text-decoration: underline;
}

.news-item .date {
	color: #b5581a;
}

/*aboutのスタイル*/

.aboutarea {
	clear: both;
	background: url("../images/topback.png") center no-repeat;
	background-size: cover;
	margin-top: 20px;
	padding-bottom: 80px;
}

.about-text {
	margin-top: 40px;
	font-size: 1.6rem;
	line-height: 2;
	margin-bottom: 80px;
}

/*ボタンのスタイル*/

.button a {
	font-size: 2.2rem;
	font-weight: bold;
	text-decoration: none;
	color: #004097;
	border-radius: 6px;
	border: 3px solid #e50012;
	background-color: #fff;
	height: 60px;
	padding: 16px 80px;
	transition: 0.3s;
}

.button a:hover {
	background-color: rgba(229, 0, 18, 0.3);
}

/*メニューのスタイル*/

.cafemenu {
	margin-top: 40px;
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
	background: url("../images/topcafe.png")center no-repeat;
	background-size: cover;
}

.cafe-white {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0 auto;
	width: 100%;
	height: 300px;
	background-color: rgba(255, 255, 255, 0.6);
	transition: .5s;
}

.cafe-white:hover {
	background-color: transparent;
	transition: .5s;
}

.foodmenu {
	width: 100%;
	height: 300px;
	font-size: 0;
}

.morningarea {
	background: url("../images/topmorning.png")center no-repeat;
	background-size: cover;
	float: left;
	width: 33%;
}
.luncharea {
	background: url("../images/toplunch.png")center no-repeat;
	background-size: cover;
	float: left;
	width: 34%;
}
.dinnerarea {
	background: url("../images/topdinner.png")center no-repeat;
	background-size: cover;
	float: left;
	width: 33%;
}

.food-white-box {
	width: 100%;
	height: 300px;
	font-size: 0;
	background-color: rgba(255, 255, 255, 0.6);
	display: inline-block;
	overflow: hidden;
	transition: .5s;
}

.food-white-box:hover {
	background-color: transparent;
	transition: .5s;
}

/*メニュー重なっている文字*/
/*.menu-title {
	font-size: 4rem;
	font-weight: bold;
	padding: 32px 0 10px;
}*/

.menu-title {
	font-size: 4rem;
	font-weight: bold;
	color: #004095;
	padding: 36px 0 10px;
}

.menu-title strong {
	color: #e30012;
}

.menu-title {
	text-shadow    : 
       2px  2px 1px #ffffff,-2px  2px 1px #ffffff,
       2px -2px 1px #ffffff,-2px -2px 1px #ffffff,
       2px  0px 1px #ffffff,0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,0px -2px 1px #ffffff; 
}

.menu-sub {
	font-size: 2rem;
	padding-bottom: 30px;
	/*font-weight: bold;*/
	/*background-color: rgba(255, 255, 255, 0.6);*/
}

.menu-time {
	font-size: 2.6rem;
	/*background-color: rgba(255, 255, 255, 0.6);*/
}

.menu-button {
	margin-top: 36px;
	display: inline-block;
	font-size: 2.2rem;

}

.menu-button a {
	display: inline-block;
	width: 200px;
	padding: 16px 0;
	color: #fff;
	text-decoration: none;
	background-color: rgba(181, 88, 26 ,0.9);
	border-radius: 4px;
	transition: 0.5s;
}

.menu-button a:hover {
	background-color: rgba(181, 88, 26 ,1);
	/*box-shadow: 0px 2px 34px 8px rgba(181, 88, 26, 0.6);*/
	box-shadow: 0px 2px 34px 8px rgba(255, 255, 255, 0.6);
	transition: 0.2s;
}

/*アクセスのスタイル*/
.accessarea {
	margin: 40px auto;
	width: 80%;
	height: 450px;
}

.accessarea .button {
	margin-top: 60px;
}

#ViewArea {
	width: 100%;
	height: 300px;
	margin: 30px auto 40px;
	border: 1px solid #000;
}

/*フッターのスタイル*/

.footerarea {
	height: 150px;
	width: 100%;
	background-color: #b5581a;
}

.footerarea p {
	color: #fff;
	font-size: 1.4rem;
	padding-top: 100px;
}

@media(max-width: 768px) {
	
	/*横幅768pxヘッダーのスタイル*/
	.logo {
		width: 44%;
		padding-bottom: 10px;
	}
	
	.logo img {
		padding-top: 10px;
	}
	
	.mainimage {
		margin-top: 0;
		height: 400px;
	}
	
	.heading {
		font-size: 4rem;
		padding-top: 30px;
	}
	
	.mainlogo {
	position: absolute;
	top: 200px;
	width: 80%;
	margin: 0 10%;
}
	
	
	/*展開したナビゲーションのスタイル*/
	
.navarea ul {
	width: 100%;
}

.navarea li {
	display: inline-block;
	width: 100%;
}

.navarea li a {
	border: none;
	color: #b5581a;
	background-color: #fff;
}


/*アイコン部分の領域*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
  position: absolute;
  top: 10px;
  right: 10px;
}
/*ハンバーガーメニューボタンの三本線*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px; /*線の太さ*/
  width: 25px; /*長さ*/
  border-radius: 3px;
  background: #b5581a;
  display: block;
  content: '';
  cursor: pointer;
}
/*ハンバーガーメニューボタンの三本線の上の線*/
#nav-open span:before {
  bottom: -8px;
}
/*ハンバーガーメニューボタンの三本線の下の線*/
#nav-open span:after {
  bottom: -16px;
}
/*閉じる用のグレーカバー*/
#nav-close {
  display: none; /*初期状態では非表示*/
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 1.00);
  opacity: 0;
}
/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 100vw; /*初期状態では右画面外に配置して表示させない*/
  z-index: 9999; /*最前面に配置*/
  width: 300px;
  height: 100%;
  background: rgba(255, 255, 255, 1.00);
}
/*inputタグにチェックが入ったらカバーやナビゲーションをアニメーションで表示*/
/*カバー部分のスタイル*/
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}
/*ナビゲーション部分のスタイル*/
#nav-input:checked ~ #nav-content {
  left: calc(100vw - 300px); /*チェックが入ったら画面右端に配置して表示*/
  box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}
#nav-input:checked ~ #nav-open span {
  background: rgba(47, 47, 47, 0.0);
}
#nav-input:checked ~ #nav-open span:before {
  -webkit-transform: translateY(4px) rotate(-45deg);
  transform: translateY(4px) rotate(-45deg);
  z-index: 10000;
}
#nav-input:checked ~ #nav-open span:after {
  -webkit-transform: translateY(-4px) rotate(45deg);
  transform: translateY(-4px) rotate(45deg);
  z-index: 10000;
}
.gnav {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 100vh;
  list-style: none;
  justify-content: center;
  align-items: center;
}
    
	
	/*横幅768pxニュースのスタイル*/
	
	.newsarea {
		width: 100%;
		margin-top: 30px;
	}
	
	.newsbox {
		float: none;
		width: 100%;
		padding: 0;
		margin: 20px auto 0;
		height: 120px;
		border-left: none;
		border-right: none;
	}
	
	.newsbox ul {
		width: 92%;
		margin: 12px auto 0;
	}
	
	.news-item {
		font-size: 1.4rem;
		text-decoration: underline;
		line-height: 2.2;
	}

	/*横幅768pxアバウトのスタイル*/
	.aboutarea {
		margin-bottom: 20px;
	}

	.about-text {
		width: 90%;
		margin: 30px auto 60px;
	}
	
	/*横幅768pxメニューのスタイル*/
	
	.cafemenu {
		background: url("../images/topcafe_sp.png")center no-repeat;
		background-size: cover;
		height: 200px;
	}
	
	.morningarea {
		width: 100%;
		height: 200px;
	}
	.luncharea {
		width: 100%;
		height: 200px;
	}
	.dinnerarea {
		width: 100%;
		height: 200px;
	}
	
	/*横幅768pxメニュー重なっている文字*/
	.menu-title {
		font-size: 4rem;
		margin-top: 20px;
		padding: 0;
	}

	.menu-sub {
		font-size: 1.6rem;
		margin-bottom: 10px;
		font-weight: bold;
		padding: 0;
	}

	.menu-time {
		font-size: 1.6rem;
	}

	.menu-button {
		margin-top: 20px;
		display: inline-block;
		font-size: 2.2rem;

	}
	
	/*横幅768pxアクセスのスタイル*/
	.accessarea {
		width: 100%;
	}
	
	/*横幅768pxフッターのスタイル*/
	
	.footerarea {
		height: 100px;
	}
	
	.footerarea p {
		padding-top: 60px;
	}
	
}
