<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*----------------------------------

Reset

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

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

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

common

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

	*, *:before, *:after {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

*{
	outline:0;padding: 0;margin:0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing: border-box;
	        box-sizing:border-box;
}

body{

		background: #fff;
		color:#777;
		font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Noto Sans Japanese", "繝偵Λ繧ｮ繝手ｧ偵ざ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
    	font:400 14px/1.8;
		-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
@media screen and (max-width : 768px){
 html,
 body {
 overflow-x: hidden;
 overflow-y: scroll;
 -webkit-overflow-scrolling: touch;
 }
}

h1,h2,h3,h4,h5,h6{
	color:#000;
}
a:hover:after {
    width: 50%;
}
a:hover, a:focus {
    color: #000;
    text-decoration: none;
}

ol, ul {
    list-style: none;
}

p{
    color: #777;
    font-size: 15px;
    font-weight: 300;
}

table {
  height:auto;
  width: auto;
  border-spacing: 0;
  font-size:0.8rem;
  margin:0 0 0 0px;
  background-color:rgba(255,255,255,0.8);
}

table th {
  color: #6994a4;
  line-height: 120%;
  text-align: center;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  border:1px solid #ccc;
  position: relative;
  letter-spacing:4px;
}

@media only screen and (max-width : 480px){
table th {
	width: 130px;
    text-align: left;
	border-style:none;
}

}

table th:first-child {
  border-radius: 5px 0 0 0;	
}

table th:last-child {
  border-radius:0 5px 0 0;
}

table tr td {
  text-align: center;
}

table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

/* #####  sections  ##### */


section{
	position: relative;
}

.center {
    text-align: center;
}


.box {
    display: table;
    width: 100%;
    padding: 0 20px;
    position: relative;
}

/* #####  links, buttons  ##### */

a{
    text-decoration: none;
    font-weight: 400;
	color:rgba(150,0,0,1.00);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	outline:none;
}
a:hover {
	outline:none;
}

.default-btn {
	position: relative;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 0 0 50px 0;
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 70px;
    font-weight: 400;
}

.default-btn i {
    opacity: 0;
    position: absolute;
    font-size: 25px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    right: 30px;
    top: 0;
}
.default-btn:hover  {
		color:rgba(150,0,0,1.00);

}

.default-btn:hover i {
    opacity: 1;
    right: -30px;
	color:rgba(150,0,0,1.00);
}

.default-btn:hover:after {
    width: 100%;
	color:rgba(150,0,0,1.00);
}

.default-btn:after {
    content: "";
    position: absolute;
    top: 27px;
    left: 0;
    width: 50%;
    height: 2px;
    background-color: #930000;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	
}



/* #####  lists  ##### */

ul.list li{
    list-style: none;
    position: relative;
    margin-bottom: 10px;
    padding: 0 20px;
}

ul.list li:last-child{
	margin-bottom: 0
}


/* 繝壹�繧ｸ繝医ャ繝励∈繧ゅ←繧九*/
#go-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
#go-top a {
    background: #FFBE00;
    text-decoration: none;
    color: #fff;
    width: 60px;
    padding: 20px 0;
	border-radius:30px;
    text-align: center;
    display: block;
    border-radius: 50px;
}
#go-top a:hover {
    text-decoration: none;
    background: #999;
}

/* 譫�邱� */

.frame-line {
    position: fixed;
    left: 0;
    right: 0;
    display: block;
    background: #fff;
    z-index: 999999;
}

.frame-line.left-frame {
    width: 15px;
    left: 0;
    height: 100%;
    right: auto;
}

.frame-line.bottom-frame {
    height: 10px;
    bottom: 0;
}

.frame-line.right-frame {
    width: 10px;
    right: 0;
    height: 100%;
    left: auto;
}

.frame-line.top-frame {
    height: 10px;
    top: 0;
}

/* 繧ｹ繝槭�譎ゅ｜r 繧堤┌縺上☆縲

@media only screen and (max-width : 480px){
	br {
		display:none;
	}
}*/


@media only screen and (max-width : 480px){
	.concept_txt br {
		display:none;
	}
	.access_txt br {
		display:none;
	}
	.rooms_txt br {
		display:none;
	}
	.location_txt br {
		display:none;
	}
	.koen_txt br {
		display:none;
	}
}

@media only screen and (max-width:767px) {
	.list .chinryo br {
		display:none;
	}
	.setsubi br {
		display:none;
	}
	.seki_ex br {
		display:none;
	}

}



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

繝翫ン

----------------------------------*/
#top-head {
    top: -100px;
    position: absolute;
    width: 100%;
    margin: 100px auto 0;
    padding: 30px 0 0;
    line-height: 1;
    z-index: 999;
}
#top-head a,
#top-head {
    color: #fff;
    text-decoration: none;
}
#top-head .inner {
    position: relative;
}
#top-head .logo {
    float: left;
	max-width:100%;
	height:auto;
}
#global-nav ul {
    list-style: none;
    position: absolute;
    right: 20px;
    bottom: 0;
    font-size: 14px;
}
#global-nav ul li {
    float: left;
}
#global-nav ul li a {
    padding: 15px 10px;
	color:#424242;
	font-weight:bold;
}
.navmenu {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin:5px 0;
}
.navmenu * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.navmenu li {
  display: inline-block;
  list-style: outside none none;
  margin: 0.5rem;
  padding: 0;
}
.navmenu a {
  padding:1rem 0;
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.navmenu a:before,
.navmenu a:after {
  height: 3px;
  position: absolute;
  content: '';
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  background-color: #FFBE00;
  width: 0;
}
.navmenu a:before {
  top: 0;
  left: 0;
}
.navmenu a:after {
  bottom: 0;
  right: 0;
}
.navmenu a:hover,
.navmenu .current a {
  color: #ffffff;
}
.navmenu a:hover:before,
.navmenu .current a:before,
.navmenu a:hover:after,
.navmenu .current a:after {
  width: 100%;
}

@media only screen and (max-width : 768px){
.navmenu a:before,
.navmenu a:after,
.navmenu a:hover{
		display:none;
	}
}


.inner {
    width: 980px;
    margin: 0 auto;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}
.navmenu .contact_txt a{
	color:#f00;
}

/* 繝翫ンFixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-top: 10px;
    height: 70px;
    background: #fff;
    background: rgba(255,255,255,.7);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
}
#top-head.fixed #global-nav ul li a {
    color: #333;
    padding:15px 20px;
}
 #top-head.fixed #global-nav ul .contact_txt a{
	color:#f00;
}
/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 40px;
    top: 20px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #666;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}
@media all and (min-width: 990px) and (max-width: 1171px) {
    #top-head .logo {
        width: 70%;
    }
 }

@media screen and (max-width: 990px) {
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        background: #fff;
        width: 100%;
        height: 56px;
        z-index: 999;
        position: relative;
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        top: 8px;
        width: 70%;
    }
    #global-nav {
        position: absolute;
        /* 髢九＞縺ｦ縺ｪ縺�→縺阪�逕ｻ髱｢螟悶↓驟咲ｽｮ */
        top: -500px;
        background: #fff;
		color:#222222;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
        float: none;
        position: static;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #222;
        padding: 18px 0;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 蛻�ｊ譖ｿ縺医い繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav 繧ｹ繝ｩ繧､繝峨い繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
}



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

main-intro

----------------------------------*/
#main-intro {
	width: 100%;
	height: 100%;
	background-image: url(../img/header.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	min-height: 804px;
	position: relative;
}

.main-content-table {
	width: 100%;
	height: 100%;
	display: table;
	position: relative;
}

.main-content-tablecell {
	display: table-cell;
	vertical-align: bottom;
	z-index: 500;
	height:100%;
}

.main-content-tablecell .row {
	position: relative;
	padding-top: 4.2rem;
	padding-bottom: 15rem;
}
.main-content-tablecell h2 {
	color:#222;
	font-size: 2rem;
	letter-spacing: 10px;
	margin: 10rem auto 0;
	text-align:center;
	width:100%;
}
.main-content-tablecell p {
	font-size: 1rem;
	letter-spacing: 1px;
	margin: 0;
	text-align:center;
	line-height:2;
	color:#222;
}
/*.main-content-tablecell a{
	display:flex;
	align-items:center;
	justify-content:center;
	width:400px;
	height:80px;
	border:2px solid #222;
	margin:2.5rem auto 0;
	color:#222;
	transition: all .3s;
    letter-spacing:10px;
    font-weight:400;
}
.main-content-tablecell a:hover{
	background-color:  #646464;
    color: #fff;
}*/


.main-content-tablecell a{
	display:flex;
	align-items:center;
	justify-content:center;
	width:400px;
	height:60px;
	margin:1.5rem auto;
    padding: 0;
    border: 2px double #c1541c;
  background-color: none;
  line-height: 1;
  color: #c1541c;
  position: relative;
  text-align:center;
border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0,0,0,.5);
  top: 0;
  transition: .2s all;
  
  
  position: relative;
  -webkit-perspective: 300px;
  perspective: 300px;
  }
.main-content-tablecell a:hover{
	background-color:#fff;
	
top: -2px;
	color:#c1541c;
	}
.main-content-tablecell a:active{
box-shadow: 0 1px 1px rgba(0,0,0,.5);
    top: 0;
}


@media only screen and (max-width:430px) {
	.main-content-tablecell a{
		width:300px;
	}
	.main-bottom-text {
		padding-bottom:15rem;
	}
	.main-bottom-text h2 img{
		width:80%;
	}
	.main-content-tablecell h2 {
		margin: 3rem auto 0;
	}
}
@media only screen and (max-width:768px) {
	.main-content-tablecell .row {
		padding-bottom: 11.4rem;
	}

	.main-content-tablecell .main-bottom-text {
		padding-right: 15%;
	}
	.scroll-icon {
		right: 15px;
	}

}

@media only screen and (max-width:600px) {
	#main-intro {
		min-height: 702px;
	}

	.main-content-tablecell {
		vertical-align: middle;
	}

	.main-content-tablecell .row {
		padding-top: 9rem;
		padding-bottom: 3rem;
	}

	.main-content-tablecell .main-bottom-text {
		padding-right: 10%;
	}


	.scroll-icon {
		right: 10px;
	}

}

@media only screen and (max-width:500px) {
	.main-content-tablecell .main-bottom-text {
		padding-right: 5%;
	}

}

@media only screen and (max-width:430px) {
	#main-intro {
		min-height: 654px;
	}

	.main-content-tablecell .main-bottom-text {
		padding-right: 0;
	}


}

.scroll-icon {
	position: absolute;
	width: 60px;
	height: 48px;
	font-size: 5rem;
	bottom: 30px;
	right: 20px;
	-webkit-animation: vertical 3s ease infinite;
	animation: vertical 3s ease infinite;
}


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

TOP

----------------------------------*/
.TopArea{
    text-align: center;
    margin: 0 2em;
    padding: 0 2em;

}
.Main_Title{
    margin: 0 auto;
 text-align: center;
}
.Main_Title img{
    margin: 0 auto;
}



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

繧ｳ繝ｳ繧ｻ繝励ヨ

----------------------------------*/
.concept {
	background:url("../img/gaikan2.jpg");
    padding: 1.3rem 0 200px;
    background-position: center;
    background-repeat: no-repeat;
	height:100%;
    vertical-align: middle;
	padding:10rem 0;
}
.concept p {
    text-transform: uppercase;
    line-height: 3;
    color: #fff;
}
.concept:before {
    opacity: 0.03;
    content: "";
    left: 0;
    top: 0;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 1;
}
.concept i {
    display: block;
    color: #fff;
}
.concept-wrapper h2{
		letter-spacing: 2px;
		color: #fff;
		font-size: 1.5rem;
		margin:0 auto;
}
.concept_ttl_bg i{
		font-size: 50px;
		z-index: 1;
}
.concept_ttl {
	
}

.concept_txt {
	padding:3rem 0;
	color:#fff;
	font-size:1rem;
	text-align:center;
}
.access_txt {
}

@media only screen and (max-width : 480px){
	.concept_txt {
		padding:1rem 2rem 0;
	}
	.access_txt {
		padding:1rem 2rem 0;
	}
	.rooms_txt {
		padding:1rem 2rem 0;
	}
	.concept-wrapper .concept_ttl {
	}
	.concept_ttl_bg{
	}
	.concept_ttl_bg i{
	}
	.concept p {
    }
}











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

繧｢繧ｯ繧ｻ繧ｹ

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

.access {
		padding: 0;
		margin-bottom:4rem;
}

.access h2{
	color: #fff;
    text-transform: uppercase;
    line-height: 2;
}
.access h3{
 text-align: center;
}
.access h3 img{
    margin: 0 auto 3em;
}
.access-wrapper {
	text-transform: uppercase;
		letter-spacing: 5px;
		color: #5b4b48;
}
.access-wrapper h2{
		letter-spacing: 2px;
		color: #5b4b48;
		font-size: 1.5rem;
		border-bottom:1px solid #5b4b48;
		margin:0 auto;
}
.access-wrapper p {
	margin:1.5rem 0;
	line-height:2.5;
}
.access_ttl {
	padding:0;
}
.access_ttl_bg {
		font-size: 50px;
		margin-top:100px;
		z-index: 1;
}
@media only screen and (max-width : 480px){
	.access .access_txt {
    	
	}
	.access-wrapper .access_ttl {
		
	}
	.access_ttl_bg{
		
	}
	
}


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

髢灘叙繧奇ｼ域聞蝨ｰ驟咲ｽｮ蝗ｳ��

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

.rooms {
		padding: 0;
		margin:0 0 2rem;
}

.rooms h2{
	color: #fff;
    text-transform: uppercase;
    line-height: 2;
}
.rooms-wrapper {
	text-transform: uppercase;
		letter-spacing: 5px;
		color: #5b4b48;
}
.rooms-wrapper h2{
		letter-spacing: 2px;
		color: #5b4b48;
		font-size: 1.5rem;
		border-bottom:1px solid #5b4b48;
		margin:0 auto;
}
.rooms_ttl {
}
.rooms-wrapper p {
	margin:2.5rem 0 0rem;
	line-height:2.5;
}
.rooms-wrapper img {
	margin:0 auto;
	    margin-bottom: 5rem;

}
.rooms_ttl_bg {
		font-size: 50px;
		margin-top:100px;
		z-index: 1;
}
.rooms .container h3 {
  position: relative;
  text-align: center;
  font-size:1.3rem;
  letter-spacing:10px;
}
.rooms .container h3 span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 1em;
  background-color: #fff;
  text-align: left;
}
.rooms .container h3::before {
  position: absolute;
  top: 50%;
  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.haichi-img {
	padding:2rem 0 0rem;
}
.vr-tour {
	padding:3rem 0 5rem;
}
@media only screen and (max-width : 480px){
	.rooms .rooms_txt {
	}
	.rooms-wrapper .rooms_ttl {
	}
	.rooms_ttl_bg{
	}
	.rooms .container h3 {
	}
	
}

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

髢灘叙繧奇ｼ郁ｳ�侭��

-------------------------------- */
.RoomBox{
    margin-bottom: 1em;
}
.RoomBoxBtm{
    margin-bottom: 1em;
   /* background: url(../img/roomarea_btm.png) no-repeat 100% 100%;*/
}

@media only screen and (max-width : 780px){
    .RoomBoxBtm {
        background: none;
        }
    }



.pricing {
 background: #fff url(../img/pricing_bk.png);
 padding-top: 2em;
}
.pricing_plan {
    border:1px solid #ddd;
    border-radius:0 20px 0 0;
    background: #fff;
}
.pricing_plan img {
	margin:2rem auto;
}
.pricing_plan a:hover {
	color:rgba(128,0,0,1.00);
}
.pricing_plan .floor01::before{
	content: url(../img/floor01.jpg);
}
.pricing_plan .floor02::before{
	content: url(../img/floor02.jpg);
}
.pricing_plan .floor03::before{
	content: url(../img/floor03.jpg);
}
.room_title {
  background:#435e80 url(../img/room_bk.png) 5% 50% no-repeat;
  padding:10px;
  border-radius:0 20px 0 0;
}
.room_title h4{
	color:#fff;
	font-size: 18px;
	letter-spacing:1.5px;
	padding: 7px;
	line-height:1.5;
}
.room_title .kyoeki{
	font-size:1rem;
	letter-spacing:1px;
	color:#fff;
}
.madorizu{
    padding: 1em;
}
 .madorizu i{
	 color: #f1f1f1;
	 font-size: 100px;
}
.list {
	padding-bottom:1rem;
}

.list li {
    padding: 15px 20px;
    color: #435e80;
    font-size: 15px;
    font-weight: 400;
	letter-spacing:1px;
}
.list .chinryo {
	font-weight:400;
	line-height:2;
}
.list .chinryo-bottom01 {
	padding-bottom:3.1rem;
}
.list .chinryo-bottom02 {
	padding-bottom:2.5rem;
}
.list .madori {
	border-bottom:1px solid rgba(123,105,29,1.00);
	margin:1rem 2rem;
	padding-bottom:1rem;
	line-height:1.5;
}
.list .mou {
	background:#a09c97;
	color:#fff;
}
.list .room {
	background-color:#5a7698;
	color:#fff;
    padding:3px;
    font-size: 18px;
}


.room-shosai {
	margin:0 0 2rem;
}

.room-shosai a{
	display:block;
	width:80%;
	height:50px;
    background-color:#5b4b48;
	color:#fff;
	padding:1rem 0;
	margin:1rem auto;
	text-align:center;
  	-webkit-transition: none;
  	transition: none;
}
.room-shosai a:hover{
	color:#fff;
	background-color:#918f8f;
}
.room-shosai .mou {
	display:block;
	width:80%;
	height:50px;
	background:#979797;
	color:#fff;
	padding:1rem 0;
	margin:1rem auto;
	text-align:center;
  	-webkit-transition: none;
  	transition: none;
}
.room-shosai .furniture a{
    border-radius:30px;
    background-color:#b16262;
    letter-spacing: 2px;
}
.room-shosai .furniture a.Mou,
.room-shosai .furniture a:hover{
    background-color:#b6a083;
}
.room-shosai .contact_url a{
    border-radius:30px;
    background-color:#d39f5a;
    letter-spacing: 2px;
}
.room-shosai .contact_url a:hover{
    background-color:#b6a083;
}



.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;
	}
}


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

險ｭ蛯吝�逵�

----------------------------------*/
 .setsubiPhoto{
	 padding: 2rem 0 0;
	 min-height: 350px;
 }
#setsubi-gallery{
}

.setsubiPhoto .item{
	display:inline-block;
	margin: 3px 0;

}

.setsubiPhoto .item img{
  	display: block;
  	height: 303px;
    width: 300px;
	margin: 0 auto;
	min-width:100%;
}
.setsubiPhoto .container h3 {
    position: relative;
    text-align: center;
    font-size:1.3rem;
    letter-spacing:10px;
    margin: 5rem 0 2rem;  
  }
  .setsubiPhoto .container p{
    margin-bottom: 5em;
  }
  .setsubiPhoto .container h3 span {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin: 0 2.5em;
    padding: 0 1em;
    background-color: #fff;
    text-align: left;
  }
  .setsubiPhoto .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){
      .setsubiPhoto .container h3 {
          font-size:1rem;
      }
      
  }


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

遨肴ｰｴ繝上え繧ｹ

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

.sekisui {
		padding: 0;
		margin:0;
}

.sekisui .container h3 {
  position: relative;
  text-align: center;
  font-size:1.3rem;
  letter-spacing:10px;
  margin: 10rem 0 2rem;  
}
.sekisui .container h3 span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 1rem;
  background-color: #fff;
  text-align: left;
}
.sekisui .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){
	.sekisui .container h3 {
		font-size:1rem;
	}
	
}


.sekisui .container h4 {
position: relative;
padding: 5px 26px 5px 42px;
background: #fff;
font-size: 18px;
color: #ff9728;
margin-top: 1.5rem;
line-height: 1.3;
border-bottom: solid 3px #ff9728;
letter-spacing:4px;
z-index:-2;
}

.sekisui .container h4:before {
position: absolute;
content: '';
left: -2px;
top: -2px;
width: 0;
height: 0;
border: none;
border-left: solid 40px white;
border-bottom: solid 79px transparent;
z-index: -1;
}

.sekisui .container h4:after {
position: absolute;
content: '';
right: -3px;
top: -7px;
width: 0;
height: 0;
border: none;
border-left: solid 40px transparent;
border-bottom: solid 79px white;
z-index: -1;
}

.seki_ex {
	width:90%;
	margin:0 auto;
	line-height:2.5;
	padding-top:2rem;
	padding-bottom:2.5rem;
	text-align:center;
}



@media only screen and (max-width : 480px){
	.sekisui .container h4 {
		font-size:80%;
	}
	
}


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

迚ｩ莉ｶ讎りｦ�

----------------------------------*/
.outline {
		padding: 3rem 0 0 0;
		background-color:rgba(241,239,229,1.00);
		margin:7rem 0 0;
}

.outline-wrapper h2{
		letter-spacing: 2px;
		color: #5b4b48;
		font-size: 1.5rem;
		margin:0rem auto 3rem;
		padding: 0.5rem 0 0 0;
}
.outline-wrapper .concept_ttl{
	padding-bottom:100px;
}
.outline_ttl {
	text-shadow:2px 2px 3px rgba(237,237,224,1.00);
	padding:1rem 0 0rem;
    margin: 0 0 rem;
}
.outline_ttl_bg i{
		font-size: 50px;
		margin-top:100px;
		z-index: 1;
}
.table {
	margin-bottom:10rem;
}
.table i {
	color:#5A4243;
}
.footer-ban img{
    padding: 0 1rem 1.5rem;
}
@media only screen and (max-width : 480px){
	.outline {
		background-size:90%;
	}
	.table{
		padding: 0;
        margin-left: 0.5rem;
		text-align:left;
        
	}
    .table tr th {
        width: 30%;
        
    }
    .table tr td {
        width: 70%;
        text-align: left;
        
    }
	}




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

蜻ｨ霎ｺ迺ｰ蠅�

----------------------------------*/
.Location {
	background:url("../img/location_back.jpg");
    padding: 1.0rem 0 200px;
    background-position: center;
    background-repeat: no-repeat;
	height:100%;
    vertical-align: middle;
	padding:6rem 0 3rem;
}
.Location p {
    text-transform: uppercase;
    line-height: 3;
    color: #fff;
}
.Location:before {
    opacity: 0.03;
    content: "";
    left: 0;
    top: 0;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 1;
}
.Location i {
    display: block;
    color: #fff;
}
.concept-wrapper h2{
		letter-spacing: 2px;
		color: #fff;
		font-size: 1.5rem;
		margin:0 auto;
}
.concept_ttl_bg i{
		font-size: 50px;
		z-index: 1;
}
.concept_ttl {
	
}


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

蜻ｨ霎ｺ迺ｰ蠅�

----------------------------------*/
.location {
	background:url(../img/loca_bg.png);
}

.location h2{
		letter-spacing: 2px;
		color: #5b4b48;
		font-size: 1.5rem;
		border-bottom:1px solid #5b4b48;
		margin:0 auto;
    	padding-bottom:1rem;
}
.location_ttl {
}
.location_ttl_bg {
		font-size: 50px;
		margin:7rem 0 0.8rem;
		z-index: 1;
}
.location_txt {
	width:90%;
	margin:0 auto;
	line-height:2;
	padding-top:2rem;
	padding-bottom: 4rem;
}
.koen_img {
	padding-bottom:3rem;
}
.koen_txt {
	width:90%;
	text-align:center;
	margin:0 auto;
	line-height:2;
	padding-bottom: 4rem;
}

@media only screen and (max-width : 480px){
	.location_ttl_bg{
	}
	.location_txt {
	}
}



.shuhenMap h3 {
  position: relative;
  text-align: center;
  font-size:1.3rem;
  letter-spacing:10px;
}
.shuhenMap h3 span {
 position: relative;
  z-index: 2;
  display: inline-block;
  margin: 2rem 2.5em 3rem;
  padding: 1rem 1rem 0rem;
  background-color: #f6f6f6;
  text-align: left;
}
.shuhenMap h3::before {
  position: absolute;
  top: 50%;
  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.shuhenMap2 h3 {
  position: relative;
  text-align: center;
  font-size:1.3rem;
  letter-spacing:5px;
}
.shuhenMap2 h3 span {
 position: relative;
  z-index: 2;
  display: inline-block;
  margin: 2rem 2.5em 3rem;
  padding: 1rem 1rem 0rem;
  background-color: #f6f6f6;
  text-align: left;
}
.shuhenMap2 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){
	.shuhenMap h3 {
		font-size:1rem;
	}
	.shuhenMap2 h3 {
		font-size:1rem;
	}
}
.photography {
	margin:1.5rem 0;
	height:400px;
}
.location_container img{
	width: 100%;
}
.shop_info {
	padding-bottom:1rem;
}
.shop_info .shopName {
	display: block;
	color:#000;
	font-size: 1.2rem;
	letter-spacing:1.5px;
	padding:0 10px;
    margin-bottom: 1rem;
	position: relative;
}
.gyotai {
	font-size:0.8rem;
}
.shop_info .petshop:before{
position: relative;
content: url(../img/icon_petshop.png);
font-weight: normal;
font-size: 15px;
border-radius: 50%;
left: 0;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
top: 0.3rem;
padding:2px 0;
}
.shop_info .hospital:before{
position: relative;
content: url(../img/icon_hospital.png);
font-weight: normal;
font-size: 15px;
border-radius: 50%;
left: 0;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
top: 0.3rem;
padding:2px 0;
}
.shop_info .dogcafe:before{
position: relative;
content: url(../img/icon_dogcafe.png);
font-weight: normal;
font-size: 15px;
border-radius: 50%;
left: 0;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
top: 0.3rem;
padding:2px 0;
}
.shop_info .hotel:before{
position: relative;
content: url(../img/icon_hotel.png);
font-weight: normal;
font-size: 15px;
border-radius: 50%;
left: 0;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
top: 0.3rem;
padding:2px 0;
}
.shop_info .petsalon:before{
position: relative;
content: url(../img/icon_petsalon.png);
font-weight: normal;
font-size: 15px;
border-radius: 50%;
left: 0;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
top: 0.3rem;
padding:2px 0;
}
.shop_info .store:before{
position: relative;
content: url(../img/icon_store.png);
font-weight: normal;
font-size: 15px;
border-radius: 50%;
left: 0;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
top: 0.3rem;
padding:2px 0;
}


.shop_info .toho{
	color:#999;
	letter-spacing:1px;
	margin:0 auto;
	font-size: 0.8rem;
}

.shop_info .gotoshop a{
	display: inline-block;
  width: 100%;
  margin: 5px auto;
  padding:0.8rem 0px;
  border: 1px solid #000;
  color: #000;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  transition: .2s;
  font-size: 0.7rem;
    letter-spacing: 2px;
    background-color: #e8e8e8;
}
.shop_info .gotoshop a:hover{
	top:4px;
	background-color:#ccc;
	box-shadow:none;
}
.shop_info .gotomap a{
	display: inline-block;
  width: 100%;
  margin: 5px auto;
  padding:0.8rem 0px;
  border: 1px solid #000;
  color: #000;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  transition: .2s;
  font-size: 0.7rem;
    letter-spacing: 2px;
    background-color: #e8e8e8;
}
.shop_info .gotomap a:hover{
	top:4px;
	background-color:#ccc;
	box-shadow:none;
}
.shop_info .tokuten a{
	display: inline-block;
  width: 100%;
  margin: 5px auto;
  padding:0.8rem 0px;
  border: 1px solid #f00;
  color: #f00;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  transition: .2s;
  font-size: 0.7rem;
    letter-spacing: 2px;
    background-color: #e8e8e8;
}
.shop_info .tokuten a:hover{
	top:4px;
	background-color:#ccc;
	box-shadow:none;
}

.button {
  position: relative;
  border-radius: 4px;
  color: #fff;
  line-height: 52px;
  -webkit-transition: none;
  transition: none;
}
.button:hover {
  top: -4px;
  box-shadow: 0 7px 0 #f7ba59;
}
.button:active {
  top: 3px;
  box-shadow: none;
}
@media (max-width: 992px) {
.photography {
	height:700px;
}
}
@media only screen and (max-width : 480px){
.photography {
	height:400px;
}
}
.location .categories-grid span{
		font-size: 30px;
		margin-bottom: 50px;
		display: inline-block;
}

.location .categories-grid .categories ul li{
		list-style: none;
		margin: 20px 0;
}

.location .categories-grid .categories ul li a{
    display: inline-block;
    text-transform: uppercase;
    color: #777;
    margin-left: 20px;
    font-size: 13px;
    font-weight: 400;
}

.location .categories-grid .categories ul li a.active{
    margin-left: 0;
    padding: 0 10px;
    color: #000;
		font-weight: 700;
}


@media (max-width: 992px) {
	.location .categories-grid span{margin-bottom: 0;text-align:center;width:100%;}
	.location .categories-grid .categories ul li{
		text-align: center;
	}
	.location .categories-grid .categories ul li a{
		margin-left: 0;
	}
}
.naiken {
	text-align:center;
}
.naiken a{
    display: flex;
    justify-items: center;
	align-items:center;
  	background-color: #d5a417;
  	box-shadow: 0 3px #b08829;
  	color: #fff;
	border-radius:5px;
	letter-spacing:8px;
	padding:1rem;
	margin:0 auto 10rem;
	width:230px;
}
.naiken a::active {
	box-shadow: 0 0 #4063A4;
    top: 6px;
}

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

繝輔ャ繧ｿ繝ｼ

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

.main-footer{
	background-color: #282120;
	z-index: 0;
}

footer p {
    color: #777;
}

footer a {
    color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "繝偵Λ繧ｮ繝手ｧ偵ざ ProN W3", Hiragino Kaku Gothic ProN, Arial, "繝｡繧､繝ｪ繧ｪ", Meiryo, sans-serif;
}

footer a:hover {
    color: #000;
    text-decoration: none;
}
.copyright-section {
    padding: 30px 0;
    font-size: 15px;
    border-top: 1px solid #131313;
}

.copyright-section p {
    font-size: 15px;
}


@media (max-width: 992px) {
	footer.main-footer *{
		text-align: center;
	}
}


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

	footer.main-footer{
		padding: 0;
	}

	footer.main-footer *{
		text-align: center;
	}
}

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

繝励Μ繝ｭ繝ｼ繝繝ｼ

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

#loading{
	position: absolute;
	left: 50%;
	top: 30%;
}

#loader-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #FFF;
	z-index: 1;
}

#main-contents{
	text-align: center;
	margin-top: 20%;
}</pre></body></html>