@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/
/*メインカラー*/
:root {
	--col-main: #8ad7e2;
	--col-main-rgb: 138, 215, 226;
	--col-main-light: #e2f1f3;
	--col-main-light-rbg: 226, 241, 243;
	--col-sub: #304e34;
	--col-sub-rgb: 48, 78, 52;
	--col-gry: #b7b7b7;
	--col-gry-rgb: 183, 183, 183;
	--col-gry-dark: #6c6c6c;
	--col-gry-light: #d1d1d1;
	--col-text: #222222;
	--col-text-rgb: 34, 34, 34;
	--col-wh: #fff;
	--col-wh-rgb: 255, 255, 255;
	--col-base: #f9f5ef;
	--col-base-rgb: 255, 255, 255;
}

/*フォント*/
:root {
	--font-text: 'Noto Sans JP', sans-serif;
	--font-ttl-ja: 'Shippori Mincho B1', serif;
	--font-ttl-en: 'Rock Salt', cursive;
	--font-ttl-en02: 'Barlow Condensed', sans-serif;
}

:root {
	--font-size-base: 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;
}

/*--------------- ▽ 変数設定 ▽ ---------------*/
/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ body以下 ▽ ---------------*/
html {
	font-size: 62.5%;
	scroll-padding-top: 100px;
}

body {
	margin: auto;
	padding: 0;
	width: 100%;
	font-size: var(--font-size-base);
	line-height: 1.5;
	color: var(--col-text);
	letter-spacing: 0.05em;
	font-family: var(--font-text);
	/*禁則処理*/
	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;
	background: url(../img/common/noimg.jpg) no-repeat center center/cover;
}
.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%);
}

/*--------------- △ 更新画像 △ ---------------*/
/*--------------- ▽ SP調整用 ▽ ---------------*/
.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;
}

/*--------------- △ SP調整用 △ ---------------*/
/*--------------- ▽ 共通テキスト/タイトル ▽ ---------------*/
/*
テキスト配置
--------------------------*/
.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%;
	min-height: 350px;
	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.3;
	letter-spacing: 0.08em;
}
.com-text .mb {
	margin-bottom: 25px;
}

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

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

.sp-none-br br {
	display: none;
}

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

.margin-center {
	margin: 0 auto;
}

/*------------------------------
タイトルベース
-------------------------------*/
.ttl-base {
	position: relative;
	letter-spacing: 0.08em;
	font-family: var(--font-ttl-ja);
}

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

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

/*--------------------------
タイトルスタイル
--------------------------*/
.ttl-style01 {
	text-align: center;
	padding-bottom: 15px;
	margin-bottom: 10%;
	width: fit-content;
	box-sizing: border-box;
	height: fit-content;
	padding: 0 0 30px 0;
}
.ttl-style01::before {
	position: absolute;
	content: '';
	background: url(../img/common/deco01.png) no-repeat bottom;
	width: 56px;
	height: 9px;
	bottom: 0;
	margin: auto;
	left: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.ttl-style01 .ttl-en {
	font-size: 3.6rem;
	position: relative;
	display: block;
	color: var(--col-sub);
}
.ttl-style01 .ttl-ja {
	position: relative;
	display: block;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--col-sub);
}

.ttl-style01.text-center::before {
	right: 0;
}

.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: 2rem;
	font-weight: 500;
	box-sizing: border-box;
	padding: 0 0 15px 0;
	margin-bottom: 20px;
}
.ttl-style03::before {
	position: absolute;
	content: '';
	background: var(--col-main);
	width: 30px;
	height: 2px;
	bottom: 0;
	left: 0;
	margin: auto;
	background-size: contain;
	transition: all 0.3s ease;
}
.ttl-style03 .small {
	font-size: 2rem;
}

.ttl-style04 {
	font-size: 1.8rem;
	font-weight: 500;
	box-sizing: border-box;
	padding: 0 0 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--col-main);
}

.ttl-style05 {
	font-family: var(--font-ttl-ja);
	font-size: 2rem;
	font-weight: 600;
	box-sizing: border-box;
	padding: 0 0 12px;
	margin-bottom: 20px;
	border-bottom: 4px double var(--col-main);
}

/*--------------------------
テキストスタイル
--------------------------*/
/*改行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);
}

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

/*--------------- △ 共通テキスト △ ---------------*/
/*--------------- ▽ 共通パーツ ▽ ---------------*/
/*--------------- ▼ bg ▼ ---------------*/
/*共通背景
------------------*/
.bg-wave-bot-before {
	padding: 17% 0 20% !important;
	position: relative;
}
.bg-wave-bot-before::before {
	position: absolute;
	content: '';
	background: url(../img/common/deco-wave01.png) no-repeat center bottom/100%;
	width: 100%;
	height: 107px;
	bottom: 0;
	left: 0;
	margin: auto;
	right: 0;
	background-size: 100%;
	transition: all 0.3s ease;
}

/*共通背景 単色・パターン
------------------*/
.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-col-gry-dark {
	background: var(--col-gry-dark);
}

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

.bg-pat02 {
	background: url(../img/common/pat02.jpg) 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;
}

/*--------------------
ボタンスタイル
----------------------*/
.btn-base {
	position: relative;
	box-sizing: border-box;
	text-align: center;
	font-weight: 400;
	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: 75%;
	background: var(--col-wh);
	border: 1px solid var(--col-gry-light);
	font-weight: 500;
}
.btn-style01 .text-en {
	position: relative;
	display: block;
	font-family: var(--font-ttl-en02);
	font-size: 2rem;
}
.btn-style01::before {
	position: absolute;
	content: '';
	background: var(--col-main);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	bottom: 0;
	margin: auto;
	right: 20px;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}

.btn-style02 {
	display: block;
	box-sizing: border-box;
	padding: 0 20px 10px 0;
	border-bottom: 1px solid var(--col-gry);
	width: fit-content;
	position: relative;
	font-weight: 400;
}
.btn-style02::before {
	position: absolute;
	content: '';
	background: var(--col-main);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	bottom: 8px;
	margin: auto;
	right: 0;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.btn-style02 .text-en {
	position: relative;
	display: block;
	font-family: var(--font-ttl-en02);
	font-weight: 500;
	font-size: 2rem;
}

.btn-style03 {
	padding: 14px 30px;
	line-height: 1.2;
	width: 75%;
	background: var(--col-wh);
	border: 1px solid var(--col-sub);
	box-shadow: 5px 5px var(--col-sub);
}
.btn-style03 .icon {
	width: 30px;
	display: block;
}
.btn-style03 .btn-wrap {
	gap: 15px;
}
.btn-style03 .text-en {
	position: relative;
	display: block;
	font-family: var(--font-ttl-en02);
	font-size: 2rem;
}
.btn-style03::before {
	position: absolute;
	content: '';
	background: var(--col-sub);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	bottom: 0;
	margin: auto;
	right: 20px;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}

.btn-style04 {
	padding: 14px 30px;
	line-height: 1.2;
	width: 75%;
	background: var(--col-sub);
	color: var(--col-wh);
}
.btn-style04 .btn-wrap {
	gap: 15px;
}
.btn-style04 .icon {
	display: block;
	width: 30px;
}
.btn-style04 .text-en {
	position: relative;
	display: block;
	font-family: var(--font-ttl-en02);
	font-size: 2rem;
}
.btn-style04::before {
	position: absolute;
	content: '';
	background: var(--col-wh);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	bottom: 0;
	margin: auto;
	right: 20px;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}

.btn-style04.btn-catch::after {
	position: absolute;
	content: 'Follow us!';
	color: var(--col-main);
	z-index: 5;
	left: -60px;
	width: fit-content;
	margin: auto;
	top: 20px;
	background-size: contain;
	transition: all 0.3s ease;
	font-size: 1.4rem;
	font-family: var(--font-ttl-en);
	white-space: nowrap;
	transform: rotate(-5deg);
}

.btn-style05 {
	padding: 14px 18px;
	line-height: 1.2;
	width: 100%;
	min-height: 60px;
	background: var(--col-wh);
	border: 1px solid var(--col-gry-light);
	font-weight: 500;
	font-size: 1.4rem;
}
.btn-style05 .text-en {
	position: relative;
	display: block;
	font-family: var(--font-ttl-en02);
	font-size: 2rem;
}
.btn-style05::before {
	position: absolute;
	content: '';
	background: url(../img/common/icon-arw.png) no-repeat;
	width: 10px;
	height: 15px;
	bottom: 0;
	margin: auto;
	right: 10px;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}

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

/*--------------------
ボタンスホバータイル
----------------------*/
/*
スマホ対策
hoverできる場合のみスタイルを適用
*/
@media (hover: hover) {
	.hover-op:hover,
	.link-style01:hover {
		opacity: 0.7;
	}
	.btn-style02:hover {
		opacity: 0.7;
	}
	.btn-style02:hover::before {
		width: 12px;
		height: 12px;
		right: -2px;
	}
	.btn-style01 {
		overflow: hidden;
	}
	.btn-style01:hover {
		border: 1px solid var(--col-main);
		opacity: 0.7;
		background: var(--col-main);
		color: var(--col-wh);
	}
	.btn-style01:hover::before {
		width: 110px;
		height: 110px;
		right: -30px;
	}
	.btn-style03 {
		overflow: hidden;
		bottom: 0;
		right: 0;
	}
	.btn-style03:hover {
		opacity: 0.7;
		bottom: -5px;
		right: -5px;
		box-shadow: none;
	}
	.btn-style03:hover::before {
		width: 20px;
		height: 20px;
		right: 14px;
	}
	.btn-style04:hover {
		opacity: 0.7;
		background: var(--col-gry-light);
		color: var(--col-text);
	}
	.btn-style04:hover::before {
		width: 30px;
		height: 30px;
		right: 2px;
		background: var(--col-gry-light);
	}
	.btn-style04:hover::after {
		color: var(--col-sub);
	}
	.hover-zoom:hover .zoom {
		transform: scale(1.2, 1.2);
	}
	.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-weight: 600;
	letter-spacing: 0.06em;
	margin: 0 auto;
	width: fit-content;
}
.tel-style01 .tel-wrap {
	width: fit-content;
	margin: 0 auto;
}
.tel-style01 .num {
	position: relative;
	display: block;
	width: fit-content;
	padding-left: 30px;
	font-size: 3.4rem;
	font-family: var(--font-ttl-en02);
	font-weight: 300;
}
.tel-style01 .num::before {
	position: absolute;
	content: '';
	background: url(../img/common/icon-tel.png) no-repeat;
	width: 20px;
	height: 20px;
	background-size: contain;
	bottom: 0;
	left: 0;
	margin: auto;
	top: 0;
}

.com-info-btn-list .item .item-btn {
	min-width: 200px;
	min-height: 60px;
}
.com-info-btn-list .item .item-btn::before {
	content: none;
}
.com-info .address {
	line-height: 1.6;
	margin-bottom: 30px;
}
.com-info .address .sub {
	font-size: 1.4rem;
	margin-top: 15px;
	display: block;
}

/*--------------------
SNS
----------------------*/
.com-sns-icon-list {
	gap: 15px;
}
.com-sns-icon-list .item-link {
	width: 30px;
	display: block;
}
.com-sns-icon-list .item-link:hover {
	opacity: 0.7;
}

/*--------------- ▲ info ▲ ---------------*/
/*--------------- ▼ com-page-links ▼ ---------------*/
.com-page-links-list {
	gap: 20px 3%;
}
.com-page-links-item {
	width: 48.5%;
}

/*--------------- ▲ com-page-links ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼ list-style ▼ ---------------*/
.list-style01 {
	gap: 20px 40px;
}
.list-style01 .item {
	width: 100%;
	text-align: center;
	border: 1px solid var(--col-main);
	box-sizing: border-box;
	padding: 16px 5px;
	font-size: 1.7rem;
	position: relative;
	font-family: var(--font-ttl-ja);
	font-weight: 500;
}
.list-style01 .item::before {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	border-top: 2px solid var(--col-wh);
	border-left: 2px solid var(--col-wh);
	left: -1px;
	margin: auto;
	top: -1px;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: 2;
}
.list-style01 .item::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	border-bottom: 2px solid var(--col-wh);
	border-right: 2px solid var(--col-wh);
	right: -1px;
	margin: auto;
	bottom: -1px;
	background-size: contain;
	transition: all 0.3s ease;
	z-index: 2;
}
.list-style02 .item{
  position: relative;
  padding: 0 0 0 20px;
  margin-bottom: 20px;
}
.list-style02 .item::before{
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
}
/*--------------- ▲ list-style ▲ ---------------*/
/*--------------- ▼ box-style ▼ ---------------*/
.box-style01 {
	position: relative;
	background: var(--col-wh);
	min-height: 300px;
	box-sizing: border-box;
	padding: 80px 5%;
}
.box-style01::before {
	position: absolute;
	content: '';
	background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(249, 245, 239) 100%);
	width: 100%;
	height: 80px;
	left: 0;
	margin: auto;
	right: 0;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}
.box-style01::after {
	position: absolute;
	content: '';
	background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(249, 245, 239) 100%);
	width: 100%;
	height: 80px;
	left: 0;
	margin: auto;
	right: 0;
	bottom: 0;
	background-size: contain;
	transition: all 0.3s ease;
}

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

/*--------------- ▲ img ▲ ---------------*/
/*--------------- ▼ テーブル ▼ ---------------*/
.table-style02 {
	width: 100%;
	border-collapse: separate;
	border-spacing: 10px;
}
.table-style02 th {
	width: 100%;
	display: block;
	padding: 16px 16px 0;
	box-sizing: border-box;
	font-weight: 500;
}
.table-style02 td {
	width: 100%;
	display: block;
	padding: 16px;
	border-bottom: 1px solid var(--col-main);
	box-sizing: border-box;
	font-weight: 300;
}

.table-style01 {
	width: 100%;
	border: 1px solid var(--col-main);
}
.table-style01 tr,
.table-style01 tbody {
	width: 100%;
}
.table-style01 tr:last-child th {
	border: none;
}
.table-style01 th {
	background: var(--col-main);
	width: 25%;
	text-align: center;
	vertical-align: middle;
	padding: 16px 20px;
	border-bottom: 1px solid var(--col-wh);
	box-sizing: border-box;
	color: var(--col-wh);
	font-weight: 600;
}
.table-style01 td {
	background: var(--col-wh);
	width: 75%;
	vertical-align: middle;
	padding: 16px 20px;
	border-bottom: 1px solid var(--col-main);
	box-sizing: border-box;
	font-weight: 400;
}

/*--------------- ▲ テーブル ▲ ---------------*/
/*--------------- △ 共通パーツ △ ---------------*/
/*--------------- ▽ com-news ▽ ---------------*/
.com-news .news-list {
	gap: 30px;
}
.com-news .news-item {
	width: 100%;
}
.com-news .news-item a {
	box-sizing: border-box;
	display: flex;
	line-height: 1;
	color: var(--col-text);
	transition: all 0.3s ease;
	position: relative;
	gap: 5%;
}
.com-news .news-item a:hover {
	opacity: 0.7;
}
.com-news .news-post-img {
	aspect-ratio: 1/1;
	width: 30vw;
	height: fit-content;
}
.com-news .news-post-ttl {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.com-news .news-post-time {
	display: block;
	box-sizing: border-box;
	font-family: var(--font-ttl-en02);
	margin-bottom: 6px;
}
.com-news .news-text {
	display: block;
	margin-bottom: 10px;
}
.com-news .news-text-wrap {
	width: 55vw;
}
.news-tag {
	color: var(--col-main);
	font-weight: 500;
	gap: 8px;
}
.news-tag .tag {
	padding: 2px 5px;
	box-sizing: border-box;
	font-size: 1.4rem;
	background: var(--col-gry-light);
	color: var(--col-wh);
}

.com-news .news-post-on {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -ms-flexbox;
	-js-display: flex;
	display: flex;
	gap: 5%;
}

/*--------------- △ 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: 10%;
}
.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 */
