﻿/*-----------------------------------------------------------------------  
 // レイアウト  
-------------------------------------------------------------------------*/ 


/*-----------------------------------------------------------------------  
 // ページ共通 
-------------------------------------------------------------------------*/ 

html {
	height: 100%;
}

body {
	behavior:url(./csshover3.htc);
	text-align: center;
	width: 100%;
	background-color: #FFFFFF;
	color: #000000;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-size: 16px;
	line-height: 170%;
	-webkit-print-color-adjust: exact;
}

a {
	text-decoration: none;
	color: #5F692E;
}

a:hover {
	cursor: pointer;
	opacity: 0.5;
	color: #5F692E;
}

form {
	padding: 0px 0px; 0px 0px;
	margin-bottom: 30px;
}


.caption {
	font-size: 18px;
	font-weight: bold;
}

.text {
	margin-top: 20px;
	margin-bottom: 20px;
}

.clear {
	clear: both;
}



.text-link {
	width: fit-content;
	display: inline-block;
	background-color: #5F692E;
	color: #FFFFFF;
	border-radius: 20px;
	padding: 5px 10px 5px 10px;
	margin: 0px 10px;	
}

.text-link:hover {
	color: #210F05;
}

.text-mspg {
	font-family: 'ＭＳ Ｐゴシック',"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.centering {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
}

.photo {
	width: 100%;
}

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

.site-header{
	padding: 0px;
	position: fixed;
	top: 0;
	transition: .5s;
	width: 100%;
	z-index: 800;
}
.site-header.hide{
	transform: translateY(-110%);
}

/*-----------------------------------------------------------------------  
 // トップに戻るボタン
-------------------------------------------------------------------------*/ 

.pagetop-button {
	display: inline-block;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #413619;
	border-radius: 5px;
	position:  relative;
	height: 50px;
	width: 50px;
}

.pagetop-button::before {
	content: '';
	width: 20px;
	height: 20px;
	display: block;
	border-top: solid 2px;
	border-right: solid 2px;
	transform: rotate(-45deg);
	position: absolute;
	top: 10px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}


/*-----------------------------------------------------------------------  
 // 入力フォーム
-------------------------------------------------------------------------*/ 

.required {
	color: #B60005;
}
.required:after {
	content: "　*必須";
	font-size: 12px;
}

.box-input {
	margin-bottom: 20px;
}

.box-input input{
	width: 100%;
	height: 40px;
	padding: 5px;
	margin-bottom: 5px;
	font-size: 16px;
}

.box-input select{
	width: 101%;
	height: 60px;
	padding: 5px;
	margin-bottom: 5px;
	font-size: 16px;
	color: #000000;
	border-color: #999999;
	background-color: #FFFFFF;
}

.box-input option{
	width: 100%;
	height: 60px;
	padding: 5px;
	margin-bottom: 5px;
	font-size: 16px;
	color: #000000;
}

.box-input textarea {
	width: 100%;
	height: 200px;
	padding: 5px;
	margin-bottom: 5px;
	font-size: 16px;
}


.button-submit {
	text-align: center;
	margin-top: 20px;
}

.button-submit button {
	appearance: none;
	border: 0;
	border-radius: 5px;
	width: 250px;
	height: 70px;
	margin-top: 20px;
	background-color: #5F692E;
	color: #FFFFFF;
	font-size: 16px;
	cursor: pointer;
	margin-left: 10px;
	margin-right: 10px;
}

.button-submit button:hover {
	background: #311301;
	color: #FFFFFF;
}

button.button-cancel {
	appearance: none;
	border: 0;
	border-radius: 5px;
	width: 250px;
	height: 70px;
	margin-top: 20px;
	background-color: #CCCCCC;
	color: #000000;
	font-size: 16px;
	cursor: pointer;
	margin-left: 10px;
	margin-right: 10px;
}


/*-----------------------------------------------------------------------  
 // その他
-------------------------------------------------------------------------*/ 

.not-print {
	display: none;
}

@media print{
	div.noprint{
		display:none;
	}
}

img {
	border:none;
}


.scale {
    overflow: hidden;
}
.scale img {
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
}
.scale img:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}


#container {
	margin: 0px auto;
	position: relative;
	min-height: 100%;
	height: 100%;
}



.centering {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}


/*-----------------------------------------------------------------------  
 // 罫線 
-------------------------------------------------------------------------*/ 

hr.solid {
	border: none;
	border-top: 1px solid #000000;
	height: 1px;
	color: #FFFFFF;
}

hr.solid-bold {
	border: none;
	border-top: 2px solid #000000;
	height: 2px;
	color: #FFFFFF;
}

hr.dashed {
	border: none;
	border-top: 1px dashed #CCCCCC;
	height: 1px;
	color: #FFFFFF;
}


/*-----------------------------------------------------------------------  
 // PC用
-------------------------------------------------------------------------*/ 

@media screen and (min-width: 1200px) {

	.none-pc {
		display: none;
	}

	#wrap{
		clear: both;
		width: 1200px;
		min-height: 600px;
		margin-top: 50px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 100px;
		text-align: left;
	}

	div.height-adjustment {
		padding-top: 230px;
		margin-top: -230px;
	}

	div.height-adjustment-bottom {
		clear: both;
		margin-bottom: 100px;
	}

	h2 {
		position: relative;
		margin-bottom: 0.5rem;
		padding: 1.5rem 0;
		border-bottom: 5px solid;
		color: #5F692E;
		font-size: 60px;
		font-weight: bold;
		letter-spacing: 10px;
		margin-bottom: 50px;
	}

	h2:before {
		position: absolute;
		bottom: -0.6rem;
		left: 0rem;
		right: 0rem;
		border-bottom: 1px solid;
		content: '';
	}

	h3 {
		position: relative;
		padding: 30px;
		border-radius: 5px;
		border: 2px solid #333333;
		color: #333333;
		font-weight: bold;
		font-size: 35px;
		letter-spacing: 5px;
		text-align: center;
		margin-bottom: 50px;
	}

	h3:before {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		height: 3px;
		width: 20px;
		background-color: #FFFFFF;
		content: "";
	}

	h3:after {
		position: absolute;
		top: 90%;
		left: 50%;
		transform: translateX(-50%);
		height: 20px;
		width: 2px;
		background-color: #333333;
		content: "";
	}


	h4 {
		color: #000000;
		font-size: 24px;
		letter-spacing: 2px;
	}

	.caption-english {
		margin-left: 30px;
		color: #5F692E;
		font-size: 36px;
		letter-spacing: 3px;
	}

	.unit {
		clear: both;
		width: 100%;
		text-align: left;
		margin: 20px 0px 150px 0px;
	}

	.contents {
		clear: both;
		width: 100%;
		text-align: left;
		margin: 30px 0px 50px 0px;
	}

	/*-------- 吹き出し --------*/

	.fukidashi {
		position: relative; /* 三角の位置を固定するために設定 */
		width: 98%; /* 幅 */
		margin: 0 auto 40px; /* 上 左右 下のマージン */
		padding: 20px; /* ふきだし内の余白 */
		background: #FFFFFF; /* 背景色 */
		border: 1px solid #B60005; /* 線色 */
		text-align: center; /* テキストの揃え */
		color: #B60005;
	}
	.fukidashi::before,
	.fukidashi::after { /* 三角 */
		content: '';
		border: 14px solid transparent;
		position: absolute;
		left: 50%;
		margin-left: -14px;
	}
	.fukidashi::before { /* 線になる部分 */
		border-top-color: #B60005; /* 吹き出しの線の色と同じ色 */
		bottom: -28px;
	}
	.fukidashi::after { /* 地の部分 */
		border-top-color: #FFFFFF; /* 吹き出しの背景色と同じ色 */
		bottom: -27px;
	}


	/*-------- パララックス --------*/

	.front-content {
		background-color: #FFFFFF;
	}

	.parallax-content-up {
		min-height: 1200px;
		min-width: 100%;
		background-position: center top;
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size: cover;
	}

	.parallax-content {
		min-height: 500px;
		min-width: 100%;
		background-position: center top;
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size: cover;
	}

	.photo-image-top-tb {
		display: none;
	}

	.photo-image-tb {
		display: none;
	}

	.photo-image-top-sp {
		display: none;
	}

	.photo-image-sp {
		display: none;
	}

	/*-------------------------------------------------  
	 // トップに戻る
	--------------------------------------------------*/

	#pagetop {
		z-index: 1;
		position: fixed;
		right: 70px;
		bottom: 300px;
	}

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

	#header-main {
		width: 100%;
		height: 140px;
		border-top: 25px solid #5F692E;
		border-bottom: 5px solid #413619;
		padding-top: 30px;
		padding-bottom: 30px;
		margin-bottom: 20px;
		background-color: #FFFFFF;
	}

	#logo-header {
		position: fixed;
		top: 65px;
		left: 50px;
	}
	#logo-header img {
		width: 400px;
	}

	#time-header {
		position: fixed;
		top: 80px;
		right: 190px;
		text-align: right;
		color: #000000;
		font-size: 19px;
	}

	.time-circle-noon-header {
		background: #CF9824;
		border-radius: 50%;
		width: 30px;
		height: 30px;
		color: #FFFFFF;
		font-size: 20px;
		text-align: center;
		line-height: 30px;
		float: left;
		margin-right: 10px;
	}

	.time-circle-night-header {
		background: #40220F;
		border-radius: 50%;
		width: 30px;
		height: 30px;
		color: #FFFFFF;
		font-size: 20px;
		text-align: center;
		line-height: 30px;
		float: left;
		margin-right: 10px;
	}

	.time-circle-text-header {
		float: left;	
		margin-right: 20px;
		font-size: 24px;
	}

	#access-header {
		position: fixed;
		top: 120px;
		right: 190px;
		text-align: right;
		color: #000000;
		font-size: 24px;
	}

	#access-header a {
		width: fit-content;
		text-align: center;
		display: inline-block;
		background-color: #5F692E;
		color: #FFFFFF;
		border-radius: 20px;
		padding: 5px 20px 5px 20px;
		margin-left: 15px;
	}

	#twitter-header {
		position: fixed;
		top: 75px;
		right: 50px;
		width: 90px;
	}

	#global {
		position: fixed;
		top: 210px;
		right: 50px;
	}
	#global li { 
		display: inline-block;
	}
	#global div {
		width: 220px;
		height: 35px;
		padding-top: 20px;
		padding-bottom: 15px;
		color: #FFFFFF;
		background-color: #413619;
		font-size: 20px;
		font-weight: bold;
		text-decoration: none;
		letter-spacing: 5px;
		opacity: 0.8;
	}

	#global li a {
		position: relative;
		display: inline-block;
		text-decoration: none;
	}

	#global li a::after {
		position: absolute;
		bottom: 10px;
		left: 0;
		content: '';
		width: 100%;
		height: 1px;
		background: #FFFFFF;
		transform: scale(0, 1);
		transform-origin: center top;
		transition: transform .3s;
	}

	#global li a:hover::after {
		transform: scale(1, 1);
	}

	#header-blank {
		height: 40px;
	}

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

	#footer {
		width: 100%;
		height: 250px;
		color: #FFFFFF;
		padding-top: 20px;
		padding-bottom: 20px;
		position: relative;
		background-color: #5F692E;
	}

	#logo-footer {
		position: absolute;
		top: 50px;
		left: 50px;
		width: 400px;
	}

	#address-footer {
		position: absolute;
		top: 200px;
		left: 50px;
		text-align: left;
	}

	#address-footer span{
		font-size: 20px;
		margin-right: 20px;
	}

	#global-footer { 
		position: absolute;
		top: 50px;
		right: 50px;
		text-align: left;
	}

	#global-footer ul {
		list-style: none;
	}

	#global-footer li { 
		display: inline-block;
	}

	#global-footer a {
		width: 120px;
		text-align: center;
		font-weight: bold;
		display: inline-block;
		background-color: #FFFFFF;
		color: #5F692E;
		border-radius: 20px;
		padding: 5px 20px 5px 20px;
		margin: 0px 5px;	
	}

	#button-shop-footer {
		position: absolute;
		top: 130px;
		right: 220px;
		width: 73px;
	}

	#button-mail-footer {
		position: absolute;
		top: 130px;
		right: 135px;
		width: 73px;
	}

	#button-twitter-footer {
		position: absolute;
		top: 130px;
		right: 50px;
		width: 73px;
	}

	#copyright-footer {
		position: relative;
		height: 50px;
		color: #FFFFFF;
		background-color: #413619;"
	}

	#copyright-footer span {
		position: absolute;
		top: 15px;
		right: 50px;
		font-size: 20px;
		letter-spacing: 5px;
	}

	#copyright-footer a {
		color: #FFFFFF;
	}


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

	#wrap-top{
		clear: both;
		width: 1200px;
		margin-top: 150px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 150px;

		text-align: left;
	}

	#info-top{
		width: 700px;
		float: left;
	}

	#catch-top {
		font-size: 110px;
		font-weight: bold;
		line-height: 125px;
		letter-spacing: 10px;
	}

	#schedule-top {
		width: 450px;
		float: right;
	}

	.box-schedule-top {
		clear: both;
		text-align: right;
		margin-bottom: 15px;
	}

	.month-schedule-top {
		float: left;
		min-width: 30px;
		min-height: 10px;
		margin-right: 5px;
	}

	.day-schedule-top {
		float: left;
		width: 90px;
		margin-right: 10px; 
	}

	.open-schedule-top {
		float: left;
		width: 300px;
		text-align: left;
	}

	.caption-top {
		font-size: 36px;
		font-weight: bold;
	}

	.caption-english-top {
		font-size: 25px;
		font-weight: bold;
		margin-left: 20px;
		letter-spacing: 2px;
	}

	.box-top {
		clear: both;
		width: 100%;
		border-top: 2px solid #000000;
		border-bottom: 2px solid #000000;
		padding-top: 30px;
		padding-bottom: 30px;
		margin-top: 10px;
	}

	.info-title {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.text-top {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	#online-left-top {
		float: left;
		width: 750px;
		margin-right: 50px;
	}

	#online-right-top {
		float: left;
		width: 400px;
	}



	/*-------- パララックス --------*/

	.parallax-content-up.image-top-1 {
		background-image: url('/images/photo_background_1.jpg');
	}

	.parallax-content.image-top-2 {
		background-image: url('/images/photo_background_2.jpg');
	}

	.parallax-content.image-top-3 {
		background-image: url('/images/photo_background_3.jpg');
	}


	/*-------------------------------------------------  
	 // 営業案内
	--------------------------------------------------*/

	.box-left-guide {
		float: left;
		width: 720px;
	}
	
	.profile-guide {
		clear: both;
		margin-bottom: 30px;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.caption-profile-guide {
		float: left;
		width: 120px;
	}

	.contents-profile-guide {
		float: left;
		width: 500px;
	}

	.contents-profile-guide span {
		margin-right: 10px;
	}

	.box-right-guide {
		float: right;
		width: 400px;
	}

	.photo-guide {
		width: 100%;
		margin-bottom: 10px;
	}

	/*-------- 営業スケジュール --------*/

	div.schedule {
		float: left;
		margin-right: 20px;
	}

	table.schedule {
		border-collapse: collapse; border: 1px solid #413619;
	}

	td.schedule-month {
		height: 46px;
		text-align: center;
		background-color: #5F692E;
		color: #FFFFFF;
		font-weight: bold;
	}

	tr.schedule-weekday {
		text-align: center;
		background-color: #413619;
		color: #FFFFFF;
	}

	td.schedule-weekday {
		height: 46px;
		width: 46px;
	}

	tr.schedule-day {
		text-align: center;
		background-color: #FFFFFF;
	}

	td.schedule-day {
		height: 46px;
		border-collapse: collapse;
		border: 1px solid #413619;
	}

	td.schedule-day-1 {
		background-color: #FFFFFF;
		border: solid 1px #311301;
	}

	td.schedule-day-2 {
		background-color: #F4A2B0;
		border: solid 1px #311301;
	}

	/*-------- 当店について --------*/

	.box-left-introduction {
		float: left;
		width: 720px;
	}

	.box-right-introduction {
		float: right;
		width: 400px;
	}

	.photo-introduction {
		width: 100%;
	}

	/*-------- パララックス --------*/

	.parallax-content-up.image-guide-1 {
		background-image: url('/guide/images/photo_background_1.jpg');
	}

	.parallax-content.image-guide-2 {
		background-image: url('/guide/images/photo_background_2.jpg');
	}

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

	.box-menu {
		clear: both;
		margin-bottom: 60px;
	}

	.box-left-menu {
		float: left;
		width: 550px;
	}
	
	.box-right-menu {
		float: right;
		width: 550px;
	}

	.name-menu {
		font-size: 24px;
		font-weight: bold;
	}

	.name-menu-nontext {
		float: left;
		font-size: 24px;
		font-weight: bold;
	}

	.price-menu {
		text-align: right;
		font-size: 22px;
		font-weight: bold;
		padding-right: 10px;
		margin-bottom: 10px;
	}

	.price-menu-nontext {
		float: right;
		text-align: right;
		font-size: 22px;
		font-weight: bold;
		padding-right: 10px;
		margin-bottom: 10px;
	}

	.photo-menu {
		width: 100%;
		margin-bottom: 10px;
	}

	.description-menu {
		font-size: 16px;
	}

	/*-------- パララックス --------*/

	.parallax-content-up.image-menu-1 {
		background-image: url('/menu/images/photo_background_1.jpg');
	}

	.parallax-content.image-menu-2 {
		background-image: url('/menu/images/photo_background_2.jpg');
	}

	/*-------------------------------------------------  
	 // お問合せ
	--------------------------------------------------*/

	.contact-item {
		margin-bottom: 15px;
	}

	#contact input {
		width: 100%;
		height: 40px;
		padding: 5px;
		margin-bottom: 5px;
		font-size: 14px;
	}

	#contact textarea {
		width: 100%;
		height: 200px;
		padding: 5px;
		margin-bottom: 5px;
		font-size: 14px;
	}

	.contact-alert {
		font-size: 14px;
		color: #B60005;
	}

	/*-------- パララックス --------*/

	.parallax-content-up.image-contact-1 {
		background-image: url('/contact/images/photo_background_1.jpg');
	}

	.parallax-content.image-contact-2 {
		background-image: url('/contact/images/photo_background_2.jpg');
	}

	/*-------------------------------------------------  
	 // 管理者ページ
	--------------------------------------------------*/

	.submenu {
		font-size: 0;
		padding-left: 0;
	}

	.submenu li {
		list-style: none;
		display: inline-block;
		margin-right: 10px;
	}

	.submenu button {
		appearance: none;
		border: 0;
		border-radius: 5px;
		background: #413619;
		color: #FFFFFF;
		padding: 8px 16px;
		font-size: 16px;
		cursor: pointer;
	}

	/*-------- ログイン --------*/

	div#name-login-manager {
		height: 50px;
		margin-bottom: 10px;
	}

	div#name-login-manager input {
		width: 200px;
		height: 30px;
		margin-left: 15px;
		text-align: center;
		padding: 5px;
	}

	div#pass-login-manager {
		height: 50px;
	}

	div#pass-login-manager input {
		width: 200px;
		height: 30px;
		margin-left: 15px;
		text-align: center;
		padding: 5px;
	}


	/*-------- パスワード変更 --------*/

	div.pass-password-manager {
		height: 50px;
		margin-bottom: 10px;
	}

	div.pass-password-manager input {
		width: 200px;
		height: 30px;
		margin-left: 15px;
		text-align: center;
		padding: 5px;
	}

	/*-------- スケジュール管理 --------*/

	#button-prev-month-schedule-manager {
		width: 20%;
		float: left;
	}

	#button-prev-month-schedule-manager input {
		appearance: none;
		border: 0;
		border-radius: 5px;
		width: 100%;
		height: 50px;
		background-color: #5F692E;
		color: #FFFFFF;
		font-size: 16px;
		cursor: pointer;
		margin-left: 10px;
		margin-right: 10px;
	}

	#yearmonth-schedule-manager {
		width: 60%;
		float: left;
		text-align: center;
		font-size: 30px;
		font-weight: bold;
		line-height: 50px;
		letter-spacing: 5px;
	}

	#button-next-month-schedule-manager {
		width: 20%;
		float: right;
	}

	#button-next-month-schedule-manager input {
		appearance: none;
		border: 0;
		border-radius: 5px;
		width: 100%;
		height: 50px;
		background-color: #5F692E;
		color: #FFFFFF;
		font-size: 16px;
		cursor: pointer;
		margin-left: 10px;
		margin-right: 10px;
	}

	table#schedule-manager {
		width: 100%;	
	}

	tr#caption-schedule-manager {
		font-size: 18px;
		font-weight: bold;	
	}

	td#caption-day-schedule-manager {
		text-align: center;
		width: 100px;
		height: 40px;
		line-height: 40px;
	}

	td#caption-open-schedule-manager {
		text-align: center;
		width: 120px;
	}

	td#caption-memo-schedule-manager {
		text-align: center;
		width: 800px;
	}

	td.input-day-schedule-manager {
		height: 35px;
		text-align: center;
		line-height: 30px;
	}

	td.input-open-schedule-manager {
		line-height: 35px;
	}

	td.input-open-schedule-manager select{
		width: 90%;
		height: 35px;
	}

	td.input-memo-schedule-manager {
		text-align: left;
		line-height: 30px;
	}

	td.input-memo-schedule-manager input {
		width: 95%;
		height: 30px;
	}

	/*-------- お知らせ管理 --------*/

	textarea#info-manager {
		width: 100%;
		height: 600px;
		padding: 10px;
		font-size: 18px;
	}

	/*-------- パララックス --------*/

	.parallax-content-up.image-manager-1 {
		background-image: url('/manager/images/photo_background_1.jpg');
	}

	.parallax-content.image-manager-2 {
		background-image: url('/manager/images/photo_background_2.jpg');
	}

}


/*-----------------------------------------------------------------------  
 // タブレット用
-------------------------------------------------------------------------*/ 

@media only screen and (min-width: 768px) and (max-width: 1200px) {

	.none-tb {
		display: none;
	}

	#wrap{
		clear: both;
		width: 90%;
		min-height: 500px;
		margin-top: 30px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 50px;
		text-align: left;
	}

	div.height-adjustment {
		padding-top: 180px;
		margin-top: -180px;
	}

	div.height-adjustment-bottom {
		clear: both;
		margin-bottom: 30px;
	}

	h2 {
		position: relative;
		margin-bottom: 0.5rem;
		padding: 1.5rem 0;
		border-bottom: 5px solid;
		color: #5F692E;
		font-size: 50px;
		font-weight: bold;
		letter-spacing: 8px;
		margin-bottom: 20px;
	}

	h2:before {
		position: absolute;
		bottom: -0.6rem;
		left: 0rem;
		right: 0rem;
		border-bottom: 1px solid;
		content: '';
	}

	h3 {
		position: relative;
		padding: 30px;
		border-radius: 5px;
		border: 2px solid #333333;
		color: #333333;
		font-weight: bold;
		font-size: 35px;
		letter-spacing: 5px;
		text-align: center;
		margin-bottom: 50px;
	}

	h3:before {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		height: 3px;
		width: 20px;
		background-color: #FFFFFF;
		content: "";
	}

	h3:after {
		position: absolute;
		top: 90%;
		left: 50%;
		transform: translateX(-50%);
		height: 20px;
		width: 2px;
		background-color: #333333;
		content: "";
	}


	h4 {
		color: #000000;
		font-size: 24px;
		letter-spacing: 2px;
	}

	.caption-english {
		margin-left: 25px;
		color: #5F692E;
		font-size: 30px;
		letter-spacing: 3px;
	}

	.unit {
		clear: both;
		width: 100%;
		text-align: left;
		margin: 20px 0px 20px 0px;
	}

	.contents {
		clear: both;
		width: 100%;
		text-align: left;
		margin: 10px 0px 20px 0px;
	}

	/*-------- 吹き出し --------*/

	.fukidashi {
		position: relative; /* 三角の位置を固定するために設定 */
		width: 98%; /* 幅 */
		margin: 0 auto 40px; /* 上 左右 下のマージン */
		padding: 20px; /* ふきだし内の余白 */
		background: #FFFFFF; /* 背景色 */
		border: 1px solid #B60005; /* 線色 */
		text-align: center; /* テキストの揃え */
		color: #B60005;
	}
	.fukidashi::before,
	.fukidashi::after { /* 三角 */
		content: '';
		border: 14px solid transparent;
		position: absolute;
		left: 50%;
		margin-left: -14px;
	}
	.fukidashi::before { /* 線になる部分 */
		border-top-color: #B60005; /* 吹き出しの線の色と同じ色 */
		bottom: -28px;
	}
	.fukidashi::after { /* 地の部分 */
		border-top-color: #FFFFFF; /* 吹き出しの背景色と同じ色 */
		bottom: -27px;
	}

	/*-------- パララックス --------*/

	.front-content {
	}

	.parallax-content-up {
	}

	.parallax-content {
	}

	.photo-image-top-tb {
		width: 100%;
		margin-top: 75px;
		vertical-align: bottom;
	}

	.photo-image-tb {
		width: 100%;
		vertical-align: bottom;
	}

	/*-------------------------------------------------  
	 // トップに戻る
	--------------------------------------------------*/

	#pagetop {
		z-index: 1;
		position: fixed;
		right: 50px;
		bottom: 190px;
	}

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

	#header-main {
		width: 100%;
		height: 80px;
		border-top: 12px solid #5F692E;
		border-bottom: 3px solid #413619;
		padding-top: 30px;
		padding-bottom: 30px;
		margin-bottom: 20px;
		background-color: #FFFFFF;
	}

	#logo-header {
		position: fixed;
		top: 30px;
		left: 20px;
	}
	#logo-header img {
		width: 300px;
	}

	#time-header {
		position: fixed;
		top: 50px;
		right: 110px;
		text-align: right;
		color: #000000;
		font-size: 18px;
	}

	.time-circle-noon-header {
		background: #CF9824;
		border-radius: 50%;
		width: 28px;
		height: 28px;
		color: #FFFFFF;
		font-size: 18px;
		text-align: center;
		line-height: 28px;
		float: left;
		margin-right: 8px;
	}

	.time-circle-night-header {
		background: #40220F;
		border-radius: 50%;
		width: 28px;
		height: 28px;
		color: #FFFFFF;
		font-size: 18px;
		text-align: center;
		line-height: 28px;
		float: left;
		margin-right: 8px;
	}

	.time-circle-text-header {
		float: left;	
		margin-right: 15px;
		font-size: 18px;
	}

	#access-header {
		position: fixed;
		top: 90px;
		right: 110px;
		text-align: right;
		color: #000000;
		font-size: 18px;
	}

	#access-header a {
		width: fit-content;
		text-align: center;
		display: inline-block;
		background-color: #5F692E;
		color: #FFFFFF;
		border-radius: 20px;
		padding: 5px 20px 5px 20px;
		margin-left: 15px;
	}

	#twitter-header {
		position: fixed;
		top: 50px;
		right: 30px;
		width: 70px;
	}

	#global {
		position: fixed;
		top: 138px;
		right: 20px;
	}
	#global li { 
		display: inline-block;
	}
	#global div {
		width: 160px;
		height: 28px;
		padding-top: 12px;
		padding-bottom: 8px;
		color: #FFFFFF;
		background-color: #413619;
		font-size: 18px;
		font-weight: bold;
		text-decoration: none;
		letter-spacing: 3px;
		opacity: 0.8;
	}

	#global li a {
		position: relative;
		display: inline-block;
		text-decoration: none;
	}

	#global li a::after {
		position: absolute;
		bottom: 7px;
		left: 0;
		content: '';
		width: 100%;
		height: 1px;
		background: #FFFFFF;
		transform: scale(0, 1);
		transform-origin: center top;
		transition: transform .3s;
	}

	#global li a:hover::after {
		transform: scale(1, 1);
	}

	#header-blank {
		height: 40px;
	}

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

	#footer {
		width: 100%;
		height: 160px;
		color: #FFFFFF;
		padding-top: 15px;
		padding-bottom: 15px;
		position: relative;
		background-color: #5F692E;
	}

	#logo-footer {
		position: absolute;
		top: 30px;
		left: 30px;
		width: 250px;
	}

	#address-footer {
		position: absolute;
		top: 140px;
		left: 30px;
		text-align: left;
	}

	#address-footer span{
		font-size: 20px;
		margin-right: 20px;
	}

	#global-footer { 
		position: absolute;
		top: 30px;
		right: 30px;
		text-align: left;
	}

	#global-footer ul {
		list-style: none;
	}

	#global-footer li { 
		display: inline-block;
	}

	#global-footer a {
		width: 90px;
		text-align: center;
		font-size: 14px;
		font-weight: bold;
		display: inline-block;
		background-color: #FFFFFF;
		color: #5F692E;
		border-radius: 20px;
		padding: 5px 10px 5px 10px;
		margin: 0px 3px;	
	}

	#button-shop-footer {
		position: absolute;
		top: 110px;
		right: 170px;
		width: 60px;
	}

	#button-mail-footer {
		position: absolute;
		top: 110px;
		right: 100px;
		width: 60px;
	}

	#button-twitter-footer {
		position: absolute;
		top: 110px;
		right: 30px;
		width: 60px;
	}

	#copyright-footer {
		position: relative;
		height: 40px;
		color: #FFFFFF;
		background-color: #413619;"
	}

	#copyright-footer span {
		position: absolute;
		top: 10px;
		right: 30px;
		font-size: 16px;
		letter-spacing: 2px;
	}

	#copyright-footer a {
		color: #FFFFFF;
	}


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

	#wrap-top{
		clear: both;
		width: 90%;
		margin-top: 150px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 80px;
		text-align: left;
	}

	#info-top{
		width: 100%;
		margin-bottom: 80px;
	}

	#schedule-top {
		width: 100%;
	}

	.box-schedule-top {
		clear: both;
		text-align: right;
		margin-bottom: 15px;
	}

	.month-schedule-top {
		float: left;
		width: 30px;
		min-height: 10px;
		margin-right: 5px;
	}

	.day-schedule-top {
		float: left;
		width: 90px;
		margin-right: 5px; 
	}

	.open-schedule-top {
		float: left;
		width: calc(100% - 130px);
		text-align: left;
	}

	.caption-top {
		font-size: 28px;
		font-weight: bold;
	}

	.caption-english-top {
		font-size: 16px;
		font-weight: bold;
		margin-left: 10px;
		letter-spacing: 0px;
	}

	.box-top {
		clear: both;
		width: 100%;
		border-top: 2px solid #000000;
		border-bottom: 2px solid #000000;
		padding-top: 30px;
		padding-bottom: 30px;
		margin-top: 10px;
	}

	.info-title {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.text-top {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	#online-left-top {
		float: left;
		width: 50%;
		margin-right: 3%;
	}

	#online-right-top {
		float: left;
		width: 47%;
	}


	/*-------- パララックス --------*/

	.parallax-content-up.image-top-1 {
		background-image: url('/images/photo_background_top_1.jpg');
	}

	.parallax-content.image-top-2 {
		background-image: url('/images/photo_background_top_2.jpg');
	}

	.parallax-content.image-top-3 {
		background-image: url('/images/photo_background_top_3.jpg');
	}


	/*-------------------------------------------------  
	 // 営業案内
	--------------------------------------------------*/

	.box-left-guide {
		width: 100%;
	}
	
	.profile-guide {
		clear: both;
		margin-bottom: 30px;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.caption-profile-guide {
		float: left;
		width: 100px;
	}

	.contents-profile-guide {
		float: left;
		width: auto;
	}

	.box-right-guide {
		width: 100%;
	}

	.photo-guide {
		width: 32%;
	}

	/*-------- 営業スケジュール --------*/

	div.schedule {
		float: left;
		margin-right: 20px;
	}

	table.schedule {
		width: 100%;
		border-collapse: collapse; border: 1px solid #413619;
	}

	td.schedule-month {
		width: 50%;
		height: 45px;
		text-align: center;
		background-color: #5F692E;
		color: #FFFFFF;
		font-weight: bold;
	}

	tr.schedule-weekday {
		text-align: center;
		background-color: #413619;
		color: #FFFFFF;
	}

	td.schedule-weekday {
		height: 45px;
	}

	tr.schedule-day {
		text-align: center;
		background-color: #FFFFFF;
	}

	td.schedule-day {
		height: 45px;
		border-collapse: collapse;
		border: 1px solid #413619;
	}

	td.schedule-day-1 {
		background-color: #FFFFFF;
		border: solid 1px #311301;
	}

	td.schedule-day-2 {
		background-color: #F4A2B0;
		border: solid 1px #311301;
	}

	/*-------- 当店について --------*/

	.box-left-introduction {
		float: left;
		width: 50%;
	}

	.box-right-introduction {
		float: right;
		width: 47%;
	}

	.photo-introduction {
		width: 100%;
	}

	/*-------- パララックス --------*/

	.parallax-content-up.image-guide-1 {
		background-image: url('/guide/images/photo_background_guide_1.jpg');
	}

	.parallax-content.image-guide-2 {
		background-image: url('/guide/images/photo_background_guide_2.jpg');
	}

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

	.box-menu {
		clear: both;
		margin-bottom: 60px;
	}

	.box-left-menu {
		float: left;
		width: 47%;
	}
	
	.box-right-menu {
		float: right;
		width: 47%;
	}

	.name-menu {
		font-size: 24px;
		font-weight: bold;
	}

	.name-menu-nontext {
		float: left;
		font-size: 24px;
		font-weight: bold;
	}

	.price-menu {
		text-align: right;
		font-size: 22px;
		font-weight: bold;
		padding-right: 10px;
		margin-bottom: 10px;
	}

	.price-menu-nontext {
		float: right;
		text-align: right;
		font-size: 22px;
		font-weight: bold;
		padding-right: 10px;
		margin-bottom: 10px;
	}

	.photo-menu {
		width: 100%;
		margin-bottom: 10px;
	}

	.description-menu {
		font-size: 16px;
	}

	/*-------- パララックス --------*/

	.parallax-content-up.image-menu-1 {
		background-image: url('/menu/images/photo_background_menu_1.jpg');
	}

	.parallax-content.image-menu-2 {
		background-image: url('/menu/images/photo_background_menu_2.jpg');
	}

	/*-------------------------------------------------  
	 // お問合せ
	--------------------------------------------------*/

	.contact-item {
		margin-bottom: 15px;
	}

	#contact input {
		width: 100%;
		height: 40px;
		padding: 5px;
		margin-bottom: 5px;
		font-size: 14px;
	}

	#contact textarea {
		width: 100%;
		height: 200px;
		padding: 5px;
		margin-bottom: 5px;
		font-size: 14px;
	}

	.contact-alert {
		font-size: 14px;
		color: #B60005;
	}

	/*-------- パララックス --------*/

	.parallax-content-up.image-contact-1 {
		background-image: url('/contact/images/photo_background_1.jpg');
	}

	.parallax-content.image-contact-2 {
		background-image: url('/contact/images/photo_background_2.jpg');
	}

	/*-------------------------------------------------  
	 // 管理者ページ
	--------------------------------------------------*/

	.submenu {
		font-size: 0;
		padding-left: 0;
	}

	.submenu li {
		list-style: none;
		display: inline-block;
		margin-right: 10px;
	}

	.submenu button {
		appearance: none;
		border: 0;
		border-radius: 5px;
		background: #413619;
		color: #FFFFFF;
		padding: 8px 16px;
		font-size: 16px;
		cursor: pointer;
	}

	/*-------- ログイン --------*/

	div#name-login-manager {
		height: 50px;
		margin-bottom: 10px;
	}

	div#name-login-manager input {
		width: 200px;
		height: 30px;
		margin-left: 15px;
		text-align: center;
		padding: 5px;
	}

	div#pass-login-manager {
		height: 50px;
	}

	div#pass-login-manager input {
		width: 200px;
		height: 30px;
		margin-left: 15px;
		text-align: center;
		padding: 5px;
	}


	/*-------- パスワード変更 --------*/

	div.pass-password-manager {
		height: 50px;
		margin-bottom: 10px;
	}

	div.pass-password-manager input {
		width: 200px;
		height: 30px;
		margin-left: 15px;
		text-align: center;
		padding: 5px;
	}

	/*-------- スケジュール管理 --------*/

	#button-prev-month-schedule-manager {
		width: 20%;
		float: left;
	}

	#button-prev-month-schedule-manager input {
		appearance: none;
		border: 0;
		border-radius: 5px;
		width: 100%;
		height: 50px;
		background-color: #5F692E;
		color: #FFFFFF;
		font-size: 16px;
		cursor: pointer;
		margin-left: 10px;
		margin-right: 10px;
	}

	#yearmonth-schedule-manager {
		width: 60%;
		float: left;
		text-align: center;
		font-size: 30px;
		font-weight: bold;
		line-height: 50px;
		letter-spacing: 5px;
	}

	#button-next-month-schedule-manager {
		width: 20%;
		float: right;
	}

	#button-next-month-schedule-manager input {
		appearance: none;
		border: 0;
		border-radius: 5px;
		width: 100%;
		height: 50px;
		background-color: #5F692E;
		color: #FFFFFF;
		font-size: 16px;
		cursor: pointer;
		margin-left: 10px;
		margin-right: 10px;
	}

	table#schedule-manager {
		width: 100%;	
	}

	tr#caption-schedule-manager {
		font-size: 18px;
		font-weight: bold;	
	}

	td#caption-day-schedule-manager {
		text-align: center;
		width: 100px;
		height: 40px;
		line-height: 40px;
	}

	td#caption-open-schedule-manager {
		text-align: center;
		width: 120px;
	}

	td#caption-memo-schedule-manager {
		text-align: center;
		width: 800px;
	}

	td.input-day-schedule-manager {
		height: 35px;
		text-align: center;
		line-height: 30px;
	}

	td.input-open-schedule-manager {
		line-height: 35px;
	}

	td.input-open-schedule-manager select{
		 -webkit-appearance: none;
		 appearance: none;
		width: 90%;
		height: 35px;
		text-align: -webkit-center;
		font-size: 16px;
		color: #000000;
	}

	td.input-memo-schedule-manager {
		text-align: left;
		line-height: 30px;
	}

	td.input-memo-schedule-manager input {
		width: 95%;
		height: 30px;
		font-size: 16px;
	}

	/*-------- お知らせ管理 --------*/

	textarea#info-manager {
		width: 100%;
		height: 600px;
		padding: 10px;
		font-size: 18px;
	}

	/*-------- パララックス --------*/

	.parallax-content-up.image-manager-1 {
		background-image: url('/manager/images/photo_background_1.jpg');
	}

	.parallax-content.image-manager-2 {
		background-image: url('/manager/images/photo_background_2.jpg');
	}

}


/*-----------------------------------------------------------------------  
 // スマートフォン用
-------------------------------------------------------------------------*/ 

@media screen and (max-width: 768px) {

	.none-sp {
		display: none;
	}

	#wrap{
		clear: both;
		width: 90%;
		min-height: 600px;
		margin-top: 50px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 100px;
		text-align: left;
	}

	div.height-adjustment {
		padding-top: 230px;
		margin-top: -230px;
	}

	div.height-adjustment-bottom {
		clear: both;
		margin-bottom: 100px;
	}

	h2 {
		position: relative;
		margin-bottom: 0.5rem;
		padding: 1.5rem 0;
		border-bottom: 5px solid;
		color: #5F692E;
		font-size: 40px;
		font-weight: bold;
		letter-spacing: 5px;
		margin-bottom: 30px;
	}

	h2:before {
		position: absolute;
		bottom: -0.6rem;
		left: 0rem;
		right: 0rem;
		border-bottom: 1px solid;
		content: '';
	}

	h3 {
		position: relative;
		padding: 20px;
		border-radius: 5px;
		border: 2px solid #333333;
		color: #333333;
		font-weight: bold;
		font-size: 26px;
		letter-spacing: 3px;
		text-align: center;
		margin-bottom: 50px;
	}

	h3:before {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		height: 3px;
		width: 20px;
		background-color: #FFFFFF;
		content: "";
	}

	h3:after {
		position: absolute;
		top: 90%;
		left: 50%;
		transform: translateX(-50%);
		height: 20px;
		width: 2px;
		background-color: #333333;
		content: "";
	}


	h4 {
		color: #000000;
		font-size: 24px;
		letter-spacing: 2px;
	}

	.caption-english {
		margin-left: 30px;
		color: #5F692E;
		font-size: 36px;
		letter-spacing: 3px;
	}

	.unit {
		clear: both;
		width: 100%;
		text-align: left;
		margin: 20px 0px 30px 0px;
	}

	.contents {
		clear: both;
		width: 100%;
		text-align: left;
		margin: 20px 0px 30px 0px;
	}

	/*-------- 吹き出し --------*/

	.fukidashi {
		position: relative; /* 三角の位置を固定するために設定 */
		width: 90%; /* 幅 */
		margin: 0 auto 40px; /* 上 左右 下のマージン */
		padding: 20px; /* ふきだし内の余白 */
		background: #FFFFFF; /* 背景色 */
		border: 1px solid #B60005; /* 線色 */
		text-align: center; /* テキストの揃え */
		color: #B60005;
	}
	.fukidashi::before,
	.fukidashi::after { /* 三角 */
		content: '';
		border: 14px solid transparent;
		position: absolute;
		left: 50%;
		margin-left: -14px;
	}
	.fukidashi::before { /* 線になる部分 */
		border-top-color: #B60005; /* 吹き出しの線の色と同じ色 */
		bottom: -28px;
	}
	.fukidashi::after { /* 地の部分 */
		border-top-color: #FFFFFF; /* 吹き出しの背景色と同じ色 */
		bottom: -27px;
	}

	/*-------- パララックス --------*/

	.front-content {
	}

	.parallax-content-up {
	}

	.parallax-content {
	}

	.photo-image-top-sp {
		width: 100%;
		margin-top: 75px;
		vertical-align: bottom;
	}

	.photo-image-sp {
		width: 100%;
		vertical-align: bottom;
	}

	/*-------------------------------------------------  
	 // ドロワーメニュー
	--------------------------------------------------*/

	.sp-men-drawer {
		text-align: left;
		padding-left: 30px;
	}

	.sp-men-drawer li {
		margin-top: 30px;
		margin-bottom: 20px;
	}

	.sp-men-drawer a {
		font-size: 18px;
		color: #FFFFFF;
		letter-spacing: 2px;
	}

	/*-------------------------------------------------  
	 // トップに戻る
	--------------------------------------------------*/

	#pagetop {
		z-index: 1;
		position: fixed;
		right: 15px;
		bottom: 160px;
	}

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

	#header-main {
		width: 100%;
		height: 75px;
		border-top: 5px solid #5F692E;
		border-bottom: 2px solid #413619;
		margin-bottom: 20px;
		background-color: #FFFFFF;
	}

	#logo-header {
		position: fixed;
		top: 10px;
		left: 10px;
	}
	#logo-header img {
		width: 180px;
	}

	#time-header {
		position: fixed;
		top: 50px;
		right: 120px;
		text-align: right;
		color: #000000;
		font-size: 18px;
	}

	.time-circle-noon-header {
		background: #CF9824;
		border-radius: 50%;
		width: 28px;
		height: 28px;
		color: #FFFFFF;
		font-size: 18px;
		text-align: center;
		line-height: 28px;
		float: left;
		margin-right: 8px;
	}

	.time-circle-night-header {
		background: #40220F;
		border-radius: 50%;
		width: 28px;
		height: 28px;
		color: #FFFFFF;
		font-size: 18px;
		text-align: center;
		line-height: 28px;
		float: left;
		margin-right: 8px;
	}

	.time-circle-text-header {
		float: left;	
		margin-right: 15px;
		font-size: 18px;
	}

	#access-header {
		position: fixed;
		top: 90px;
		right: 120px;
		text-align: right;
		color: #000000;
		font-size: 18px;
	}

	#access-header a {
		width: fit-content;
		text-align: center;
		display: inline-block;
		background-color: #5F692E;
		color: #FFFFFF;
		border-radius: 20px;
		padding: 5px 20px 5px 20px;
		margin-left: 15px;
	}

	#twitter-header {
		position: fixed;
		top: 50px;
		right: 30px;
		width: 70px;
	}

	#global {
		position: fixed;
		top: 148px;
		right: 20px;
	}
	#global li { 
		display: inline-block;
	}
	#global div {
		width: 160px;
		height: 28px;
		padding-top: 12px;
		padding-bottom: 8px;
		color: #FFFFFF;
		background-color: #413619;
		font-size: 18px;
		font-weight: bold;
		text-decoration: none;
		letter-spacing: 3px;
	}

	#global li a {
		position: relative;
		display: inline-block;
		text-decoration: none;
	}

	#global li a::after {
		position: absolute;
		bottom: 7px;
		left: 0;
		content: '';
		width: 100%;
		height: 1px;
		background: #FFFFFF;
		transform: scale(0, 1);
		transform-origin: center top;
		transition: transform .3s;
	}

	#global li a:hover::after {
		transform: scale(1, 1);
	}

	#header-blank {
		height: 40px;
	}

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

	#footer {
		width: 100%;
		height: 90px;
		color: #FFFFFF;
		padding-top: 15px;
		padding-bottom: 15px;
		position: relative;
		background-color: #5F692E;
	}

	#logo-footer {
		position: absolute;
		top: 20px;
		left: 10px;
		width: 180px;
	}

	#address-footer {
		position: absolute;
		top: 80px;
		left: 20px;
		text-align: left;
	}

	#address-footer span{
		font-size: 16px;
	}

	#global-footer { 
		position: absolute;
		top: 30px;
		right: 30px;
		text-align: left;
	}

	#global-footer ul {
		list-style: none;
	}

	#global-footer li { 
		display: inline-block;
	}

	#global-footer a {
		width: 100px;
		text-align: center;
		font-weight: bold;
		display: inline-block;
		background-color: #FFFFFF;
		color: #5F692E;
		border-radius: 20px;
		padding: 5px 10px 5px 10px;
		margin: 0px 3px;	
	}

	#button-shop-footer {
		position: absolute;
		top: 25px;
		right: 140px;
		width: 50px;
	}

	#button-mail-footer {
		position: absolute;
		top: 25px;
		right: 80px;
		width: 50px;
	}

	#button-twitter-footer {
		position: absolute;
		top: 25px;
		right: 20px;
		width: 50px;
	}

	#copyright-footer {
		text-align: center;
		height: 50px;
		line-height: 50px;
		color: #FFFFFF;
		background-color: #413619;"
	}

	#copyright-footer span {
		font-size: 14px;
		letter-spacing: 1px;
	}

	#copyright-footer a {
		color: #FFFFFF;
	}


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

	#wrap-top{
		clear: both;
		width: 90%;
		margin-top: 50px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 80px;
		text-align: left;
	}

	#info-top{
		width: 100%;
		margin-bottom: 100px;
	}

	#schedule-top {
		width: 100%;
	}

	.box-schedule-top {
		clear: both;
		text-align: right;
		margin-bottom: 15px;
	}

	.month-schedule-top {
		float: left;
		min-width: 30px;
		min-height: 10px;
		margin-right: 5px;
	}

	.day-schedule-top {
		float: left;
		width: 90px;
		margin-right: 5px; 
	}

	.open-schedule-top {
		float: left;
		width: calc(100% - 130px);
		text-align: left;
	}

	.caption-top {
		font-size: 28px;
		font-weight: bold;
	}

	.caption-english-top {
		font-size: 16px;
		font-weight: bold;
		margin-left: 10px;
		letter-spacing: 0px;
	}

	.box-top {
		clear: both;
		width: 100%;
		border-top: 2px solid #000000;
		border-bottom: 2px solid #000000;
		padding-top: 30px;
		padding-bottom: 30px;
		margin-top: 10px;
	}

	.info-title {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.text-top {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	#online-left-top {
		width: 100%;
		margin-bottom: 10px;
	}

	#online-right-top {
		width: 100%;
	}


	/*-------- パララックス --------*/

	.parallax-content-up.image-top-1 {
		background-image: url('/images/photo_background_top_1.jpg');
	}

	.parallax-content.image-top-2 {
		background-image: url('/images/photo_background_top_2.jpg');
	}

	.parallax-content.image-top-3 {
		background-image: url('/images/photo_background_top_3.jpg');
	}


	/*-------------------------------------------------  
	 // 営業案内
	--------------------------------------------------*/

	.box-left-guide {
		width: 100%;
	}
	
	.profile-guide {
		clear: both;
		margin-bottom: 10px;
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.caption-profile-guide {
		width: 100%;
	}

	.contents-profile-guide {
		width: 100%;
		font-weight: bold;
	}

	.contents-profile-guide span {
		display: block;
	}

	.box-right-guide {
		width: 100%;
	}

	.photo-guide {
		width: 32%;
	}

	/*-------- 営業スケジュール --------*/

	div.schedule {
		float: left;
		margin-right: 20px;
	}

	table.schedule {
		width: 100%;
		border-collapse: collapse; border: 1px solid #413619;
		margin-bottom: 20px;
	}

	td.schedule-month {
		height: 45px;
		width: 14%;
		text-align: center;
		background-color: #5F692E;
		color: #FFFFFF;
		font-weight: bold;
	}

	tr.schedule-weekday {
		text-align: center;
		background-color: #413619;
		color: #FFFFFF;
	}

	td.schedule-weekday {
		height: 45px;
	}

	tr.schedule-day {
		text-align: center;
		background-color: #FFFFFF;
	}

	td.schedule-day {
		height: 45px;
		border-collapse: collapse;
		border: 1px solid #413619;
	}

	td.schedule-day-1 {
		background-color: #FFFFFF;
		border: solid 1px #311301;
	}

	td.schedule-day-2 {
		background-color: #F4A2B0;
		border: solid 1px #311301;
	}

	/*-------- 当店について --------*/

	.box-left-introduction {
		width: 100%;
	}

	.box-right-introduction {
		width: 100%;
	}

	.photo-introduction {
		width: 100%;
	}

	/*-------- パララックス --------*/

	.parallax-content-up.image-guide-1 {
		background-image: url('/guide/images/photo_background_guide_1.jpg');
	}

	.parallax-content.image-guide-2 {
		background-image: url('/guide/images/photo_background_guide_2.jpg');
	}

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

	.box-menu {
		clear: both;
		margin-bottom: 30px;
	}

	.box-left-menu {
		width: 100%;
		margin-bottom: 30px;
	}
	
	.box-right-menu {
		width: 100%;
	}

	.name-menu {
		font-size: 24px;
		font-weight: bold;
	}

	.name-menu-nontext {
		float: left;
		font-size: 20px;
		font-weight: bold;
		margin-bottom: 20px;
		width: 70%;
	}

	.price-menu {
		text-align: right;
		font-size: 22px;
		font-weight: bold;
		padding-right: 10px;
		margin-bottom: 10px;
	}

	.price-menu-nontext {
		float: right;
		text-align: right;
		font-size: 18px;
		font-weight: bold;
		margin-bottom: 20px;
		width: 30%;
	}

	.photo-menu {
		width: 100%;
		margin-bottom: 10px;
	}

	.description-menu {
		font-size: 16px;
	}

	/*-------- パララックス --------*/

	.parallax-content-up.image-menu-1 {
		background-image: url('/menu/images/photo_background_menu_1.jpg');
	}

	.parallax-content.image-menu-2 {
		background-image: url('/menu/images/photo_background_menu_2.jpg');
	}

	/*-------------------------------------------------  
	 // お問合せ
	--------------------------------------------------*/

	.contact-item {
		margin-bottom: 15px;
	}

	#contact input {
		width: 100%;
		height: 40px;
		padding: 5px;
		margin-bottom: 5px;
		font-size: 14px;
	}

	#contact textarea {
		width: 100%;
		height: 200px;
		padding: 5px;
		margin-bottom: 5px;
		font-size: 14px;
	}

	.contact-alert {
		font-size: 14px;
		color: #B60005;
	}

	/*-------- パララックス --------*/

	.parallax-content-up.image-contact-1 {
		background-image: url('/contact/images/photo_background_1.jpg');
	}

	.parallax-content.image-contact-2 {
		background-image: url('/contact/images/photo_background_2.jpg');
	}

	/*-------------------------------------------------  
	 // 管理者ページ
	--------------------------------------------------*/

	.submenu {
		font-size: 0;
		padding-left: 0;
	}

	.submenu li {
		list-style: none;
		display: inline-block;
		margin-right: 5px;
		margin-bottom: 5px;
	}

	.submenu button {
		appearance: none;
		border: 0;
		border-radius: 5px;
		background: #413619;
		color: #FFFFFF;
		padding: 8px 16px;
		font-size: 14px;
		cursor: pointer;
	}

	/*-------- ログイン --------*/

	div#name-login-manager {
		height: 50px;
		margin-bottom: 10px;
	}

	div#name-login-manager input {
		width: 200px;
		height: 30px;
		margin-left: 15px;
		text-align: center;
		padding: 5px;
	}

	div#pass-login-manager {
		height: 50px;
	}

	div#pass-login-manager input {
		width: 200px;
		height: 30px;
		margin-left: 15px;
		text-align: center;
		padding: 5px;
	}


	/*-------- パスワード変更 --------*/

	div.pass-password-manager {
		height: 50px;
		margin-bottom: 10px;
	}

	div.pass-password-manager input {
		width: 200px;
		height: 30px;
		margin-left: 15px;
		text-align: center;
		padding: 5px;
	}

	/*-------- スケジュール管理 --------*/

	#button-prev-month-schedule-manager {
		width: 20%;
		float: left;
	}

	#button-prev-month-schedule-manager input {
		appearance: none;
		border: 0;
		border-radius: 5px;
		width: 100%;
		height: 40px;
		background-color: #5F692E;
		color: #FFFFFF;
		font-size: 14px;
		cursor: pointer;
	}

	#yearmonth-schedule-manager {
		width: 60%;
		float: left;
		text-align: center;
		font-size: 28px;
		font-weight: bold;
		line-height: 28px;
		letter-spacing: 3px;
		padding-top: 5px;
	}

	#button-next-month-schedule-manager {
		width: 20%;
		float: right;
	}

	#button-next-month-schedule-manager input {
		appearance: none;
		border: 0;
		border-radius: 5px;
		width: 100%;
		height: 40px;
		background-color: #5F692E;
		color: #FFFFFF;
		font-size: 14px;
		cursor: pointer;
	}

	table#schedule-manager {
		width: 100%;	
	}

	tr#caption-schedule-manager {
		font-size: 16px;
		font-weight: bold;	
	}

	td#caption-day-schedule-manager {
		text-align: center;
		width: 80px;
		height: 40px;
		line-height: 40px;
	}

	td#caption-open-schedule-manager {
		text-align: center;
		width: 90px;
	}

	td#caption-memo-schedule-manager {
		text-align: center;
		width: auto;
	}

	td.input-day-schedule-manager {
		height: 35px;
		text-align: center;
		line-height: 30px;
	}

	td.input-open-schedule-manager {
		line-height: 35px;
	}

	td.input-open-schedule-manager select {
		 -webkit-appearance: none;
		 appearance: none;
		width: 90%;
		height: 35px;
		text-align: -webkit-center;
		font-size: 16px;
		color: #000000;
	}

	td.input-memo-schedule-manager {
		text-align: left;
		line-height: 30px;
	}

	td.input-memo-schedule-manager input {
		width: 95%;
		height: 30px;
		font-size: 16px;
	}

	/*-------- お知らせ管理 --------*/

	textarea#info-manager {
		width: 95%;
		height: 500px;
		padding: 10px;
		font-size: 16px;
	}

	/*-------- パララックス --------*/

	.parallax-content-up.image-manager-1 {
		background-image: url('/manager/images/photo_background_1.jpg');
	}

	.parallax-content.image-manager-2 {
		background-image: url('/manager/images/photo_background_2.jpg');
	}

}
