@charset "UTF-8";

/********************************
	header
********************************/
#header {
	z-index: 999;
	width: 100%;
	position: absolute;
	top: 0;
}
#header-inner {
	background-color: #fff;
}
#header-inner_up{
	width: 100%;
	max-width: 1200px;
	height: 60px;
	margin: 0 auto;
}

/********************************
	header_left
********************************/
#header_left{
	width: 580px;
	float:left;
}
#header.fixed {
	position: fixed;
	top: 0;
	animation: fixNav 0.5s forwards;
	-webkit-animation: fixNav 1s forwards;
	-moz-animation: fixNav 1s forwards;
	-ms-animation: fixNav 1s forwards;
}
@keyframes fixNav {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-webkit-keyframes fixNav {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes fixNavHide {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-webkit-keyframes fixNavHide {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
#header.fixed .gnav {
	background: transparent;
}
#top_logo {
	float: left;
	width:200px;
	text-align: left;
	margin-top:10px;
}
#top_logo img {
	width: 100%;
}

/********************************
	header_right
********************************/
#header_right {
    width: 315px;
    float: right;
}
/********************************
		SNS
********************************/
#sns_header{
	width: 80px;
	float: left;
	overflow: hidden;
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.sns_botton{
	width: 20px;
	float:left;
	margin-top:26px;
}
.sns_botton img{
	width:100%;
}

/********************************
		TEL
********************************/
#tel{
    width: 170px;
    padding: 12px 12px 7px 12px;
    margin-top: 0px;
    text-align: right;
    background-color: #000;
	border-radius: 0 0 5px 5px;
	float: right;
}
#tel a{
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}
#tel img{
	width:90%;
}

/********************************
		nav
********************************/

.menu__single img{
	width:37px;
	margin: 9px 0 0;
}
#gnavi_box{
	width:100%;
	background-color:#2B1601;/*メニューカラー変更*/
	justify-content: space-between;
}

#gnavi_box.fixed{
	position: fixed;/*fixedを設定して固定*/
	z-index: 999;/*最前面へ*/
	top:0;/*位置指定*/
	left:0;/*位置指定*/
	background-color: rgba(43, 22, 1, 0.8);
}
#gnavi_box.fixed li.menu__single ul.menu__second-level{
	background-color: rgba(43, 22, 1, 0.8);
}
#gnavi_box .section_gnav{/*ヘッダーナビゲーション下に予約システム部分を表示*/
    display: block;
    background-color: transparent;
    margin: 0 auto;
}
.home #gnavi_box .section_gnav{ display: none; }/*トップページは最初非表示*/
.home #gnavi_box.fixed .section_gnav{ display: block;}/*ナビゲーション固定状態の時に表示に切替*/

.menu {
	height: 60px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width:1200px;
	margin: 0 auto;
	/*
	flex-direction: row;
	flex-wrap: wrap;
	position: relative;
	font-family: 'Noto Serif Japanese', serif;
	*/
}
.menu > li {
    float: left;
    height: 60px;
	width: 9%;/*メニュー項目の幅変更*/
}
.menu > li:first-child {/*メニュー：トップページ表示幅変更*/
	width: 3%;
	bottom: 8px;
}
.menu > li:nth-last-child(2) {/*メニュー：TEL表示幅変更*/
	width: 15%;
}
.menu > li.menu__spacing {/*メニュー：施設・TELの間隔指定*/
	width:3%;
}
.menu > li:last-child {/*English部背景色変更*/
	background-color:#FFEAB6;
}
.menu > li a {
	display: block;
	color: #fff;
	font-size: 16px;/*親メニュー内の文字サイズ*/
	font-weight: 500;
	padding: 16px 5px;/*padding変更*/
}
.menu > li a:hover {
	opacity: 0.8;
}
.menu > li:nth-last-child(2) a {/*メニュー　TELアイコンの表示*/
	background: url(https://senkyoro.web-test1.net/wordpress/wp-content/uploads/2022/10/tel_image.png) center left no-repeat;
    background-size: 9%;
	background-position: 4px 27px;
    font-size: 17px;
    padding: 24px 0px 0 0;
}

.menu > li:last-child a {/*English部文字色変更*/
	color:#2B1601;
	/*
	background: url(https://senkyoro.web-test1.net/wordpress/wp-content/uploads/2022/10/arrow_icon.png) center right no-repeat;
    background-position: 90%
	*/
}
ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.menu__second-level li {
	border-top: 0px solid #5e5e5e;/*見切り線なし*/
}
.menu__second-level li a:hover {
	background:#D94A60;/*hover時の背景色*/
}
/* 下矢印 
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 13px;
    margin: 0 0 0 15px;
    border-right: 1px solid #5e5e5e;
    border-bottom: 1px solid #5e5e5e;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}*/
/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}
.menu:after {
    clear: both;
}
.menu {
    *zoom: 1;
}
.menu > li.menu__single {
    position: relative;
}
li.menu__single ul.menu__second-level {
	position: absolute;
	top: 60px;
	width: 100%;
	background: #2B1601;/*メニューカラー変更*/
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	visibility: hidden;
	opacity: 0;
}
li.menu__single:hover ul.menu__second-level {
	top: 60px;
	visibility: visible;
	opacity: 1;
}
li.menu__single ul.menu__second-level > li a {/*小メニュー内の文字サイズ*/
	font-size:13px;
}

.menu > li.menu__single1 {
    position: relative;
    margin: 17px 0 0;
}
li.menu__single1 ul.menu__second-level {
	position: absolute;
	top: 60px;
	width: 100%;
	background: #2B1601;/*メニューカラー変更*/
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	visibility: hidden;
	opacity: 0;
}
li.menu__single1:hover ul.menu__second-level {
	top: 60px;
	visibility: visible;
	opacity: 1;
}
li.menu__single1 ul.menu__second-level > li a {/*小メニュー内の文字サイズ*/
	font-size:13px;
}

/********************************
		navi_new
********************************/

#mobileNav{
	display:none;
}

