@charset "utf-8";


@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Yomogi&display=swap');

@import url("slide.css");
@import url("inview.css");



:root {
	--primary-color: #333;
	--primary-inverse-color: #fff;
	--space-large: 0vw;
	--space-small: 0vw;
}


@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


body * {box-sizing: border-box;}

html,body {
	font-size: 14px;	
	height: 100%;
}

@media screen and (min-width:1200px) {
	html, body {
		font-size: 14px;
	}
	}

@media screen and (min-width:1600px) {
	html, body {
		font-size: 1vw;
	}
	}


body {
	margin: 0;padding:0;
	font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fff;	
	color: var(--primary-color);		
	line-height: 2;	
}

figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}
table {border-collapse:collapse;}
img {
order: none;
max-width: 100%;
height: auto;
vertical-align: middle;
}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*input*/
input {font-size: 1rem;}

/*section*/
section {
	overflow-x: hidden;
	padding: var(--space-large);	
}



a {
	color: inherit;
	transition: 0.3s;	
}
a:hover {
	text-decoration: none;	
	opacity: 0.9;		
}


#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


header {
	flex-shrink: 0;
	display: flex;				
	align-items: center;	
	justify-content: space-between;
	height: 120px;	
	background-color: #445043;/*#514A4A#1D5911*/
	padding: 1vw;
}

body:not(.home) header {
	margin-bottom: var(--space-large);
}

#logo img {display: block;}
#logo {
	margin: 0.1vw;
	padding:0.1vw;
	width: 10vw;	
	position: relative;z-index: 1;
	left: 4.5vw;	
	top: 0vw;	
}

	@media screen and (max-width:500px) {
	header {
		height: 100px;
		padding: 0.1vw!important;
	}
	#logo {
		top: 0;			
		width: 80px;	
		margin: 0.1vw!important;
	padding:0!important;
	}
	}



header nav ul {display: none;}
	@media screen and (min-width:900px) {
	header > nav > ul {
		margin-right: 10vw;	
		display: flex;	
	}

	header nav li a {
		display: block;text-decoration: none;
		font-size: 1rem;		
		padding: 0.5rem 1rem;	
		color: #fff;
	}
	
	header nav i {
		padding-right: 0.5rem;
	}

	}



header nav ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	
}


header nav ul ul {
	position: absolute;z-index: 100;
}

header nav ul ul a {
	background: rgba(255,255,255,0.8);	
	padding: 0.3em 1em;			
	margin-top: 4px;	
	border: 1px solid var(--primary-color);	
}



#menubar {
display: none;
}
#menubar ul {
list-style: none;
margin: 0;
padding: 0;
}
#menubar a {
display: block;
text-decoration: none;
}

.large-screen #menubar {
display: block;
}
.small-screen #menubar.display-block {
display: block;
}

#menubar_hdr.display-none {
display: none;
}

.ddmenu_parent ul {
display: none;
}

a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	
	content: "\f078";		
	font-weight: bold;	
	margin-right: 0.5em;	
}


/*ハンバーガーメニュー-*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}

.small-screen #menubar.display-block {
	position: fixed;
	overflow: auto;
	z-index: 100;
	right: 0px;
	top: 0px;
	max-width: 800px;
	height: 100%;
	padding: 90px 10vw 50px;		
	background: #445043;	
	color: #fff;		
	animation: animation1 0.2s both;		
}

.small-screen #menubar ul ul {
	margin: 2rem;	
}

.small-screen #menubar nav ul li {
	border: 1px solid #fff;	
	margin: 1rem 0;	
	border-radius: 5px;	
}
.small-screen #menubar a {
	color: inherit;
	padding: 1rem 2rem;	
}


/*ハンバーガーアイコン*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	top: 20px;		
	right: calc(var(--space-small) + 20px);		
	width: 40px;		
	height: 60px;		
	padding: 20px 0;	
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	mix-blend-mode: exclusion;
}

#menubar_hdr.ham {
	mix-blend-mode: normal;
}

#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 3px;			
	background-color: #fff;	
	transition: all 0.5s ease-in-out;
	position: absolute;
}

#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;flex-direction: column;
	justify-content: space-between;
}
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {top: 50%;transform: translateY(-50%) rotate(-45deg);}


/*固定ボタン*/
#btn-special {padding: 0;margin: 0;}
#btn-special a {
	display: block;text-decoration: none;
	position: fixed;z-index: 100;
	right: 0px;	
	top: 20vw;	
	writing-mode: vertical-rl;
	text-orientation: upright;
	background: linear-gradient(#ec9347, #d36b12);
	color: #f6ebd2;	
	padding: 2rem 1rem;	
	border-radius: 3px 0px 0px 3px;	
	letter-spacing: 0.1em;	
}

#btn-special i {padding-bottom: 1rem;}

main {
	flex: 1 0 auto;
	overflow-x: hidden;
	padding: 3vw 0 1vw ;	
}

main h2 {
	margin: 0;
	padding: 0 1vw ;
	font-size: 2.4rem;		
	font-weight: normal;
	margin-bottom: 3vw;	
}

.sub-text {
	display: inline-block;
	border-top: 1px solid var(--primary-color);	
	font-size: 0.9rem;
	opacity: 0.6;	
	letter-spacing: 0.1rem;	
	padding-top: 2rem;	
}

.no-line span.sub-text {
	border: none;
	padding-top: 0;
}

main h3 {
	font-weight: 600;
	font-size: 1.4rem;	
}


/*Google Map*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 50%;	
	position: relative;
	overflow: hidden;
}
.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*フッター*/
footer a {color: inherit;text-decoration: none;
}
footer small {font-size: 100%;
}
footer {
background-color: #445043;
	color: var(--primary-inverse-color);	
	font-size: 0.85rem;	
	padding: 3vw 8vw 6vw 8vw;		
}

	@media screen and (min-width:600px) {
	footer {
		display: flex;
		justify-content: space-between;
	}
	}


footer .image {
	width: 200px;	
	text-align: center;	
}

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

	footer .image {
		width: auto;
	}
	footer .image img {
		width: 80px;
	}

	}

/*ロゴ*/
footer .logo {
	opacity: 0.5;	
}
	@media screen and (min-width:600px) {
	footer .text {
		display: flex;	
		gap: 5rem;	
	}
	}

footer h4 {
	font-weight: 200;	
	font-size: 1.2rem;	
}


.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	align-self: center;
	gap: 1rem;	
}
.icons i {
	font-size: 30px;	
}




/*プライバシー*/
.policy {
 clear: both;
	background: #fff;	
	color: #333;	
	padding: 2vw;
}
	@media screen and (min-width:600px) {
	.privacy {
		width: 100%;
		padding: 4vw 4vw 6vw!important;
		margin-bottom: 4vw;
	}
	}	

.privacy h2 {
	margin: 0!important;
	font-size: 2rem;	
	font-weight: 200;	
	letter-spacing: 0.1em;	
}
	@media screen and (min-width:600px) {
	.privacy h2 {
	}
	}
	




/*会社概要*/
.company {
 clear: both;
	background: #fff;	
	color: #333;	
	position: relative;
	padding: 2vw;
}

	@media screen and (min-width:600px) {
	.company {
		display: flex;
		justify-content: space-between;
	}
	}

.company h2 {
	margin: 0;
	padding: 0 1vw ;
	font-size: 2.4rem;		
	font-weight: normal;
	margin-bottom: 3vw;	
}

	@media screen and (min-width:600px) {
	.company h2 {
	}
	}

.company th,.company td {
    border: solid 1px #ccc; 
    padding: 10px;  
				text-align: left;
}
.company th{
width: 34%;
}
.company table {
width: 80%;
border-collapse:  collapse; 
}
	@media screen and (max-width:500px) {
	.company table {
width: 100%;
}
	}







/*民泊管理*/
.minpaku {
 clear: both;
	background: #fff;	
	color: #333;	
	position: relative;
	padding: 2vw;
	font-size: 1.2vw;
}

	@media screen and (min-width:600px) {
	.minpaku {
		display: flex;
		justify-content: space-between;
	}
	}

.minpaku h2 {
	margin: 0;
	padding: 0 1vw ;
	font-size: 2.4rem;		
	font-weight: normal;
	margin-bottom: 3vw;	
}

	@media screen and (min-width:600px) {
	.minpaku h2 {
	}
	}

.minpaku th,.minpaku td {
    border: solid 1px #ccc; 
    padding: 10px;  
				text-align: left;
}
.minpaku th{
width: 34%;
}
.minpaku table {
width: 80%;
border-collapse:  collapse; 
}
	@media screen and (max-width:500px) {
	.minpaku table {
width: 100%;
}
	}

.minpaku-box{
margin-top: 2em;
}

.minpaku-index{
margin-top: 4vw;
overflow: auto;
}
.minpaku-index li{
list-style: none;
text-align: center;
border: 1px dashed #445043;
display:inline-block;
padding: 10px 2vw;
}

.minpaku .kazari01{
border-bottom: 1px dashed #445043;
}







.text01{
	 clear: both;
		width: 100%;
		padding: 1vw;
		color: #445043!important;
		font-size: 1.5vw;
		font-weight: 500!important;
		}
.text02{
	 clear: both;
		width: 100%;
		padding: 1vw;
		font-size: 1.2vw;
}
.text03{
	 clear: both;
		width: 100%;
		padding: 1vw;
		text-align: right;
}
.text04{
	 clear: both;
		width: 100%;
		padding: 0vw 1vw 5vw 0vw;
}
	@media screen and (max-width:500px) {
	.text01{
			font-size: 16px;
}
.text02{
			font-size: 14px;
}
.text03{
			font-size: 14px;
}
.text04{
			font-size: 14px;
			padding-bottom: 3em;
}
	}
	
	
	
	

/*box1*/
.box1 {
	overflow-x: visible;
	position: relative;
	background: #FFF;	
	padding: 4vw;
	margin-top: 1vw;	
	margin-bottom: 2vw;
	font-size: 1.4vw;
}

.box1 .deco-text {
	position: absolute;
	right: 0;
	top: -13.5vw;	
	color: #FFF;	
	font-size: 7vw;	
	line-height: 1;
}

.box1 .illust1 {
	position: absolute;
	right: 20vw;
	top: 9vw;	
	width: 23vw;	
	opacity: 0.3;	
}


.box1 .text {
	margin-bottom: 5rem;	
}


	@media screen and (min-width:600px) {
	.box1 {
		display: flex;	
		gap: 5vw;		
		border-radius: 0 0 0 0;	
	}
	
	.box1 > * {
	flex: 1;
	}

	.box1 .illust1 {
		rignt: auto;
		left: 3vw;		
		top: -4vw;		
		width: 14vw;	
	}


	.box1 .text {
		margin-bottom: 0;	
	}
	}

.box1 .image {
	position: relative;
}

.box1 .image img {
	border-radius: 0px;
}

.box1 .image img:nth-of-type(1) {
	width: 80%;	
}

.box1 .image img:nth-of-type(2) {
	width: 40%;	
}
.box1 .image img:nth-of-type(2) {
	position: absolute;
	right: 0;	
	top: 15vw;	
}


.logo-kazari {
	background: url("../images/logo_kazari.svg") no-repeat left top / 70%;	
}



.list1.image1 {
	background: url("../images/1.jpg") no-repeat center center / cover;
}

.list1.image2 {
	background: url("../images/2.jpg") no-repeat center center / cover;
}

.list1.image3 {
	background: url("../images/3.jpg") no-repeat center center / cover;
}

.list1.image4 {
	background: url("../images/4.jpg") no-repeat center center / cover;
}

.list1.image5 {
	background: url("../images/5.jpg") no-repeat center center / cover;
}

.list1.image6 {
	background: url("../images/6.jpg") no-repeat center center / cover;
}

.list1.image7 {
	background: url("../images/7.jpg") no-repeat center center / cover;
}


.list1 {
	padding: var(--space-large);	
	position: relative;
	overflow-x: hidden;
	margin-bottom: 1vw;	
}


.list1::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		
	transition: transform 0.5s 0.1s;	
}
.list1:hover::before {
	transform: translateX(100%);	
}


.list1 .text {
	position: relative;z-index: 1;
	width: 80%;		
	height: 100%;
	color: #fff;	
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	
}






	@media screen and (min-width:600px) {
	.list1 .text {
		width: 40%;	
	}
	}

.list1 .text.reverse {
	margin-left: auto;
}

.list1 h3 {
	margin: 0;padding: 0;
	font-weight: normal;	
	position: relative;
	font-size: 2rem;		
	letter-spacing: 0.1rem;	
	line-height: 1.2;		
}

.list1 h3 .large {
	font-size: 7rem;	
}

.list1 h3 span:not(.large) {
	font-size: 1rem;	
	opacity: 0.5;		
	position: absolute;
	right: 0px;	
	top: 0px;	
}


.list-grid1 .list * {margin: 0;padding: 0;}

.list-grid1 .list {
    display: grid;
	margin-bottom: 2rem;	
}

.list-grid1 .list p {
	font-size: 0.85rem;	
	line-height: 1.5;	
}


.list-grid1 .list {
	padding: 1rem;	
	background: #fff;
	color: #111;		
 grid-template-rows: auto 1fr auto;	
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	
}
.list-grid1 .list figure {
	margin: -1rem;
	margin-bottom: 0.5rem;
}

	@media screen and (min-width:800px) {

	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	
		gap: 3vw;	
	}

	.list-grid1 .list {
		margin-bottom: 0;	
	}
	}



.title-bg {
	display: flex;			
	justify-content: center;	
}



/*ボタン*/
.btn1 a, .btn2 a {
	display: block;text-decoration: none;
	padding: 0.8rem 2rem;	
	margin-top: 2rem;		
	text-align: center;		
	letter-spacing: 0.1em;	
	box-shadow: 0px 10px 30px rgba(0,0,0,0.1);	
}

.btn1 a:hover, .btn2 a:hover {
	letter-spacing: 0.2rem;	
	box-shadow: none;
}

.btn1 a {
	color: var(--primary-color);	
	background: var(--primary-inverse-color);	
}


.btn2 a {
	color: #fff;	
	border: 1px solid #fff;	
}

.list1:hover .btn2 a {
	background: rgba(0,0,0,0.8);	
}


.btn3 {
	text-align: right;	
	letter-spacing: 0.1em;	
}
.btn3 a {
	display: inline-block;text-decoration: none;
	color: inherit;
	position: relative;
	padding-right: 5rem;	
}

.btn3 a::after {
	content: "";
	background: url("../images/arrow1.svg") no-repeat right center / 100px;
	display: block;
	position: absolute;
	right: 0px;
	bottom: -1rem;	
	width: 50px;	
	height: 50px;		
	border-radius: 50%;	
	text-align: center;
	transition: 0.3s;		
	border: 1px solid var(--primary-color);	
}

.btn3 a:hover::after {
	background-color: var(--primary-color);	
	background-position: left center;	
}

.btn3.white {
	color: #fff;	
}
.btn3.white a::after {
	background: url("../images/arrow1_white.svg") no-repeat right center / 100px;	
	border: 1px solid #fff;	
}
.btn3.white a:hover::after {
	background-color: #fff;	
	background-position: left center;	
}



.slide-thumbnail-box {
	overflow-x: hidden;
	padding-left: 0;
	padding-right: 0;
}

.slide-thumbnail1 {
	margin-bottom: 6vw;	
}

.slide-thumbnail1 .img {
	display: flex;
}

.slide-thumbnail1 .img img {
	padding: 0 1rem;	
}


.slide-thumbnail1 .img div:nth-of-type(even) {
	transform: translateY(3vw);
}

.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}



.ta1 caption {
	font-weight: bold;		
	padding: 0.5rem 1rem;	
	background: var(--primary-color);		
	color: var(--primary-inverse-color);	
	margin-bottom: 1rem;	
	border-radius: 5px;		
}

.ta1 {
	table-layout: fixed;
	border-top: 1px solid var(--primary-color);	
	width: 100%;			
	margin-bottom: 5rem;	
}

.ta1 tr {
	border-bottom: 1px solid var(--primary-color);	
}

.ta1 th, .ta1 td {
	padding: 1rem;		
	word-break: break-all;	
}

.ta1 th {
	width: 30%;			
	text-align: left;	
	background: #eee;	
}

	@media screen and (min-width:900px) {
		.ta1 th {
			width: 20%;		
		}
	}



.order1 {
	order: 1;	
}

.padding0 {
	padding: 0 !important;
}
.padding-bottom0 {
	padding-bottom: 0 !important;
}
.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.space-small {
	padding-left: var(--space-small);
	padding-right: var(--space-small);
}



.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.bg1 {background: #f0f0f0;}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}


	@media screen and (min-width:900px) {
	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}
	}


