  @charset "UTF-8";
/* ------------------------
	reset
------------------------ */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

html,body{
	width:100%;
	height: 100%;
}

img{vertical-align:bottom;}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

li{list-style-type:none;}

/* Reset input[type="search"] */
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}
input[type="search"]:focus {
  outline-offset: -2px;
}
input[type="search"]::-webkit-search-decoration {
  display: none;
}

input, textarea{
	padding:4px 2px;
	margin:0;
	vertical-align:middle;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}


a:link {color: #C69400;text-decoration: none;}
a:visited {color: #C69400;text-decoration: none;}
a:active {color: #C69400;text-decoration: none;}
a:hover {color: #C69400; text-decoration:none;}

p{margin:0 0 10px 0;}


.clear {clear: both;}

.mb0 {margin:0 0 0 0;}
.mb5 {margin:0 0 5px 0;}
.mb10 {margin:0 0 10px 0;}
.mb15 {margin:0 0 15px 0;}
.mb20 {margin:0 0 20px 0;}
.mb30 {margin:0 0 30px 0;}
.mb40 {margin:0 0 40px 0;}
.mb50 {margin:0 0 50px 0;}
.mb60 {margin:0 0 60px 0;}
.mb70 {margin:0 0 70px 0;}
.mb80 {margin:0 0 80px 0;}
.mb90 {margin:0 0 90px 0;}
.mb100 {margin:0 0 100px 0;}

.center{text-align:center;}



/*------------------------------------------------------------*/
@media screen and (min-width:1024px){.m-on{display:none!important;}}
@media screen and (max-width:1023px){.m-off{display:none!important;}}
@media screen and (min-width:768px){.s-on{display:none!important;}}
@media screen and (max-width:767px){.s-off{display:none!important;}}
/*------------------------------------------------------------*/


/* ------------------------
	body & base setting
------------------------ */
body{
    -webkit-text-size-adjust:none;
	line-height:1;
	font:14px/1.7 "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #333;
	background: #F4F2ED;
	overflow-x:hidden;
}
body.design_w{
	background:#fff;
}

dt a:hover img, li a:hover img,
p a:hover img{
	filter: alpha(opacity=80);
	-ms-filter: alpha(opacity=80);
	opacity: 0.8;
}

.in{display:none;}
.in1{display:none;}
.in2{display:none;}


/*! Pushy - v1.0.0 - 2016-3-1
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
.pushy {
  position: fixed;
  width: 200px;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: #e6e6e6;
  overflow: auto;
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */
}
.pushy a {
  display: block;
  color: #333;
  padding: 12px 15px;
  text-decoration: none;
  outline: 0;
}
.pushy a:hover {
  color:#ad8500;
  background:#fefefe;
}
.pushy li.last a:hover{
	color:#fff;
	background:#ad8500;
}
.pushy.pushy-left {
  left: 0;
}
.pushy.pushy-right {
  right: 0;
}

/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-200px, 0, 0);
  -ms-transform: translate3d(-200px, 0, 0);
  transform: translate3d(-200px, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(200px, 0, 0);
  -ms-transform: translate3d(200px, 0, 0);
  transform: translate3d(200px, 0, 0);
}

.pushy-right {
  -webkit-transform: translate3d(200px, 0, 0);
  -ms-transform: translate3d(200px, 0, 0);
  transform: translate3d(200px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-200px, 0, 0);
  -ms-transform: translate3d(-200px, 0, 0);
  transform: translate3d(-200px, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Menu Transitions */
#container,
.pushy,
.push {
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
  display: none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-animation: fade 500ms;
  animation: fade 500ms;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Submenu Appearance */
.pushy-submenu {
  /* Submenu Icon */
}
.pushy-submenu ul {
  
  transition: max-height 0.2s ease-in-out;
}
.pushy-submenu ul .pushy-link {
  transition: opacity 0.2s ease-in-out;
}

.pushy-submenu ul li:first-child{
	border-top: 1px solid #fff;
}
.pushy-submenu-open a.lang{
	border-bottom: 1px solid #b3b3b3;
}

.pushy-submenu > a {
  position: relative;
}
.pushy-submenu > a::after {
  content: '';
  display: block;
  height: 9px;
  width: 5px;
  position: absolute;
  top: 50%;
  right: 15px;
  background: url("/shared/images/common/arrow_02.png") no-repeat center;
  background-size:6px 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: transform 0.2s;
  
}

/* Submenu Movement */
.pushy-submenu-closed ul {
  max-height: 0;
  overflow: hidden;
}
.pushy-submenu-closed .pushy-link {
  opacity: 0;
}

.pushy-submenu-open {
  /* Submenu Icon */
}
.pushy-submenu-open ul {
  max-height: 1000px;
}
.pushy-submenu-open .pushy-link {
  opacity: 1;
}
.pushy-submenu-open a::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.no-csstransforms3d .pushy-submenu-closed ul {
  max-height: none;
  display: none;
}

/*# s网曝吃瓜ceMappingURL=pushy.css.map */

/* ------------------------
	h
------------------------ */
h2{
	text-align:center;
	margin:0 auto 30px;
	color:#666;
	font-size:42px;
	font-weight:normal;
	font-family: 'EB Garamond', serif;
	letter-spacing:0.1em;
}

h2 span{
	display:block;
	letter-spacing:0.01em;
	font-size:16px;
	font-weight:normal;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
}

h3{
	font-size:18px;
	font-weight:normal;
	background:#C69400;
	padding:6px 12px 5px;
	margin:0 0 20px;
	color: #fff;
}

h4{
	font-size:29px;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
	border-bottom:1px solid #ccc;
	margin:0 0 30px;
	font-weight:normal;
	overflow:hidden;
}

h4 span{
	font-size:12px;
	float:right;
	font-family:"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}


/* ------------------------
	header
------------------------ */
header{
	border-top: 5px solid #470005;
	z-index:12;
	overflow: hidden;
	padding: 30px 0px 0;
	background: #fff;
}

header h1{
	float: left;
}

.head_menu{
	padding: 0 20px 20px;
	overflow: hidden;
}

.head_menu ul{
	float: right;
	z-index:12;
}


.head_menu li a{
	color:#fff;
}

.menu-btn{
	display: none;
}


/* ------------------------------------------------ */
.cb-header, .cb-header2{
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index:12;
  width:100%;
}

/*#popReserve{
	position: fixed;
	bottom:0px;
	left: 0; 
	padding: 0px 0;
	width:100%;
	z-index:12;
}*/

iframe.pop{
	width:100%;
}

.second_head{
	background:#fff;
	width:100%;
	box-shadow:0 4px 10px 0px rgba(0,0,0,0.3);
}

.second_head ul{
	text-align:center;
}

.second_head li{
	margin:0;
	display:inline-block;
	line-height:1.6;
	font-size: 16px;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
}

.second_head li a:hover{
	background:#f5f1ed;
	color:#ad8500;
}

.second_head li span{
	display:block;
	font-size:14px;
	font-family: 'EB Garamond', serif;
}

.second_head li a{
	display:block;
	padding:10px 15px;
	color:#333;
}


/* ------------------------
	footer
------------------------ */
footer{
	/*background:#480006;*/
	position:relative;
	color: #fff;
	background:#8B8B8B;
}
.design_w footer{
	background:#8B8B8B;
}

.footer_inner{
	width:1100px;
	margin:0 auto;
	padding:50px 0;
	overflow:hidden;
}

.sitemap{
	float:left;
	margin:0 20px 0 0;
}
.sitemap a{
	color:#fff;
}
.sitemap a:hover{
	text-decoration:underline;
}


.sitemap ul{
	margin:0 0 40px;
}

.sitemap ul.width{
	width: 220px;
}

.sitemap li{
	margin:0 0 5px;
	font-size:12px;
}

.sitemap li a{
	position:relative;
	padding:0 0 0 15px;
	color:#fff;
	display:block;
}

.sitemap li a:hover{
	text-decoration:underline;
}

.sitemap li a:before{
	position: absolute;
	top: 9px;
	left: 0px;
	display: block;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: 1px solid #eee;
	border-right: 1px solid #eee;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.sitemap li.title{
	border-bottom:1px solid #ccc;
	font-weight:bold;
	margin:0 0 10px;
	padding:0 5px 3px;
}

.footer_inner .sitemap:last-child{
	/* width:214px; */
	margin: 0;
}

.sitemap p{
	margin:0 0 20px;
}

.sitemap .group{
	float:left;
	margin:0 20px 0 0;
}

.sitemap .sns li{
	display:inline-block;
}

.sitemap .sns li a{
	padding:0;
}

.sitemap .sns li a:before{
	content:normal;
}

.end{
	background:#fff;padding-bottom:30px;
}

.end_inner{
	width:1000px;
	margin:0 auto;
	padding:40px 0 0;
}


.end_inner dl{
	margin:0 auto 30px;
	width:950px;
}
.end_inner dd{text-align:center;}

.end_inner dd li{
	display:inline-block;
}

.end_inner p{
	text-align:center;
	color: #333;
}

.end_inner p small{
	font-size:10px;
}

.banner{
	text-align:center;
	margin:0 0 30px;
}
.banner li{
	display:inline-block;
	margin:0 10px 0 0;
}
.banner li:last-child{
	margin:0;
}

/* ------------------------
	rayout
------------------------ */
.wrapper{
	width:1000px;
	margin:0 auto 50px;
}

section{
	padding:0 0 40px;
	clear:both;
}

#container{
	position:relative;
	overflow:hidden;
}

.hide{
	display:none;
}

/* ------------------------------------------------ */
.left_box, .right_box{
	overflow:hidden;
}

.left_box dt{
	float:left;
	margin:0 20px 0 0;
}

.right_box dt{
	float:right;
	margin:0 0 0 20px;
}

.left_box dd, .right_box dd{
	overflow:hidden;
}

.btn{
	text-align:center;
	display:table;
	margin: 0 auto;
}

.btn a{
	padding:5px 20px 5px 30px;
	color:#fff;
	background:#480006;
	position:relative;
	display:block;
}

.btn a:hover{
	background:#ad8500;
}

.auto{
	margin:0 auto;
}

.font_s{
	font-size:12px;
}

.image img{
	max-width:100%;
	height:auto;
}

.image2{
	margin:0 0 20px;
}

.image2 img{
	width:100%;
	height:auto;
}

.catch{
	text-align:center;
	font-size:22px;
	font-weight: bold;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
	margin:0 auto 15px;
}

.catch2{
	text-align:center;
	font-size:28px;
	font-weight: bold;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
	margin:0 auto 15px;
}

/* ------------------------------------------------ */

.btn_page,.btn_page2 {
	cursor:pointer;
}
#main{
	position:relative;
}
.design_w #main{
	height:240px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

#main img{
	width:100%;
	height:auto;
}

#main p{
	color:#fff;
	font-family: 'EB Garamond', serif;
	font-size:46px;
	text-align:center;
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	margin:auto;
	width:50%;
	height:90px;
	text-shadow:0 0 8px rgba(0,0,0,0.5);
	line-height:1.5;
	letter-spacing:0.05em;
}
.design_w #main p{
	color:#333;
}

#main p span{
	font-size:17px;
	display:block;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino MinchoN Pro","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
	letter-spacing:normal;
}

.pdf_btn a{
	background:#480006;
	display:table;
	padding:10px 10px 10px 15px;
	color:#fff;
}

.pdf_btn a:after{
	content: "";
    background: url(/shared/images/common/pdf_01.png) no-repeat right center;
    background-size: 18px;
    width: 18px;
    height: 20px;
    display:inline-block;
	vertical-align:middle;
    padding: 0 0px 0 10px;
}

.pdf_btn a:hover{
	background:#C69400;
}

.text{
	text-align:center;
	width:80%;
	margin:0 auto 10px;
}

/* ------------------------
	pankuzu
------------------------ */
#pankuzu{
	width:100%;
	background:#fff;
	margin:0 0 60px;
	border-bottom: 1px solid #ccc;
}

#pankuzu2{
	width:100%;
	background:#fff;
}

#pankuzu ul, #pankuzu2 ul{
	margin:0 auto;
	width:1000px;
	padding:3px 0;
}

#pankuzu li, #pankuzu2 li{
	display:inline-block;
	margin-right:5px;
	font-size:12px;
}

#pankuzu li a, #pankuzu2 li a{
	position:relative;
	padding:0 12px 0 0;
	color:#333;
}

#pankuzu li a:after, #pankuzu2 li a:after{
	position: absolute;
	top: 50%;
	right: 0px;
	display: block;
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: 1px solid #a37e82;
	border-right: 1px solid #a37e82;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


/* ------------------------
	top
------------------------ */
.g_nav{
	text-align: center;
	border-bottom:5px solid #470005;
	background: #fff;
}

.g_nav li{
	display:inline-block;
	margin: 0;
	font-size: 16px;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
}

.g_nav li span{
	display: block;
	font-size: 14px;
	font-family: 'EB Garamond', serif;
}

.g_nav li a{
	color: #333;
	display: block;
	padding: 40px 15px 20px;
}

.g_nav li a:hover{
	background:#f5f1ed;
	color:#ad8500;
}

.main_slide_sp{
	display: none;
}


.nav_box .left_box dt, .nav_box .right_box dt{
	width:50%;
}

.nav_box .left_box dt img, .nav_box .right_box dt img{
	width:100%;
	height:auto;
}

.nav_box .left_box dd{
	padding:50px 50px 50px 50px;
}

.nav_box .right_box dd{
	padding:50px 50px 50px 50px;
}

.nav_box dd p{
	margin:0 0 30px;
}

.nav_box dd .title{
	font-size:42px;
	color:#666;
	margin:0 0 40px;
	font-family: 'EB Garamond', serif;
	letter-spacing:0.15em;
	line-height:1.4;
}

.nav_box dd .title span{
	display:block;
	letter-spacing:0.01em;
	font-size:14px;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
}

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

.button li{
	display:inline-block;
	margin:0 5px;
	width:260px;
}

.button li a{
	display:block;
	padding:5px 20px 5px 30px;
	color:#fff;
	background:#480006;
}


.button li a:hover{
	background:#C69400;
	color:#fff;
}

.page_box{
	display:table;
	width:100%;
}

.page_box li{
	display:table-cell;
	vertical-align:middle;
	position:relative;
	width:50%;
	overflow:hidden;
}

.page_box li img{
	width:100%;
	height:auto;
	-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;
}

.page_box li:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.page_box li .title{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	width:87%;
	height:80px;
	text-align:center;
	color: #fff;
	font-size:20px;
	
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
	text-shadow:0 0 5px rgba(0,0,0,0.6);
}

.page_box li .title span{
	font-family: 'EB Garamond', serif;
	letter-spacing:0.1em;
	line-height:1.1;
	font-size:40px;
	display: block;

}

.page_box li a{
	color:#fff;
	display:block;
}

.page_box .more_btn{
	position: absolute;
	bottom: 40px;
	left: 50%;
	margin: 0 0 0 -20%;
}

.more_btn{
	text-align:center;
	font-size:24px;
	font-family: 'Raleway', sans-serif;
	letter-spacing:0.1em;
	margin:0;
	border:2px solid #fff;
	width: 40%;
}
.more_btn a{
	color:#fff;
	display:block;
	padding:3px 0px;

}

.more_btn a:hover{
	background:#fff;
	color:#333;
}

.shadow{
	position: relative;
	z-index: 2;
	background: url(/images/top/bg_01.jpg) repeat-x top #fff;
	box-shadow: 0 -10px 15px -5px rgba(0,0,0,0.2) inset;
	margin: 0 0 50px;
}

.top_photo{
	text-align: center;
	margin-bottom: 30px;
	
	position: relative;
	z-index: 0;
	
}
.top_photo img{
	position: relative;
	z-index: -1;
}
.top_photo span{
	box-shadow: 0 10px 15px -5px rgba(0,0,0,0.2) inset;
	display: block;
	width: 100%;
}


.top_info{
	overflow:hidden;
	margin:0 auto 50px;
	max-width:800px;
	padding:0 20px;
}

.top_info dt{
	float:left;
	clear:both;
	padding:10px 15px 5px 0;
	font-size:12px;
	color:#808080;
}

.top_info dt span{
	text-align:center;
	color:#fff;
	background:#470005;
	padding:2px 0;
	margin:0 0 0 10px;
	width:120px;
	display:inline-block;
}

.top_info dd{
	padding:6px 0 7px 105px;
	border-bottom:solid 1px #ccc;
}

.top_info dd a{
	color:#333;
	background:url(/shared/images/common/pdf_01.png) no-repeat left;
	background-size:18px;
	padding:2px 0 3px 25px;
}
.top_info dd a:hover{
	text-decoration:underline;
}


.single_banner li{
	position:relative;
}

.single_banner li p{
	text-align:center;
	color:#fff;
	font-family: 'EB Garamond', serif;
	letter-spacing:0.1em;
	font-size:40px;
	margin:0;
	background:rgba(0,0,0,0.5);
	width:100%;
	height:100px;
	position:absolute;
	top:50%;
	margin:-50px 0 0;
}
.single_banner li p span{
	display:block;
	letter-spacing:0.01em;
	font-size:14px;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
}

.single_banner li img{
	width:100%;
	height:auto;
}

.recommend_sp, .pickup_sp{
	display:none;
}

.open{
	position: relative;
	z-index: 2;
}

.open .box{
	text-align: center;
}

.open .box dl{
	background: #fff;
	padding: 5px;
	display: inline-block;
	vertical-align: top;
	/* width: 330px; */
	width: 30%;
	margin: 0 10px 30px;
	z-index: 1;
	height: 200px;
}
.open .box dt{
	margin: 0 0 10px;
	width: 100%;
	height: auto;
}
.open .box dt img{
	width: 100%;
	height: auto;
}

.open .box dd{
	text-align: left;
	margin: 0 5px;
	font-size: 13px;
}
.open .box dd .title{
	font-size: 15px;
}

.open h2{
	margin: 50px auto 50px;
	color: #fff;
}

.open h2 span{
	font-size: 22px;
}

.open .more_btn{
	margin: 0 auto;
	width: 20%;
}

#para1 {
    min-height: 580px;
    position: relative;
    width: 100% !important;
    min-width: 1000px;
    padding: 0 0;
    overflow: hidden;
	margin: 0 0 50px;
}

.parallax-item{position:absolute;z-index:5;top:00px;left:400px;}

#para1>div:nth-of-type(1){
    background: url(/images/top/parallax_01.jpg) 20% 0 no-repeat fixed;
	background-size:cover;
    margin: 0;
    height: 580px;
    position:absolute;
    top:0px;left:0;
    width:100%;
}



/* ------ slide ---------------------------- */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
	position: relative;
	margin: 0 auto 40px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -28px;
	width: 100%;
}

.bx-wrapper .bx-prev {
	left: 33%;
	background: url(/shared/images/common/prev_01.jpg) no-repeat 0 0;
	background-size: 32px;
}

.bx-wrapper .bx-next {
	right: 33%;
	background: url(/shared/images/common/next_01.jpg) no-repeat 0 0;
	background-size: 32px;
}


/* PAGER */
.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #cacaca;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #470005;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 3;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}
/**===============================================================*/

.container {width: 100%; height: 100%; overflow-x: hidden;}
.slide_all {width: 1000px; margin: 0 auto; height: 550px; position: relative;}
.slide_wrap {width: 3000px; position: absolute; left: 50%; margin-left: -1500px;}
.slide_body {width: 100%;}
.slide {width: 1000px;}
.slide img {width: 100%; vertical-align: bottom;}

/* ------------------------
	language
------------------------ */
#language {
	width: 120px;
	text-align: center;
}
#language a {
	display: block;
	background: #480006;
	padding: 5px;
}

.change_language_area {
	position: absolute;
	display: none;
	top: 58px;
	right: 20px;
	width: 120px;
	height: 140px;
	z-index: 15;
	background: rgba(0,0,0,0.8);
}
.change_language_area ul {
	padding: 0;
	text-align: left;
	width: 100%;
}
.head_box .change_language_area ul li {
	width: 120px;
	font-size: 12px;
	border-bottom: 1px solid #777;
	border-right: none;
	padding: 0;
	text-align: left;
}
.change_language_area ul li a {
	padding: 6px 8px 6px 12px;
	display: block;
	
	color: #fff;
}
.change_language_area ul li a:hover {
	color: #333;
	background: #fff;
}

/* ------------------------
	info
------------------------ */
.navi{
	text-align: center;
	border-top: 1px solid #ccc;
	clear: both;
	background: #fff;
}

.navi li{
	display:inline-block;
	margin: 0;
	font-size: 16px;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
}

.navi li a{
	color: #333;
	display: block;	
	padding: 15px 15px;
}

.navi li span{
	display: block;
	font-size: 14px;
	font-family: 'EB Garamond', serif;
}

.navi li a:hover{
	background:#f5f1ed;
	color:#ad8500;
}
/* ------------------------------------------------ */
#info dl{
	margin: 0 0 40px;
}

#info dt{
	float:left;
	clear:both;
	padding:10px 15px 5px 0;
	font-size:12px;
	color:#808080;
}

#info dt span{
	text-align:center;
	color:#fff;
	background:#470005;
	padding:2px 0;
	margin:0 0 0 10px;
	width:120px;
	display:inline-block;
}

#info dd{
	padding:6px 0 7px 105px;
	border-bottom: 1px solid #ccc;
}

#info dd a{
	color:#333;
	padding:2px 0 3px 25px;
}

#info dd.pdf a{
	background:url(/shared/images/common/pdf_01.png) no-repeat left;
	background-size:18px;
}
#info dd a:hover{
	text-decoration:underline;
}

#info section.detail h1{
	font-size:24px;
	font-weight: normal;
	color:#ad8500;
	border-bottom:1px solid #ccc;
	margin: 0 0 10px;
	padding:0 0 5px;
}

#info .tag{
	margin:0 0 50px;
}

.tag li{
	display:inline-block;
	margin-right:10px;
	background:#470005;
	color:#fff;
	text-align:center;
	padding:2px 0;
	width:120px;
	font-size:12px;
}

.tag li.date{
	font-size:13px;
	background:none;
	color:#333;
	text-align:left;
	width:auto;
}

#info section.detail{
	border-bottom:1px solid #ccc;
	margin:0 0 50px;
}

#info section.detail p{
	margin:0 0 30px;
}

#sns{
	text-align:center;
	margin:50px 0 80px;
}

#sns li{
	display:inline-block;
	margin:0 3px;
}


/*----------------------
		wp-pagenavi
----------------------*/
.wp-pagenavi {
font-size:110%;
margin:0 auto 50px;
text-align:center;
clear: both;
}

.wp-pagenavi a {
text-decoration: none;
padding: 8px 11px;
margin: 0 6px 0 0;
border: 1px solid #b3b3b3;
line-height:2.5em;
color:#333;
background:#fff;
}

.wp-pagenavi a:hover {
font-weight: normal;
padding: 8px 11px;
color:#bc9b2e;
background: #f5f1ed;
border: 1px solid #bc9b2e;
}

.wp-pagenavi span {
text-decoration: none;
padding: 8px 11px;
margin: 0 6px 0 0;
}

.wp-pagenavi span.current {
font-weight: normal;
padding: 8px 11px;
color:#bc9b2e;
background: #f5f1ed;
border: 1px solid #bc9b2e;
}

.wp-pagenavi span.pages {
color:#fff;
font-weight: normal;
background:#000;
border: 1px solid #000;
margin: 0 10px 0 0;
}



/* ------------------------------------------------ */
.table_info, .table_info2{
	width:100%;
	border:0;
	background:#ccc;
	font-size:12px;
}
.table_info th, .table_info2 th{
	background:#F7F2E7;
	padding:5px 8px;
	text-align:left;
	font-weight:bold;
	vertical-align:middle;
}
.table_info td, .table_info2 td{
	background:#fff;
	padding:5px 8px 5px 7px;
	text-align:center;
}
.table_info tr td:last-child{
	text-align: left;
}

.table_info td a{
	color:#480006;
}
#company table p {
	margin:0;
}

/* ------------------------
	environment
------------------------ */
.triple dl{
	width:317px;
	display:inline-block;
	vertical-align:top;
	margin:0 19px 40px 0;
}
.triple dl:nth-child(3n){
	margin:0 0 20px;
}
.triple dt{
	margin:0 0 15px;
	background: #fff;
	padding: 15px;
}
.triple dt img{
	width:100%;
	height: auto;
}

.triple dd .title{
	font-size:16px;
}

.line_box{
	margin:0 0 20px;
	font-size:13px;
}

.line_box li{
	border-top:1px solid #ccc;
	padding:10px 0;
}

.triple .btn{
	margin:0 auto;
}

.triple .btn a{
	display:inline-block;
	padding: 6px 20px 6px 30px;
}

#environment .left_box .title{
	font-size:18px;
	font-weight: bold;
	margin:0 0 10px;
}

.waku dt{
	border: 1px solid #e0ded2;
	box-sizing: border-box;
}
.waku dt img{
	border: 3px solid #fff;
	box-sizing: border-box;
}

.note{
	border-bottom:1px dotted #999;
	padding:0 0 5px;
}


.large_slide{
	overflow:hidden;
}

.large_slide p{
	float:left;
}

.large_slide .thum{
	float:right;
	width:120px;
}
.large_slide .thum li{
	margin:0 0 5px;
}

.information{
	overflow: hidden;
	margin: 0 0 20px;
}

.information dt{
	float: left;
	clear: both;
	font-weight: bold;
	color: #480006;
	width: auto;
	padding: 5px 3px;
}

.information dd{
	padding: 5px 0 5px 80px;
	overflow: visible;
	border-bottom: 1px solid #C0C0C0;
}

#environment .information dt{
	border: none;
	width: auto;
}

.banner_box{
	text-align: center;
	margin: 0 0 80px;
}

.banner_box li{
	display: inline-block;
	margin: 0 5px;
}

.arrow_nav li{
	display:inline-block;
	width:192px;
	margin:0 5px 5px 0;
}
.arrow_nav li:nth-child(5){
	margin:0 0 5px;
}

.arrow_nav li a{
	color:#333;
}

.arrow_nav li span{
	margin:0 0 5px;
	display:block;
}
.arrow_nav li p{
	font-size:13px;
	position:relative;
	padding:2px 0 0 12px;
}
.arrow_nav li p:before {
    position: absolute;
    top: 50%;
    left: 0px;
    display: block;
    content: '';
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: 1px solid #a37e82;
    border-right: 1px solid #a37e82;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.arrow_nav li p:hover{
	text-decoration:underline;
}

.bold{
	font-weight:bold;
}

.simple_box .right_box{
	margin:0;
}


/* ------------------------
	new-hotel
------------------------ */

#new-hotel table{
	margin: 0 0 40px;
}

#new-hotel .box{
	overflow: hidden;
}

#new-hotel .box table{
	width: 72%;
}
#new-hotel .box p{
	float: right;
	
}
#new-hotel th{
	width: 122px;
}
/* ------------------------
	employ
------------------------ */
.white_nav{
	padding: 0 0 60px;
	overflow: hidden;
	margin:0 0 40px;
}

.white_nav li{
	background: #fff;
	text-align: center;
	font-size: 15px;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
	float: left;
	margin-right: 8px;
	position: relative;
	width:16%;
	color: #333;
	box-sizing:border-box;
	cursor:pointer;
	display: block;
	padding:10px 0;
}
.white_nav li:last-child{
	margin-right: 0;
}
.white_nav li:hover, .white_nav li.select{
	background: #C69400;
	color:#fff;
}
.white_nav li a{
	display: block;
	padding: 18px 10px;
}


/*.white_nav li a{
	display: block;
	padding: 18px 10px;
	color: #333;
	box-sizing:border-box;
	width:100%;
}*/

/*.white_nav li:hover a, .white_nav li.select a{
	background: #C69400;
	color:#fff;
}*/

.white_nav li span{
	font-size: 11px;
	color: #C69400;
	display: block;
	font-family: 'EB Garamond', serif;
	letter-spacing: 0.1rem;
}

.white_nav li:hover span, .white_nav li.select span,.white_nav li.select a,.white_nav li a:hover{
	color:#fff;
}

.white_nav li:before, .white_nav li:after{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #333;
  -webkit-box-shadow: 0 15px 10px #333;
  -moz-box-shadow: 0 15px 10px #333;
  box-shadow: 0 15px 10px #333;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.white_nav li:after{
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

#employ section{
	position:relative;
	padding:68px 0 0;
	margin:-68px 0 0;
}

#employ #Company{
	background:url(/images/employ/employ_01.jpg);
	background-size:cover;
	background-position:center;
	height:558px;
	overflow:hidden;
}
#employ #Work{
	background:url(/images/employ/employ_02.jpg);
	background-size:cover;
	background-position:center;
	height:558px;
	overflow:hidden;
}
#employ #Professional{
	background:url(/images/employ/employ_03.jpg);
	background-size:cover;
	background-position:center;
	height:558px;
	overflow:hidden;
}
#employ #New_Graduate{
	background:url(/images/employ/employ_04.jpg);
	background-size:cover;
	background-position:center;
	height:558px;
	overflow:hidden;
}
#employ #Cast{
	background:url(/images/employ/employ_05.jpg);
	background-size:cover;
	background-position:center;
	height:558px;
	overflow:hidden;
}
#employ #Special{
	background:url(/images/employ/employ_06.jpg);
	background-size:cover;
	background-position:center;
	height:558px;
	overflow:hidden;
}
@media (min-width: 1300px) {
#employ #Company,#employ #Work,#employ #Professional,
#employ #New_Graduate,#employ #Cast,#employ #Special {
	height:650px;
}
}
@media (min-width: 1520px) {
#employ #Company,#employ #Work,#employ #Professional,
#employ #New_Graduate,#employ #Cast,#employ #Special {
	height:700px;
}
}
#employ section img{
	width:100%;
	height:auto;
}
#employ section h3{
	background:none;
	font-size:30px;
	padding:0;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
}

#employ section p{
	margin:0 0 20px;
	font-size:13px;
}


#employ section .more_btn{
	font-size:24px;
	width:80%;
	margin:0 auto 10px;
}

#employ section p.title{
	font-size:18px;
}

#employ section .box_l, #employ section .box_r{
	background:rgba(163,118,0,0.7);
	color:#fff;
	padding:100px 30px 30px;
	width:33%;
	box-sizing:border-box;
	position:absolute;
	top:0px;
	overflow:hidden;
}

#employ section .box_l{
	left:100px;
}

#employ section .box_r{
	right:100px;
}

.list_box{
	overflow:hidden;
	z-index:2;
}

.list_box li{
	float:left;
	margin:0 15px 10px 0;
	color:#480006;
	font-size:13px;
	position:relative;
	padding:0 0 0 20px;
}
.list_box li:before{
	position: absolute;
	top: 40%;
	left: 5px;
	display: block;
	content: '';
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border-bottom: 1px solid #888;
	border-right: 1px solid #888;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.list_box li:hover{
	text-decoration:underline;
}

.content_page{
	padding-top:70px;
	margin:-70px 0 40px;
}

.content_page2{
	padding-top:20px;
	margin:-70px 0 40px;
}

.pd_not{
	padding:0 0 40px;
	margin:0 0 100px;
	overflow:hidden;
}

#employ2 section{
	position:relative;
	padding-bottom:0;
	overflow:hidden;
}
#employ2 section .back_f {
	text-align:center;
	background:#fff;
	padding:10px;
}
#employ2 section img{
	max-width:100%;
	height:auto;
}

#employ2 section .box_l, #employ2 section .box_r{
	background:rgba(163,118,0,0.7);
	color:#fff;
	padding:30px;
	width:33%;
	box-sizing:border-box;
	position:absolute;
	top:70px;
	height:100%;
}

#employ2 section.pd_not .box_l{
	top:0;
}

#employ2 section .box_r{
	right:0;
}

#employ2 .box_l h3, #employ2 .box_r h3{
	background:none;
	font-size:30px;
	padding:0;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
}

#employ2 .right_box, #employ2 .left_box{
	margin:0 0 50px;
}

#employ2 .right_box .title, #employ2 .left_box .title{
	font-size:18px;
}

#employ2 .white_nav{
	padding:0 0 20px;
}

#employ2 .button{
	margin:0 0 80px;
}

.square li{
	padding:0 0 0 18px;
}

.square li:before{
	content:"■";
	font-size:15px;
	margin:0 3px 0 -18px;
}


#employ2 section .title{
	font-size:18px;
	white-space:nowrap;
}

.voice{
	padding-bottom:20px;
}

.voice dl{
	display:table;
	margin-bottom:25px;
	border-collapse: separate;
    border-spacing: 2px 0;
}

.voice dt{
	display:table-cell;
	vertical-align:middle;
	border-radius:50%;
	border:1px solid #B9A286;
	padding:20px;
	text-align:center;
	color:#936941;
	width:130px;
	height:130px;
	box-shadow:0 0 4px 1px rgba(100,100,100,0.1), 0 0 4px 1px rgba(100,100,100,0.1) inset;
}

.voice dt span{
	display:block;
	font-size:40px;
	font-family:Georgia, "Times New Roman", Times, serif;
}

.voice dd{
	display:table-cell;
	vertical-align:middle;
	padding-left:25px;
}

.voice ul{
	text-align:center;
	display:table;
	border-collapse: separate;
    border-spacing: 4px 0;
}

.voice li{
	display:table-cell;
	vertical-align:middle;
	border-radius:50%;
	border:1px solid #B9A286;
	padding:15px;
	text-align:center;
	color:#936941;
	font-size:12px;
	width:130px;
	height:130px;
	box-shadow:0 0 4px 1px rgba(100,100,100,0.1), 0 0 4px 1px rgba(100,100,100,0.1) inset;
}


#employ2 .title2{
	color:#480006;
	font-size:18px;
}

.training dl{
	overflow:hidden;
	margin:0 0 30px;
	border-top:1px solid #C0C0C0;
}

.training dt{
	color:#480006;
	float:left;
	clear:both;
	padding:5px 0;
}

.training dd{
	padding:5px 0 5px 210px;
	border-bottom:1px solid #C0C0C0;
}

.three{
	margin:0 0 30px;
	background:#fff;
	padding:30px;
	text-align:center;
}

.three li{
	display:inline-block;
	margin-right:15px;
}
.three li:last-child{
	margin-right:0;
}

.message{
	margin:0 0 30px;
}

.message ul{
	border:1px solid #B9A286;
	background:#fff;
	padding:20px;
	width:45%;
	display:inline-block;
	vertical-align:top;
	margin:0 1% 20px 0;
	min-height:140px;
}
.message ul:nth-child(2n+1){
	margin:0 0px 20px 0;
}

.faq_box dl{
	margin:0 0 20px;
}

.faq_box dt{
	color:#480006;
	font-size:18px;
	border-bottom:1px solid #C0C0C0;
	margin:0 0 10px;
	padding:0 0 0px 0px;
	font-weight:bold;
}
.faq_box dt:before{
	content:"";
	background:url(/images/faq/q.png) no-repeat left center;
	background-size:28px;
	width:26px;
	display:inline-block;
	vertical-align:middle;
	padding:20px 15px 20px 0;
}

.faq_box dd{
	padding:0 0 0 62px;
}

.faq_box dd ul li{
	list-style-type:disc;
}

.ivory{
	background:#F7F2E7;
	border:1px solid #E2DCCF;
	padding:25px;
	margin:0 0 20px;
}

.ivory dt{
	color:#480006;
	font-size:18px;
	padding:0 0 5px;
	border-bottom:1px solid #CEBBA5;
}
.ivory dd{
	border-top:1px solid #fff;
	padding:10px 0 0;
}

#employ2 .hotel table td{
	text-align:left;
	font-size:100%;
}

#credo .white_nav{
	padding:0 0 10px;
	margin:0 0 10px;
}

.six_box{
	text-align:center;
	margin:0 0 30px;
}

.six_box li{
	display:inline-block;
	width:16%;
	height:auto;
}
.six_box li:hover{
	cursor:pointer;
}

.six_box li img{
	width:100%;
	height:auto;
}

.credo_box .content_page {
    padding-top: 70px;
    margin: -70px 0 0px;
}

.credo_box div{
	background:#F7F2E7;
	padding:25px;
	border:1px solid #E2DCCF;
}

.credo_box .credo{
	display:table;
	margin:0 0 20px;
}

.credo_box .credo dt{
	display:table-cell;
	vertical-align:middle;
}

.credo_box .credo dd{
	display:table-cell;
	vertical-align:middle;
	font-size:37px;
	color:#936941;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
	font-weight:bold;
	padding-left:20px;
}
.credo_box .credo dd span{
	font-size:18px;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	display:block;
	font-weight:normal;
	line-height:1;
}

.credo_box .credo dd p{
	margin:0;
}

.credo_box .right_box{
	clear:both;
}

/* ------------------------
	privacy
------------------------ */
#privacy p a:hover{
	text-decoration:underline;
}

#privacy li{
	padding-left:2.7em;
}

#privacy li span{
	display: inline-block;
    position: relative;
    left: -2.7em;
    width: 0;
    white-space: nowrap;
}

.arrow a{
	position:relative;
	padding:0 0 0 12px;
}

.arrow a:after, .arrow a:after {
	content:"";
    position: absolute;
    top: 50%;
    left: 0px;
    display: block;
    content: '';
    width: 6px;
    height: 6px;
    margin-top: -4px;
    border-top: 1px solid #a37e82;
    border-right: 1px solid #a37e82;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#employ #Professional .arrow a {
	color:#fff;
}
#employ #Professional .arrow a:after {
    position: absolute;
    top: 50%;
    left: 0px;
    display: block;
    content: '';
    width: 6px;
    height: 6px;
    margin-top: -4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#privacy .title{
	font-weight:bold;
	font-size:15px;
}

#anc-procedure{
	padding:70px 0 0;
	margin:-70px 0 10px;
}




.window{
	background:url(/images/common/window.png) no-repeat right center;
	background-size:17px;
	padding:2px 22px 2px 0;
	word-break: break-all;
}

.pdf a{
	background: url(/shared/images/common/pdf_01.png) no-repeat left center;
    background-size: 22px;
	padding:6px 0 6px 30px;
	color:#aa0a12;
}

/* ------------------------
	faq
------------------------ */
#faq dt{
	background: url(/images/faq/q.png) no-repeat left 10px;
	background-size:28px;
	padding:10px 0 10px 38px;
	border-bottom: 1px solid #ccc;
}
#faq dd{
	background: url(/images/faq/a.png) no-repeat left 10px;
	background-size:27px;
	padding:10px 0 10px 38px;
	margin:0 0 20px;
	border-bottom:1px solid #ccc;

}
#faq dt.bb-dt {
    border-bottom: none;
}

#faq .title{
	font-weight:bold;
}

/* ------------------------
	members
------------------------ */
.btn_group {
	text-align:center;
}
.btn_group p{
	display:inline-block;
}
#members .btn {
	margin:0;
}
#members .btn.auto {
	margin:0 auto;
}
#members .btn a{
	color:#fff;
}
#members .catch{
	margin:0 auto 30px;
}

#members .content_page,#members .content_page2{
	padding:100px 0 40px;
	margin:-100px 0 20px;
}
.list_style li {
	list-style-type: disc;
	margin:0 0 0 15px;
}
.tokuten_box{
	margin:0 0 50px;
}

.tokuten_box dl{
	display:inline-block;
	vertical-align:top;
	width:31%;
	margin:0 3% 0 0;
	position:relative;
	padding-bottom:20px;
}
.tokuten_box dl:last-child{
	margin:0;
}
.tokuten_box dl:hover{
	cursor:pointer;
}

.tokuten_box dt{
	background:#C69400;
	padding:3px;
	color:#fff;
	text-align:center;
	position:absolute;
	top:0;
	left:50%;
	margin:0 0 0 -33px;
	z-index: 2;
}
.tokuten_box dt span{
	border:1px solid #E0C580;
	display:block;
	padding:2px 10px;
}

.tokuten_box dt span.nun, .toku_title li span.nun{
	border:0;
	font-size:38px;
	font-family:"Times New Roman", Times, serif;
	display:block;
	line-height:1;
}

.tokuten_box dd{
	background:#fff;
	padding:70px 20px 20px;
	text-align:center;
	margin-top:30px;
	font-size:17px;
	min-height:165px;
	position: relative;
}

.tokuten_box dd .title{
	font-size:20px;
	color:#C69400;
	margin:0 0 15px;
	line-height:1.4;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
}
.tokuten_box dd .title span{
	font-size:28px;
	display:block;
}

.tokuten_box dd .title span.last{
	padding-top:35px;
}

.tokuten_box dd::after {
	position: absolute;
	top: 88%;
	right: 50%;
	margin-right:-6px;
	display: block;
	content: '';
	width: 12px;
	height: 12px;
	margin-top: -6px;
	border-bottom: 1px solid #A07F83;
	border-right: 1px solid #A07F83;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


.tokuten_box dl:before, .tokuten_box dl:after{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 35px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #777;
  -webkit-box-shadow: 0 15px 10px #777;
  -moz-box-shadow: 0 15px 10px #777;
  box-shadow: 0 15px 10px #777;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.tokuten_box dl:after{
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

ul.toku_title{
	margin:0 0 10px;
}

ul.toku_title li{
	display:inline-block;
	vertical-align:middle;
	color:#9B7306;
	font-size:24px;
	margin-right:20px;
}

.toku_title li p{
	font-size:13px;
}

.toku_title li p span{
	border:1px solid #E0C580;
	display:block;
	padding:2px 10px;
}

ul.toku_title li p{
	background:#C69400;
	padding:3px;
	color:#fff;
	text-align:center;
	width:65px;
	height:70px;
}

.boxs dl, .boxs p{
	background:#fff;
	padding:25px;
	border:1px solid #ccc;
	margin:0 0 30px;
}

.boxs dt{
	padding:0 0 5px;
	margin:0 0 10px;
	background:url(/images/chain/common/line_01.gif) repeat-x bottom;
	font-size:20px;
	font-family: "ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","ヒラギノ明朝 ProN W6","HGS明朝E","HG明朝E","ＭＳ Ｐ明朝",serif ;
}

.border2, .border .boxs{
	background:url(/images/chain/common/line_01.gif) repeat-x bottom;
	margin-bottom:30px;
	padding-bottom:10px;
}

#members p.auto{
	font-size:18px;
}

#members .target_hotel a{
	color:#333;
}
#members .table_info a:hover{
	text-decoration:underline;
}

#members .table_info ul{
	margin:0 0 10px;
}

#members .table_info li{
	display:inline-block;
	margin:0 4px 0 0;
}

#members p.auto a{
	padding: 10px 25px 10px 35px;
}

.ticket_hotel td.not{
	text-align:center;
	background:#E6E6E6;
}

.ticket_hotel tr.center td:nth-child(2),
.ticket_hotel tr td:nth-child(3),
.ticket_hotel tr td:last-child{
	text-align:center;
}
#members table.table_info,#members table.table_info tr,#members table.table_info th,#members table.table_info td,
#faq table.table_info,#faq table.table_info tr,#faq table.table_info th,#faq table.table_info td {
	border:none;
}




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

.in2{display:block;}
.out2{display:none;}

h4 {
    font-size: 25px;
}

.cb-header, .cb-header2{
	display:none !important;
}

/* ------------------------
	header
------------------------ */
header{
	overflow:hidden;
	position:fixed;
	top:0;
	width:100%;
	box-sizing: border-box;
	background:#fff;
}

header h1 {
	/* margin:10px 0 10px 10px; */
}


.head_menu ul {
	margin:0 0;
}

.head_menu li{
	margin-left: 5px;
}
#language{
	display: none;
}
.menu-btn{
	display: block;
}


/* ------------------------
	footer
------------------------ */
.footer_inner, .end_inner{
	width:auto;
}

.footer_inner{
	padding: 50px 15px 10px;
}

.sitemap{
	width:30%;
}

.end{
	padding-bottom:0;
}

.end_inner{
	margin:0 15px;
}

.end_inner dl{
	width:100%;
}

.end_inner dt img{
	width:100%;
	height:auto;
}
.banner li{
	width:24%;
	margin: 0 3px 0 0;
}

.banner li img{
	width:100%;
	height:auto;
}


/* ------------------------
	rayout
------------------------ */
.wrapper{
	width:auto;
	margin:0 15px;
}

#main p{
	font-size:45px;
}

.catch, .catch2{
	font-size:22px;
}

.left_box dt{
	width:45%;
}
.left_box dt img{
	width:100%;
	height:auto;
}

/* ------------------------
	pankuzu
------------------------ */
#pankuzu ul, #pankuzu2 ul{
	width:100%;
	margin:0 15px;
}

/* ------------------------
	top
------------------------ */
#container{
	padding-top:95px;
}


.slide_all{
	display:none;
}

.main_slide_sp{
	display:block;
	position:relative;
}

.main_slide_sp li img{
	width:100%;
	height:auto;
}

.main_slide_sp p{
	position:absolute;
	top:50px;
	left:30px;
}

.g_nav, .navi{
	display: none;
}

.nav_box .left_box dd{
	padding: 10px 20px 30px 30px;
}

.nav_box .right_box dd {
    padding: 10px 20px 30px 30px;
}

.page_box li .title{
	font-size: 16px;
	height: 55px;
}

.page_box li .title span{
	font-size:25px;
	height: 30px;
}

.more_btn{
	font-size: 18px;
}

.top_photo span img{
	max-width: 100%;
	height: auto;
}

#para1{
	min-width: inherit;
}


/* ------ reservation ---------------------------- */
#popReserve{
	display:none;
}


/* ------ slide ---------------------------- */
.recommend .bx-controls-direction a.bx-prev, .pickup .bx-controls-direction a.bx-prev{
	left: 25%;
}
.recommend .bx-controls-direction a.bx-next, .pickup .bx-controls-direction a.bx-next{
	left: 60%;
}


/* ------------------------
	info
------------------------ */
#info section p img{
	width:100%;
	height:auto;
}

/* ------------------------
	bath
------------------------ */
.double dl, .double dl:last-child{
	overflow:hidden;
	width:auto;
	margin:0 0 15px;
}

.double dt{
	width:45%;
	float:left;
	margin:0 15px 0 0;
}
.double dt img{
	width:100%;
	height:auto;
}
.double dd{
	overflow:hidden;
}


/* ------------------------
	environment
------------------------ */

#environment .left_box dt{
	width: 40%;
}
#environment .left_box dt img{
	width: 100%;
	height: auto;
}

.triple dl, .triple dl:nth-child(3n){
	width:49%;
	margin:0 9px 40px 0;
}
.triple dl:nth-child(2n){
	margin:0 0 40px;
}

.large_slide p{
	float:none;
	width:100%;
}
.large_slide p img{
	width:100%;
	height:auto;
}
.large_slide .thum{
	float:none;
	width:auto;
	overflow:hidden;
	margin:0 0 10px;
}
.large_slide .thum li{
	margin:0 4px 5px 0;
	float:left;
	width:110px;
	height:auto;
}
.large_slide .thum li img, .simple_box dt img, .arrow_nav li img{
	width:100%;
	height:auto;
}

.simple_box dt{
	width:40%;
}

.view img{
	max-width:100%;
	height:auto;
}

.arrow_nav li{
	width:132px;
}

/* ------------------------
	new-hotel
------------------------ */
#new-hotel .box table {
    width: 64%;
}

/* ------------------------
	employ
------------------------ */
.white_nav li{
	font-size: 13px;
	margin-right: 5px;
}

.white_nav li a {
    padding: 17px 6px;
}

.white_nav li:before, .white_nav li:after {
    bottom: 15px;
    width: 42%;
    top: 78%;
}
#employ section .box_l {
    left: 20px;
}
#employ section .box_r {
    right: 20px;
}
#employ #Company {
	height:435px;
}
#employ #Work {
	height:432px;
}
#employ #Professional {
	height:437px;
}
#employ #New_Graduate {
	height:525px;
}
#employ #Cast {
	height:452px;
}
#employ #Special {
	height:366px;
}
#employ section .box_l, #employ section .box_r{
	width:315px;
	/*padding:22px 25px;*/
}

#employ section h3, #employ2 .box_l h3, #employ2 .box_r h3{
    font-size: 26px;
	margin:0 0 15px;
}

#employ section p, #employ2 .box_l p, #employ2 .box_r p{
	margin:0 0 12px;
}

#employ section p.title {
    font-size: 16px;
}
#employ section .more_btn {
    font-size: 18px;
	margin:0 auto;
}

#employ2 section .box_l, #employ2 section .box_r{
	width:54%;
	padding:20px;
}

#employ2 .right_box dt{
	width:40%;
}

#employ2 .right_box dt img, .three li img{
	width:100%;
	height:auto;
}

.three li{
	width:32%;
	margin-right:1%;
   
}
.voice li{
	 font-size: 10px;
	 padding: 10px 6px;
}
.message ul{
	display:block;
	width:100%;
	margin:0 0 20px;
	box-sizing:border-box;
	min-height:inherit;
}

#employ2 .table_info th{
	width:20%;
}

.credo_box .credo dt{
	width:15%;
	height:auto;
}
.credo_box .credo dd{
	font-size:26px;
}

.credo_box .right_box dt{
	width:40%;
	height:auto;
}

.credo_box .credo dt img, .credo_box .right_box dt img{
	width:100%;
	height:auto;
}


/* ------------------------
	members
------------------------ */
.tokuten_box dl{
	margin:0 2% 0 0;
}
.tokuten_box dd .title span {
    font-size: 21px;
}
.tokuten_box dd .title {
    font-size: 15px;
}

.tokuten_box dd{
	 font-size: 14px;
	 padding:70px 15px 20px;
}

#members .right_box dt{
	width:40%;
	height:auto;
}
#members .right_box dt img{
	width:100%;
	hanging-punctuation:;
}



}



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

body{
	font-size:13px;
}

.in1{display:block;}
.out1{display:none;}


h2{
	font-size:28px;
}
h2 span{
	font-size:13px;
}

h3{
	font-size:16px;
}
h4{
	font-size:18px;
	margin:0 0 15px;
}

/* ------------------------
	header
------------------------ */
header{
	padding: 10px 0 0;
}

header h1{
	width: 250px; height: 35px; margin:5px 0 5px 10px;
}

header h1 img{
	width: 100%;
	height: auto;
}

.head_menu{
	padding: 0 15px 10px;
}


/* ------------------------
	footer
------------------------ */
.footer_inner{
	padding:20px 15px 0;
}
.sitemap{
	width:auto;
	float:none;
	clear: both;
	margin:0 0 20px;
}
.sitemap ul{
	margin:0 0 10px;
}

.sitemap ul.width {
    width: auto;
}

.sitemap .group{
	float:none;
	margin:0 0 10px;
}

.banner li{
	width:23%;
	margin: 0 5px 0 0;
}


/* ------------------------
	rayout
------------------------ */
#main{
	margin-bottom:30px;
}

#main p {
    font-size: 38px;
	height: 75px;
	width:58%;
}

.text{
	width:auto;
}

.button li {
    width: 45%;
}

/* ------------------------
	pankuzu
------------------------ */
#pankuzu, #pankuzu2{
	display:none;
}


/* ------------------------
	top
------------------------ */
#container {
    padding-top: 70px;
}


.nav_box dd .title {
    font-size: 28px;
	margin:0 0 20px;
}
.nav_box dd .title span{
	font-size:13px;
}

.nav_box .left_box, .nav_box .right_box{
	background:#f2f2f2;
}
.nav_box p{
	display:none;
}
.nav_box .title,
.nav_box .btn{
	display:block;
}
.nav_box .left_box dd {
    padding: 10px 15px 30px 20px;
}
.nav_box .right_box dd {
    padding: 10px 15px 30px 20px;
}

.top_info{
	width:auto;
	margin:0 15px 20px;
}

.top_info dt{
	float:none;
}
.top_info dd {
    padding: 0 0 10px 0px;
}

.map{
	margin:0 0 30px;
}

.page_box li .title{
	font-size: 14px;
}

.page_box li .title span{
	font-size: 16px;
	height: auto;
}

.single_banner li p{
	font-size:30px;
	height: 80px;
}
.single_banner li p span{
	font-size:13px;
}
.page_box .more_btn{
	bottom: 20px;
	margin: 0 0 0 -22%;
}
.more_btn {
    font-size: 15px;
}

#para1{
	height: auto;
}

#para1>div:nth-of-type(1){
	height: auto;
	background: url(/images/top/parallax_01.jpg) 10% 0;
	background-size: inherit;
    height: 100%;
}

.open h2{
	margin: 20px auto 40px;
}
.open h2 span {
    font-size: 18px;
}

.open .box dl{
	width: 43%;
	margin: 0 5px 20px;
}
.open .box dd .title {
    font-size: 14px;
}


#map_canvas{
	height:340px !important;
}

/* ------ reservation ---------------------------- */
#reservation{
	position:static;
}
.reservation_left .rsv-part span, .reservation_left .rsv-part span.m-on{
	display:inline-block;
}
.reservation_left .rsv-part{
	display:block;
	margin:0 0 5px;
}


.reservation_top dt span{
	display:none;
}
.reservation_right ul{
	padding:5px 0 0;
}
.reservation_right li{
	font-size:12px;
}


/* ------ slide ---------------------------- */
.main_slide{
	display:none;
}

.main_slide_sp{
	display:block;
	position:relative;
}

.main_slide_sp li img{
	width:100%;
	height:auto;
}

.main_slide_sp p{
	position:absolute;
	top:50px;
	left:30px;
}

/* ------------------------
	info
------------------------ */
#info section.detail h1 {
    font-size: 18px;
}

#info .tag{
	margin:0 0 30px;
}

.tag{
	margin:0 0 30px;
}


.information dt{
	margin:0;
	float:none;
}

.information dd{
	padding:5px 3px;
	margin-bottom:5px;
}


.catch, .catch2{
    font-size: 19px;
}
.double .title{
	font-size:17px;
}



/* ------------------------
	environment
------------------------ */
.triple dl, .triple dl:nth-child(3n) {
    margin: 0 1% 40px 0;
}
.triple dl:nth-child(6n){
	margin:0 0 40px;
}

.triple dd .title, #environment .left_box .title{
    font-size: 16px;
}

.simple_box .title {
    font-size: 16px;
}
.bold br{
	display:none;
}

.arrow_nav li, .arrow_nav li:nth-child(5){
	width:31%;
	margin: 0 5px 5px 0;
}
/* ------------------------
	new-hotel
------------------------ */
#new-hotel th {
    width: 100%;
}
#new-hotel .box table {
    width: 100%;
}
#new-hotel .box p{
	float: none;
	width: 100%;
}
#new-hotel .box p img{
	width: 100%;
	height: auto;
}


/* ------------------------
	employ
------------------------ */
.white_nav li{
	width:32%;
	margin:0 6px 20px 0;
}

#employ section {
    position: relative;
    padding: 75px 0 0px;
    margin: -75px 0 0px;

}

#employ #Company, #employ #Work, #employ #Professional, #employ #New_Graduate, #employ #Cast, #employ #Special{
	height:auto;
	background:none;
}

#employ section .box_l, #employ section .box_r,
#employ2 section .box_l, #employ2 section .box_r{
	position:static;
	width:100%;
	padding: 90px 15px 20px;
	background:#A37600;
}
#employ #Company{
	background:none;
}
#employ section p.mb0{
	margin:0;
}
#employ section h3, #employ2 .box_l h3, #employ2 .box_r h3{
    font-size: 22px;
}


#employ2 .right_box .title, #employ2 .left_box .title{
    font-size: 16px;
}

.voice dt span{
	font-size:30px;
}
#employ2 section .title, #employ2 .title2 {
    font-size: 16px;
}

.voice ul{
	display:block;
	
}
.voice li{
	display:block;
	width:100%;
	height:auto;
	box-sizing:border-box;
	border-radius:5px;
	margin:0 0 10px;
}
.voice li br{
	display:none;
}
.faq_box dt {
    font-size: 16px;
}
.faq_box dt:before {
    padding-right: 10px;
    font-size: 28px;
}
.faq_box dd {
    padding: 0 0 0 50px;
}

.ivory{
	padding:15px;
}

.ivory dt{
	font-size:15px;
}

.hotel table thead{
	display:none;
}

.hotel table tbody td{
	display: block;
    padding: 4px 8px;
    width: 100%;
    border-left-width: 0;
}

#employ2 .hotel table tbody td.title{
	background: #F7F2E7;
	font-size:12px;
	border-bottom:1px solid #ccc;
}
.hotel .table_info tr td:last-child{
	padding:4px 8px 10px;
}
.hotel .table_info tr td br{
	display:none;
}

.hotel table tbody td:before {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    color: #888;
    font-weight: normal;
}
/*
.hotel table tbody td:nth-of-type(2):before {
    content: "職種：";
}
*/
.hotel table tbody td:nth-of-type(2):before {
    content: "時給：";
}
.hotel table tbody td:nth-of-type(3):before {
    content: "時間／シフト制：";
}
.hotel table tbody td:nth-of-type(4):before {
    content: "待遇：";
}
.hotel table tbody td:nth-of-type(5):before {
    content: "研修期間／時給：";
}
.hotel table tbody td:nth-of-type(6):before {
    content: "備考：";
}


.six_box li {
    width: 15%;
}

.credo_box .credo dd {
    font-size: 24px;
	padding-left: 15px;
}
.credo_box .credo dd span{
	font-size:15px;
}

/* ------------------------
	members
------------------------ */
.tokuten_box dd {
    min-height: 145px;
}

.tokuten_box dd .title span {
    font-size: 17px;
}
.tokuten_box dd .title {
    font-size: 12px;
}

.tokuten_box dd {
    font-size: 12px;
    padding: 70px 10px 20px;
}
.tokuten_box dt span.nun, .toku_title li span.nun {
    font-size: 28px;

}

ul.toku_title li p {
    width: 65px;
    height: 60px;
}
ul.toku_title li {
    font-size: 18px;
}

.boxs dt{
	font-size:16px;
}

#members p.auto {
    font-size: 16px;
}


}



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

.in{display:block;}
.out{display:none;}

body{
	font-size:12px;
}

h2{
	margin:0 0 20px;
}

h4 span{
	float:none;
	display:block;
	margin:5px 3px;
	line-height:1.4;
}

section{
	padding:0 0 30px;
}

/* ------------------------
	header
------------------------ */
header h1 {
	/* width: 200px;margin: 10px 0; */
}



/* ------------------------
	footer
------------------------ */

.end_inner dd li{
	width:49%;
}
.end_inner dd li img{
	max-width:100%;
	height:auto;
}

.banner{
	overflow:hidden;
}

.banner li{
	width:49%;
	display:block;
	float:left;
	margin: 0 5px 5px 0;
}
.banner li:nth-child(2n){
	margin:0 0 5px;
}

/* ------------------------
	rayout
------------------------ */
#main p {
    font-size: 20px;
    height: 25px;
	width:70%;
}
#main p span{
	display: none;
}

.information dt{
	margin:0 !important;
}
/* ------------------------
	top
------------------------ */

#top .button{
	margin:0 15px 20px;
}

.button li{
	width:100%;
	box-sizing:border-box;
	margin:0 0 10px;
}

.nav_box .left_box, .nav_box .right_box{
	margin:0 0 10px;
	position:relative;
}

.nav_box .left_box dt, .nav_box .right_box dt{
	width:150px;
	float:left;
	margin:0 15px 0 0;
}
.nav_box .left_box dd, .nav_box .right_box dd{
	padding:15px 10px 0 0;
}

.nav_box dl:after {
	position: absolute;
	top: 50%;
	right: 10px;
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nav_box dd .title{
	font-size:20px;
}

.nav_box dd .title span{
	font-size:10px;
}

.nav_box .btn{
	display:none;
}

.page_box{
	display:block;
}

.page_box li{
	display:block;
	overflow:hidden;
	position:relative;
	width:100%;
	height:170px;
	margin-bottom:2px;
}
.page_box li img{
	position: absolute;
	/*top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);*/
	width: 100%;
	height: auto;
}

.page_box li .title{
	height:75px;
}
.page_box .more_btn {
	margin: 0 0 18px -22%;
}


.page_box li span {
    font-size: 20px;
    height: 25px;
}

.single_banner li p{
	font-size:24px;
	height: 45px;
	margin: -25px 0 0;
}

.single_banner li p span{
	display:none;
}

.open h2{
	margin: 20px auto;
}

.open h2 span {
    font-size: 16px;
}

#para1 {
    min-height:inherit;
	padding: 0 0 20px;
}

.open .box dl{
	display: block;
	height: auto;
	width: auto;
	margin: 0 15px 20px;
}
.open .more_btn {
    margin: 0 auto;
    width: 40%;
}



/* ------------------------
	info
------------------------ */
#info section.detail h1 {
    font-size: 16px;
}

.catch, .catch2{
    font-size: 17px;
}
.double .title{
	font-size:15px;
}

.double dt{
	float:none;
	margin:0 0 10px;
	width:100%;
}

/* ------------------------------------------------ */

.table_info th{
	display: block;
	width: 100%;
	box-sizing: border-box;
	border-bottom: 1px solid #cecece;
}
.table_info td{
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-align: left;
}

ul.tel_box li:first-child {
    font-size: 23px;
	margin:0 0 5px;
}
ul.tel_box li{
	display:block;
}

.balloon li p{
	height:84px;
}


.simple_box dt{
	float:none;
	width:100%;
	margin:0 0 20px;
}
.simple_box dt img{
	width:100%;
	height:auto;
}

/* ------------------------
	environment
------------------------ */


.triple dl, .triple dl:nth-child(2n), .triple dl:nth-child(3n){
	width:100%;
	margin:0 0 30px;
}

.left_box dt{
	width:100%;
	float:none;
	margin:0 0 15px;
}

#environment .left_box dt{
	width: 100%;
	float: none;
	margin: 0 0 15px;
}

.large_slide .thum li{
	width:23%;
}
.arrow_nav li, .arrow_nav li:nth-child(5){
	width:47%;
}
.arrow_nav li p{
	font-size:12px;
}

.banner_box li{
	margin: 0 0 10px;
	display: block;
}

/* ------------------------
	employ
------------------------ */
.white_nav li {
    width: 48%;
    margin: 0 2% 20px 0;
}

.white_nav li:nth-child(2n){
    margin: 0 0 20px;
}

#employ2 .right_box dt {
    width: 100%;
	float:none;
	margin:0 0 15px;
}

#employ2 .table_info th {
    width: 100%;
}

.voice dl{
	display:block;
	
}
.voice dt{
	display:block;
	margin:0 auto 15px;
	box-sizing:border-box;
}
.voice dd{
	display:block;
	padding:0;
	
}

.training dt{
	float:none;
}

.training dd{
	padding:0 0 5px;
}
.three{
	padding:15px;
}

.three li {
    width: 100%;
	display:block;
    margin: 0 0 15px;
}

.message ul{
	padding:15px;
}

.voice li {
	text-align:left;
}
.faq_box dd {
    padding: 0 0 0 20px;
}


.six_box li{
	width:49%;
	margin-bottom:4px;
}

.credo_box div{
	padding:20px 13px;
}
.credo_box .credo dd {
    font-size: 18px;
}
.credo_box .credo dd span {
    font-size: 13px;
	margin:0 0 5px;
}
.credo_box .right_box dt{
	float:none;
	width:100%;
	margin:0 0 15px;
}

/* ------------------------
	faq
------------------------ */
#faq dt {
    background: url(/images/faq/q.png) no-repeat left 10px;
    background-size: 18px;
    padding: 5px 0 5px 28px;
}
#faq dd {
	background: url(/images/faq/a.png) no-repeat left 10px;
    background-size: 17px;
    padding: 10px 0 10px 28px;
}
/* ------------------------
	members
------------------------ */
.tokuten_box dl{
	margin:0 0 20px;
	width:100%;
	display:block;
}
.tokuten_box dt{
	top:-20px;
}

.tokuten_box dd {
    min-height: 115px;
}
.tokuten_box dd .title span {
    font-size: 21px;
}
.tokuten_box dd .title span.last{
	padding:20px 0 0;
}

ul.toku_title li:first-child{
	display:block;
	
}

ul.toku_title li p{
	margin:0 auto 10px;
}

ul.toku_title li{
	margin:0 0 20px;
}

#members .table_info li{
	margin:0 0 5px;
}

#members .right_box dt{
	width:100%;
	float:none;
	margin:0 0 15px;
}

.target_hotel thead{
	display:none;
}

.target_hotel tbody td{
	display: block;
    padding: 4px 8px;
    width: 100%;
	box-sizing:border-box;
    border-left-width: 0;
}

.target_hotel tr td:last-child{
	padding:4px 8px 10px;
}
.target_hotel tr td br{
	display:none;
}

.target_hotel tbody td:first-child{
	background: #F7F2E7;
	border-bottom:1px solid #ccc;
}

.target_hotel tbody td:before {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    color: #888;
    font-weight: normal;
}

.target_hotel tbody td:nth-of-type(2):before {
    content: "施設名称：";
}
.target_hotel tbody td:nth-of-type(3):before {
    content: "所在地：";
}
.target_hotel tbody td:nth-of-type(4):before {
    content: "予約TEL：";
}
.target_hotel tbody td:nth-of-type(5):before {
    content: "URL：";
}

/*.ticket_hotel th{
	width:48%;
}*/
.ticket_hotel td{
	vertical-align:middle;
}


}





#privacy-saiyo{background:#fff;padding:30px;margin-top:30px;}
#privacy-saiyo h4{font-size:16px;font-weight:bold;margin-bottom:10px;}



















