@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
  --ocher-color: #807f38;
}
/*
color: var(--ocher-color);
*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body {
	display: block;
	width: 100%;
	background-color: #FFFFFF;
	font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
	font-size: 12px;
	color: #333333;
	text-align: left;
	line-height: 1.5em;
	list-style-type: none;
	margin: 0;
	padding: 0;
	clear: both;
	overflow-x: hidden;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.wrapper {
	overflow: hidden;
}
a {text-decoration: none; }
a:link { color: #333333; }
a:visited { color: #333333; }
a:active { color: #333333; }
a:hover { opacity: 0.5; transition: 0.5s ;}
body a:hover img {
	opacity: 0.5;
	filter: alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
	transition: 0.5s ;
}
body img,
body video{
	border-style:none;
	width: 100%;
	display: block;
}
body a img{
	border-style:none; 
}
ul,li{
	list-style-type:none;
	margin:0;
	padding:0;
}
.scrollanime {
	opacity: 0;
}
.fadeInDown {
	animation-name: fadeInDown;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}
@keyframes fadeInDown {
	0% {
		opacity: 0;			
	}
	100% {
	opacity: 1;
	transform: translate(0);
	}
}
.downup {
	transition-duration: 1.5s;
	transform: translateY(100px);
}
.downup.active {
	transform: translateY(0px);
}
.updown {
  transform: translateY(-30px);
}
.slide-right {
	transform: translateX(100px);
}
.slide-left {
	transform: translateX(-100px);
}
.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time04 {
  animation-delay: 0.4s;
}
.delay-time05 {
  animation-delay: 0.5s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time08 {
  animation-delay: 0.8s;
}
.delay-time10 {
  animation-delay: 1.0s;
}
.delay-time12 {
  animation-delay: 1.2s;
}
.delay-time14 {
  animation-delay: 1.4s;
}

/*======================================================================================
HEADER
======================================================================================*/
header{
	display: block;
	clear: both;
	width: 100%;
	height: 70px;
	overflow: hidden;
	background-color: rgba(255,255,255,0.8);
	position: fixed;
	top: 0;
	z-index: 100;
}
@media screen and (max-width:1049px){
	.pc_header{
		display: none;
	}
	.sp_header{
		height: 70px;
		display: flex;
		align-items: center;
	}
	.logobox a{
		display: flex;
		align-items: center;
		margin-left: 15px;
	}
	.logobox img{
		width: 60px;
	}
	h1{
		font-size: 14px;
		font-weight: 700;
		margin-left: 10px;
	}
	/* NAVIGATION */
	.menu-trigger {
		z-index: 400;
		display: inline-block;
		width: 30px;
		height: 44px;
		vertical-align: middle;
		cursor: pointer;
		position: fixed;
		top: 15px;
		right: 15px;
	}
	.menu-trigger span {
		z-index: 400;
		position: absolute;
		left: 10px;
		display: inline-block;
		box-sizing: border-box;
		width: 30px;
		height: 2px;
		background-color: #333333;
		transition: all .5s;
	}
	.menu-trigger.active span {
		background-color: #333333;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 18px;
		left: 0;
	}
	.menu-trigger.active span:nth-of-type(1) {
		z-index: 400;
		position: absolute;
		transform: translateY(1px) rotate(-45deg);
	}
	.menu-trigger span:nth-of-type(2) {
		top: 6px;
		left: 0;
	}
	.menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu-trigger span:nth-of-type(3) {
		bottom: 12px;
		left: 0;
	}
	.menu-trigger.active span:nth-of-type(3) {
		z-index: 400;
		position: absolute;
		transform: translateY(-11px) rotate(45deg);
	}
	a.menu-trigger:hover {
		opacity: 1;
	}
	.header_menu{
		display: none;
		position: fixed;
		top: 70px;
		left: 0;
		background-color: rgba(184,178,128,0.9);
		width: 100%;
		height: auto;
		z-index: 1;
	}
	.header_menu ul{
		position: relative;
		width: 90%;
		margin: 0 5%;
		padding: 0px 0 25px 0;
	}
	.header_menu ul li{
		border-bottom: 1px solid #FFFFFF;
		width:100%;
	}
	.header_menu ul li a{
		display: block;
		text-align: center;
		font-size: 14px;
		color: #FFFFFF;
		padding: 25px 0 15px 0;
	}
}

@media screen and (min-width:1050px){
	.sp_header{
		display: none;
	}
	.pc_header{
		width: 100%;
		height: 70px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.logobox a{
		display: flex;
		align-items: center;
		margin-left: 55px;
	}
	.logobox img{
		width: 86px;
	}
	h1{
		font-size: 16px;
		font-weight: 700;
		margin-left: 15px;
	}
	.header_menu{
		max-width: 700px;
		width: calc(100% - 450px);
		display: flex;
		justify-content: space-between;
		margin-right: 75px;
	}
	.header_menu li a{
		font-size: 11px;
		font-weight: 900;
		position: relative;
	}
	.header_menu li a::before{
		content: "";
		position: absolute;
		top: 50%;
		left: -13px;
		width: 10px;
		height: 2px;
		background-color: #333333;
	}
}



/*======================================================================================
FOOTER
======================================================================================*/
footer{
    width: 100%;
    display: block;
    clear: both;
    overflow: hidden;
	margin-top: 80px;
}
.footer_top{
	background-color: #dad7be;
	padding: 18px 0
}
.footer_reserv{
	font-weight: 900;
	text-align: center;
	line-height: 1.4em;
}
.footer_tel{
	font-weight: 900;
	letter-spacing: 8%;
	text-align: center;
}
.footer_tel a{
	height: 33px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer_tel a::before{
	content: "";
	background-image: url("images/f_icon_tel.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 23px;
	height: 33px;
	margin: 5px 10px 0 0;
}
.footer_bottom{
	background-color: #b6b181;
	padding: 35px 0 25px 0;
}
.sns_wrap{
	display: flex;
	justify-content: center;
}
.sns{
	font-size: 14px;
	font-weight: 900;
	color: #FFFFFF;
	display: flex;
	align-items: center;
}
.sns a{
	width: 48px;
	margin: 0 10px
}
.fotter_logo{
	width: 147px;
	margin: 25px auto 0 auto
}
.footer_address{
	color: #FFFFFF;
	font-weight: 900;
	font-size: 15px;
	line-height: 2.0em;
	text-align: center;
	margin-top: 20px;
}
@media screen and (max-width:699px){
	.footer_top_inner{
		width: 96%;
		margin: 0 2%;
	}
	.footer_reserv{
		font-size: 14px;
		border-bottom: 1px #333333 solid;
		padding-bottom: 15px;
	}
	.footer_reserv span{
		font-size: 10px;
	}
	.footer_tel a{
		font-size: 25px;
		margin-top: 20px;
	}
	.sns_wrap{
		flex-direction: column;
		align-items: center;
	}
	.sns:last-of-type{
		margin-top: 20px;
	}
}
@media screen and (min-width:700px) and (max-width:1049px){
	.footer_top_inner{
		display: flex;
		align-items: center;
	}
	.footer_reserv{
		width: 50%;
		border-right: 1px #333333 solid;
		box-sizing: border-box;
		font-size: 15px;
	}
	.footer_reserv span{
		font-size: 11px;
	}
	.footer_tel{
		width: 50%;
	}
	.footer_tel a{
		font-size: 29px;
	}
	.sns:first-of-type{
		margin-right: 15px;
	}
}
@media screen and (min-width:1050px){
	.footer_top_inner{
		width: 1050px;
		margin: 0 auto;
		display: flex;
		align-items: center;
	}
	.footer_reserv{
		width: 50%;
		border-right: 1px #333333 solid;
		box-sizing: border-box;
		font-size: 16px;
	}
	.footer_reserv span{
		font-size: 12px;
	}
	.footer_tel{
		width: 50%;
	}
	.footer_tel a{
		font-size: 33px;
	}
	.sns:first-of-type{
		margin-right: 15px;
	}
}


/*======================================================================================
COMMON
======================================================================================*/
main{
	display: block;
	clear: both;
	width: 100%;
	overflow: hidden;
}
.ttl_jp{
	font-size: 10px;
}
.ttl_jp_white{
	font-size: 10px;
	color: #FFFFFF;
}
.ttl_en{
	color: var(--ocher-color);
	font-weight: 900;
	margin-top: 10px;
}
.ttl_en_white{
	color: #FFFFFF;
	font-weight: 900;
	margin-top: 10px;
}
.tac{
	text-align: center;
}
.btn a{
	width: 320px;
	height: 60px;
	background-color: #d6d1b1;
	border-radius: 50px;
	font-size: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-right: 35px;
	position: relative;
	margin-top: 35px;
}
.btn a::after{
	content: "";
	width: 15px;
	height: 15px;
	background-color: #721fd4;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 7.5px);
	right: 20px;
}
@media screen and (max-width:699px){
	br.pc{
		display: none;
	}
	.contents1050{
		width: 96%;
		margin: 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
	}
	.ttl_en,
	.ttl_en_white{
		font-size: 25px;
	}
}
@media screen and (min-width:700px) and (max-width:1049px){
	br.sp{
		display: none;
	}
	.contents1050{
		width: 96%;
		margin: 0 2%;
		display: block;
		clear: both;
		overflow: hidden;
	}
	.ttl_en,
	.ttl_en_white{
		font-size: 30px;
	}
}
@media screen and (min-width:1050px){
	br.sp{
		display: none;
	}
	.contents1050{
		width: 100%;
		max-width: 1050px;
		margin: 0 auto;
		display: block;
		clear: both;
		overflow: hidden;
	}
	.ttl_en,
	.ttl_en_white{
		font-size: 34px;
	}
}

/*======================================================================================
CONTENTS
======================================================================================*/
.cover{
	width: 100%;
	background-repeat: no-repeat;
	background-position: center top;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cover_contents{
	position: relative;
}
h2{
	color: #FFFFFF;
	font-weight: 900;
	writing-mode: vertical-rl;
}
@media screen and (max-width:699px){
	.cover{
		background-image: url("images/main_img2_sp.jpg");
		height: 650px;
	}
	.cover_contents{
		width: 120px;
		top: -85px;
	}
	h2{
		font-size: 28px;
		position: absolute;
		right: -10px;
		height: 205px;
		line-height: 48px;
		letter-spacing: 6px;
		margin-top: 15px;
	}
}
@media screen and (min-width:700px){
	.cover{
		background-image: url("images/main_img2.jpg");
		height: 875px;
	}
	.cover_contents{
		width: 147px;
		top: -140px;
	}
	h2{
		font-size: 34px;
		position: absolute;
		right: -10px;
		height: 240px;
		line-height: 55px;
		letter-spacing: 6px;
		margin-top: 25px;
	}
}
.inrto{
	width: 100%;
	height: 908px;
	background-image: url("images/bg_wave01.png");
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
}
.intro_txt_wrap{
	writing-mode: vertical-rl;
}
.intro_ttl{
	font-weight: 900;
	line-height: 1.7em;
}
.intro_txt_wrap p{
	line-height: 1.7em;
}
@media screen and (max-width:699px){
	.inrto{
		top: -45px;
		margin-bottom: -45px;
	}
	.intro_inner{
		position: relative;
		width: 94%;
		margin: 0 3%;
		height: 750px;
	}
	.intro_img01{
		display: none;
	}
	.intro_img02{
		display: inline-block;
		vertical-align: top;
		width: 48%;
		margin: 8vw 3% 0 0;
	}
	.intro_img03{
		display: inline-block;
		vertical-align: top;
		width: 48%;
		margin: 13vw 0 0 0;
	}
	.intro_img04{
		display: inline-block;
		vertical-align: top;
		width: 48%;
		margin: 10px 3% 0 0;
	}
	.intro_img05{
		display: inline-block;
		vertical-align: top;
		width: 48%;
	}
	.intro_txt_wrap{
		width: 100%;
		margin: 30px auto 15px auto;
		display: flex;
		flex-direction: column;
    	justify-content: center;
	}
	.intro_ttl{
		font-size: 19px;
	}
	.intro_txt_wrap p{
		font-size: 14px;
		margin-right: 20px;
	}
}
@media screen and (min-width:700px) and (max-width:1204px){
	.inrto{
		top: -60px;
		margin-bottom: -60px;
	}
	.intro_inner{
		position: relative;
		width: 94%;
		margin: 0 3%;
		height: 750px;
	}
	.intro_img01{
		width: 24%;
		position: absolute;
		top: 50px;
		left: 2%;
	}
	.intro_img02{
		width: 30%;
		position: absolute;
		top: 40px;
		left: 32.6%;
	}
	.intro_img03{
		width: 29%;
		position: absolute;
		top: 115px;
		right: 3.5%;
	}
	.intro_img04{
		width: 28%;
		position: absolute;
		bottom: 30px;
		left: 0;
	}
	.intro_img05{
		width: 28.9%;
		position: absolute;
		bottom: 40px;
		right: 0;
	}
	.intro_txt_wrap{
		width: 370px;
		margin: 0 auto;
		padding-top: 28vw;
		position: relative;
		z-index: 1;
		display: flex;
		flex-direction: column;
    	justify-content: center;
	}
	.intro_ttl{
		font-size: 21px;
	}
	.intro_txt_wrap p{
		font-size: 14px;
		margin-right: 25px;
	}
}
@media screen and (min-width:1205px){
	.inrto{
		top: -60px;
		margin-bottom: -60px;
	}
	.intro_inner{
		position: relative;
		width: 1205px;
		margin: 0 auto;
		height: 750px;
	}
	.intro_img01{
		width: 298px;
		position: absolute;
		top: 50px;
		left: 30px;
	}
	.intro_img02{
		width: 368px;
		position: absolute;
		top: 40px;
		left: 393px;
	}
	.intro_img03{
		width: 353px;
		position: absolute;
		top: 115px;
		right: 43px;
	}
	.intro_img04{
		width: 339px;
		position: absolute;
		bottom: 30px;
		left: 0;
	}
	.intro_img05{
		width: 349px;
		position: absolute;
		bottom: 40px;
		right: 0;
	}
	.intro_txt_wrap{
		width: 385px;
		margin: 0 auto;
		padding-top: 350px;
		display: flex;
		flex-direction: column;
    	justify-content: center;
	}
	.intro_ttl{
		font-size: 23px;
	}
	.intro_txt_wrap p{
		font-size: 15px;
		margin-right: 25px;
	}
}
.enjoy{
	width: 100%;
	display: block;
	clear: both;
	background-color: #eaf3e5;
	overflow: hidden;
	padding-top: 40px;
	background-image: url("images/bg_scenery.png");
	background-repeat: no-repeat;
	background-position: bottom center;
}
.enjoy_ttl{
	font-weight: 900;
	line-height: 1.5em;
}
.enjoy_txt{
	font-size: 11px;
	line-height: 2.2em;
	margin-top: 15px;
}
@media screen and (max-width:699px){
	.enjoy{
		padding-bottom: 150px;
	}
	.enjoy_box:nth-of-type(3){
		margin-top: 60px;
	}
	.enjoy_box:nth-of-type(4){
		margin-top: 40px;
	}
	.enjoy_img01{
		width: 90%;
		margin-right: 10%;
	}
	.enjoy_img02{
		width: 90%;
		margin-left: 10%;
	}
	.enjoy_txtbox{
		width: 90%;
		aspect-ratio: 469 / 358;
		background-image: url("images/enjoy_txt_bg.png");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: contain;
		margin: 40px 5% 0 5%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.enjoy_txtbox_inner{
		width: 70%;
	}
	.enjoy_ttl{
		font-size: 18px;
	}
	.enjoy_txt{
		font-size: 10px;
	}
	.btn a{
		width: 100%;
		margin-top: 20px;
	}
}
@media screen and (min-width:700px) and (max-width:1049px){
	.enjoy{
		padding-bottom: 310px;
	}
	.enjoy_box:nth-of-type(3){
		display: flex;
		align-items: center;
		margin-top: 80px;
	}
	.enjoy_box:nth-of-type(4){
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		margin-top: 45px;
	}
	.enjoy_img01 img,
	.enjoy_img02 img{
		display: none;
	}
	.enjoy_img01,
	.enjoy_img02{
		width: 40%;
		height: 400px;
		/*aspect-ratio: 950 / 614;*/
		background-repeat: no-repeat;
		background-size: cover;
	}
	.enjoy_img01{
		background-image: url("images/enjoy_img01.png");
		background-position: right top;
	}
	.enjoy_img02{
		background-image: url("images/enjoy_img02.png");
		background-position: left top;
	}
	.enjoy_txtbox{
		width: 50%;
		aspect-ratio: 469 / 358;
		background-image: url("images/enjoy_txt_bg.png");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: contain;
		margin: 0 5%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.enjoy_txtbox_inner{
		width: 70%;
	}
	.enjoy_ttl{
		font-size: 20px;
	}
	.btn a{
		width: 100%;
	}
}
@media screen and (min-width:1050px){
	.enjoy{
		padding-bottom: 310px;
	}
	.enjoy_box:nth-of-type(3){
		display: flex;
		align-items: center;
		margin-top: 100px;
	}
	.enjoy_box:nth-of-type(4){
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		margin-top: 55px;
	}
	.enjoy_img01 img,
	.enjoy_img02 img{
		display: none;
	}
	.enjoy_img01,
	.enjoy_img02{
		width: 49%;
		height: 614px;
		/*aspect-ratio: 950 / 614;*/
		background-repeat: no-repeat;
	}
	.enjoy_img01{
		background-image: url("images/enjoy_img01.png");
		background-position: right top;
	}
	.enjoy_img02{
		background-image: url("images/enjoy_img02.png");
		background-position: left top;
	}
	.enjoy_txtbox{
		width: 469px;
		height: 358px;
		background-image: url("images/enjoy_txt_bg.png");
		background-repeat: no-repeat;
		background-position: center top;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.enjoy_txtbox_inner{
		width: 325px;
	}
	.enjoy_ttl{
		font-size: 23px;
	}
}
.enjoy_list{
	display: flex;
	justify-content: space-between;
}
.enjoy_list li:nth-of-type(even){
	margin-top: 50px;
}
.enjoy_list_ttl{
	width: 90%;
	font-weight: 900;
	line-height: 1.5em;
	margin: 25px 5% 0 5%;
}
.enjoy_list p{
	width: 90%;
	font-size: 11px;
	line-height: 2.0em;
	margin: 20px 5% 0 5%;
}
.map{
	margin-top: 85px;
}
@media screen and (max-width:699px){
	.enjoy2{
		margin-top: -80px;
	}
	.enjoy_list{
		flex-wrap: wrap
	}
	.enjoy_list li{
		width: 47%;
		margin-bottom: 40px;
	}
	.enjoy_list li:nth-of-type(3),
	.enjoy_list li:nth-of-type(4){
		margin-bottom: 0;
	}
	.enjoy_list_ttl{
		font-size: 15px;
	}
	.map_img{
		width: 96%;
		margin: 50px 2% 0 2%;
	}
}
@media screen and (min-width:700px) and (max-width:1049px){
	.enjoy2{
		margin-top: -55px;
	}
	.enjoy_list li{
		width: 22%;
	}
	.enjoy_list_ttl{
		font-size: 16px;
		text-align: center;
	}
	.map_img{
		width: 96%;
		margin: 50px 2% 0 2%;
	}
}
@media screen and (min-width:1050px){
	.enjoy2{
		margin-top: -55px;
	}
	.enjoy_list li{
		width: 230px;
	}
	.enjoy_list_ttl{
		font-size: 19px;
		text-align: center;
	}
	.map_img{
		max-width: 1270px;
		padding: 0 20px;
		margin: 50px auto 0 auto;
	}
}
.service{
	width: 100%;
	display: block;
	clear: both;
	background-color: #b1c26e;
	overflow: hidden;
	background-image: url("images/bg_triangle.png");
	background-repeat: no-repeat;
	background-position: top center;
	padding: 45px 0 60px 0;
	margin-top: 85px;
}
.service_list li{
	background-color: #FFFFFF;
	font-weight: 900;
}
.service_list_ttl{
	background-color: #807f38;
	color: #FFFFFF;
	text-align: center;
	padding: 10px 0;
}
.service_list_price{
	display: flex;
	align-items: center;
	width: 100%;
	border-bottom: 1px #333333 dashed;
	padding-bottom: 5px;
}
.service_list_price dd span{
	font-size: 11px;
}
.service_list_bath{
	display: flex;
	justify-content: space-between;
}
.service_list_bath_r dl{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px #333333 dashed;
	padding-bottom: 5px;
}
.service_list_bath_r dl:last-of-type{
	margin-top: 15px;
}
.service_list_bath_r dl dt{
	color: #807f38;
	width: 25%;
}
.service_list_bath_r dl dd{
	width: 75%;
	display: flex;
	flex-wrap: wrap;
}
.service_list_bath_r dl dd .time{
	width: 48%;
}
.service_list_bath_r dl dd .pricr{
	width: 52%;
}
.service_list_bath_r dl dd span{
	width: 100%;
}
.service_list_bath_r > p{
	font-size: 12px;
	line-height: 1.7em;
	margin-top: 15px;
}
.service_list li > p{
	text-align: center;
	line-height: 2.0em;
}
@media screen and (max-width:699px){
	.service_list li{
		width: 100%;
		border-radius: 10px;
		padding: 0 3% 20px 3%;
		margin-top: 55px;
	}
	.service_list li:first-of-type{
		margin-top: 70px;
	}
	.service_list_ttl{
		max-width: 200px;
		width: 45%;
		font-size: 13px;
		margin: 0 auto;
		position: relative;
    	top: -20px;
	}
	.service_list_price{
		max-width: 100%;
		width: 360px;
		margin: 20px auto 0 auto;
		font-size: 14px;
	}
	.service_list_price dt{
		width: 32%;
		text-align: right;
	}
	.service_list_price dd{
		width: 68%;
		text-align: right;
	}
	.service_list_bath_img{
		width: 34%;
	}
	.service_list_bath_r{
		width: 60%;
	}
	.service_list_bath_r dl dt{
		font-size: 10px;
	}
	.service_list_bath_r dl dd{
		font-size: 11px;
	}
	.service_list_bath_r dl dd span{
		font-size: 10px;
	}
	.service_list li > p{
		font-size: 12px;
	}
}
@media screen and (min-width:700px) and (max-width:1049px){
	.service_list{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.service_list li{
		width: 48%;
		border-radius: 15px;
		padding: 0 3% 20px 3%;
		margin-top: 55px;
	}
	.service_list li:nth-of-type(1),
	.service_list li:nth-of-type(2){
		margin-top: 70px;
	}
	.service_list_ttl{
		max-width: 200px;
		width: 45%;
		font-size: 14px;
		margin: -20px auto 30px auto;
	}
	.service_list_price{
		max-width: 100%;
		width: 360px;
		margin: 20px auto 0 auto;
		font-size: 14px;
	}
	.service_list_price dt{
		width: 32%;
		text-align: right;
	}
	.service_list_price dd{
		width: 68%;
		text-align: right;
	}
	.service_list_bath_img{
		width: 34%;
	}
	.service_list_bath_r{
		width: 60%;
	}
	.service_list_bath_r dl dt{
		font-size: 1.25vw;
	}
	.service_list_bath_r dl dd{
		font-size: 1.35vw;
	}
	.service_list_bath_r dl dd span{
		font-size: 1.13vw;
	}
	.service_list li > p{
		font-size: 13px;
	}
}
@media screen and (min-width:1050px){
	.service_list{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.service_list li{
		width: 500px;
		border-radius: 20px;
		padding: 0 25px 20px 25px;
		margin-top: 55px;
	}
	.service_list li:nth-of-type(1),
	.service_list li:nth-of-type(2){
		margin-top: 70px;
	}
	.service_list_ttl{
		width: 200px;
		font-size: 19px;
		margin: -20px auto 30px auto;
	}
	.service_list_price{
		width: 360px;
		margin: 20px auto 0 auto;
		font-size: 19px;
	}
	.service_list_price dt{
		width: 115px;
		text-align: right;
	}
	.service_list_price dd{
		width: calc(100% - 115px);
		text-align: right;
	}
	.service_list_bath_img{
		width: 157px;
	}
	.service_list_bath_r{
		width: 270px;
	}
	.service_list_bath_r dl dt{
		font-size: 13px;
	}
	.service_list_bath_r dl dd{
		font-size: 14px;
	}
	.service_list_bath_r dl dd span{
		font-size: 12px;
	}
	.service_list li > p{
		font-size: 15px;
	}
}
.note_ttl{
	font-weight: 900;
	margin-top: 35px;
}
.note_txt{
	margin-top: 20px;
}
.note_list{
	margin-top: 20px;
	border-bottom: 1px #333333 dashed;
	padding-bottom: 25px;
}
.note_list:first-of-type{
	margin-top: 50px;
}
.note_list p{
	font-size: 12px;
	line-height: 1.7em;
	margin-top: 20px;
}
.note_list ul{
	margin-left: 1em;
}
.note_list ul li{
	font-size: 12px;
	line-height: 1.7em;
}
.note_list ul li:first-of-type{
	margin-top: 20px;
}
.note_list ul li::before{
	content: "・";
	margin-left: -1em;
}
@media screen and (max-width:699px){
	.note_ttl{
		font-size: 17px;
		text-align: center;
	}
	.note_list{
		display: flex;
		align-items: flex-start;
	}
	.note_list dt{
		width: 65px;
		margin-right: 25px;
	}
	.note_list dd{
		width: calc(100% - 90px);
		font-size: 16px;
		padding-top: 20px;
	}

}
@media screen and (min-width:700px) and (max-width:1049px){
	.note_ttl{
		font-size: 20px;
		text-align: center;
	}
	.note_txt{
		text-align: center;
	}
	.note_list{
		display: flex;
		align-items: flex-start;
	}
	.note_list dt{
		width: 89px;
		margin-right: 31px;
	}
	.note_list dd{
		width: calc(100% - 120px);
		font-size: 15px;
		padding-top: 10px;
	}
}
@media screen and (min-width:1050px){
	.note_ttl{
		font-size: 23px;
		text-align: center;
	}
	.note_txt{
		text-align: center;
	}
	.note_list{
		display: flex;
		align-items: flex-start;
	}
	.note_list dt{
		width: 89px;
		margin-left: 61px;
		margin-right: 35px;
	}
	.note_list dd{
		width: calc(100% - 185px);
		font-size: 16px;
		padding-top: 10px;
	}
}
.otherservice{
	width: 100%;
	display: block;
	clear: both;
	overflow: hidden;
	background-color: #d2ddaf;
	background-image: url("images/otherservice_deer.png");
	background-repeat: no-repeat;
	padding: 80px 0 135px 0;
	margin-top: 70px;
}
.ot_txtttl{
	font-weight: 900;
	padding-top: 50px;
}
.os_txt{
	font-weight: 900;
	line-height: 1.8em;
	margin-top: 20px;
}
.sdgs{
	display: flex;
	align-items: center;
	margin-top: 55px;
}
.sdgs_icon{
	margin-right: 25px;
}
.sdgs p{
	font-weight: 900;
}
.base_note{
	font-weight: 900;
	margin-top: 20px;
}
.os_contents .btn a{
	width: 320px;
}
@media screen and (max-width:699px){
	.otherservice{
		background-image: none;
	}
	.os_contents{
		width: 96%;
		margin: 0 2%;
	}
	.ot_txtttl{
		font-size: 21px;
	}
	.os_txt{
		font-size: 14px;
	}
	.sdgs_icon{
		width: 110px;
	}
	.sdgs p{
		font-size: 14px;
	}
	.base_note{
		font-size: 12px;
	}
	.os_contents .btn{
		display: flex;
		justify-content: center;
	}
}
@media screen and (min-width:700px) and (max-width:1279px){
	.otherservice{
		background-position: left -300px center;
	}
	.os_contents{
		width: 48%;
		margin: 0 2% 0 50%;
	}
	.ot_ttl{
		float: left;
	}
	.ot_txtttl{
		display: block;
		clear: both;
		font-size: 21px;
	}
	.os_txt{
		font-size: 14px;
	}
	.sdgs_icon{
		width: 110px;
	}
	.sdgs p{
		font-size: 14px;
	}
	.base_note{
		font-size: 12px;
	}
}
@media screen and (min-width:1280px){
	.otherservice{
		background-position: left center;
	}
	.os_contents{
		width: calc(50% - 20px);
		margin: 0 20px 0 50%;
	}
	.ot_ttl{
		float: left;
	}
	.ot_txtttl{
		display: block;
		clear: both;
		font-size: 23px;
	}
	.os_txt{
		font-size: 15px;
	}
	.sdgs_icon{
		width: 110px;
	}
	.sdgs p{
		font-size: 15px;
	}
	.base_note{
		font-size: 12px;
	}
}
.jerky_list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.jerky_list li{
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	aspect-ratio: 1 / 1;
	color: #FFFFFF;
	font-weight: 900;
	line-height: 1.3em;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.jerky_list li:nth-of-type(1){
	background-image: url("images/otherservice_jerky01.png");
}
.jerky_list li:nth-of-type(2){
	background-image: url("images/otherservice_jerky02.png");
}
.jerky_list li:nth-of-type(3){
	background-image: url("images/otherservice_jerky03.png");
}
.jerky_list li:nth-of-type(4){
	background-image: url("images/otherservice_jerky04.png");
}
.jerky_list li:nth-of-type(5){
	background-image: url("images/otherservice_jerky05.png");
}
.jerky_list li:nth-of-type(6){
	background-image: url("images/otherservice_jerky06.png");
}
@media screen and (max-width:699px){
	.jerky{
		transform: translateY(-25%);
	}
	.jerky_list li{
		width: 32%;
		font-size: 3.7vw;
	}
	.jerky_list li:nth-of-type(4),
	.jerky_list li:nth-of-type(5),
	.jerky_list li:nth-of-type(6){
		margin-top: 15px;
	}
	.jerky_list li span{
		font-size: 2.7vw;
	}
}
@media screen and (min-width:700px) and (max-width:1049px){
	.jerky{
		transform: translateY(-50%);
	}
	.jerky_list li{
		width: 15%;
		font-size: 1.7vw;
	}
	.jerky_list li span{
		font-size: 1.2vw;
	}
}
@media screen and (min-width:1050px){
	.jerky{
		transform: translateY(-50%);
	}
	.jerky_list li{
		width: 155px;
		font-size: 18px;
	}
	.jerky_list li span{
		font-size: 12px;
	}
}
.blueberry{
	width: 100%;
	background-repeat: no-repeat;
	background-position: top center;
	margin-top: 20px;
}
.blueberry .contents1050{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;	
}
.blueberry_txt{
	color: #FFFFFF;
	font-weight: 900;
	line-height: 1.9em;
	margin-top: 25px;
}
.blueberry .btn a{
	width: 320px;
}
.blueberry_list .contents1050 ul{
	display: flex;
}
.blueberry_list_ttl{
	color: var(--ocher-color);
	font-weight: 900;
	text-align: center;
	line-height: 1.2em;
	margin-top: 30px;
}
.blueberry_list_txt{
	font-weight: 900;
	line-height: 2.0em;
	margin-top: 15px;
}
@media screen and (max-width:699px){
	.blueberry{
		height: 600px;
		background-image: url("images/blueberry_mainimg_sp.jpg");
	}
	.blueberry .contents1050{
		height: 600px;
	}
	.blueberry_txt{
		font-size: 13px;
	}
	.blueberry_list{
		transform: translateY(-10%);
	}
	.blueberry_list .contents1050 ul{
		justify-content: center;
		flex-wrap: wrap;
	}
	.blueberry_list .contents1050 ul li{
		width: 47%;
	}
	.blueberry_list .contents1050 ul li:first-of-type{
		margin-right: 6%;
	}
	.blueberry_list .contents1050 ul li:last-of-type{
		margin-top: 30px;
	}
	.blueberry_list_ttl{
		font-size: 16px;
	}
}
@media screen and (min-width:700px) and (max-width:1049px){
	.blueberry{
		height: 884px;
		background-image: url("images/blueberry_mainimg.jpg");
	}
	.blueberry .contents1050{
		height: 884px;
	}
	.blueberry_txt{
		font-size: 14px;
		text-align: center;
	}
	.blueberry_list{
		transform: translateY(-20%);
	}
	.blueberry_list .contents1050 ul{
		justify-content: space-between;
	}
	.blueberry_list .contents1050 ul li{
		width: 28.8%;
	}
	.blueberry_list_ttl{
		font-size: 20px;
	}
	.blueberry_list_txt{
		font-size: 13px;
	}
}
@media screen and (min-width:1050px){
	.blueberry{
		height: 884px;
		background-image: url("images/blueberry_mainimg.jpg");
	}
	.blueberry .contents1050{
		height: 884px;
	}
	.blueberry_txt{
		font-size: 15px;
		text-align: center;
	}
	.blueberry_list{
		margin-top: -125px;
	}
	.blueberry_list .contents1050 ul{
		justify-content: space-between;
	}
	.blueberry_list .contents1050 ul li{
		width: 303px;
	}
	.blueberry_list .contents1050 ul li:first-of-type .blueberry_list_img{
		width: 278px;
		margin: 0 auto;
	}
	.blueberry_list_ttl{
		font-size: 23px;
	}
	.blueberry_list_txt{
		font-size: 13px;
	}
}
.owner{
	width: 100%;
	min-height: 641px;
	background-image: url("images/bg_wave02.png");
	background-repeat: no-repeat;
	background-position: top center;
	display: flex;
	align-items: center;
}
.owner_inner{
	clear: both;
	overflow: hidden;
	display: flex;
}
.owner_ttl_wrap{
	display: flex;
	align-items: flex-end;
}
.owner_ttl_wrap .ttl_en{
	margin-right: 15px;
}
.owner_ttl_wrap .ttl_jp{
	line-height: 1;
}
.owner_subttl{
	font-weight: 900;
	line-height: 1.5em;
	margin-top: 20px;
}
.owner_txtbox p{
	font-size: 11px;
	line-height: 2.3em;
	margin-top: 10px;
}
@media screen and (max-width:699px){
	.owner_inner{
		width: 96%;
		margin: 0 2%;
		flex-direction: column-reverse;
	}
	.owner_img{
		width: 86%;
		margin: 30px 7% 0 7%;
	}
	.owner_subttl{
		font-size: 18px;
	}
}
@media screen and (min-width:700px) and (max-width:999px){
	.owner_inner{
		width: 96%;
		margin: 0 2%;
		justify-content: space-between;
		align-items: center;
	}
	.owner_img{
		width: 46.8%;
	}
	.owner_txtbox{
		width: 44%;
	}
	.owner_subttl{
		font-size: 20px;
	}
}
@media screen and (min-width:1000px){
	.owner{
		margin-top: 85px;
	}
	.owner_inner{
		width: 1000px;
		margin: 0 auto;
		justify-content: space-between;
		align-items: center;
	}
	.owner_img{
		width: 468px;
	}
	.owner_txtbox{
		width: 440px;
	}
	.owner_subttl{
		font-size: 23px;
	}
}
.access{
	margin-top: 80px;
}
.address{
	font-weight: 900;
	line-height: 2.0em;
	text-align: center;
	margin-top: 35px;
}
.movie_wrap{
	margin-top: 30px;
}
.movie_map{
	position: relative;
}
.movie_map iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.movie_note{
	color: #000000;
	font-weight: 900;
	line-height: 1.8em;
}
.movie_note span{
	color: #a60000;
}
.movie video{
	width: 100%;
	height: auto;
	display: block;
}
@media screen and (max-width:699px){
	.address{
		font-size: 14px;
	}
	.movie_map{
		width: 100%;
		height: 400px;
	}
	.movie_box{
		width: 100%;
		margin-top: 40px;
	}
	.movie_note{
		font-size: 13px;
	}
	.movie_note span{
		font-size: 19px;
	}
	.movie{
		margin-top: 20px;
	}
}
@media screen and (min-width:700px) and (max-width:1049px){
	.address{
		font-size: 15px;
	}
	.movie_wrap{
		display: flex;
		justify-content: space-between;
	}
	.movie_map{
		width: 47%;
		height: auto;
	}
	.movie_box{
		width: 47%;
	}
	.movie_note{
		font-size: 15px;
	}
	.movie_note span{
		font-size: 21px;
	}
	.movie{
		margin-top: 45px;
	}
}
@media screen and (min-width:1050px){
	.address{
		font-size: 15px;
	}
	.movie_wrap{
		display: flex;
		justify-content: space-between;
	}
	.movie_map{
		width: 480px;
		height: auto;
	}
	.movie_box{
		width: 480px;
	}
	.movie_note{
		font-size: 17px;
	}
	.movie_note span{
		font-size: 24px;
	}
	.movie{
		margin-top: 55px;
	}
}








