@import url(http://fonts.googleapis.com/css?family=Source%20Sans%20Pro:300,400,500,600,700);

/* ------------------------------------------------------------------------------
	common
-------------------------------------------------------------------------------*/

p {
	font-size: 16px;
	line-height: 26px;
	color: #6c7279;
}
h1 {
	font-size: 65px;
	color: #2d3033;
}
h2 {
	font-size: 40px;
	color: #2d3033;
}
h3 {
	font-size: 28px;
	color: #2d3033;
	font-weight: 300;
}
h4 {
	font-size: 22px;
	color: #2d3033;
	font-weight: 400;
}
h5 {
	font-size: 14px;
	color: #2d3033;
	text-transform: uppercase;
	font-weight: 700;
}
.btn {
	background-color: #3bc492;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 5px;
	border: 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	text-transform: uppercase;
}
.btn:hover, .btn:focus {
	background-color: #3d3d3d;
	color: #fff;
}
.btn2 {
	background-color: #CD7D09;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 5px;
	border: 0;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	text-transform: uppercase;
}
.btn2:hover, .btn2:focus {
	background-color: #3d3d3d;
	color: #fff;
}

.btn-large {
	padding: 15px 40px;
}

.btn-pet {
	padding: 5px 0px;
	margin:5px 0;
}

a {
	color: #082443;
}
a:hover, a:focus {
	text-decoration: none;
	-moz-transition: background-color, color, 0.3s;
	-o-transition: background-color, color, 0.3s;
	-webkit-transition: background-color, color, 0.3s;
	transition: background-color, color, 0.3s;
}
body {
	font-family: "Source Sans Pro";
	font-weight: 400;
	color: #6c7279;
}
ul, ol {
	margin: 0;
	padding: 0;
}
ul li {
	list-style: none;
}
.section {
	padding: 100px 0;
}
.no-padding {
	padding: 0;
}
.no-gutter [class*=col-] {
	padding-right: 0;
	padding-left: 0;
}
.space {
	margin-top: 60px;
}


#access,
#location,
#salon,
.shop,
#rooms,
#outline,
#GoogleMap,
.room-line{
	padding: 2em 0 3em;


	background: #faf9f4 url(../images/location-bg.png);
}
#outline{
	background: #fff /*url(../images/contact_bg.png)*/;
	padding-bottom: 5em;
}




/* ------------------------------------------------------------------------------
	 Header
-------------------------------------------------------------------------------*/
#header {
	position: fixed;
	width: 100%;
	z-index: 999;
}
#header .header-content {
	margin: 0 auto;
	max-width: 1170px;
	padding: 60px 0 0;
	width: 100%;
	-moz-transition: padding 0.3s;
	-o-transition: padding 0.3s;
	-webkit-transition: padding 0.3s;
	transition: padding 0.3s;
}
#header .logo {
	float: left;
}
#header.fixed {
	background-color:#17232e;
	opacity:0.9;
}
#header.fixed .header-content {
	border-bottom: 0;
	padding: 25px 0;
}
#header.fixed .nav-toggle {
	top: 18px;
}
.navigation.open {
	opacity: 1;
	visibility: visible;
	-moz-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.navigation {
	float: right;
}
.navigation li {
	display: inline-block;
	font-size: 18px;
}
.navigation a {
    display: block;
    padding:10px 30px;
    text-decoration: none;
    color: #FFF;
	text-shadow:
		0px -1px #000,
		1px 0px #000,
		0px 1px #000,
		-1px 1px #000;
}

.footer_navigation {

	text-align: center;
}
.footer_navigation ul{
	margin: 0 auto;
	width: 90%;
}
.footer_navigation li {
	border-right: 1px dotted #fff;
	display: inline-block;
	font-size: 18px;
}
.footer_navigation li.MenuEnd {
	border: none;
}
.footer_navigation a {
    display: block;
    padding:5px 15px;
    text-decoration: none;
    color: #FFF;

}
@media screen and (max-width: 640px) {
	.DisplayNone{
		padding-top: 100px;
	}
	.DisplayNone h1,.DisplayNone p{
	display: none;
}
.LeadText h2{
	font-size: 30px;
	text-align: center;
}
.LeadText h2 span{
 display: block;
}
#concept h2,#concept h3{
	font-size: 18px;
}
#access p,
#location p{
	text-align: left;
}
#access p br,
#location p br{display: none;
}
	.footer_navigation li {
		font-size: 16px;
	}
	.footer_navigation a {
		padding:5px;

	
	}


}

/*==================================================
　5-3-7 上下に線が伸びて背景になる
===================================*/

.navigation li a{
    /*線の基点とするためrelativeを指定*/
  position: relative;
    /*はみ出る要素を隠す*/
  overflow: hidden;
    /*アニメーションの指定*/
  transition: all .2s;
}

/*現在地とhoverの設定*/
.navigation li.current a,
.navigation li a:hover{
    /*背景色をつける*/
    background: #ECD714;
  color:#fff;
}

/*背景がつくのアニメーションの開始を0.5秒遅らせる*/
.navigation li a:hover{
  transition-delay: .5s;
}

/*線の設定*/
.navigation li a:before,
.navigation li a:after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    left: 0;
    /*線の形状*/
    height: 2px;
    width:100%;
    background: #ECD714;
    /*アニメーションの指定*/
  transition: all .5s;
}

/*線の位置と変化*/
.navigation li a::before {
    top: 0;
  transform: translateX(-100%);/*X方向に-100%移動*/
}
.navigation li a::after {
    bottom: 0;
  transform: translateX(100%);/*X方向に100%移動*/
}

/*hoverした際の線の変化*/
.navigation li a:hover::before ,
.navigation li a:hover::after {
  transform: translateX(0);/*X方向に0%移動*/
}

.navigation a:hover, .navigation a.active {
	color: #fff;
}
.nav-toggle {
	display: none;
	height: 44px;
	overflow: hidden;
	position: fixed;
	right: 5%;
	text-indent: 100%;
	top: 32px;
	white-space: nowrap;
	width: 44px;
	z-index: 99999;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.nav-toggle:before, .nav-toggle:after {
	border-radius: 50%;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
}
.nav-toggle:before {
	background-color: #ECD714;
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.nav-toggle:after {
	background-color: #ECD714;
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	-moz-transition-duration: 0s;
	-o-transition-duration: 0s;
	-webkit-transition-duration: 0s;
	transition-duration: 0s;
}
.nav-toggle span {
	background-color: #fff;
	bottom: auto;
	display: inline-block;
	height: 3px;
	left: 50%;
	position: absolute;
	right: auto;
	top: 50%;
	width: 18px;
	z-index: 10;
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.nav-toggle span:before, .nav-toggle span:after {
	background-color: #fff;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-transition: -moz-transform 0.3s;
	-o-transition: -o-transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}
.nav-toggle span:before {
	-moz-transform: translateY(-6px) rotate(0deg);
	-ms-transform: translateY(-6px) rotate(0deg);
	-webkit-transform: translateY(-6px) rotate(0deg);
	transform: translateY(-6px) rotate(0deg);
}
.nav-toggle span:after {
	-moz-transform: translateY(6px) rotate(0deg);
	-ms-transform: translateY(6px) rotate(0deg);
	-webkit-transform: translateY(6px) rotate(0deg);
	transform: translateY(6px) rotate(0deg);
}
.nav-toggle.close-nav:before {
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
}
.nav-toggle.close-nav:after {
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
.nav-toggle.close-nav span {
	background-color: #737373;
}
.nav-toggle.close-nav span:before, .nav-toggle.close-nav span:after {
	background-color: #fff;
}
.nav-toggle.close-nav span:before {
	-moz-transform: translateY(0) rotate(45deg);
	-ms-transform: translateY(0) rotate(45deg);
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}
.nav-toggle.close-nav span:after {
	-moz-transform: translateY(0) rotate(-45deg);
	-ms-transform: translateY(0) rotate(-45deg);
	-webkit-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
}
/* ------------------------------------------------------------------------------
	 Banner
-------------------------------------------------------------------------------*/

.BgImage {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
}
.BgImage li {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    -webkit-animation: anime 40s linear 0s infinite ;
    animation: anime 40s linear 0s infinite ;
}
.BgImage li:nth-child(1) { 
    background-image: url(../images/bg_image_01.jpg)   /* 背景画像を入力して下さい */
}
.BgImage li:nth-child(2) {
    background-image: url(../images/bg_image_02.jpg);
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
}
.BgImage li:nth-child(3) {
    background-image: url(../images/bg_image_03.jpg);
    -webkit-animation-delay: 20s;
    animation-delay: 20s;
}
.BgImage li:nth-child(4) {
    background-image: url(../images/bg_image_04.jpg);
    -webkit-animation-delay: 30s;
    animation-delay: 30s;
	background-position: 0% 0%;
}

@-webkit-keyframes anime { 
    0% {
        -webkit-animation-timing-function: ease-in;
        opacity: 0;
    }
    10% {
        -webkit-transform: scale(1.1);
        opacity: 1;
    }
    40% {
        -webkit-transform: scale(1.2);
            -webkit-animation-timing-function: ease-out;
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.3);
        opacity: 0;
    }
    100% { opacity: 0 }
}
@keyframes anime { 
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
    }
    10% {
        transform: scale(1.1);
        opacity: 1;
    }
    40% {
        transform: scale(1.2);
            animation-timing-function: ease-out;
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% { opacity: 0 }
}








.banner-btn {
	opacity: 0.8;
}
.banner-text {
	padding-top: 25%;
}
.banner-text h1 {
	color: #fff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 53px;
	letter-spacing: 20px;
	font-weight: 500;
	text-transform: uppercase;
}
.banner-text p {
	color: #ECD714;
	font-size: 1.5em;
	font-weight: 400;
	letter-spacing: 3px;
	line-height: 24px;
	margin-top: 10px;
	margin-bottom: 50px;
	text-transform: uppercase;
    text-shadow: 1px 1px 0px #191b35,
    -1px 1px 0px #191b35,
    1px -1px 0px #191b35,
    -1px -1px 0px #191b35;
}
.LeadText{
	padding: 20px;
	margin-bottom: 2em;
	background: rgba(255,255,255,0.5);
}
.LeadText p{
 color: #000;
}


h3.Title_img{
	text-align: center;
	margin-bottom: 2em;
}
h3.Title_img img{
	margin: 0 auto;
}


/* ------------------------------------------------------------------------------
	 concept
-------------------------------------------------------------------------------*/
#Informaton{
	padding-top: 100px;
	padding-bottom: 50px;
	background: #fff;
}
.concept {
	background-image:url(../images/con_bg.png);
	position: relative;
}
.concept blockquote {
	border: 0;
	margin: 0;
	padding: 5% 5%;
}
.concept h2,
.concept h3 {
	color: #000;
	font: 1.3em "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	text-align: center;
}
.concept h2 span{
	color: #bd1550;
}
.concept h3 span{
	font-size: 83%;
}
.concept p {
	color: #5d6063;
	display: block;
	font-size: 16px;
	line-height: 2em;
	font-style: normal;
	font-weight: 400;
	margin-top: 30px;
}
/* ------------------------------------------------------------------------------
	 Reservation
-------------------------------------------------------------------------------*/

.Reservation{
	background: #a73030;
	padding: 1em;
	text-align: center;
}
.Reservation h2{
	font-size: 30px;
	color: #fff;
	line-height: 0.5em;
}
.Reservation p{
	color: #fff;

}
.Reservation .telform{
 font-size: 20px;

}
.Reservation .telform li{
	display: inline;
	background: #fff;
	font-size: 20px;
	padding: 0.25em 0.5em;
	margin: 0.25em;
	border-radius: 20px;

}
.Reservation .telform li.TEL{

}
.Reservation .telform li.Form{

}
@media screen and (max-width: 640px) {
	.Reservation .telform li{
		display: block;
		margin-bottom: 1em;

	
	}
}

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

間取り（賃料）

-------------------------------- */
#Room_AType,
#Room_BType,
#Room_A3Type,
#Room_CType,
#Room_DType{
	padding-top: 10em;
}

.RoomBox{
    margin-bottom: 3em;
}
.pricing {
	padding: 100px 0 0px 0;
    background-attachment: scroll;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
   /* height: 100vh;*/
}

.room_title {
  background-color:#6d6558;
  padding:10px;
}
.room_title h4{
	color:#fff;
	font-size: 18px;
	letter-spacing:1.5px;
	line-height:1.5;
	text-align: center;
}
.room_title em{
	font-size:14px;
	letter-spacing:1px;
	color:#fff;
	border-bottom: 1px solid #9AEFBB;
}
 .madorizu{
	 background: #fff;
	 text-align: right;
}
.madorizu img{
	margin: 0 0 0 auto;

}
.madorizu i{
	color: #f1f1f1;
	font-size: 100px;
}


.room-shosai a{
	display:block;
	width:80%;
    background-color:#b16262;
	color:#fff;
	padding:3px;
	margin:0px auto;
	text-align:center;
  	-webkit-transition: none;
  	transition: none;
}
.room-shosai a:hover{
	color:#fff;
	background-color:#918f8f;
}




.pricing .container h3 {
  position: relative;
  text-align: center;
  font-size:1.3rem;
  letter-spacing:10px;
  margin: 10rem 0 2rem;  
}
.pricing .container h3 span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 1em;
  background-color: #fff;
  text-align: left;
}
.pricing .container h3::before {
  position: absolute;
  top: 50%;
  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
@media only screen and (max-width : 480px){
	.pricing .container h3 {
		font-size:1rem;
	}
	
}
.setsubi {
	line-height:2.5;
	text-align:center;
}
.setsubi-atn {
	line-height:2.5;
    font-size: 80%;
    text-align:center;
}
@media only screen and (max-width : 767px){
.setsubi {
	text-align:left;
	}
}

/*Button*/
a.btn-radius-solid {
	border: 1px solid #ccc;
	background: #f1e767;
	background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
	background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
	background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
	-webkit-box-shadow: inset 1px 1px 1px #fff;
	box-shadow: inset 1px 1px 1px #fff;
	color: #6d6558;
  }
  
  a.btn-radius-solid:hover {
	background: -webkit-gradient(linear, left bottom, left top, from(#fdfbfb), to(#ebedee));
	background: -webkit-linear-gradient(bottom, #fdfbfb 0%, #ebedee 100%);
	background: linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
	color: #b16262;
  }


.room-inquiry{
	padding: 1.1em 0 1.2em;
	text-align: center;
}

.room-inquiry .sm-enter{
	display: none;
}


/* ボタン共通設定 */
.btn03{
    /*影の基点とするためrelativeを指定*/
    position: relative;

    /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
    text-align: center;
    background: transparent;
  border-radius: 25px;
  border: solid 1px #6d6558;
    outline: none;
    /*アニメーションの指定*/
    transition: all 0.2s ease;
}

/*hoverをした後のボタンの形状*/
.btn03:hover{
  border-color:transparent; 
}

/*ボタンの中のテキスト*/
.btn03 span {
  position: relative;
  z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
    /*テキストの形状*/
  display: block;
    padding: 10px 30px;
  background:#545665;
  border-radius: 25px;
  color:#fff;
    /*アニメーションの指定*/
    transition: all 0.3s ease;
}



.btn_roomtype{
    /*影の基点とするためrelativeを指定*/
    position: relative;
	margin: 0 1em;

    /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
    text-align: center;
    background: transparent;
  border-radius: 50px;
  border: solid 1px #6d6558;
    outline: none;
    /*アニメーションの指定*/
    transition: all 0.2s ease;
}

/*hoverをした後のボタンの形状*/
.btn_roomtype:hover{
  border-color:transparent; 
}

/*ボタンの中のテキスト*/
.btn_roomtype span {
  position: relative;
  z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
    /*テキストの形状*/
  display: block;
    padding: 5px 15px;
  background:#6d6558;
  border-radius: 50px;
  color:#fff;
  font-size: 18px;
    /*アニメーションの指定*/
    transition: all 0.3s ease;
}
.btn_roomtype span em{
	font-size: 20px;
}

/*hoverの際にY軸に4pxずらす*/
.pushdown:hover span {
  background-color: #918f8f;
  color: #fff;

}
@media screen and (max-width: 1000px) {
	.btn_roomtype{
		margin:  0.5em;
	}
   }

@media screen and (max-width: 640px) {
 .btn_roomtype{
	margin: 1em 0;
	width: 80%;
 }
}




/* ------------------------------------------------------------------------------
	rooms
-------------------------------------------------------------------------------*/

.rooms {
	padding-top: 1em;
}
.rooms h5{
	font-size: 18px;
	border-bottom: 3px dotted #2FB47C;
	border-top: 3px dotted #2FB47C;
	padding: 0.5em;
	margin-bottom: 1em;
}
.rooms .icon {
	color: #e84545;
	font-size: 36px;
	border:3px #e84545 double;
}
.services-content {
	padding: 0 15px;
	margin-top: 30px;
}
.sub {
	font-size:18px;
}
.CommonFee{
	text-align: center;
	color: #6d6558;
	font-size: 18px;
}
.rooms-table {
	background-color:#fff;
}
.rooms-table{
	border-collapse: collapse;
	width: 90%;
	margin: 0 auto 1em;
	background-color:#fff;
  }

 .rooms-table th,
 .rooms-table td{
	padding: 7px 5px;
	/*border: solid 1px #c0b5a3;*/
	border-bottom: dotted 1px #c0b5a3;
	text-align:center;
	box-sizing:border-box;
	font-size: 16px;
  }
  .rooms-table th {
	background: #ECD714;
	color: #6d6558;
	
  }
  @media screen and (max-width: 1200px) {
	.room-inquiry .sm-enter{
		display: block;
	}
  }

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

	.CommonFee{
		font-size: 18px;
	}
	.rooms-table .head{
	  display:none;
	}
	.rooms-table {
	  width: 90%;
	  margin: 0 auto;
	}
	table.rooms-table td {
	  display: block;
	  width: 100%;
	  border-bottom: dotted 1px #c0b5a3;
	  font-size: 20px;
	}
	table.rooms-table td:first-child{
	  background: #ECD714;
	  color:#6d6558;
	  font-weight:bold;
	}
	table.rooms-table td:before{
	  content: attr(data-label);
	  font-size: .10rem;
	  font-weight:bold;
	  color: #999;
	  display: block;
	}
	table.rooms-table td.PageLink:before{
		content: attr(data-label);
		display: none;
	  }
	.rooms-table tr:last-child{
	  border-bottom: solid 1px #ccc;
	}
  }


  /* スライドレールの枠 */
  .wrap{
	background: #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
  }
  .wrap_Room {
	height: 340px;
	margin-bottom: 100px;
  }
  .Other_photo{
	height: 420px;
	background: #faf9f4 url(../images/location-bg.png);

  }
/* スライドする要素 */
.wrap_Room .content {
	width: 300px;
	height: 300px;
  }
  .Other_photo .content {
	width: 400px;
	height: 400px;
  }
  .wrap_Room .content:nth-child(1) {
	background-color: tomato;
  }
  .wrap_Room .content:nth-child(2) {
	background-color: orange;
  }
  .wrap_Room .content:nth-child(3) {
	background-color: blue;
  }
  .wrap_Room .content:nth-child(4) {
	background-color: green;
  }

  .Other_photo li span{
	padding: 3px;
	background: #fff;
  }




  /* content4つをまとめたスライドブロック */
  .wrap .slideshow {
	display: flex;
	-webkit-animation: loop-slide 40s infinite linear 1s both;
	animation: loop-slide 40s infinite linear 1s both;
  }
  @-webkit-keyframes loop-slide {
	from {
	  transform: translateX(0);
	}
	to {
	  transform: translateX(-100%);
	}
  }
  @keyframes loop-slide {
	from {
	  transform: translateX(0);
	}
	to {
	  transform: translateX(-100%);
	}
  }


.kyosei_ttl {
	font-size:0.4em;
	color: #fff;

}
.kyosei_ttl img{
	max-width:100%;
	height:auto;
}
.outline {
	padding-top: 1em;
	text-align: center;
}
.avatar2 {
	padding-top:10px;
}
.setubi {
	background-image:url(../images/location-bg.png);
}


.outline h4{
	 background: #fff;
	padding: 1em;

}

/*.outline_table {
	color:#fff;
	display:block;
}
.outline_table th{
	width:200px;
}
.outline_table td {
	width:100%;
}*/
.outline_table {
background: #fff;
  border: 1px solid #a69e8c;
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;

  width: 90%;
  color:#000;
}
.outline_table tr {
  border: 1px solid #a69e8c;

}
.outline_table th,
.outline_table td {
 padding: 10px;
  
}
.outline_table th {
	border-right:1px solid #a69e8c;
	text-align: center;
	white-space: nowrap;
	background: #e4d9c2;
	color: #78643A;
}
.outline_table td {
	text-align: left;
}


@media screen and (max-width: 600px) {
  .outline_table thead {
    display: none;
  }
  .outline_table th{
   background: #e4d9c2;
   color: #78643A;
  }
  .outline_table th,
  .outline_table td {
	display: block;
	text-align: center;
  }
  .outline_table .TextLeft{
	text-align: left;
  }
  .outline_table td:before {
    content: attr(aria-label);
    float: left;
  }
}




#map_canvas{
	width: 100%;
	height: 500px;
	margin:0;
}
.neko img{
	margin:0 auto;
}
.haichizu {
	background-image:url(../images/location-bg.png);
	padding:30px 0;
}
.shop {
	background-repeat:no-repeat;
}
.shop h4{
	text-align: center;
}
.shop h4 span{
	display: block;
	padding: 0.5em;
	font-size: 14px;
	color: #b42f2f;
}
#location h4{
	text-align: center;
}
#location h4 span{
	display: block;
	padding: 0.5em;
	font-size: 14px;
	color: #b42f2f;
}
.view_ttl {
	font-weight:bold;
	color:#2FB47C;
	border:2px solid #2FB47C;
	text-align:center;
	padding:1rem;
	background-color:#fff;
}

/* ------------------------------------------------------------------------------
	location
-------------------------------------------------------------------------------*/
#location {
	background-image:url(../images/location-bg.png);
}
.loca {
	-moz-box-shadow: 0 0 0 1px #fff;
	-webkit-box-shadow: 0 0 0 1px #fff;
	box-shadow: 0 0 0 1px #fff;
	overflow: hidden;
	position: relative;
}
.loca img {
	width: 100%;
	height: 100%;
}
.loca .overlay {
	background: rgba(232, 69, 69, 0.9);
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-moz-transition: opacity, 0.3s;
	-o-transition: opacity, 0.3s;
	-webkit-transition: opacity, 0.3s;
	transition: opacity, 0.3s;
}
.loca .overlay-caption {
	position: absolute;
	text-align: center;
	top: 50%;
	width: 100%;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.loca h5, .loca p, .loca img {
	-moz-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	-webkit-transition: all, 0.5s;
	transition: all, 0.5s;
}
.loca h5, .loca p {
	color: #fff;
	margin: 0;
	opacity: 0;
}
.loca span {
	font-size: 45px;
}
.loca h5 {
	margin-bottom: 5px;
	-moz-transform: translate3d(0, -200%, 0);
	-ms-transform: translate3d(0, -200%, 0);
	-webkit-transform: translate3d(0, -200%, 0);
	transform: translate3d(0, -200%, 0);
}
.loca p {
	-moz-transform: translate3d(0, 200%, 0);
	-ms-transform: translate3d(0, 200%, 0);
	-webkit-transform: translate3d(0, 200%, 0);
	transform: translate3d(0, 200%, 0);
}
.loca-box:hover img {
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.loca-box:hover .overlay {
	opacity: 1;
}
.loca-box:hover .overlay h5, .loca-box:hover .overlay p {
	opacity: 1;
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}




#salon{
	text-align: center;
}
.dogShop {
	max-width: 340px;
	text-align: center;
	padding:7rem 0;
	margin: 0 auto;
}
.dogShop-content {
	margin-top: 20px;

}
.dogShop img{
	margin: 0 auto;
	max-width: 340px;
}

.dogShop .type04{
	margin: 0 auto;
	width: 100%;
}

.dogShop .type04 td{
	border-bottom: 1px dotted #191b35;
	padding: 3px;
	text-align: left;
}


.dogShop h4 {
	font-weight: 400;
}
.dogShop h5 {
	color: #e84545;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 20px;
}
.dogShop .role2 {
	color: #000;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 20px;
}

.topspace {
  margin-top: 0px;
}
.section-title,
.entry-title {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0px 0 25px;
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 36px;
  font-size: 2.25rem;
  letter-spacing: 1px;
}
.section-title a,
.entry-title a {
  color: #333333;
}
.section-title span,
.entry-title span {
  display: inline-block;
  position: relative;
}
.section-title span:before,
.entry-title span:before,
.section-title span:after,
.entry-title span:after {
  content: "";
  position: absolute;
  height: 4px;
  top: .53em;
  width: 400%;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.section-title span:before,
.entry-title span:before {
  right: 100%;
  margin-right: 45px;
}
.section-title span:after,
.entry-title span:after {
  left: 100%;
  margin-left: 45px;
}
/* Section - Recent works */
.thumbnails {
  padding: 0;
  margin:0 20px;
}
.thumbnails li {
  margin-bottom: 30px;
}
.thumbnails .details {
  display: block;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}
.thumbnail {
  display: block;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  border: 0 none;
  margin-bottom: 10px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  color: #333;
}
.thumbnail .img {
  display: block;
  width: 100%;
  overflow: hidden;
  height: 180px;
  margin: 0 0 20px;
  position: relative;
}
.thumbnail .title {
  text-transform: uppercase;
  margin: 0 2em;
  display: block;
  text-indent: 0;
}
.title {
	font-weight:bold;
}
.thumbnail .cover {
  position: absolute;
  display: block;
  opacity: 0;
  width: 100%;
  height: 180px;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 550ms;
  -moz-transition-duration: 550ms;
  -o-transition-duration: 550ms;
  transition-duration: 550ms;
}
.thumbnail .cover .more {
  position: absolute;
  bottom: 15px;
  right: 0;
  height: 32px;
  line-height: 32px;
  padding: 0 20px;
  -webkit-border-radius: 1px 0 0 1px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 1px 0 0 1px;
  -moz-background-clip: padding;
  border-radius: 1px 0 0 1px;
  background-clip: padding-box;
  font-size: 12px;
  font-size: 1.3rem;
  text-transform: uppercase;
  text-shadow: 0 1px 0px #780d33;
  background: #bd1550;
  color: white;
}
.thumbnail img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.thumbnail:hover {
  color: #333;
  text-decoration: none;
}
.thumbnail:hover img {
  -webkit-filter: saturate(0%);
}
.thumbnail:hover .cover {
  opacity: 1;
}
/* pagination */
.pagination > li > a {
  color: #808080;
  border: 0 none;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Georgia, serif;
}
.pagination > li > a:hover {
  color: #000000;
  background: none;
}
.pagination > li.active > a {
  color: #333333;
  background: none;
}
.pagination > li.active > a:hover {
  color: #000000;
  background: none;
}
.role2 {
	color:#000;
}
a.btn2{
	  display: inline-block;
	  max-width: 120%;
	  margin: 0px 0px 40px;
	  padding: 5px 10px;
	  border: 2px solid #00A387;
	  background: transparent;
	  color: #00A387;
	  text-align: center;
	  text-decoration: none;
	  line-height: 1;
	  transition: .3s;
}
a.btn2:hover {
	  border: 2px solid #C5F6D8;
	  color: #C5F6D8;
}
.frame {
display: inline-block;
position: relative;
}
.frame:after {
position: absolute;
display: block;
content: "";
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
transform: rotate(3deg); /* 回転させる */
background: #fff;
z-index: -1;
}
.room-line{
padding: 2em 0;
width: 100%;
text-align: center;
}
.room-line img{
 margin: 0 auto;
 width: 80%;
}

.sub {
	font-size:18px;
}
.rooms-table {
	background-color:#fff;
}
.rooms-table thead {
	background-color:#9AEFBB;
}


/* ------------------------------------------------------------------------------
	madori
-------------------------------------------------------------------------------*/
.madori {
	max-width: 500px;
	text-align: center;
	padding:7rem 0;
}
.pet {
  width: 300px;
  border-radius: 300px;
  -webkit-border-radius: 300px;
  -moz-border-radius: 300px;
}
.madori-content {
	margin-top: 20px;
}
.madori h4 {
	font-weight: 400;
}
.madori h5 {
	color: #e84545;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 20px;
}
.madori .role2 {
	color: #000;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 20px;
}

.social-icons, .footer .footer-share {
	margin-top: 30px;
}
.social-icons li, .footer .footer-share li {
	display: inline-block;
	float: none;
}
.social-icons a, .footer .footer-share a {
	border: 1px solid #e8ecee;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	color: #c6cacc;
	display: block;
	font-size: 14px;
	height: 32px;
	line-height: 32px;
	margin-right: 5px;
	text-align: center;
	width: 32px;
}
.social-icons a:hover, .footer .footer-share a:hover {
	background-color: #e84545;
	border-color: #e84545;
	color: #fff;
}
/* ------------------------------------------------------------------------------
	 Testimonials
-------------------------------------------------------------------------------*/
.testimonials {
	position: relative;
	text-align: center;
	/*background-image:url(../images/access_bg.png);*/
}
.testimonials blockquote {
	border: 0;
	margin: 0;
	padding: 15px 0;
}
.testimonials h1 {
	color: #fff;
	font: 23px "Source Sans Pro";
	font-weight: 300;
}
.testimonials h4{
	background: #fff;
	padding: 1em;
}
.testimonials p {
	color: #78643A;
	display: block;
	font-size: 15px;
	font-style: oblique;
	letter-spacing: 2px;
	font-weight:bold;
	margin-top: 10px;
	text-transform: lowercase;
}
.kotu {
	font-weight:bold;
	font-size:12px;
}
.rosen {
	margin:0 15em;
	max-width:100%;
}
/* ------------------------------------------------------------------------------
	Quote
-------------------------------------------------------------------------------*/
.quote h3 {
	margin-top: 0;
}
.quote p {
	color: #2d3033;
	font-weight: 600;
	text-transform: uppercase;
}
.quote .btn {
	margin-top: 30px;
}
/* ------------------------------------------------------------------------------
	 Footer
-------------------------------------------------------------------------------*/
.footer {
	text-align: left;
}
.footer-top {
	background-color: #2e3842;
	background-image:url(../images/footer_bg.png);
	padding-top: 50px;
}
.footer-bottom {
	background-color: #17232e;
	padding: 20px 0;
}
.footer .footer-col {
	margin-bottom: 80px;
}
.footer h5 {
	color: #fff;
}
.footer h5 {
	margin-bottom: 20px;
}
.footer p {
	color: rgba(255, 255, 255, 0.25);
}
.footer a {
	color: #fff;
}
.footer a:hover {
	color: #ECD714;
}
.footer .footer-share {
	margin-top: 0;
}
.footer .footer-share li {
	display: inline-block;
	float: none;
}
.footer .footer-share a {
	border: none;
	font-size: 21px;
	color: rgba(255, 255, 255, 0.25);
}
.footer .fa-heart {
	color: #e84545;
	font-size: 11px;
	margin: 0 2px;
}
.FooterBan{
	margin: 2em;
	text-align: center;
}
.FooterBan a{
	margin: 2em;
}
.Copyright{
	margin: 1em;
	color: #fff!important;
}


/* ------------------------------------------------------------------------------
	 Loading
-------------------------------------------------------------------------------*/
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 1;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  padding:160px 0px 0 43px;
  text-align: center;
  color: #fff;
  z-index: 2;
  background-image:url(../images/loading_bg.png);
  background-repeat:no-repeat;
}
.mou {
	color:#f00;
	font-weight:bold;
}




