/***************************
 *
 * モジュール
 *
 **************************/


/* 
一般
*/
img{

}
.clear {
	clear: both;
}
.clearfix:after {
	clear: both;
	height: 0px;
	display: block;
	content: ".";
	visibility: hidden;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.pt-50 {
	padding-top: 50px !important;
}
.pb-50 {
	padding-bottom: 50px !important;
}
.mlr-0 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.nrw {
	transform: scaleX(0.97);
	transform-origin: 0 0;	
	/*width: 103%;*/
}


.fx {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}
.fx-start {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}
.fx-bottom {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;	
}
.fx-center {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}
.fx-middle {
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;	
}

.box-col-2 {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
}
.box-col-2 > div {
	width: 50%;
	box-sizing: border-box;
}

/* 
カラー
*/
.blue {
	color: #246ca3 !important;
}
.pink {
	color: #e5004f !important;
}
.red {
	color: #ed2856 !important;
}
.white {
	color: white !important;
}

/* 
OVER
*/
@keyframes flash {
      0% {
          opacity: 1;
      }

      100% {
          opacity: 0.5;
      }
  }

.over {
	-webkit-transition: 1s ease;
	-moz-transition: 1s ease;
	-ms-transition: 1s ease;
	-o-transition: 1s ease;
	transition: 1s ease;		
}

.over:hover {
	-ms-filter: "alpha(opacity=7)";
	opacity: 0.3;
	-webkit-transition: 0s ease;
	-moz-transition: 0s ease;
	-ms-transition: 0s ease;
	-o-transition: 0s ease;
	transition: 0s ease;	
}


.zoom {
	
}
.zoom:hover {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);	
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;		
}


.underbar {
  width: 0;
  height: 1px;
  background: rgba(34,34,34,0);
  top: 20px;
  position: absolute;
  -webkit-transition: 0.5s ease;
}


/* 
フォント
*/

.en {
	font-family: 'Abhaya Libre', serif;
}
.en-all * {
	font-family: 'Abhaya Libre', serif;
}
.serif {
	font-family: 'Noto Serif JP', 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
}

.serif-all * {
	font-family: 'Noto Serif JP', 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
}




/* 
ボタン
*/
.btn {
	margin: 30px auto;
	width: 100%;
	position: relative;
	z-index: 5;
}
.btn a {
	line-height: 50px;
	display: block;
	text-align: center;
	color: white;
	font-size: 15px;
	text-decoration: none !important;
	position: relative;
	background: rgb(72,72,72);
	background: -moz-linear-gradient(top,  rgba(72,72,72,1) 0%, rgba(12,11,11,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(72,72,72,1) 0%,rgba(12,11,11,1) 100%);
	background: linear-gradient(to bottom,  rgba(72,72,72,1) 0%,rgba(12,11,11,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#484848', endColorstr='#0c0b0b',GradientType=0 );	
}
.btn a:after {
	content: "";
	display: inline-block;
	background: url(../img/bullet-btn.png) center center no-repeat;
	background-size: contain;
	width: 15px;
	height: 16px;
	vertical-align: middle;
	margin-left: 20px;
	position: relative;
	top: -2px;
}

.btn.btn-big a {

}

.btn a:hover {
	/*animation: jump .2s ease-in-out forwards;*/
	text-decoration: none !important;
	color: white;
	opacity: 0.7;
}
.btn.btn-gold {
	
}
.btn.btn-gold a {
	background: rgb(184,143,87);
	background: -moz-linear-gradient(top,  rgba(184,143,87,1) 0%, rgba(167,122,66,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(184,143,87,1) 0%,rgba(167,122,66,1) 100%);
	background: linear-gradient(to bottom,  rgba(184,143,87,1) 0%,rgba(167,122,66,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b88f57', endColorstr='#a77a42',GradientType=0 );

}
.btn.btn-bottom {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: 0;
}

.btns {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}
.btns .btn {
	margin-left: 15px;
	margin-right: 15px;
}
.page .btn a {
	color: white;
}

/* 
BG
*/

/* 
IMAGE
*/
.pic-frame {
	overflow: hidden;
}
.pic-frame > img {
	width: 100%;
}

/* 
アイコン
*/


/*
ANIMATE
*/
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slide-in-1 {
  0% { transform: translateY(0.7vw); }
  100% { transform: translateY(0); }
} 
@-webkit-keyframes shake {
	from, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	5%, 15%, 25%, 35%, 45% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}

	10%, 20%, 30%, 40% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}

@keyframes shake {
	from, 12% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	2%, 6%, 10% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}

	4%, 8% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}
@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 30%, 0);
		transform: translate3d(0, 30%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 30%, 0);
		transform: translate3d(0, 30%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.anim-fade-1 {
	opacity: 0;
}
.anim-fade-1.anim-start {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: shake;
	animation-name: shake;
	visibility: visible !important;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.anim-fade-2 {
	opacity: 0;
}
.anim-fade-2.anim-start {
	-webkit-animation-duration: 1;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: shake;
	animation-name: shake;
	visibility: visible !important;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-ms-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.anim-fade-3 {
	opacity: 0;
}
.anim-fade-3.anim-start {
	-webkit-animation-duration: 1;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: shake;
	animation-name: shake;
	visibility: visible !important;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	-ms-animation-delay: 1s;
	-o-animation-delay: 1s;
	animation-delay: 1s;
}
.anim-fade-4 {
	opacity: 0;
}
.anim-fade-4.anim-start {
	-webkit-animation-duration: 1;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: shake;
	animation-name: shake;
	visibility: visible !important;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-delay: 1.5s;
	-moz-animation-delay: 1.5s;
	-ms-animation-delay: 1.5s;
	-o-animation-delay: 1.5s;
	animation-delay: 1.5s;
}
.anim-fade-5 {
	opacity: 0;
}
.anim-fade-5.anim-start {
	-webkit-animation-duration: 1;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: shake;
	animation-name: shake;
	visibility: visible !important;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-delay: 2s;
	-moz-animation-delay: 2s;
	-ms-animation-delay: 2s;
	-o-animation-delay: 2s;
	animation-delay: 2s;
}
.anim-blur-1 {
	opacity: 0;
	transition: 2s;
	-webkit-filter: blur(15px);
	filter: blur(15px);
	transform: scale(1.1);
}
.anim-blur-1.anim-start {
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transform: scale(1);	
}
.anim-blur-2 {
	opacity: 0;
	transition: 2s;
	transition-delay: 0.5s;
	-webkit-filter: blur(15px);
	filter: blur(15px);
	transform: scale(1.1);
}
.anim-blur-2.anim-start {
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transform: scale(1);	
}
.anim-blur-3 {
	opacity: 0;
	transition: 2s;
	transition-delay: 1s;
	-webkit-filter: blur(15px);
	filter: blur(15px);
	transform: scale(1.1);
}
.anim-blur-3.anim-start {
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transform: scale(1);	
}
.anim-blur-4 {
	opacity: 0;
	transition: 2s;
	transition-delay: 1.5s;
	-webkit-filter: blur(15px);
	filter: blur(15px);
	transform: scale(1.1);
}
.anim-blur-4.anim-start {
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transform: scale(1);	
}
.anim-blur-5 {
	opacity: 0;
	transition: 2s;
	transition-delay: 2s;
	-webkit-filter: blur(15px);
	filter: blur(15px);
	transform: scale(1.1);
}
.anim-blur-5.anim-start {
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transform: scale(1);
}
.anim-concept-pic-1 {
	opacity: 0;
	transform: translateX(100%);
}
.anim-concept-pic-1.anim-start {
	opacity: 1;
	transform: translateX(0%);
	transition: 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.anim-concept-pic-2 {
	opacity: 0;
	transform: translateX(-100%);
}
.anim-concept-pic-2.anim-start {
	opacity: 1;
	transform: translateX(0%);
	transition: 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

/* 
ボックス
*/
.box-content {

	margin: 0 auto;
	position: relative;
	box-sizing: border-box;
}
.box-700 {
	width: 700px;
	margin: 0 auto;
	position: relative;
}
.box-720 {
	width: 720px;
	margin: 0 auto;
	position: relative;
}
.box-800 {
	width: 800px;
	margin: 0 auto;
	position: relative;
}
.box-840 {
	width: 840px;
	margin: 0 auto;
	position: relative;
}
.box-900 {
	width: 900px;
	margin: 0 auto;
	position: relative;
}
.box-960 {
	width: 960px;
	margin: 0 auto;
	position: relative;
}
.box-980 {
	width: 980px;
	margin: 0 auto;
	position: relative;
}
.box-1000 {
	width: 1000px;
	margin: 0 auto;
	position: relative;
}
.box-1024 {
	width: 1024px;
	margin: 0 auto;
	position: relative;
}
.box-1040 {
	width: 1040px;
	margin: 0 auto;
	position: relative;
}
.box-1090 {
	width: 1090px;
	margin: 0 auto;
	position: relative;
}
.box-1100 {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}
.box-1200 {
	width: 1200px;
	margin: 0 auto;
	position: relative;
}


/* 
ヘッダー
*/
.header-inner {
	position: relative;
	height: 60px;
}
.header-logo {
	width: 130px;
	position: relative;
	top: 19px;
	left: 14px;
}
.header-logo a {
	
}
.header-title {
	font-size: 9px;
	color: #888888;
	position: absolute;
	left: 150px;
	top: 19px;
}

.header-tel {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: absolute;
	right: 200px;
	top: 17px;
	display: none;
}
.header-tel .header-tel-1 {
	font-size: 14px;
	color: #222222;
	margin-right: 10px;
	top: 6px;
	position: relative;
}
.header-tel .header-tel-2 {
	font-size: 14px;
	color: #222222;	
	line-height: 1.42em;
}
.header-tel .header-tel-3 {
	margin-left: 15px;
	font-size: 14px;
	color: #222222;
	display: block;
	border: 1px solid #222;
	width: 80px;
	height: 34px;
	line-height: 34px;
	box-sizing: border-box;
	text-align: center;
	
}
.header-tel > a {
	font-size: 30px;
	color: #b28850;
	font-weight: bold;
	position: relative;
	top: -10px;
	margin-right: 10px;
}
.header-tel > a i {
	font-size: 30px;
}

.header-reserve {
	position: absolute;
	right: 70px;
	top: 0;
	width: 120px;
	display: none;
}
.header-reserve > a {
	display: block;
	text-align: center;
	color: white;
	font-size: 16px;
	line-height: 70px;
	background: rgb(192,156,107);
	background: -moz-linear-gradient(top,  rgba(192,156,107,1) 0%, rgba(167,124,73,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(192,156,107,1) 0%,rgba(167,124,73,1) 100%);
	background: linear-gradient(to bottom,  rgba(192,156,107,1) 0%,rgba(167,124,73,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c09c6b', endColorstr='#a77c49',GradientType=0 );	
}




.btn-nav {
/*	cursor: pointer;
	background: #222222 url(../img/btn-nav.png) center center no-repeat;
	background-size: 23px 20px;
	width: 100px;
	height: 100px;
	z-index: 99;
	position: relative;
*/
}
.menu-trigger {
  display: inline-block;
  width: 60px;
  height: 60px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 100;
  transform: translateX(0);
  transition: all .5s;
  text-align: center;
background: #c09c6b; /* Old browsers */
background: -moz-linear-gradient(top, #c09c6b 0%, #a77c49 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #c09c6b 0%,#a77c49 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #c09c6b 0%,#a77c49 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

 }
 .menu-trigger.is-active {

  top: 0px;
  z-index: 9999;
}
.menu-trigger small {
	text-align: center;
	color: white;
	font-size: 14px;
	position: absolute;
	left: 10px;
	bottom: 5px;
}
.menu-trigger span {
display: inline-block;
box-sizing: border-box;
position: absolute;
left: 18px;
width: 24px;
height: 1px;
background-color: white;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;	
}
.menu-trigger.is-active span {
  background-color: white !important;
}

.menu-trigger.is-scroll span {
/*background-color: #163753;	*/
}

.menu-trigger span:nth-of-type(1) {
  top: 15px;
}
.menu-trigger.is-active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 25px;
}
.menu-trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  top: 35px;
}
.menu-trigger.is-active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

@media all and (max-height: 600px) {

}

.header-time-sp {
	position: absolute;
	left: 0;
	top: 100%;
}
/*
GLOBAL NAVI	
*/


.pushbar_overlay {

}
html.pushbar_locked .pushbar_overlay {
	background: rgb(34,34,34);
	opacity: 0.34;	
}
.pushbar.from_right {
	width: 300px;
	background: #222;
}



/* NAV NEW */
.nav-inner {
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	position: relative;
	height: 100%;
	position: relative;	
}
.list-nav {
	margin: 0 auto;
	position: relative;
	padding-bottom: 60px;
}
.list-nav > li {
	width: 100%;
	text-align: center;
	padding: 10px 0;
}
.list-nav > li > a {
	color: white;
	font-size: 20px;
}
.list-nav > li > a:hover {
	text-decoration: none;
}

.list-nav .underbar {
	top: 50px;
}


/*
パンくず
*/
.breadcrumb-section {
	padding: 0 !important;
	margin: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 3;
	display: none !important;
}



.breadcrumb-section ul {
	line-height: 50px;
	margin: 0 auto;
	padding-left: 15px;
}
.breadcrumb-section li {
	display: inline;
	font-size: 12px;
	color: #a0a0a0;
}
.breadcrumb-section li * {
	font-size: 12px;
	color: #a0a0a0;
}
.breadcrumb-section li a {
	color: white !important;
	text-decoration: none;
}
.breadcrumb-section i {
	padding: 0 5px;
}
.breadcrumb-section li:first-child i {
	
}
.breadcrumb-section .bullet {

}
.breadcrumb-section .bullet:before {
	color: #a0a0a0;
	content: ">";
}
.breadcrumb-section > .breadcrumb-list > .breadcrumb-home > a > span {
	display: inline-block;
	background: url(../img/home.png) center center no-repeat;
	background-size: 13px 13px;
	width: 13px;
	height: 13px;
	text-indent: -9999em;
	vertical-align: middle;
}


/*
サイドバー
*/
.l-sidebar .widget {
	background: white;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	padding: 15px;
	box-sizing: border-box;
	position: relative;
	margin: 0 0 30px;
}
.l-sidebar .widget:before {
	content: "";
	background: url(../img/heart.png) center center no-repeat;
	background-size: contain;
	width: 46px;
	height: 45px;
	margin: 0 auto;
	position: absolute;
	left: 50%;
	top: -20px;
	transform: translate(-50%, 0%);
}
.l-sidebar h2 {
	text-align: center;
	font-size: 18px;
	color: #222222;
	font-family: 'Noto Serif JP', 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	line-height: 1;

	margin-bottom: 30px;
}
.l-sidebar .widget_categories h2:before {
	content: "CATEGORY";
	text-align: center;
	display: block;
	font-size: 25px;
	color: #b28850;
	font-family: 'Abhaya Libre', serif;
	font-weight: bold;
	margin-bottom: 10px;
}
.l-sidebar .widget_categories ul {
	margin: 0;
	padding: 0;
}
.l-sidebar .widget_categories ul li {
	border-bottom: 1px dotted #b8b8b8;
}
.l-sidebar .widget_categories ul li a {
	font-size: 16px;
	color: #0e0202;
	text-decoration: none;
}
.l-sidebar .widget_tag_cloud h2:before {
	content: "TAG";
	text-align: center;
	display: block;
	font-size: 25px;
	color: #b28850;
	font-family: 'Abhaya Libre', serif;
	font-weight: bold;
}
.l-sidebar .tagcloud {
	
}
.l-sidebar .tagcloud a {
	padding-right: 10px;
	color: #222;
	font-size: 16px !important;
	text-decoration: none;
}
.l-sidebar .tagcloud a:before {
	content: "#";
	font-size: 22px;
	color: #b28850;
	font-family: 'Abhaya Libre', serif;
	padding-right: 5px;
}
.l-sidebar .tagcloud a:hover {
	text-decoration: underline;
}

.l-sidebar .widget_search h2:before {
	content: "SEARCH";
	text-align: center;
	display: block;
	font-size: 25px;
	color: #b28850;
	font-family: 'Abhaya Libre', serif;
	font-weight: bold;
	margin-bottom: 10px;
}
.l-sidebar .widget_search .screen-reader-text {
	display: none;
}
.l-sidebar .widget_search input[type="text"] {
	display: block;
	width: 100%;
	background: white;
	border: 1px solid #dcdcdc;
	font-size: 18px;
	border-radius: 3px;	
	padding: 10px;
	height: 50px;
	box-sizing: border-box;
}
.l-sidebar .widget_search #searchsubmit {
	text-indent: -9999em;
	display: block;
	background: url(../img/side-search-submit.png) center center no-repeat;
	background-size: contain;
	width: 23px;
	height: 23px;
	position: absolute;
	right: 30px;
	top: 110px;
	border: none;
	padding: 0;
	margin: 0;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:#c9c9c9;
    font-size: 16px;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:#c9c9c9;
   font-size: 16px;
}
::placeholder{ /* Others */
 color:#c9c9c9;
 font-size: 16px;
}

.l-sidebar .popular-posts h2:before {
	content: "POPULAR";
	text-align: center;
	display: block;
	font-size: 25px;
	color: #b28850;
	font-family: 'Abhaya Libre', serif;
	font-weight: bold;
	margin-bottom: 10px;
}
.l-sidebar .popular-posts .wpp-list {

	padding: 0;

	margin: 0 auto;
}
.l-sidebar .popular-posts .wpp-list > li {
	margin: 0 auto 15px;
	padding: 0;
}
.l-sidebar .popular-posts .wpp-list > li .thumb {
	background: url(../img/nophoto-wpp.png) center center no-repeat;
	background-size: contain;
	height: 150px;
	width: 240px;
	margin: 0 auto !important;
	float: none !important;
}
.l-sidebar .popular-posts .wpp-list > li img {
	display: block;
	
	margin: 0 auto !important;
	margin-bottom: 10px !important;
	float: none !important;	
}
.l-sidebar .popular-posts .wpp-list > li a {
	display: block;
	text-align: center;
	font-size: 15px;
	color: #222222;
	text-decoration: none;
	width: 100%;
	height: 100%;
}
.l-sidebar .popular-posts .wpp-list > li a:hover {
	text-decoration: underline;
}

/*
カテゴリ
*/



/*
フッター
*/
.page-top {
	position: fixed;
	right: 10px;
	bottom: 65px;
	z-index: 55;
	width: 45px;
}
.footer-top {
	background: url(../img/bg-footer.jpg) center top no-repeat;
	background-size: cover;
	padding: 40px 0 40px;
}
.footer-tel {
	
}
.footer-tel span {
	display: block;
	color: white;
	font-size: 17px;
	text-align: center;
}
.footer-tel .time {
	font-size: 14px;
}
.footer-tel a {
	font-size: 26px;

	display: block;
	color: white;
	text-align: center;
}
.footer-tel a:hover {
	text-decoration: none;
	opacity: 0.7
}
.footer-tel a i {
	font-size: 26px;
}
.footer-btns {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 30px;	
}
.footer-btns > .btn {
	width: 240px;
	margin: 5px 0;
}
.footer-btns > .btn > a {
	background: none;
	color: white;
	font-size: 16px;
	border: 1px solid white;
}
.footer-btns > .btn > a:after {
	content: none;
}

.footer-bottom {
	background: #030303;
	padding: 0px 0 85px;	
}
.footer-bottom * {
	color: white;

}
.footer-nav {
	margin-bottom: 25px;
}
.footer-nav ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	border-top: 1px solid #595959;
}
.footer-nav ul > li {
	margin: 0;
	width: 50%;
}
.footer-nav ul > li:nth-child(even) a {
	border-left: 1px solid #595959;
}
.footer-nav ul > li > a {
	display: block;
	color: white;
	font-size: 15px;
	border-bottom: 1px solid #595959;
	text-decoration: none;
	text-align: center;
	padding: 10px 0;
}
.footer-logo {
	text-align: center;
}
.footer-logo a {
	display: block;
	width: 192px;
	margin: 0 auto 20px;
}
.footer-logo span {
	text-align: center;
	display: block;
	font-size: 12px;
}
.copyright {
	text-align: center;
	color: white;
	font-size: 13px;
	margin-top: 30px;
}

/*
FOOTER FIX
*/
.footer-fix {
background: #c09c6b;
background: -moz-linear-gradient(top, #c09c6b 0%, #a77c49 100%);
background: -webkit-linear-gradient(top, #c09c6b 0%,#a77c49 100%);
background: linear-gradient(to bottom, #c09c6b 0%,#a77c49 100%);	
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 60px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;	
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	padding-left: 60px;
	padding-right: 60px;
	box-sizing: border-box;
	z-index:999;
}
.footer-fix .footer-fix-sc {
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.footer-fix .footer-fix-tel {
	height: 60px;
	width: 50%;
}
.footer-fix .footer-fix-tel a {
	display: block;
	border-right: 1px solid #c6a983;
	height: 100%;
	line-height: 60px;
	color: white;
	text-align: center;
}

.footer-fix .footer-fix-tel a:before {
	content: "";
	display: inline-block;
	background: url(../img/btn-footer-fix-tel.png) center center no-repeat;
	background-size: contain;
	width: 22px;
	height: 22px;
	vertical-align: middle;
	margin-right: 5px;
}
.footer-fix .footer-fix-reserve {
	height: 60px;
	width: 50%;
}
.footer-fix .footer-fix-reserve a {
	display: block;
	height: 100%;
	line-height: 60px;
	box-sizing: border-box;
	text-align: center;
	color: white;
	text-decoration: none;
}
.footer-fix .footer-fix-reserve a:before {
	content: "";
	display: inline-block;
	background: url(../img/btn-footer-fix-reserve.png) center center no-repeat;
	background-size: contain;
	width: 22px;
	height: 22px;
	vertical-align: middle;
	margin-right: 5px;
}

.footer-fix .menu-trigger {
	position: fixed;
	right: 0;
	bottom: 0;
	top: auto;
background: #484848; /* Old browsers */
background: -moz-linear-gradient(top, #484848 0%, #0c0b0b 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #484848 0%,#0c0b0b 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #484848 0%,#0c0b0b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */	
}
.footer-fix + .btn-nav.menu-trigger {
	position: absolute;
	right: 0;
	top: 0;
}

/*
SHARE SNS
*/

.share {
	
}
.share ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}

.share ul > li {
	display: block;
	letter-spacing: normal;
	width: 42px;
	height: 42px;
	letter-spacing: normal;
	box-sizing: border-box;
	text-align: center;
	line-height: 42px;
	border-radius: 0;
	margin: 0 0px;
}

.share ul > li:hover {
	opacity: 0.7;	
}
.share ul > li a {
	display: block;
	width: 100%;
	height: 100%;
}
.share ul > li a:hover {
	text-decoration: none;

}
.share ul li i, .share ul li span {
	color: black !important;
	font-size: 22px !important;
}

.share.share-single {
	border-top: 1px dotted #b8b8b8;
	border-bottom: 1px dotted #b8b8b8;
	padding: 25px 0px 30px;
}

.share.share-single ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	flex-wrap: nowrap;	
}
.share.share-single ul li {
	margin-right: 10px;



}


/*
LIST CAST
*/
.list-cast {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;	
}
.list-cast:before, .list-cast:after {
	content: none !important;
}
.list-cast li, .list-cast .cast-item {
	float: none !important;
	width: 49% !important;

	margin: 0 0 15px;
	padding: 0 !important;
	position: relative;

}
.list-cast.slider-1 .cast-item {
	width: 45vw !important;
}

.list-cast .cast-frame {
	height: auto !important;
	overflow: hidden;
}
.list-cast .cast-lists-frame li .cast-image {
	margin: 0 !important;
}
.list-cast .cast-section {
	background: url(../img/bg-cast-text.png) center center no-repeat;
	background-size: cover;
	width: 100%;
	min-height: 60px;
	padding: 5x 0;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	bottom: 0;
	color: white;
	display: flex;
	align-items: center;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	z-index: 6;	
}
.list-cast .cast-section .cast-name {
	/*margin-bottom: 5px;*/
	font-size: inherit !important;
}
.list-cast .cast-section .name {
	text-align: center;
	color: white;
	font-size: 15px;
	line-height: 0;
}
.list-cast .cast-section .age {
	text-align: center;
	color: white;
	font-size: 15px;	
}
.list-cast .cast-section .cast-tag, .list-cast .cast-section .cast-icon {
	position: absolute;
	left: 0;
	bottom: 100%;
}
.list-cast .cast-section .cast-icon .cast-icon-lists {
	margin: 0;
}
.list-cast .cast-section .cast-tag span, .list-cast .cast-section .cast-icon span {
	display: inline-block;
	color: white;
	font-size: 17px;
	line-height: 30px;
	padding: 0 5px;
	background: rgba(235,104,119,0.9);
	border: none;
	margin: 0 -5px 0 0;
	border-radius: 0px;
}
.list-cast .cast-section .cast-icon span:not(.cast_type_26-icon-0) {
	display: none;
}
.list-cast .cast-section .new-icon {
	display: none;
}

.list-cast .cast-section .cast-size {
	text-align: center;
	color: white;
	font-size: 12px !important;
}
.list-cast .cast-section .cast-schedule-time {
	color: white;
}
.list-cast .cast-section .cast-schedule-time * {
	text-align: center;
	color: white;
	font-size: 12px;
}
.list-cast .cast-section .cast-state-icon {
	display: none;
}
.list-cast li:hover .cast-image img, .list-cast .cast-item:hover .cast-image img {
	/*-webkit-filter: blur(5px);
	filter: blur(5px);
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;*/
}
.list-cast li .cast-image.small-4 {
	width: 100% !important;
}
.list-cast li .cast-image:before, .list-cast .cast-item .cast-image:before {
	content: "";
	text-align: center;
	padding-top: 100px;
	box-sizing: border-box;
	display: block;
	/*background: url(../img/cast-hover.png) center center no-repeat;
	background-size: cover;*/
	background: rgba(178,136,80,0.9);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	opacity: 0.0;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;		
}
.list-cast li:hover .cast-image:before, .list-cast .cast-item:hover .cast-image:before {
	opacity: 0.5;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;		
}
/*.list-cast li .cast-image:after, .list-cast .cast-item .cast-image:after {
	content: "MORE +";
	font-family: 'Noto Serif JP', 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	color: white;
	font-size: 20px;
	text-align: center;
	padding-top: 100px;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	opacity: 0;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;		
}*/
.list-cast li:hover .cast-image:after, .list-cast .cast-item:hover .cast-image:after {

	opacity: 1;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;		
}
.list-cast .cast-image:hover img {
	transform: none !important;
}

.list-cast.slick-slider {
	display: block !important;

}
.list-cast.slick-slider .slick-slide {
	padding: 0 !important;
	float: left !important;
	margin: 0 5px !important;

}
.list-cast.slick-slider .slick-slide:before {
	content: none !important;
}
.list-cast .slick-prev {
	width: 55px;
	height: 55px;
	background: url(../img/slider-prev.png) center center no-repeat !important;
	background-size: 55px 55px !important;
	border-radius: 55px;
	z-index: 5;
	left: -15px;
}
.list-cast .slick-next {
	width: 55px;
	height: 55px;
	background: url(../img/slider-next.png) center center no-repeat !important;
	background-size: 55px 55px !important;
	border-radius: 55px;
	z-index: 5;
	right: -15px;
}
.list-cast .slick-prev:before, .list-cast .slick-next:before {
	content: none;
}

.list-cast-sm {
	display: block;
}
.list-cast-sm .cast-item-wrap {
	
}
.list-cast-sm .cast-item {
	background: white;
	width: 100% !important;
	height: 128px !important;
	margin: 0 0 5px !important;
	box-sizing: border-box;;
}
.list-cast-sm .cast-item .cast-image {
	position: absolute;
	width: 81px;
	height: 128px;
	left: 0;
	top: 0;
}
.list-cast-sm .cast-item .cast-image:after {
	content: "NEW";
	color: white;
	position: absolute;
	left: 0;
	bottom: 0;
	text-align: center;
	display: block;
	background: rgba(235,104,119,0.9);
	line-height: 16px;
	height: 16px;
	width: 100%;
	font-family: 'Abhaya Libre', serif;
}
.list-cast-sm .cast-section {
	display: block;
	position: static;
	background: none;
	padding-left: 90px;
	padding-top: 10px;
}
.list-cast-sm .cast-section * {
	color: #222 !important;
}
.list-cast.list-cast-sm .cast-section .cast-name {
	text-align: left;
	display: inline-block;
	
}
.list-cast.list-cast-sm .cast-section .cast-name .name {
	font-size: 16px;
}
.list-cast.list-cast-sm .cast-section .cast-name .age {
	font-size: 16px;
}
.list-cast.list-cast-sm .cast-section .cast-size {
	text-align: left;
	display: inline-block;
	font-size: 12px;
}
.list-cast.list-cast-sm .cast-section .cast-com {
	font-size: 12px;
	padding-top: 10px;
	line-height: 1.2em;
}

/*
LIST NEWS
*/
.list-news {
	
}
.list-news .news {
	border-bottom: 1px dotted #c2c2c2;
	padding: 15px 0 15px;
}
.list-news .news .news-time {
	display: block;
	font-size: 15px;
	color: #b28850;
}
.list-news .news .news-title {
	line-height: 1.733em;
}
.list-news .news .news-title a {
	color: #222222;
	font-size: 15px;

}

/*
LIST BANNER
*/
.list-banner {
	
}
.list-banner > li {
	width: 300px;
	margin: 0 auto 20px;
	text-align: center;

}
.list-banner > li > a {
	display: block;
}
.list-banner > li img {
	display: block;
	margin: 0 auto 0;
}

.list-banner > li .caption {
	display: block;
	text-align: center;
	font-size: 14px;
	color: #222222;
	padding-top: 10px;
}
.list-banner.list-banner-m > li {

	margin-bottom: 30px;
	text-align: center;
}

/*
LIST ENTRY
*/
.list-entry {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;	
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;	
}
.list-entry:after {

}
.list-entry .entry {
	width: 100%;
	position: relative;
	padding: 15px 0 15px;
	border-bottom: 1px dotted #bababa;
	min-height: 135px;
	box-sizing: border-box;

}
.list-entry .entry .entry-link {
	position: absolute;
	left: 0;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 5;
	display: block;;
}
.list-entry .entry .entry-link:hover + .entry-pic {
	opacity: 0.5;
}
.list-entry .entry .entry-link:hover + .entry-pic + .entry-content .entry-title {
	text-decoration: underline;
}
.list-entry .entry .entry-pic {
	position: absolute;
	left: 0;
	top: 15px;
	width: 100px;
	height: 100px;
	overflow: hidden;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;		
}
.list-entry .entry .entry-content {
	padding: 0;
	padding-left: 115px;	
}
.list-entry .entry .entry-content .entry-time {
	display: block;
	font-size: 12px;
	color: #b28850;
}
.list-entry .entry .entry-content .entry-title {
	font-size: 17px;
	color: #222222;
	line-height: 1.5em;
	min-height: 60px;
	text-overflow: inherit;
	white-space: inherit;
	margin-bottom: 10px;
	margin-top: 0;
}
.list-entry .entry .entry-content .entry-text {
	line-height: 1.84em;
	display: none;
}
.list-entry .entry .entry-content .entry-text p {
	font-size: 13px;
	color: #888888;
}

/* list-entry-large */
.list-entry.list-entry-lg {

}

}
.list-entry.list-entry-lg .entry > article {
	position: relative;
}
.list-entry.list-entry-lg .entry .entry-pic {

	width: 100px;
	height: 100px;
	
}
.list-entry.list-entry-lg .entry .entry-pic img:first-child {
	display: none;
}
.list-entry.list-entry-lg .entry .entry-pic img:last-child {

}
.list-entry.list-entry-lg .entry .entry-cat {
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 20;
	width: 100%;
}
.list-entry.list-entry-lg .entry .entry-cat > a {
	display: block;
	color: white;
	font-size: 11px;
	background: rgba(34,34,34,0.9);
	line-height: 25px;

	text-decoration: none;
	text-align: center;
}
.list-entry.list-entry-lg .entry .entry-pic .entry-cat > a:hover {
	text-decoration: none;
	opacity: 0.5;
}
.list-entry.list-entry-lg .entry .entry-content {


}
.list-entry.list-entry-lg .entry .entry-content .entry-title {
	min-height: auto;
	margin: 0 0 15px;
}