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

/* ===================================================
	Base CSS
====================================================== */
body {
	min-width: 1200px;
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	color: #232323;
	letter-spacing: 0.1em;
	background: #fff;
	text-size-adjust: 100%;
}
header,
nav,
footer,
section,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
span,
em,
strong,
a {
	box-sizing: border-box;
}
a {
	color: #232323;
	text-decoration: none;
	outline: none;
	transition: opacity 0.5s;
}
a.link_txt_line {
	text-decoration: underline;
}
button {
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	color: #232323;
	appearance: none;
	border: none;
	outline: none;
	transition: opacity 0.5s;
}
.ofi {
	object-fit: cover;
}
.br_sp,
.view_sp {
	display: none;
}

@media screen and (hover: hover) and (min-width: 601px) {
	a:hover,
	button:hover {
		opacity: 0.6;
	}
	a.link_txt:hover {
		text-decoration: underline;
		opacity: 1;
	}
	a.link_txt_line:hover {
		text-decoration: none;
		opacity: 1;
	}
}
@media screen and (max-width: 600px) {
	body {
		min-width: 0;
		font-size: 14px;
	}
	input,
	select {
		font-size: 16px;
	}
	.br_sp,
	span.view_sp {
		display: inline;
	}
	.view_sp {
		display: block;
	}
	.br_pc,
	.view_pc {
		display: none !important;
	}
}

/* ---------------------------------------------------
	Base Layout
------------------------------------------------------ */

/* コンテンツ幅 */
.inner_sm {
	width: 810px;
	margin: 0 auto;
}
.inner_md {
	width: 1200px;
	max-width: 96%;
	margin: 0 auto;
}

@media screen and (max-width: 600px) {
	.inner_sm,
	.inner_md {
		width: 86%;
	}
}

/* リスト用パーツ（数字） */
.cmn_list_num_01 {
	counter-reset: num;
}
.cmn_list_num_01 &gt; li {
	padding: 0 0 0 1.5em;
	text-indent: -1.5em;
	counter-increment: num;
}
.cmn_list_num_01 &gt; li::before {
	content: counter(num) ". ";
}
.cmn_list_num_01 &gt; li li::before {
	content: "(" counter(num) ")";
}

/* リスト用パーツ（ドット） */
.cmn_list_dot_01 &gt; li {
	padding: 0 0 0 1em;
	text-indent: -1em;
}
.cmn_list_dot_01 &gt; li::before {
	content: "・";
}

/* リスト用パーツ（米印） */
.cmn_list_note_01 {
	padding: 0 0 0 1em;
	text-indent: -1em;
}
.cmn_list_note_01 &gt; li::before {
	content: "※";
}

/* 段落要素用パーツ（米印） */
.cmn_note_01 {
	padding: 0 0 0 1em;
	text-indent: -1em;
}
.cmn_note_01::before {
	content: "※";
}

/* 下線付きリンク */
.cmn_link_line {
	position: relative;
	z-index: 0;
	padding: 5px 0;
	border-bottom: 1px solid #232323;
}
.cmn_link_line::before {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	content: "";
	background: #ccc;
	transition: transform 0.5s;
	transform: scale(0, 1);
	transform-origin: right top;
}

@media screen and (hover: hover) and (min-width: 601px) {
	.cmn_link_line:hover {
		opacity: 1;
	}
	.cmn_link_line:hover::before {
		transform: scale(1, 1);
		transform-origin: left top;
	}
}
@media screen and (max-width: 600px) {
	.cmn_link_line {
		font-size: 12px;
	}
}

/* 矢印付きリンク */
.cmn_link_arrow {
	display: inline-flex;
	align-items: center;
}
.cmn_link_arrow::after {
	width: 19px;
	height: 19px;
	margin: 0 0 0 15px;
	content: "";
	background: #242424 url(../img/arrow_wht.svg) no-repeat center center;
	border-radius: 50%;
}

/* 別窓アイコン付きリンク */
.cmn_link_ex {
	display: inline-flex;
	align-items: center;
}
.cmn_link_ex::after {
	flex-shrink: 0;
	width: 19px;
	height: 19px;
	margin: 0 0 0 5px;
	content: "";
	background: url(../img/ico_site.svg) no-repeat center center;
	background-size: 100% auto;
}

/* ページ内リンク：メインイメージ下 */
.cmn_cnav01 {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 15px 2%;
	border-image-source: linear-gradient(#232323, #232323); /* 色 */
	border-image-slice: 0 fill; /* 変更しない */
	border-image-outset: 0 100vw; /* どれだけはみ出すか上下左右 */
}
.cmn_cnav01 li {
	display: flex;
	align-items: center;
	line-height: 1.6;
}
.cmn_cnav01 li::before {
	flex-shrink: 0;
	align-self: flex-start;
	width: 15px;
	height: 15px;
	margin: 0.3em 0 0;
	content: "";
	background: rgba(255, 255, 255, 0.2) url(../img/cnav_arrow.svg) no-repeat 45% center;
	border-radius: 50%;
	transform: rotate(-90deg);
}
.cmn_cnav01 li + li {
	margin-left: 25px;
}
.cmn_cnav01 a {
	margin: 0 0 0 10px;
	color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 600px) {
	.cmn_cnav01 {
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 20px 7% 5px;
	}
	.cmn_cnav01 li {
		width: 49%;
		margin: 0 0 15px;
	}
	.cmn_cnav01 li + li {
		margin-left: 0;
	}
	.cmn_cnav01 a {
		font-size: 13px;
		color: rgba(255, 255, 255, 0.7);
	}
}

/* ページ内リンク：シンプル */
.cmn_cnav02 {
	display: flex;
	justify-content: center;
}
.cmn_cnav02 li {
	padding: 0 25px;
	line-height: 1;
	color: rgba(35, 35, 35, 0.7);
}
.cmn_cnav02 li + li {
	border-left: 1px solid rgba(35, 35, 35, 0.7);
}
.cmn_cnav02 a {
	color: rgba(35, 35, 35, 0.7);
}

@media screen and (max-width: 600px) {
	.cmn_cnav02 {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.cmn_cnav02 li {
		width: 50%;
		padding: 0 15px;
		margin: 0 0 15px;
		font-size: 12px;
		line-height: 1.6;
		text-align: center;
	}
	.cmn_cnav02 li:nth-child(2n + 1) {
		border-left: none;
	}
}

/* リード */
.cmn_lead {
	padding: 85px 0 100px;
	text-align: center;
}
.cmn_lead .cap {
	margin: 0 0 20px;
	font-size: 22px;
	line-height: 1.6;
	color: rgba(35, 35, 35, 0.5);
	letter-spacing: 0.2em;
}

@media screen and (max-width: 600px) {
	.cmn_lead {
		padding: 60px 0;
		text-align: left;
	}
	.cmn_lead .cap {
		font-size: 18px;
	}
}

/* 見出し */
.cmn_tit01 {
	display: flex;
	flex-direction: column;
	text-align: center;
}
.cmn_tit01 .en {
	margin: 0 0 10px;
	font-size: 12px;
	color: rgba(35, 35, 35, 0.5);
	letter-spacing: 0.5em;
}
.cmn_tit01 .ja {
	font-size: 30px;
	line-height: 1.4;
}

@media screen and (max-width: 600px) {
	.cmn_tit01 .en {
		margin: 0 0 5px;
		font-size: 10px;
		letter-spacing: 0.3em;
	}
	.cmn_tit01 .ja {
		font-size: 22px;
		line-height: 1.4;
	}
}

/* 丸背景の装飾文字 */
.cmn_circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 95px;
	height: 95px;
	padding: 0.5em 0 0 0.5em;
	font-size: 12px;
	color: #689462;
	text-align: center;
	letter-spacing: 0.5em;
	background: #fff;
	border: 1px solid #8db788;
	border-radius: 50%;
}
.cmn_circle.bg_grn {
	position: relative;
	z-index: 0;
	color: #fff;
	background: url(../img/bg01.jpg) center center;
	border: none;
}
.cmn_circle.bg_grn::before {
	position: absolute;
	top: -4px;
	left: -4px;
	width: 100%;
	height: 100%;
	content: "";
	border: 1px solid #aec9aa;
	border-radius: 50%;
}

@media screen and (max-width: 600px) {
	.cmn_circle {
		width: 70px;
		height: 70px;
		padding: 0.3em 0 0 0.3em;
		font-size: 10px;
		letter-spacing: 0.3em;
	}
	.cmn_circle.bg_grn::before {
		top: -3px;
		left: -3px;
	}
}

/* 表形式dl */
.cmn_info_table &gt; div {
	display: flex;
	border-bottom: 1px solid #e1e1e1;
}
.cmn_info_table &gt; div:first-child {
	border-top: 1px solid #e1e1e1;
}
.cmn_info_table &gt; div &gt; dt,
.cmn_info_table &gt; div &gt; dd {
	box-sizing: border-box;
	padding: 25px 30px;
}
.cmn_info_table &gt; div &gt; dt {
	flex-shrink: 0;
	color: rgba(35, 35, 35, 0.7);
	background: #f4f4f4;
}

@media screen and (max-width: 600px) {
	.cmn_info_table &gt; div &gt; dt,
	.cmn_info_table &gt; div &gt; dd {
		padding: 15px 10px;
	}
	.cmn_info_table &gt; div &gt; dd {
		font-size: 13px;
	}
}

/* 最上部に画像100%のsection */
.cmn_box_lg .img.main + * {
	padding: 55px 0 0;
}
.cmn_box_lg .img.main:has(.slick-dots) + * {
	padding-top: 80px;
}
.cmn_box_lg .img.main .ofi {
	width: 100%;
}
.cmn_box_lg .img.main .slick-dots {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

@media screen and (max-width: 600px) {
	.cmn_box_lg .img.main + * {
		padding-top: 40px;
	}
	.cmn_box_lg .img.main:has(.slick-dots) + * {
		padding-top: 60px;
	}
	.cmn_box_lg .img.main .slick-dots {
		bottom: -25px;
	}
}

/* 背景つき flexbox */
.cmn_flex_box {
	position: relative;
	z-index: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 65px 65px 70px;
	background: #f4f4f4;
}
.cmn_flex_box:has(&gt; .box_tit) {
	align-items: flex-start;
	padding-top: 40px;
}
.cmn_flex_box.bg_wht {
	background: #fff;
}
.cmn_flex_box .img {
	order: 2;
	max-width: 45%;
}
.cmn_flex_box .txt {
	width: 530px;
	max-width: 50%;
}
.cmn_flex_box &gt; .box_tit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0 0 30px;
}
.cmn_flex_box &gt; .box_tit .cmn_circle {
	flex-shrink: 0;
	margin: 0 20px 0 0;
}
.cmn_flex_box &gt; .box_tit .ja {
	font-size: 22px;
	letter-spacing: 0.2em;
}
.cmn_flex_box .txt .box_tit {
	margin: 0 0 15px;
}
.cmn_flex_box .txt .box_tit .cmn_circle {
	position: absolute;
	top: -25px;
	left: -15px;
	flex-shrink: 0;
}
.cmn_flex_box .txt .box_tit .ja {
	font-size: 22px;
	color: rgba(35, 35, 35, 0.7);
	letter-spacing: 0.2em;
}

@media screen and (max-width: 600px) {
	.cmn_flex_box {
		display: block;
		padding: 10%;
	}
	.cmn_flex_box:has(&gt; .box_tit) {
		padding-top: 10%;
	}
	.cmn_flex_box:has(&gt; .box_tit .cmn_circle) {
		padding-top: 12%;
	}
	.cmn_flex_box .img {
		width: 100%;
		max-width: none;
		margin: 0 0 20px;
	}
	.cmn_flex_box .txt {
		width: auto;
		max-width: none;
		font-size: 13px;
	}
	.cmn_flex_box &gt; .box_tit {
		display: block;
		margin-bottom: 15px;
	}
	.cmn_flex_box &gt; .box_tit .cmn_circle {
		position: absolute;
		top: -25px;
		left: -3vw;
		margin: 0;
	}
	.cmn_flex_box &gt; .box_tit .ja,
	.cmn_flex_box .txt .box_tit .ja {
		display: block;
		font-size: 18px;
		line-height: 1.6;
		text-align: center;
		letter-spacing: 0.1em;
	}
	.cmn_flex_box .txt .box_tit .cmn_circle {
		right: -3vw;
		left: auto;
	}
}

/* プランとかのbox（日帰り・慶事/法事） */
.cmn_plan_box {
	padding: 80px 60px 65px;
	background: #fff;
}
.cmn_plan_box + .cmn_plan_box {
	margin-top: 65px;
}
.cmn_plan_box .plan_tit {
	margin: 0 0 20px;
	font-size: 30px;
}
.cmn_plan_box .plan_tit span {
	display: inline-block;
	padding: 0 20px;
	margin: 0 0 0 25px;
	font-size: 16px;
	color: rgba(35, 35, 35, 0.7);
	vertical-align: middle;
	background: #f4f4f4;
}
.cmn_plan_box .flex_box {
	display: flex;
	justify-content: space-between;
	margin: 0 0 35px;
}
.cmn_plan_box .flex_box .img {
	width: 690px;
}
.cmn_plan_box .flex_box .img .price {
	display: flex;
	align-items: center;
	margin: 40px 0 0;
}
.cmn_plan_box .flex_box .img .price &gt; dt {
	flex-shrink: 0;
	padding: 0 20px;
	margin: 0 15px 0 0;
	color: rgba(35, 35, 35, 0.7);
	border: 1px solid #e1e1e1;
}
.cmn_plan_box .flex_box .img .price &gt; dd {
	font-size: 15px;
}
.cmn_plan_box .flex_box .img .price &gt; dd span {
	font-size: 24px;
}
.cmn_plan_box .flex_box .img &gt; .cmn_note_01 {
	margin: 10px 0 0;
	font-size: 14px;
	color: rgba(35, 35, 35, 0.7);
}
.cmn_plan_box .flex_box .txt {
	width: 325px;
}
.cmn_plan_box .txt .cmn_info_table {
	font-size: 15px;
}
.cmn_plan_box .txt .cmn_info_table:not(:last-child) {
	margin: 0 0 20px;
}
.cmn_plan_box .txt .cmn_info_table &gt; div {
	display: block;
}
.cmn_plan_box .txt .cmn_info_table &gt; div &gt; dt,
.cmn_plan_box .txt .cmn_info_table &gt; div &gt; dd {
	padding: 10px 15px;
}
.cmn_plan_box .txt .cmn_info_table dd dt {
	font-weight: bold;
}
.cmn_plan_box .howto {
	display: flex;
	background: #eaf2e6;
}
.cmn_plan_box .howto &gt; dt,
.cmn_plan_box .howto &gt; dd {
	padding: 25px;
}
.cmn_plan_box .howto &gt; dt {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 160px;
	background: #d4e3cc;
}
.cmn_plan_box .howto &gt; dd {
	flex-grow: 1;
	min-width: 0;
}
.cmn_plan_box .howto &gt; dd .link_txt_line {
	color: #689462;
}
.cmn_plan_box .howto &gt; dd .line {
	text-decoration: underline;
}
.cmn_plan_box .howto &gt; dd:has(.btn_col) {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cmn_plan_box .howto &gt; dd p:has(+ .btn_col) {
	width: 585px;
}
.cmn_plan_box .howto &gt; dd p:has(+ .btn_col ul) {
	width: 330px;
}
.cmn_plan_box .howto &gt; dd .btn_col ul {
	display: flex;
}
.cmn_plan_box .howto &gt; dd .btn_col li + li {
	margin: 0 0 0 10px;
}
.cmn_plan_box .howto &gt; dd .btn_col .btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 250px;
	max-width: 100%;
	height: 100%;
	min-height: 55px;
	padding: 10px;
	font-size: 14px;
	line-height: 1.4;
	color: #fff;
	text-align: center;
	background: #689462;
	border-radius: 999px;
}
.cmn_plan_box .howto &gt; dd .btn_col .btn span span {
	font-size: 16px;
}
.cmn_plan_box .howto &gt; dd .btn_col .tel-link {
	color: #689462;
	background: #fff;
	border: 1px solid #aec9aa;
}
.cmn_plan_box .howto &gt; dd .btn_col .tel-link span span {
	font-size: 18px;
}
.cmn_plan_box .howto &gt; dd .btn_col .cmn_note_01 {
	margin: 10px 0 0;
	font-size: 14px;
	color: #689462;
}

@media screen and (max-width: 600px) {
	.cmn_plan_box {
		padding: 10%;
	}
	.cmn_plan_box + .cmn_plan_box {
		margin-top: 30px;
	}
	.cmn_plan_box .plan_tit {
		margin: 0 0 20px;
		font-size: 18px;
		text-align: center;
	}
	.cmn_plan_box .plan_tit span {
		padding: 0 15px;
		margin-left: 0;
		font-size: 12px;
	}
	.cmn_plan_box .flex_box {
		display: block;
		margin-bottom: 20px;
	}
	.cmn_plan_box .flex_box .img {
		width: auto;
	}
	.cmn_plan_box .flex_box .img .price {
		display: block;
		margin-top: 20px;
	}
	.cmn_plan_box .flex_box .img .price &gt; dt {
		flex-shrink: 0;
		padding: 0 15px;
		margin: 0 0 5px;
		text-align: center;
	}
	.cmn_plan_box .flex_box .img .price &gt; dd {
		font-size: 13px;
	}
	.cmn_plan_box .flex_box .img .price &gt; dd span {
		font-size: 16px;
	}
	.cmn_plan_box .flex_box .img &gt; .cmn_note_01 {
		margin: 10px 0 0;
		font-size: 13px;
	}
	.cmn_plan_box .flex_box .txt {
		width: auto;
		margin: 30px 0 0;
		font-size: 13px;
	}
	.cmn_plan_box .txt .cmn_info_table {
		font-size: 13px;
	}
	.cmn_plan_box .txt .cmn_info_table &gt; div &gt; dt,
	.cmn_plan_box .txt .cmn_info_table &gt; div &gt; dd {
		padding: 10px;
	}
	.cmn_plan_box .txt .cmn_info_table dd dt {
		font-weight: bold;
	}
	.cmn_plan_box .howto {
		display: block;
		font-size: 13px;
	}
	.cmn_plan_box .howto &gt; dt,
	.cmn_plan_box .howto &gt; dd {
		padding: 10px 15px;
	}
	.cmn_plan_box .howto &gt; dt {
		display: block;
		width: auto;
		text-align: center;
	}
	.cmn_plan_box .howto &gt; dd:has(.btn_col) {
		display: block;
		padding-bottom: 20px;
	}
	.cmn_plan_box .howto &gt; dd p:has(+ .btn_col),
	.cmn_plan_box .howto &gt; dd p:has(+ .btn_col ul) {
		width: auto;
		margin: 0 0 15px;
	}
	.cmn_plan_box .howto &gt; dd .btn_col ul {
		display: block;
	}
	.cmn_plan_box .howto &gt; dd .btn_col li {
		width: auto;
	}
	.cmn_plan_box .howto &gt; dd .btn_col li + li {
		margin: 10px 0 0;
	}
	.cmn_plan_box .howto &gt; dd .btn_col .btn {
		min-height: 50px;
		font-size: 12px;
	}
	.cmn_plan_box .howto &gt; dd .btn_col .btn span span {
		font-size: 14px;
	}
	.cmn_plan_box .howto &gt; dd .btn_col .tel-link span span {
		font-size: 16px;
	}
	.cmn_plan_box .howto &gt; dd .btn_col .cmn_note_01 {
		font-size: 12px;
	}
}

/* 背景つき3列リスト */
.cmn_items {
	padding: 90px 90px 30px;
	background: #f4f4f4;
}
.cmn_items.bg_wht {
	background: #fff;
}
.cmn_items ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.cmn_items ul::after {
	width: 310px;
	content: "";
}
.cmn_items li {
	width: 310px;
	margin: 0 0 35px;
	text-align: center;
}
.cmn_items li .txt {
	margin: 20px 0 0;
}
.cmn_items + .cmn_note_01 {
	margin: 10px 0 0;
	font-size: 14px;
	color: rgba(35, 35, 35, 0.7);
	text-align: right;
}

@media screen and (max-width: 600px) {
	.cmn_items {
		padding: 20px 20px 5px;
	}
	.cmn_items ul::after {
		content: none;
	}
	.cmn_items li {
		width: calc((100% - 5px) / 2);
		margin-bottom: 20px;
	}
	.cmn_items li .txt {
		margin-top: 10px;
		font-size: 12px;
		line-height: 1.6;
	}
}

/* slick */
.slick.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.slick .slick-slide div {
	vertical-align: bottom;
}
.slick-dots {
	position: static;
	width: auto;
	height: 6px;
	font-size: 0;
	line-height: 0;
}
.slick-dots li {
	width: 6px;
	height: 6px;
	margin: 0 8px;
}
.slick-dots li button {
	width: 6px;
	height: 0;
	padding: 6px 0 0;
	overflow: hidden;
	background: rgba(35, 35, 35, 0.3);
	border-radius: 50%;
	opacity: 1;
	transition: background-color 0.5s;
}
.slick-dots li button::before {
	content: none;
}
.slick-dots li.slick-active button {
	background: #689462;
}
.slick_thumb .slick-dots {
	display: flex;
	flex-wrap: wrap;
	height: auto;
	margin: 5px 0 0;
}
.slick_thumb .slick-dots li {
	width: 100px;
	height: 64px;
	margin: 0;
}
.slick_thumb .slick-dots li:not(:last-child) {
	margin: 0 5px 0 0;
}
.slick_thumb .slick-dots li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slick_bot:has(.slick-dots) {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px auto 0;
}
.slick_bot .slick-arrow {
	position: relative;
	inset: auto;
	z-index: 0;
	width: 10px;
	height: 0;
	padding: 15px 0 0;
	transform: none;
}
.slick_bot .slick-arrow::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: url(../img/slide_arrow.svg) no-repeat center center;
	opacity: 1;
}
.slick_bot .slick-next {
	order: 2;
}
.slick_bot .slick-next::before {
	transform: scaleX(-1);
}
.slick_bot .slick-dots {
	margin: 0 20px;
}

@media screen and (max-width: 600px) {
	.slick_thumb .slick-dots {
		margin-top: 3px;
	}
	.slick_thumb .slick-dots li {
		width: calc((100% - 12px) / 5);
		height: 9vw;
	}
	.slick_thumb .slick-dots li:not(:last-child) {
		margin-right: 0;
	}
	.slick_thumb .slick-dots li:not(:nth-child(5n)) {
		margin-right: 3px;
	}
}

/* ---------------------------------------------------
	Header
------------------------------------------------------ */

@keyframes fade_nav {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
#g_header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	min-width: 1200px;
	animation: fade_nav ease-in-out 0.7s;
}
#g_header::after {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 200px;
	content: "";
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}

@keyframes fix_opacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes close_nav {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
#g_header.scroll {
	animation: fix_opacity 0.7s both;
}
#g_header.scroll::after {
	content: none;
}
#g_header.close_nav {
	animation: close_nav 0.7s both;
}
#g_header .hd_inner {
	display: flex;
	align-items: center;
	height: 70px;
	padding: 0 70px 0 0;
	font-size: 15px;
	transition: opacity 0.5s;
}
#g_header .hd_inner .fixed {
	display: none;
}
#g_header.scroll .hd_inner {
	background: #fff;
}
#g_header.scroll .hd_inner .fixed {
	display: block;
}
#g_header.scroll .hd_inner .unfixed {
	display: none;
}
#g_header.menu_active .hd_inner {
	opacity: 0;
}
#g_header .hd_inner .logo {
	margin: 15px auto 15px 25px;
}
#g_header.scroll .hd_nav {
	display: flex !important;
	align-items: center;
}
#g_header .hd_nav li {
	padding: 0 10px;
}
#g_header .hd_nav a {
	position: relative;
	z-index: 0;
	padding: 5px 0;
	color: rgba(35, 35, 35, 0.7);
}
#g_header .hd_nav a::after {
	position: absolute;
	right: 50%;
	bottom: 0;
	left: 50%;
	height: 1px;
	content: "";
	background: rgba(35, 35, 35, 0.7);
	transition: right 0.5s, left 0.5s;
}
#g_header .hd_tel .tel-link {
	line-height: 1.4;
	color: #fff;
}
#g_header .hd_tel .tel-link .note {
	display: block;
	font-size: 13px;
}
#g_header .hd_tel .tel-link .num {
	font-size: 22px;
}
#g_header .hd_btns {
	display: flex;
	align-self: stretch;
	margin: 0 0 0 20px;
}
#g_header .hd_btns li {
	position: relative;
	z-index: 0;
}
#g_header .hd_btns li + li::before {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 5;
	width: 1px;
	height: 50px;
	content: "";
	background: #fff;
	transform: translateY(-50%);
}
#g_header .hd_btns a {
	position: relative;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 110px;
	height: 100%;
	color: #fff;
	background: #75a66f;
	transition: background 0.5s;
}
#g_header &gt; .btn_menu {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 110;
	width: 70px;
	height: 70px;
	background: #fff;
}
#g_header &gt; .btn_menu .icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
#g_header &gt; .btn_menu .icon span {
	width: 28px;
	height: 1px;
	background: #9c9c9c;
	transition: opacity 0.5s, transform 0.5s;
}
#g_header &gt; .btn_menu .icon span + span {
	margin: 7px 0 0;
}
#g_header.menu_active &gt; .btn_menu .icon span:first-of-type {
	transform: rotate(45deg);
}
#g_header.menu_active &gt; .btn_menu .icon span:nth-of-type(2) {
	opacity: 0;
}
#g_header.menu_active &gt; .btn_menu .icon span:last-of-type {
	transform: rotate(-45deg);
}
#g_header.menu_active &gt; .btn_menu .icon span + span {
	margin-top: -1px;
}

@media screen and (hover: hover) and (min-width: 601px) {
	#g_header .hd_nav a:hover::after {
		right: 0;
		left: 0;
	}
	#g_header .hd_btns a:hover {
		background: #598d52;
		opacity: 1;
	}
}
@media screen and (max-width: 600px) {
	#g_header {
		min-width: 0;
	}
	#g_header .hd_inner {
		height: 90px;
		padding-right: 85px;
	}
	#g_header .hd_inner .logo {
		margin-left: 7%;
	}
	#g_header .hd_tel .tel-link .view_sp {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 48px;
		height: 60px;
		font-size: 10px;
		letter-spacing: 1px;
	}
	#g_header .hd_tel .tel-link img {
		width: 20px;
		margin: 5px 0;
	}
	#g_header .hd_btns {
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 999;
		flex-direction: row-reverse;
		width: 100%;
		height: 60px;
		margin: 0;
		letter-spacing: 0.05em;
	}
	#g_header .hd_btns li {
		width: 100%;
	}
	#g_header .hd_btns li + li::before {
		content: none;
	}
	#g_header .hd_btns a {
		width: 100%;
		font-size: 13px;
	}
	#g_header .hd_btns a img {
		margin: 0 5px 0 0;
	}
	#g_header .hd_btns .btn_dayplan {
		color: #52784d;
		background: #fff;
	}
	#g_header &gt; .btn_menu {
		position: fixed;
		top: 15px;
		right: 15px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 60px;
		height: 60px;
		font-size: 10px;
		color: #fff;
		background: rgba(0, 0, 0, 0.4);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
	#g_header &gt; .btn_menu .icon {
		width: 23px;
		height: 23px;
		margin: 5px 0;
	}
	#g_header &gt; .btn_menu .icon span {
		width: 23px;
		background: #fff;
	}
	#g_header &gt; .btn_menu .icon span + span {
		margin-top: 5px;
	}
	#g_header &gt; .btn_menu .txt .menu_on {
		display: none;
	}
	#g_header.menu_active &gt; .btn_menu .txt .menu_off {
		display: none;
	}
	#g_header.menu_active &gt; .btn_menu .txt .menu_on {
		display: block;
	}
}

/* ---------------------------------------------------
	G-nav
------------------------------------------------------ */

/* ▼ jquery-dropdown 用のcss設定です ▼
	.pos_fix はjsで自動的に追加される要素です。
	別にgnavを囲むwrapper等を使用する場合はid名が被らないようにしてください。
*/
.pos_fix {
	overflow: hidden;
}

/* ▲ jquery-dropdown 用のcss設定です ▲ */
#g_nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	overflow: auto;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.5s;
}
#g_nav::before {
	position: fixed;
	top: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(0, 0, 0, 0.3);
}
#g_header.menu_active #g_nav {
	pointer-events: auto;
	opacity: 1;
}
#g_nav .inner {
	position: relative;
	z-index: 0;
	width: 600px;
	min-height: 100vh;
	padding: 80px 110px;
	margin: 0 0 0 auto;
	background: #fff;
}
#g_nav .logo {
	margin: 0 0 50px;
	text-align: center;
}
#g_nav .main_nav {
	display: flex;
	justify-content: space-between;
	padding: 0 0 30px;
	border-bottom: 1px solid #e2e2e2;
}
#g_nav .main_nav li + li {
	margin: 20px 0 0;
}
#g_nav .main_nav a {
	color: rgba(35, 35, 35, 0.7);
}
#g_nav .main_nav .child {
	position: relative;
	z-index: 0;
	padding: 0 0 0 17px;
	margin: 10px 0 0;
}
#g_nav .main_nav .child::before {
	position: absolute;
	top: 0;
	left: 6px;
	width: 1px;
	height: 100%;
	content: "";
	background: #e2e2e2;
}
#g_nav .main_nav .child li + li {
	margin: 0;
}
#g_nav .main_nav .child li {
	padding: 10px 0;
	font-size: 14px;
}
#g_nav .main_nav .child a {
	color: rgba(35, 35, 35, 0.7);
}
#g_nav .sub_nav {
	margin: 25px 0 0;
	font-size: 14px;
}
#g_nav .sub_nav li + li {
	margin: 10px 0 0;
}
#g_nav .sub_nav a {
	color: rgba(35, 35, 35, 0.7);
}
#g_nav .reserve_links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 30px 0 0;
}
#g_nav .reserve_links li {
	width: 185px;
}
#g_nav .reserve_links li:last-child {
	width: 100%;
	margin: 15px 0 0;
}
#g_nav .reserve_links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	font-size: 14px;
}
#g_nav .reserve_links .btn_stay {
	color: #fff;
	background: #75a66f;
	transition: background 0.5s;
}
#g_nav .reserve_links .btn_dayplan {
	color: #fff;
	background: #969696;
}
#g_nav .reserve_links .btn_cancel {
	height: 50px;
	color: rgba(35, 35, 35, 0.7);
	background: #f4f4f4;
}
#g_nav .nav_contact {
	margin: 30px 0 0;
	font-size: 14px;
	color: rgba(35, 35, 35, 0.7);
}
#g_nav .nav_contact .tel-link {
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	color: rgba(35, 35, 35, 0.7);
}
#g_nav .nav_contact .tel-link img {
	margin: 0 10px 0 0;
}
#g_nav .nav_contact .tel-link span {
	font-size: 24px;
}

@media screen and (hover: hover) and (min-width: 600px) {
	#g_nav .reserve_links .btn_stay:hover {
		background: #598d52;
		opacity: 1;
	}
}
@media screen and (max-width: 600px) {
	#g_nav::before {
		content: none;
	}
	#g_nav .inner {
		width: auto;
		padding: 15px 7% calc(30px + env(safe-area-inset-bottom));
		margin: 0;
	}
	#g_nav .logo {
		display: flex;
		align-items: center;
		height: 60px;
		margin-bottom: 30px;
		text-align: left;
	}
	#g_nav .main_nav {
		display: block;
		padding: 0;
		border-bottom: none;
	}
	#g_nav .main_nav li {
		border-bottom: 1px solid #e2e2e2;
	}
	#g_nav .main_nav li + li {
		margin: 0;
	}
	#g_nav .main_nav a {
		display: block;
		padding: 10px 15px;
	}
	#g_nav .main_nav .child {
		padding: 0;
		margin: 0;
	}
	#g_nav .main_nav .child::before {
		content: none;
	}
	#g_nav .main_nav .child li {
		padding: 0;
		border-top: 1px dotted #e2e2e2;
		border-bottom: none;
	}
	#g_nav .sub_nav,
	#g_nav .sub_nav li + li {
		margin: 0;
	}
	#g_nav .sub_nav li:not(:last-child) {
		border-bottom: 1px dotted #e2e2e2;
	}
	#g_nav .sub_nav a {
		display: block;
		padding: 10px 15px;
	}
	#g_nav .sub_nav a.cmn_link_ex {
		display: flex;
	}
	#g_nav .reserve_links li {
		width: calc((100% - 10px) / 2);
	}
	#g_nav .reserve_links li:last-child {
		margin-top: 10px;
	}
	#g_nav .nav_contact {
		text-align: center;
	}
	#g_nav .nav_contact .tel-link {
		flex-wrap: wrap;
		justify-content: center;
	}
	#g_nav .nav_contact .tel-link span {
		line-height: 1.4;
	}
	#g_nav .btn_menu {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 150px;
		height: 45px;
		margin: 30px auto 0;
		font-size: 14px;
		color: rgba(35, 35, 35, 0.7);
		letter-spacing: 2px;
		background: #f4f4f4;
		border-radius: 999px;
	}
	#g_nav .btn_menu .icon {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin: 0 10px 0 0;
	}
	#g_nav .btn_menu .icon::before,
	#g_nav .btn_menu .icon::after {
		width: 15px;
		height: 1px;
		content: "";
		background: rgba(35, 35, 35, 0.5);
	}
	#g_nav .btn_menu .icon::before {
		transform: rotate(45deg);
	}
	#g_nav .btn_menu .icon::after {
		margin: -1px 0 0;
		transform: rotate(-45deg);
	}
}

/* ---------------------------------------------------
	Main img
------------------------------------------------------ */
#main_img {
	position: relative;
	z-index: 0;
	width: 100%;
}
#main_img .ofi {
	width: 100%;
	height: 100vh;
}
#main_img .tit {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #fff;
	text-align: center;
}
#main_img .en {
	margin: 0 0 15px;
	font-size: 12px;
	letter-spacing: 10px;
}
#main_img .ja {
	font-size: 32px;
	line-height: 1.4;
	letter-spacing: 0.2em;
}

@media screen and (max-width: 600px) {
	#main_img .ofi {
		height: calc(100svh - 60px);
	}
	#main_img .tit {
		align-items: flex-start;
		justify-content: flex-end;
		padding: 0 30px 60px;
		overflow: hidden;
		text-align: left;
	}
	#main_img .tit::after {
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: -1;
		width: 640px;
		height: 375px;
		content: "";
		background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0) 100%);
		transform: translate(-50%, 50%);
	}
	#main_img .en {
		margin-bottom: 10px;
		font-size: 10px;
		letter-spacing: 5px;
	}
	#main_img .ja {
		font-size: 22px;
	}
}

/* ---------------------------------------------------
	Contents
------------------------------------------------------ */
/* 404 */
#error .cmn_lead .link {
	margin: 10px 0 0;
}

/* breadcrumb */
#breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px 30px;
	font-size: 14px;
}
#breadcrumb li {
	display: flex;
	align-items: center;
}
#breadcrumb li + li::before {
	flex-shrink: 0;
	width: 12px;
	height: 1px;
	margin: 0 10px;
	content: "";
	background: rgba(35, 35, 35, 0.7);
}
#breadcrumb a {
	color: rgba(35, 35, 35, 0.7);
}

@media screen and (max-width: 600px) {
	#breadcrumb {
		padding: 10px;
		font-size: 12px;
	}
	#breadcrumb li + li::before {
		width: 8px;
		margin: 0 5px;
	}
}

/* ---------------------------------------------------
	Footer
------------------------------------------------------ */
#g_footer {
	display: flex;
	flex-wrap: wrap;
	width: 1400px;
	max-width: 92%;
	padding: 105px 0 100px;
	margin: 0 auto;
	color: #fff;
	background: #14230f;
	border-image-source: linear-gradient(#14230f, #14230f); /* 色 */
	border-image-slice: 0 fill; /* 変更しない */
	border-image-outset: 0 100vw; /* どれだけはみ出すか上下左右 */
}
#g_footer .ft_logo {
	width: 370px;
	margin: 0 auto 0 0;
}
#g_footer .ft_logo address {
	margin: 30px 0 0;
}
#g_footer .ft_logo .reserve_links {
	width: 330px;
	margin: 30px 0 0;
}
#g_footer .ft_logo .reserve_links li + li {
	margin: 10px 0 0;
}
#g_footer .ft_logo .reserve_links .btn_arrow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 80px;
	padding: 0 20px 0 40px;
}
#g_footer .ft_logo .reserve_links .btn_arrow::after {
	width: 19px;
	height: 19px;
	content: "";
	background: rgba(255, 255, 255, 0.5) url(../img/arrow_grn.svg) no-repeat center center;
	background-size: 10px auto;
	border-radius: 50%;
}
#g_footer .ft_logo .reserve_links .btn_stay {
	color: #fff;
	background: #466741;
}
#g_footer .ft_logo .reserve_links .btn_dayplan {
	color: #192b13;
	background: #91a48a;
}
#g_footer .ft_logo .reserve_links .btn_cancel {
	display: inline-block;
	padding: 6px 0;
	font-size: 15px;
	color: #afb4ae;
	border-bottom: 1px solid #596356;
}
#g_footer .ft_logo .ft_contact {
	margin: 25px 0 0;
	font-size: 15px;
	color: #afb4ae;
}
#g_footer .ft_logo .ft_contact .tel-link {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	color: #afb4ae;
}
#g_footer .ft_logo .ft_contact .tel-link img {
	margin: 0 10px 0 0;
}
#g_footer .ft_logo .ft_contact .tel-link span {
	font-size: 24px;
}
#g_footer .ft_nav &gt; div {
	display: flex;
}
#g_footer .ft_nav ul {
	width: 200px;
}
#g_footer .ft_nav ul + ul {
	margin: 0 0 0 30px;
}
#g_footer .ft_nav li + li {
	margin: 20px 0 0;
}
#g_footer .ft_nav a {
	color: #fff;
}
#g_footer .ft_nav .child {
	position: relative;
	z-index: 0;
	padding: 0 0 0 17px;
	margin: 10px 0 0;
}
#g_footer .ft_nav .child::before {
	position: absolute;
	top: 0;
	left: 6px;
	width: 1px;
	height: 100%;
	content: "";
	background: #596356;
}
#g_footer .ft_nav .child li + li {
	margin: 0;
}
#g_footer .ft_nav .child li {
	padding: 10px 0;
	font-size: 14px;
}
#g_footer .ft_nav .child a {
	color: #afb4ae;
}
#g_footer .ft_info {
	width: 210px;
	margin: 0 0 0 70px;
}
#g_footer .ft_info ul {
	font-size: 14px;
	color: #afb4ae;
	border-top: 1px solid #3f473c;
}
#g_footer .ft_info li {
	display: flex;
	align-items: flex-start;
	padding: 20px 0;
	border-bottom: 1px solid #3f473c;
}
#g_footer .ft_info li img {
	flex-shrink: 0;
	margin: 0 15px 0 0;
}
#g_footer .ft_info .btn_chat {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 55px;
	margin: 30px 0 0;
	color: #a1aa9e;
	background: rgba(145, 164, 138, 0.25);
	border-radius: 999px;
}
#g_footer .ft_info .btn_chat img {
	margin: 0 8px 0 0;
}
#g_footer .ft_bot,
#g_footer .ft_bot .link_sns {
	display: flex;
	align-items: center;
}
#g_footer .ft_bot {
	justify-content: flex-end;
	width: 100%;
}
#g_footer .ft_bot .link_sns {
	margin: 0 25px 0 0;
}
#g_footer .ft_bot .link_sns li + li {
	margin: 0 0 0 20px;
}
#g_footer .ft_bot .copy {
	font-size: 10px;
	color: #a1aa9e;
}

@media screen and (max-width: 600px) {
	#g_footer {
		display: block;
		width: 86%;
		padding: 0 0 90px;
	}
	#g_footer .ft_logo {
		width: auto;
		padding: 80px 0 40px;
		text-align: center;
		border-image-source: linear-gradient(#24381d, #24381d); /* 色 */
		border-image-slice: 0 fill; /* 変更しない */
		border-image-outset: 0 100vw; /* どれだけはみ出すか上下左右 */
	}
	#g_footer .ft_logo &gt; img {
		width: 180px;
	}
	#g_footer .ft_logo address {
		margin-top: 25px;
	}
	#g_footer .ft_logo .reserve_links {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: auto;
	}
	#g_footer .ft_logo .reserve_links li {
		width: calc((100% - 10px) / 2);
	}
	#g_footer .ft_logo .reserve_links li:last-child {
		width: 100%;
		margin-top: 10px !important;
	}
	#g_footer .ft_logo .reserve_links li + li {
		margin: 0;
	}
	#g_footer .ft_logo .reserve_links .btn_arrow {
		justify-content: center;
		width: 100%;
		height: 60px;
		padding: 0;
		font-size: 14px;
	}
	#g_footer .ft_logo .reserve_links .btn_arrow::after {
		content: none;
	}
	#g_footer .ft_logo .reserve_links .btn_cancel {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 50px;
		padding: 0;
		font-size: 14px;
		border: 1px solid #596356;
	}
	#g_footer .ft_logo .ft_contact {
		margin: 25px 0 0;
		font-size: 15px;
		color: #afb4ae;
	}
	#g_footer .ft_logo .ft_contact .tel-link {
		flex-wrap: wrap;
		justify-content: center;
	}
	#g_footer .ft_logo .ft_contact .tel-link span {
		line-height: 1.4;
	}
	#g_footer .ft_nav {
		padding: 0;
		margin: 60px 0 0;
		border: 1px solid #3f473c;
	}
	#g_footer .ft_nav .acc_tit {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 15px 15px 15px 25px;
		color: #afb4ae;
	}
	#g_footer .ft_nav .acc_tit::before {
		width: 20px;
		height: 20px;
		content: "";
		background: url(../img/ico_menu_grn.svg) no-repeat center center;
		background-size: 100% auto;
	}
	#g_footer .ft_nav .acc_tit span {
		margin: 0 auto;
	}
	#g_footer .ft_nav &gt; div {
		display: block;
		padding: 0 25px 25px;
	}
	#g_footer .ft_nav ul {
		width: auto;
	}
	#g_footer .ft_nav ul + ul,
	#g_footer .ft_nav li + li {
		margin: 0;
	}
	#g_footer .ft_nav ul + ul {
		border-top: 1px solid #3f473c;
	}
	#g_footer .ft_nav li:not(:last-child) {
		border-bottom: 1px solid #3f473c;
	}
	#g_footer .ft_nav a {
		display: flex;
		padding: 10px 15px;
		font-size: 14px;
	}
	#g_footer .ft_nav .child {
		padding: 0;
		margin: 0;
		font-size: 13px;
	}
	#g_footer .ft_nav .child::before {
		content: none;
	}
	#g_footer .ft_nav .child li + li {
		margin: 0;
	}
	#g_footer .ft_nav .child li {
		padding: 0;
		border-top: 1px dotted #3f473c;
		border-bottom: none;
	}
	#g_footer .ft_info {
		width: auto;
		margin: 25px 0 0;
	}
	#g_footer .ft_info li {
		padding: 10px 0;
	}
	#g_footer .ft_info .btn_chat {
		max-width: 220px;
		margin: 30px auto 0;
	}
	#g_footer .ft_bot {
		display: block;
	}
	#g_footer .ft_bot .link_sns {
		justify-content: space-between;
		max-width: 200px;
		margin: 25px auto 0;
	}
	#g_footer .ft_bot .link_sns li + li {
		margin: 0 0 0 20px;
	}
	#g_footer .ft_bot .copy {
		margin: 40px 0 0;
		text-align: center;
	}
}

/* ---------------------------------------------------
	clear
------------------------------------------------------ */

/* ---------------------------------------------------
	更新履歴
------------------------------------------------------


------------------------------------------------------ */
</pre></body></html>