@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/
/*メインカラー*/
:root {
	--col-main: #e89a6c;
	--col-main-rgb: 232, 154, 108;
	--col-main-dark: #c28442;
	--col-main-dark-rbg: 194, 132, 66;
	--col-main-light: #f0ddc8;
	--col-main-light-rbg: 240, 221, 200;
	--col-sub: #8b81c3;
	--col-sub-rgb: 139, 129, 195;
	--col-sub-light: #9f9bca;
	--col-sub-light-rgb: 159, 155, 202;
	--col-sub-light02: #b8b4df;
	--col-sub-hilight: #f2f1f8;
	--col-sub02: #777e41;
	--col-text: #764b1e;
	--col-text-rgb: 118, 75, 30;
	--col-wh: #fff;
	--col-wh-rgb: 255, 255, 255;
	--col-base: #fff;
	--col-base-rgb: 255, 255, 255;
}

/*フォント*/
:root {
	--font-text: 'Noto Sans JP', sans-serif;
	--font-ttl-ja-min: 'Hina Mincho', serif;
	--font-text-min: 'Noto Serif JP', serif;
	--font-ttl-ja-go: 'Zen Maru Gothic', sans-serif;
	--font-ttl-en: 'Cedarville Cursive', cursive;
}

:root {
	--font-size-base: 1.7rem;
	--font-size-base-sp: 1.7rem;
}

/*
  --font-notosans: "Noto Sans JP",sans-serif;
  --font-serif: "Noto Serif JP",serif;
  --font-meirio: "メイリオ",Meiryo,sans-serif;
  --font-yu_go: "游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"MS Pゴシック","MS PGothic","Noto Sans JP",sans-serif;
*/
:root {
	--round-base: 20px;
	--round-small: 10px;
}

/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ 以下共通スタイル ▽ ---------------*/
.sp-none {
	display: none !important;
}

.inbox {
	width: 90%;
	margin: 0 auto;
	max-width: 500px;
}

.outbox {
	width: 90%;
	margin: 0 auto;
}

.maxbox {
	width: 100%;
	margin: 0 auto;
}
.sp-scroll-hint {
position: relative;
display: block;
font-size: 1.3rem;
text-align: center;
margin: 5% auto 10%;
box-sizing: border-box;
padding-left: 50px;
width: fit-content;
}
.sp-scroll-hint::before {
content: "";
position: absolute;
background: url(../img/common/icon-scroll.png) no-repeat;
width: 45px;
height: 30px;
background-size: contain;
left: 0;
top: 0;
bottom: 0;
margin: auto;
}
/*--------------- ▽ 変数設定 ▽ ---------------*/
/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ body以下 ▽ ---------------*/
html {
	font-size: 62.5%;
    scroll-padding-top: 120px;
}

body {
	margin: auto;
	padding: 0;
	width: 100%;
	font-size: var(--font-size-base-sp);
	line-height: 1.5;
	color: var(--col-text);
	letter-spacing: 0.05em;
	font-family: var(--font-text);
  font-weight: 500;
	/*禁則処理*/
	line-break: strict;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

#contents {
	overflow: hidden;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

a {
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
}

.over-text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.over-text3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.over-text2 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.over-text3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

/*--------------- ▽ flex ▽ ---------------*/
.flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -ms-flexbox;
	-js-display: flex;
	display: flex;
}

.flx-base {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	-js-display: flex;
	display: flex;
	flex-wrap: wrap;
}

.flx-all-center {
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

/*折り返し*/
.flx-wrp {
	flex-wrap: wrap;
}

/*逆順*/
.flx-rr {
	flex-direction: row-reverse;
}

/*
水平方向の揃え
-------------------------------*/
/*初期値*/
.flx-strt {
	-webkit-justify-content: start;
	justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）*/
.flx-btw {
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）*/
.flx-ard {
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

/*水平揃え　末揃え*/
.flx-end {
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

/*水平揃え　中央揃え*/
.flx-center {
	-webkit-justify-content: center;
	justify-content: center;
}

/*
垂直方向の揃え
-------------------------------*/
/*水平揃え　上揃え*/
.flx-alitem-strt {
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

/*水平揃え　高さ揃え*/
.flx-alitem-strch {
	-webkit-align-items: stretch;
	align-items: stretch;
}

/*水平揃え　縦・横の中央揃え*/
.flx-alitem-c {
	-webkit-align-items: center;
	align-items: center;
}

/*水平揃え　下揃え*/
.flx-alitem-end {
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

/*水平揃え　ベースライン揃え*/
.flx-alitem-base {
	-webkit-align-items: baseline;
	align-items: baseline;
}

/*複数行にした揃え方-
-------------------------------*/
/*初期値*/
.flx-alcont-strt {
	-webkit-align-content: flex-start;
	align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え*/
.flx-alcont-strch {
	-webkit-align-content: stretch;
	align-content: stretch;
}

/*親要素の終点から配置。下揃え*/
.flx-alcont-end {
	-webkit-align-content: flex-end;
	align-content: flex-end;
}

/*中央揃え*/
.flx-alcont-c {
	-webkit-align-content: center;
	align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、
残りの要素は均等に間隔をあけて配置*/
.flx-alcont-s-btw {
	-webkit-align-content: space-between;
	align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置*/
.flx-alcont-s-ard {
	-webkit-align-content: space-around;
	align-content: space-around;
}

/*--------------- △ flex △ ---------------*/
/*--------------- ▽ 更新画像 ▽ ---------------*/
/*更新イメージの調整*/
.com-img {
	display: block;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.com-img img {
	position: absolute;
	top: 50% !important;
	left: 50% !important;
	width: 100%;
	object-fit: cover;
	object-position: center;
	min-height: 100%;
	min-width: 100%;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.com-img-contain img{
  object-fit: contain;
  width: 100%;
  height: 100%;
}
/*--------------- △ 更新画像 △ ---------------*/
/*--------------- ▽ 調整パーツ ▽ ---------------*/
/*
テキスト配置
--------------------------*/
.text-center {
	text-align: center;
	margin: 0 auto;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

/*
order配置
--------------------------*/
.order1 {
	order: 1;
}

.order2 {
	order: 2;
}

/*
フォントウェイト
--------------------------*/
.font-weight300 {
	font-weight: 300;
}

.font-weight400 {
	font-weight: 400;
}

.font-weight500 {
	font-weight: 500;
}

.font-weight600 {
	font-weight: 600;
}

.font-weight700 {
	font-weight: 700;
}

.font-weight800 {
	font-weight: 800;
}

.font-weight900 {
	font-weight: 900;
}

/*
google map 
--------------------------*/
.googlemap {
	width: 100%;
	position: relative;
	overflow: hidden;
	border: none;
}

.googlemap iframe {
	width: 100%;
	height: 100%;
	display: block;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	border: none;
}

/*

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

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

--------------------------*/
/*--------------- △ 調整パーツ △ ---------------*/
/*--------------- ▽ 共通テキスト ▽ ---------------*/
.com-text {
	line-height: 2.2;
}
.com-text .mb {
	margin-bottom: 25px;
}

.com-text02 {
	line-height: 1.7;
}
.com-text02 .mb {
	margin-bottom: 25px;
}

.pc-only-center br,
.sp-none-br br {
	display: none;
}

.sb-text {
	line-height: 1.9;
}

.margin-center {
	margin: 0 auto;
}

/*------------------------------
タイトルベース
-------------------------------*/
.ttl-base {
	position: relative;
	letter-spacing: 0.08em;
	z-index: 2;
}

.ttl-base-go {
	position: relative;
	letter-spacing: 0.08em;
	font-family: var(--font-ttl-ja-go);
	z-index: 2;
}

.ttl-base-min {
	position: relative;
	letter-spacing: 0.08em;
	font-family: var(--font-ttl-ja-min);
	z-index: 2;
}

.ttl-ja {
	font-family: var(--font-ttl-ja-min);
}

.ttl-en {
	font-family: var(--font-ttl-en);
}

/*--------------------------
タイトルスタイル
--------------------------*/
.ttl-style01 {
	text-align: center;
	margin: 0 auto 50px;
	width: fit-content;
}
.ttl-style01 .ttl-en {
	color: var(--col-main);
	display: block;
	position: relative;
	font-size: 1.9rem;
	margin: 0 auto 6px;
}
.ttl-style01 .ttl-ja {
	font-size: 2.6rem;
	position: relative;
	display: block;
	width: fit-content;
	box-sizing: border-box;
	padding: 0 30px;
	margin: 0 auto;
	letter-spacing: 0.2em;
}
.ttl-style01 .ttl-ja::before {
	position: absolute;
	content: '';
	background: url(../img/common/deco-leaf03.png) no-repeat;
	width: 25px;
	height: 25px;
	bottom: -20px;
	margin: auto;
	right: -15px;
	background-size: contain;
	transition: all 0.3s ease;
}

.ttl-style02 {
	text-align: left;
	border-left: 4px solid var(--col-main);
	padding-left: 20px;
	box-sizing: border-box;
	margin-bottom: 40px;
	font-size: 2rem;
	line-height: 1.5;
}

.ttl-style03 {
	font-size: 3.5rem;
	width: fit-content;
	margin: 0 auto 50px;
	box-sizing: border-box;
	padding: 0 50px;
}
.ttl-style03::before {
	position: absolute;
	content: '';
	background: url(../img/common/deco01.png) no-repeat;
	width: 39px;
	height: 59px;
	bottom: -5px;
	left: 0;
	margin: auto;
	background-size: contain;
	transition: all 0.3s ease;
}
.ttl-style03::after {
	position: absolute;
	content: '';
	background: url(../img/common/deco01.png) no-repeat;
	width: 39px;
	height: 59px;
	bottom: -5px;
	right: 0;
	margin: auto;
	background-size: contain;
	transition: all 0.3s ease;
	transform: scale(-1, 1);
}

.ttl-style04 {
	font-size: 2rem;
	box-sizing: border-box;
	padding: 12px 0;
	border-bottom: 1px solid;
	border-top: 1px solid;
	margin: 0 auto 4%;
}

.ttl-style05 {
	font-size: 1.5rem;
	box-sizing: border-box;
	padding: 0 0 5px;
	border-bottom: 1px dashed var(--col-sub02);
	margin: 0 auto 12px;
}

.ttl-style06 {
	font-size: 2rem;
	box-sizing: border-box;
	padding: 15px;
	background: rgba(var(--col-sub-rgb), 0.2);
	margin: 0 auto 30px;
}
.ttl-style06::before {
	position: absolute;
	content: '';
	background: var(--col-sub);
	width: 100%;
	height: 1px;
	left: 0;
	margin: auto;
	right: 0;
	top: -5px;
	background-size: contain;
	transition: all 0.3s ease;
}
.ttl-style06::after {
	position: absolute;
	content: '';
	background: var(--col-sub);
	width: 100%;
	height: 1px;
	left: 0;
	margin: auto;
	right: 0;
	bottom: -5px;
	background-size: contain;
	transition: all 0.3s ease;
}

.ttl-style07 {
	font-size: 2rem;
	box-sizing: border-box;
	padding: 0 0 0 25px;
	margin-bottom: 15px;
}
.ttl-style07::before {
	position: absolute;
	content: '';
	background: url(../img/common/deco02.png) no-repeat right center;
	width: 17px;
	height: 16px;
	bottom: 0;
	left: 0;
	margin: auto;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}

.ttl-style08 {
	font-size: 1.8rem;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 12px 20px;
	margin-bottom: 20px;
}

/*--------------------------
テキストスタイル
--------------------------*/
/*改行OKテキストmarker風*/
.mark-style01 {
	background: linear-gradient(transparent 60%, var(--col-main) 0%);
}

/*-------------------------
テキストカラー
--------------------------*/
.color-wh {
	color: var(--col-wh);
}

.color-main {
	color: var(--col-main);
}

.color-sub {
	color: var(--col-sub);
}

.border-col-main {
	border-color: var(--col-main);
}

.border-col-sub {
	border-color: var(--col-sub);
}

.border-col-sub02 {
	border-color: var(--col-sub02);
}

.first-letter-col01::first-letter {
	color: var(--col-main);
}

/*--------------- △ 共通テキスト △ ---------------*/
/*--------------- ▽ 共通パーツ ▽ ---------------*/
/*--------------- ▼ bg ▼ ---------------*/
/*共通背景
------------------*/
.bg-style01 {
	position: relative;
	background: url(../img/common/deco-bg-leaf-bot.png) repeat-x bottom center/180%;
}
.bg-style01::before {
	position: absolute;
	content: '';
	background: url(../img/common/pat02.png) repeat bottom;
	width: 100%;
	height: 10px;
	bottom: 0;
	left: 0;
	margin: auto;
	right: 0;
	transition: all 0.3s ease;
}

.bg-wood-line-top-after {
	position: relative;
}
.bg-wood-line-top-after::after {
	position: absolute;
	content: '';
	background: url(../img/common/pat02.png);
	width: 100%;
	height: 10px;
	left: 0;
	margin: auto;
	right: 0;
	top: 0;
	transition: all 0.3s ease;
	z-index: 1;
}

.bg-wood-line-bottom-before {
	position: relative;
}
.bg-wood-line-bottom-before::before {
	position: absolute;
	content: '';
	background: url(../img/common/pat02.png);
	width: 100%;
	height: 10px;
	left: 0;
	margin: auto;
	right: 0;
	bottom: 0;
	transition: all 0.3s ease;
	z-index: 1;
}

.bg-style02 {
	background: url(../img/common/deco-bg-fuji01.png) no-repeat top left/20%,
		url(../img/common/deco-bg-fuji02.png) no-repeat top right/20%, url(../img/common/pat01.png);
}

.bg-style03 {
	background: url(../img/common/deco-bg-fuji01.png) no-repeat top left/20%,
		url(../img/common/deco-bg-fuji02.png) no-repeat top right/20%, url(../img/common/pat01.png),
		url(../img/common/pat01.png);
}

/*共通背景 単色・パターン
------------------*/
.bg-col-main {
	background: var(--col-main);
}

.bg-col-sub {
	background: var(--col-sub);
}

.bg-col-wh {
	background: var(--col-wh);
}

.bg-col-base {
	background: var(--col-base);
}

.bg-pat01 {
	background: url(../img/common/pat01.png) repeat;
}

.bg-pat02 {
	background: url(../img/common/pat02.png) repeat;
}

/*共通疑似要素　装飾
---------------------*/
.bg-wave-after-top01 {
	position: relative;
	z-index: 1;
}
.bg-wave-after-top01::after {
	position: absolute;
	content: '';
	background: url(../img/common/bg-deco-wave01.png) no-repeat center top/100%;
	bottom: 0;
	left: 0;
	margin: auto;
	right: 0;
	top: 0;
	transition: all 0.3s ease;
	z-index: -1;
}

/*--------------- ▲ bg ▲ ---------------*/
/*--------------- ▼ リンク ▼ ---------------*/
/*--------------------
リンクスタイル
----------------------*/
.link-style01 {
	color: var(--col-main) !important;
	border-bottom: 1px solid;
}

.link-style02 {
	color: var(--col-main);
	font-size: 1.7rem;
	font-family: var(--font-ttl-ja-go);
	position: relative;
	display: block;
	box-sizing: border-box;
	padding: 0 20px 0 0;
}
.link-style02::before {
	position: absolute;
	content: '';
	background: var(--col-main);
	width: 12px;
	height: 10px;
	bottom: 0;
	margin: auto;
	right: 0;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.link-style02:hover::before {
	right: -5px;
}

/*--------------------
ボタンスタイル
----------------------*/
.btn-base {
	position: relative;
	box-sizing: border-box;
	text-align: center;
	font-family: var(--font-ttl-ja-go);
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -ms-flexbox;
	-js-display: flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

.btn-style01 {
	padding: 14px 30px;
	line-height: 1.2;
	width: 80%;
	min-height: 50px;
	background: url(../img/common/pat03.png);
	color: var(--col-wh);
	border-radius: 40px;
	border: 2px solid var(--col-wh);
	box-shadow: 5px 5px rgba(var(--col-main-rgb), 0.3);
	bottom: 0;
	right: 0;
}
.btn-style01::before {
	position: absolute;
	content: '';
	background: url(../img/common/icon-arw.png) no-repeat;
	width: 30px;
	height: 30px;
	bottom: 0;
	margin: auto;
	right: 20px;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}

.btn-style02 {
	width: 100%;
	color: var(--col-wh);
	background: url(../img/common/bg01.jpg);
	border-radius: 10px;
	box-sizing: border-box;
	padding: 12px 6px;
	border: 2px solid var(--col-wh);
	box-shadow: 5px 5px 0 rgba(var(--col-main-rgb), 0.3);
	height: 70px;
	text-align: left;
	bottom: 0;
	right: 0;
}
.btn-style02::before {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: 6px;
	height: 8px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	bottom: 0;
	margin: auto;
	right: 7px;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.btn-style02 .btn-wrap {
	gap: 8px;
}
.btn-style02 .icon {
	width: 50px;
}
.btn-style02 .text {
	width: 190px;
	font-size: 1.5rem;
	letter-spacing: 0.02em;
  font-weight: 500;
}

.btn-style03 {
	padding: 12px 5px 25px;
	line-height: 1.2;
	min-height: 80px;
	width: fit-content;
	background: url(../img/common/pat03.png);
	color: var(--col-wh);
	border-radius: 10px;
	border: 2px solid var(--col-wh);
	box-shadow: 5px 5px rgba(var(--col-main-rgb), 0.3);
	bottom: 0;
	right: 0;
	font-size: 1.6rem;
}
.btn-style03::before {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: 8px;
	height: 6px;
	bottom: 8px;
	margin: auto;
	right: 0;
	left: 0;
	background-size: contain;
	transition: all 0.3s ease;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/*zoom img
-----------------*/
.hover-zoom .img {
	display: block;
	overflow: hidden;
}
.hover-zoom .zoom {
	display: block;
	width: 100%;
	height: 100%;
	transition: all, 0.5s;
}



/*--------------------
ボタンスホバータイル
----------------------*/
/*
スマホ対策
hoverできる場合のみスタイルを適用
*/
@media (hover: hover) {
	.hover-op:hover,
	.link-style01:hover {
		opacity: 0.7;
	}
	.hover-zoom:hover .zoom {
		transform: scale(1.2, 1.2);
	}
	.btn-style01:hover {
		bottom: -5px;
		right: -5px;
		box-shadow: none;
	}
	.btn-style01:hover::before {
		right: 10px;
	}
	.btn-style02:hover {
		bottom: -5px;
		right: -5px;
		box-shadow: none;
	}
	.btn-style02:hover::before {
		right: 10px;
	}
	.hover-overlay:hover:after {
		position: absolute;
		content: '';
		width: 100%;
		height: 100%;
		background: #000;
		bottom: 0;
		left: 0;
		margin: auto;
		right: 0;
		top: 0;
		background-size: contain;
		transition: all 0.3s ease;
		opacity: 0.3;
	}
}
/*--------------- ▲ リンク　▲ ---------------*/
/*--------------- ▼ info ▼ ---------------*/
/*--------------------
TEL
----------------------*/
.tel-style01 {
	position: relative;
	display: block;
	color: var(--col-text);
	font-family: var(--font-ttl-ja-go);
	font-weight: 500;
	letter-spacing: 0.06em;
}
.tel-style01 .tel-wrap {
	width: fit-content;
}
.tel-style01 .num {
	position: relative;
	display: block;
	width: fit-content;
	padding-left: 35px;
	font-size: 3rem;
}
.tel-style01 .num::before {
	position: absolute;
	content: '';
	background: url(../img/common/icon-tel.png) no-repeat;
	width: 25px;
	height: 25px;
	background-size: contain;
	bottom: 0;
	left: 0;
	margin: auto;
	top: 0;
}
.tel-style01 .catch {
	background: var(--col-text);
	color: var(--col-wh);
	text-align: center;
	box-sizing: border-box;
	padding: 2px 10px;
	display: block;
	margin-bottom: 5px;
	border-radius: 5px;
}

.com-info-address {
	display: block;
	position: relative;
	box-sizing: border-box;
	padding: 0 0 0 15px;
	font-size: 1.5rem;
}
.com-info-address::before {
	position: absolute;
	content: '';
	background: url(../img/common/icon-map.png) no-repeat;
	width: 11px;
	height: 15px;
	bottom: 0;
	left: 0;
	margin: auto;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.com-info-address .text {
	border-bottom: 1px solid var(--col-text);
}



.com-info .tel {
	margin: 0 auto 8%;
}
/*--------------------
SNS
----------------------*/
.com-sns-icon-list {
	gap: 25px;
}
.com-sns-icon-list .link:hover {
	opacity: 0.7;
}

/*--------------- ▲ info ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼ list-style ▼ ---------------*/
.list-style01 {
	gap: 10px;
}
.list-style01 .item {
	background: var(--col-wh);
	border: 3px solid var(--col-main);
	font-size: 1.7rem;
	box-sizing: border-box;
	padding: 7px 10px;
	border-radius: 10px;
	font-family: var(--font-ttl-ja-go);
	font-weight: 500;
	line-height: 1.3;
}

.list-style02 .icon {
	position: relative;
	box-sizing: border-box;
	padding: 0 0 0 20px;
	line-height: 1.4;
	margin-bottom: 8px;
}
.list-style02 .icon:last-child {
	margin-bottom: 0;
}
.list-style02 .icon::before {
	position: absolute;
	content: '※';
	left: 0;
	margin: auto;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.list-style02 .star::before {
	position: absolute;
	content: '★';
	bottom: 0;
	left: 0;
	margin: auto;
	right: 0;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}

/*--------------- ▲ list-style ▲ ---------------*/
/*--------------- ▼ box-style ▼ ---------------*/
.box-style01 {
	background: url(../img/common/pat02.png);
	border-radius: 10px;
	box-sizing: border-box;
	padding: 10% 4%;
	position: relative;
	box-shadow: 10px 0 0 rgba(var(--col-main-rgb), 0.15);
}
.box-style01::before {
	position: absolute;
	content: '';
	background: url(../img/common/deco-leaf.png) no-repeat;
	width: 70px;
	height: 70px;
	bottom: -15px;
	margin: auto;
	right: -30px;
	background-size: contain;
	transition: all 0.3s ease;
}
.box-style01::after {
	position: absolute;
	content: '';
	background: url(../img/common/icon-pin.png);
	width: 39px;
	height: 47px;
	left: 0;
	margin: auto;
	right: 0;
	top: -20px;
	background-size: contain;
	transition: all 0.3s ease;
}

.box-style02 {
	background: url(../img/common/pat02.png);
	border-radius: 10px;
	box-sizing: border-box;
	padding: 8% 3%;
	position: relative;
	box-shadow: 10px 0 0 rgba(var(--col-main-rgb), 0.15);
}
.box-style02::before {
	position: absolute;
	content: '';
	background: url(../img/common/deco-leaf.png) no-repeat;
	width: 108px;
	height: 106px;
	bottom: 10px;
	margin: auto;
	right: -50px;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: 1;
}
.box-style02::after {
	position: absolute;
	content: '';
	background: url(../img/common/icon-pin.png) no-repeat;
	width: 30px;
	height: 40px;
	left: 0;
	margin: auto;
	right: 0;
	top: 20px;
	background-size: contain;
	transition: all 0.3s ease;
}
.box-style02 .box-inner {
	background: var(--col-wh);
	box-sizing: border-box;
	padding: 12% 5%;
	position: relative;
	border-radius: 10px;
}

/*--------------- ▲ box-style ▲ ---------------*/
/*--------------- ▼ img ▼ ---------------*/
/*装飾ありの画像共通スタイル
---------------------------*/
/*
正円
--------------*/
.img-style-round {
	border-radius: 100%;
	aspect-ratio: 1/1;
}

/*--------------- ▲ img ▲ ---------------*/
/*--------------- ▼ テーブル ▼ ---------------*/
.table-style01 {
	border-collapse: separate;
	border-spacing: 0 20px;
}
.table-style01 tr,
.table-style01 tbody {
	width: 100%;
}
.table-style01 tr {
	display: inline-table;
	border-bottom: 1px dashed var(--col-main);
}
.table-style01 tr:last-child th {
	border: none;
}
.table-style01 th {
	background: var(--col-main);
	display: block;
	width: 100%;
	text-align: center;
	padding: 7px 10px;
	box-sizing: border-box;
	color: var(--col-wh);
	font-weight: 500;
	border-radius: 5px;
}
.table-style01 td {
	background: var(--col-wh);
	display: block;
	width: 100%;
	padding: 12px 10px;
	box-sizing: border-box;
	font-weight: 500;
	border-radius: 5px;
	line-height: 1.7;
}

.table-style02 {
	width: 100%;
}
.table-style02 th {
	box-sizing: border-box;
	padding: 15px 0;
	width: 100%;
  display: block;
	font-weight: 500;
}
.table-style02 th .ttl {
	color: var(--col-main);
	font-size: 1.7rem;
	font-weight: 600;
	display: block;
}
.table-style02 th .text {
	font-size: 1.5rem;
	display: block;
	margin-top: 6px;
}
.table-style02 td {
	border-bottom: 1px solid var(--col-main-light);
	box-sizing: border-box;
	padding: 0 0 15px;
	width: 100%;
  display: block;
	text-align: right;
	font-weight: 500;
}

.com-info-table {
	border-radius: 5px;
	overflow: hidden;
	border-collapse: separate;
}
.com-info-table tr,
.com-info-table tbody {
	width: 100%;
}
.com-info-table tr:last-child th {
	border: none;
}
.com-info-table th {
	background: var(--col-sub);
	text-align: center;
	vertical-align: middle;
	padding: 2px 4px;
	border-bottom: 1px solid var(--col-wh);
	box-sizing: border-box;
	color: var(--col-wh);
	font-weight: 400;
	font-size: 1.5rem;
	text-align: center;
	box-sizing: border-box;
}
.com-info-table td {
	background: var(--col-wh);
	vertical-align: middle;
	padding: 2px 4px;
	box-sizing: border-box;
	font-weight: 400;
	font-size: 1.5rem;
	text-align: center;
	box-sizing: border-box;
}
.com-info-table .time {
	background: var(--col-sub-light);
	color: var(--col-wh);
	width: 135px;
}
.com-info-table .text {
	width: 35px;
}
.com-info-table .row-ttl .ttl-time {
	color: var(--col-wh);
	width: 135px;
	border-right: 1px solid var(--col-wh);
}
.com-info-table .row-ttl .ttl {
	border-right: 1px solid var(--col-wh);
	width: 35px;
}
.com-info-table .row td {
	border-top: 1px solid var(--col-sub-light);
	border-right: 1px solid var(--col-sub-light);
}
.com-info-table .row .text {
	color: var(--col-main);
  position: relative;
}

.com-info-table-text .others {
	width: 200px;
}
.com-info-table .row .holiday::before {
	position: absolute;
	content: '';
	background: var(--col-main);
	width: 17px;
	height: 2px;
	transform: rotate(-45deg);
	bottom: 0;
	left: 0;
	margin: auto;
	right: 0;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.com-info-table .row:last-of-type td {
	border-bottom: 1px solid var(--col-sub);
}
.com-info-table .row:last-of-type td:last-of-type {
	border-radius: 0 0 5px 0;
}
.com-info-table-wrap {
	gap: 20px;
}
.com-info-table-text {
	font-size: 1.3rem;
	margin: 0 0 0 auto;

	justify-content: right;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -ms-flexbox;
	-js-display: flex;
	display: flex;
	gap: 6%;
}
.com-info-table-text .holiday {
	margin-bottom: 8px;
	font-size: 1.3rem;
	position: relative;
	width: fit-content;
  	width: 50%;
}
.com-info-table-text .holiday .ttl {
	margin-right: 5px;
	position: relative;
}
.com-info-table-text .holiday .text {
	border-left: 1px solid;
	box-sizing: border-box;
	padding: 0 0 0 5px;
}

/*--------------- ▲ テーブル ▲ ---------------*/
/*--------------- △ 共通パーツ △ ---------------*/
/*--------------- ▽ com-news ▽ ---------------*/
.com-news .news-item {
	border-bottom: 1px solid var(--col-main-light);
}
.com-news .news-item a {
	padding: 20px 0;
	box-sizing: border-box;
	display: block;
	line-height: 1;
	color: var(--col-text);
}
.com-news .news-item a:hover {
	color: var(--col-main);
	background: var(--col-wh);
}
.com-news .news-post-ttl {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.com-news .news-post-time {
	box-sizing: border-box;
	display: block;
	color: var(--col-sub02);
	position: relative;
	margin-bottom: 6px;
	width: fit-content;
}
.com-news .news-post-time::before {
	position: absolute;
	content: '';
	background: url(../img/common/deco02.png) no-repeat;
	width: 17px;
	height: 16px;
	bottom: 0;
	margin: auto;
	right: -24px;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.com-news .news-text {
	display: block;
	margin-bottom: 10px;
}

.news-tag {
	color: var(--col-main);
	font-weight: 500;
	gap: 10px;
	font-size: 1.4rem;
}
.news-tag .tag {
	padding: 4px 10px;
	box-sizing: border-box;
	background: var(--col-main);
	color: var(--col-wh);
	border-radius: 5px;
}

.com-news .news-post-img {
	aspect-ratio: 3/2;
	width: clamp(55px, 20vw, 150px);
}

.com-news .news-text-wrap {
	width: 100%;
}

.com-news .news-text-wrap.text-width {
	width: 50vw;
}

.com-news .news-post-on {
	gap: 20px;
}

/*--------------- △ com-news △ ---------------*/
/*--------------- ▽ ページネーション ▽ ---------------*/
ul.pagenation,
ul.pagenation li,
ul.pagenation li a {
	line-height: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -ms-flexbox;
	-js-display: flex;
	-webkit-align-items: center;
	align-items: center;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}

ul.pagenation {
	margin-top: 20px;
	text-align: center;
	margin-bottom: 30px;
}
ul.pagenation li a {
	width: 45px;
	height: 45px;
	font-size: 17px;
	color: #38322d;
}
ul.pagenation li.current {
	width: 45px;
	height: 45px;
	font-size: 20px;
	line-height: 1;
	box-sizing: border-box;
	color: #fff;
	background: var(--col-main);
}

/*--------------- △ ページネーション △ ---------------*/
/*--------------- ▽ ページボタン ▽ ---------------*/
.page-btn {
	position: relative;
	margin-top: 30px;
	font-size: 14px;
}
.page-btn a {
	position: relative;
	font-weight: bold;
	font-size: 14px;
}
.page-btn .right,
.page-btn .left {
	position: absolute;
}
.page-btn .right a,
.page-btn .left a {
	font-size: 14px;
}
.page-btn .right a:before,
.page-btn .left a:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	width: 5px;
	height: 5px;
	margin-top: -5px;
	box-sizing: border-box;
}
.page-btn .left {
	left: 0;
}
.page-btn .left a {
	position: relative;
	padding-left: 20px;
}
.page-btn .left a:before {
	left: 0;
	border: solid 5px transparent;
	border-right: solid var(--col-main) 5px;
}
.page-btn .right {
	right: 0;
}
.page-btn .right a {
	position: relative;
	padding-right: 20px;
}
.page-btn .right a:before {
	right: 0;
	border: solid 5px transparent;
	border-left: solid var(--col-main) 5px;
}

/*--------------- △ ページボタン △ ---------------*/
/*--------------- ▽ プライバシーポリシー ▽ ---------------*/
.privacy .privacy-box {
	margin-bottom: 50px;
}
.privacy .privacy-box:last-child {
	margin-bottom: 0;
}

/*--------------- △ プライバシーポリシー △ ---------------*/
/*--------------- ▽ サイトマップ ▽ ---------------*/
.site-map-list {
	max-width: 600px;
	margin: 0 auto;
}

.site-map-item {
	border-bottom: 1px solid #c0c0c0;
}

.site-map-link {
	box-sizing: border-box;
	display: block;
	padding: 15px 0 15px 35px;
	position: relative;
	font-weight: bold;
	transition: 0.3s;
	color: var(--col-text);
}
.site-map-link::before {
	content: '';
	display: block;
	position: absolute;
	left: 5px;
	top: 50%;
	margin-top: -8px;
	border: solid 8px transparent;
	transition: 0.3s;
	border-left: 8px solid var(--col-main);
}
.site-map-link:hover {
	color: var(--col-main);
}
.site-map-link:hover:before {
	left: 10px;
}

/*--------------- △ サイトマップ △ ---------------*/
/*--------------- ▽ お問い合わせ ▽ ---------------*/
/*--------------------
table
---------------------*/
.contact-form-table {
	margin: 0 0 50px;
	width: 100%;
}

.contact-form-table th {
	padding: 10px;
	box-sizing: border-box;
	background: var(--col-main);
	color: #fff;
	border-bottom: 1px solid #faf8f6;
}

.contact-form-table td {
	padding: 10px;
	box-sizing: border-box;
	background: #faf8f6;
	border-bottom: 1px solid var(--col-main);
}

.contact-form-table,
.contact-form-table tbody,
.contact-form-table tr,
.contact-form-table th,
.contact-form-table td {
	width: auto;
	display: block;
}

/*-------------------
ボタン
--------------------*/
#contact button[type='button'],
input[type='submit'] {
	background: var(--col-main);
	color: var(--col-base);
}

/*--------------- △ お問い合わせ △ ---------------*/
/*--------------- ▽ 404エラー ▽ ---------------*/
/*--------------- △ 404エラー △ ---------------*/ /*# sourceMappingURL=common_sp.css.map */
