@charset "utf-8";


/* プルダウンNAVIメニュー */

/* NAVIメニューのwrapper */
#wrapperNavi {
    width:100%;
    background-color:#282828;
}
		/*スマホ縦用*/
@media screen and (max-width: 620px) {
	#wrapperNavi {
        display:none;
	}
}
		/*スマホ横向き・タブレット用*/
@media screen and (min-width: 621px) and (max-width: 999px) {
	#wrapperNavi {
        display:none;
	}
}

/* NAVIメニューのコンテナ */
#pulldownMenu {
    position:relative;
    z-index:10;
    width:1100px;
    margin:0 auto;
}
		/*スマホ縦用*/
@media screen and (max-width: 620px) {
	#pulldownMenu {
        display:none;
	}
}
		/*スマホ横向き・タブレット用*/
@media screen and (min-width: 621px) and (max-width: 999px) {
	#pulldownMenu {
        display:none;
	}
}

/* メニューバー全体の装飾 */
ul.ddmenu {
   margin: 0px;               /* メニューバー外側の余白(ゼロ) */
   padding: 0px 0px 0px 15px; /* メニューバー内側の余白(左に15px) */
   background-color: #222; /* バーの背景色(濃い赤色) */
   font-size:80% !important;
}

/* メインメニュー項目の装飾 */
ul.ddmenu li {
   width: 125px;          /* メニュー項目の横幅(125px) */
   display: inline-block; /* ★横並びに配置する */
   list-style-type: none; /* ★リストの先頭記号を消す */
   position: relative;    /* ★サブメニュー表示の基準位置にする */
}
ul.ddmenu a {
   background-color: #222; /* メニュー項目の背景色(濃い赤色) */
   color: white;              /* メニュー項目の文字色(白色) */
   line-height: 40px;         /* メニュー項目のリンクの高さ(40px) */
   text-align: center;        /* メインメニューの文字列の配置(中央寄せ) */
   text-decoration: none;     /* メニュー項目の装飾(下線を消す) */
   font-weight:normal;         /* 太字にする */
   display: block;            /* ★項目内全域をリンク可能にする */
}
ul.ddmenu a:hover {
   background-color: #444; /* メニュー項目にマウスが載ったときの背景色(淡いピンク) */
   text-decoration: none;     /* メニュー項目の装飾(下線を消す) */
   color:white;            /* メニュー項目にマウスが載ったときの文字色(濃い赤色) */
}

/* サブメニュー全体の装飾 */
ul.ddmenu ul {
   margin: 0px;        /* ★サブメニュー外側の余白(ゼロ) */
   padding: 0px;       /* ★サブメニュー内側の余白(ゼロ) */
   display: none;      /* ★標準では非表示にする */
   position: absolute; /* ★絶対配置にする */
}

/* サブメニュー項目の装飾 */
ul.ddmenu ul li {
   width:150px;               /* サブメニュー1項目の横幅(135px) */
   border-top: 1px solid white; /* 項目上側の枠線(ピンク色で1pxの実線) */
}
ul.ddmenu ul li a {
   line-height: 35px;   /* サブメニュー1項目の高さ(35px) */
   text-align: left;    /* 文字列の配置(左寄せ) */
   padding-left: 5px;   /* 文字列前方の余白(5px) */
   font-weight: normal; /* 太字にはしない */
}
ul.ddmenu ul li a:hover {
   background-color: #00305C; /* サブメニュー項目にマウスが載ったときの背景色(淡い黄色) */
   color:white;            /* サブメニュー項目にマウスが載ったときの文字色(濃い緑色) */
}

/* END プルダウンNAVIメニュー */



/* バーガーMENU */
#burgerMenu{
	z-index:10000;
	position:absolute;
	width:50px;
	height:50px;
	top:0px;
	left:0px;
}
/*PC・タブレット用*/
@media screen and (min-width: 999px) {
#burgerMenu{display:none}
}
.menu .btn {
	z-index:10000;
    display: block;
    width: 60px;
    line-height: 50px;
    background: #000;
    color: #fff;
    text-align: center;
    cursor: pointer;
}
.menu .btn:hover {
    background: #000;
}
.menu .check {
    display: none;
}
.menu ul {
	z-index:10000;
    display: block;
    position: absolute;
    left: -375px;
    display: block;
    background: #666;
    margin: 0;
    padding: 0;
    width:375px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;

}
.menu li {
    list-style: none;
	font-family: Arial, Helvetica, sans-serif;
}
.menu li a {
	z-index:10000;
    display: block;
    padding:5px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.menu li a:hover {
    background: rgba(255,255,255,0.2);
}
.menu .check:checked + ul {
    left: 0;
}
.menu .cbtn {
	z-index:10000;
    position: absolute;
    z-index: 0;
    display: none;
    top: 0;
    left: 0;
}
.menu .check:checked + ul + .cbtn {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}
/*END バーガーMENU */


/* Google翻訳バー　*/
#google_translate_element {
	position: relative;
	top: 0px;
	right: 100px;
}
		/*スマホ縦用*/
@media screen and (max-width: 620px) {
	#google_translate_element {
		right: 0px;
	}
}
		/*スマホ横向き・タブレット用*/
@media screen and (min-width: 621px) and (max-width: 999px) {
	#google_translate_element {
		right: 0px;
	}
}
/* END Google翻訳バー　*/


/*最上段のh1コンテナ*/
#headerTopContainer{
	z-index: 1000;
	width: 100%;
	height: 25px;
}
		/*スマホ縦用*/
@media screen and (max-width: 620px) {
	#headerTopContainer {
		width:100%;
		height: 50px;
		background-color: #000;
	}
}
		/*スマホ横向き・タブレット用*/
@media screen and (min-width: 621px) and (max-width: 999px) {
	#headerTopContainer {
        width:100%;
		height: 50px;
		background-color: #000;
	}
}
/*END 最上段のh1コンテナ*/

/*H1オブジェクト（黒）*/
#h1Object {
	position: absolute;
	height: 13px;
	font-size: 11px;
	color: #666;
	top: -8px;
	left: 10px;
}
		/*スマホ縦用*/
@media screen and (max-width: 620px) {
	#h1Object {
		color: #FFF;
		top: 20px;
		left: 65px;
	}
}
		/*スマホ横向き・タブレット用*/
@media screen and (min-width: 621px) and (max-width: 999px) {
	#h1Object {
        color: #FFF;
		top: 20px;
		left: 65px;
	}
}


/*ヘッダーエリア*/
#headerArea {
	z-index: 1000;
	position: relative;
	width: 100%;
}
		/*スマホ縦用*/
@media screen and (max-width: 620px) {
	#headerArea {
	}
}
		/*スマホ横向き・タブレット用*/
@media screen and (min-width: 621px) and (max-width: 999px) {
	#headerArea {
	}
}
/*END ヘッダーエリア*/


/*ヘッダーコンテナ（PC用）*/
#headerContainerPC {
	z-index: 1000;
	position: relative;
	width: 100%;
	height: 55px;
}
		/*スマホ縦用*/
@media screen and (max-width: 620px) {
	#headerContainerPC {
		display:none;
	}
}
		/*スマホ横向き・タブレット用*/
@media screen and (min-width: 621px) and (max-width: 999px) {
	#headerContainerPC {
        display:none;
	}
}


/*ヘッダーコンテナ（スマホ用）*/
#headerContainerSP {
	display:none;
}
		/*スマホ縦用*/
@media screen and (max-width: 620px) {
	#headerContainerSP {
        display:block;
		z-index: 1000;
		position: relative;
		text-align: center;
		width:100%;
		height: 130px;
	}
}
		/*スマホ横向き・タブレット用*/
@media screen and (min-width: 621px) and (max-width: 999px) {
	#headerContainerSP {
        display:block;
		z-index: 1000;
		position: relative;
		text-align: left;
		width:100%;
		height: 65px;
	}
}


/*その文字だけ色付き太文字*/
#headerArea span {
	color: #665B3D;
	font-weight: bold;
}

/*ヘッダーロゴ（PC用）*/
#headerLogoPC {
	z-index: 1000;
	position: absolute;
/*    width: 400px;*/
	bottom: 5px;
	left: 10px;
}
		/*スマホ縦用*/
@media screen and (max-width: 620px) {
	#headerLogoPC {
	    display:none;
	}
}
		/*スマホ横向き・タブレット用*/
@media screen and (min-width: 621px) and (max-width: 999px) {
	#headerLogoPC {
	    display:none;
	}
}


/*ヘッダーロゴ（SP用）*/
#headerLogoSP {
	display:none;
}
		/*スマホ縦用*/
@media screen and (max-width: 620px) {
	#headerLogoSP {
        display:block;
		position: relative;
		width: 80%;
		margin: 15px 10% 0px 10%;
	}
}
		/*スマホ横向き・タブレット用*/
@media screen and (min-width: 621px) and (max-width: 999px) {
	#headerLogoSP {
        display:block;
		position: relative;
		width: 40%;
		margin: 15px 27% 0px 33%;
	}
}

/*----------新たに追加----------*/
/*ご予約お問い合わせ*/
#callUs {
	z-index: 1000;
	position: absolute;
	width: 176px;
	bottom: 10px;
	right: 230px;
}
		/*スマホ縦用*/
@media screen and (max-width: 620px) {
	#callUs {
		width:44%;
		left:28%;
	}
}
		/*スマホ横向き・タブレット用*/
@media screen and (min-width: 621px) and (max-width: 999px) {
	#callUs {
		bottom: 10px;
		right: 10px;    
	}
}


/* ナビMENU設定（未使用） ここから */
/* ナビMENUエリア */
#naviMenuArea {
	z-index: 1000;
	position: relative;
    width: 98%;
	margin: 0 1%;
	top: 0px;
	left: 0px;
}
		/*スマホ縦用*/
@media screen and (max-width: 620px) {
	#naviMenuArea {
		display:none;
	}
}
		/*スマホ横向き・タブレット用*/
@media screen and (min-width: 621px) and (max-width: 999px) {
	#naviMenuArea {
	}
}

/* ナビMENUボタン */
#naviMenuArea a {
	z-index: 1000;
	position: relative;
	height: 50px;
    width: 12%;
	font-size: 14px;
	font-weight: normal;
	color: white;
	background-color: #2FB3F6;
	text-align: center;
	text-decoration: none;
	border-style: solid;
	border-color: white;
	border-width: 0 1px 0 0;
	float: left;
}
#naviMenuArea a:hover {
	z-index: 1000;
	position: relative;
	height: 50px;
    width: 12%;
	font-size: 14px;
	font-weight: normal;
	color: white;
	background-color: #00305C;
	text-align: center;
	text-decoration: none !important;
	border-style: solid;
	border-color: white;
	border-width: 0 1px 0 0;
	float: left;
}
.plusOne {
	width: 13% !important;
}
.noBorder {
	border-width: 0 0 0 0 !important;
}
/* ナビMENU設定（未使用） ここまで */


/*会員サイト入口*/
#memberIn {
	z-index: 1000;
	position: absolute;
    width: 100px;
	bottom: 0px;
	right: 0px;
}
		/*スマホ縦用*/
@media screen and (max-width: 620px) {
	#memberIn {
		display: none;
	}
}
		/*スマホ横向き・タブレット用*/
@media screen and (min-width: 621px) and (max-width: 999px) {
	#memberIn {
		display: none;
	}
}

