@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/
/*メインカラー*/
:root {
	--col-main: #cccccf;
	--col-main-rgb: 204, 204, 207;
	--col-main-light: #dbdbdb;
	--col-sub: #eacacb;
	--col-sub-rgb: 234, 202, 203;
	--col-sub-light: #f8e0e0;
	--col-sub-light-rgb: 248, 224, 224;
	--col-gry: #dbdbdb;
	--col-gry-dark: #9d9999;
	--col-text: #3b3333;
	--col-text-rgb: 59, 51, 51;
	--col-text-light: #645757;
	--col-wh: #fff;
	--col-wh-rgb: 255, 255, 255;
	--col-base: #f6f6f6;
}

/*フォント*/
:root {
	--font-text: 'Zen Kaku Gothic New', sans-serif;
	--font-ttl-ja: 'Shippori Mincho B1', serif;
	--font-ttl-en: 'Cormorant Garamond', 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 {
	--text-style01:
		5px 0 0 #fff, -5px 0 0 #fff, 0 5px 0 #fff, 0 -5px 0 #fff, 4px 4px 0 #fff, -4px 4px 0 #fff, 4px -4px 0 #fff, -4px -4px 0 #fff, 3px 5px 0 #fff, -3px 5px 0 #fff, 3px -5px 0 #fff, -3px -5px 0 #fff,
		5px 3px 0 #fff, -5px 3px 0 #fff, 5px -3px 0 #fff, -5px -3px 0 #fff;
}

/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ 以下共通スタイル ▽ ---------------*/
/*--------------- ▽ body以下 ▽ ---------------*/
html {
	font-size: 62.5%;
	scroll-padding-top: 120px;
}

body {
	min-width: 1280px;
	letter-spacing: 0.05em;
	margin: auto;
	padding: 0;
	width: 100%;
	font-family: var(--font-text);
	font-size: var(--font-size-base);
	line-height: 1.6;
	color: var(--col-text);
}

#contents {
	overflow: hidden;
}

.pc-none {
	display: none !important;
}

.inbox {
	max-width: 1080px;
	margin: 0 auto;
}

.outbox {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.maxbox {
	width: 100%;
	margin: 0 auto;
}

a[href^='tel:'] {
	pointer-events: none;
}

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-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;
	border-radius: 20px;
	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%);
}

/*--------------- △ 更新画像 △ ---------------*/
/*--------------- ▽ 調整パーツ ▽ ---------------*/
/*
テキスト配置
--------------------------*/
.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;
	letter-spacing: 0.1em;
}
.com-text .mb {
	margin-bottom: 25px;
}

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

.pc-only-center {
	text-align: center;
	margin: 0 auto;
}

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

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

.ttl-ja {
	font-family: var(--font-ttl-ja);
	position: relative;
	display: block;
}

.ttl-en {
	font-family: var(--font-ttl-en);
	display: block;
	position: relative;
}

/*--------------------------
タイトルスタイル
--------------------------*/
.ttl-style01 {
	margin-bottom: 50px;
	line-height: 1.15;
}
.ttl-style01 .ttl-en {
	color: var(--col-main);
	font-size: 9rem;
	font-weight: 300;
	letter-spacing: 0.08em;
	margin-bottom: 6px;
	margin-bottom: 15px;
}
.ttl-style01 .ttl-ja {
	font-size: 2.4rem;
	letter-spacing: 0.12em;
	font-weight: 500;
}

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

.ttl-style03 {
	font-size: 3rem;
	font-weight: 500;
	text-align: center;
	box-sizing: border-box;
	padding: 15px 30px;
	background: var(--col-sub-light);
	border-radius: 100px;
	line-height: 1.25;
	margin-bottom: 15px;
}

/*--------------------------
テキストスタイル
--------------------------*/
/*改行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-col-main {
	background: var(--col-main);
}

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

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

.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.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;
	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;
	font-family: var(--font-ttl-ja);
	font-weight: 500;
}

.btn-style01 {
	padding: 14px 30px;
	line-height: 1.15;
	min-width: 330px;
	border-radius: 50px;
	width: fit-content;
	min-height: 65px;
}
.btn-style01::before {
	position: absolute;
	content: '';
	background: url(../img/common/icon-arw.png) no-repeat;
	width: 22px;
	height: 9px;
	bottom: 0;
	margin: auto;
	right: 25px;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
}

.btn-style03 {
	background: var(--col-sub);
	border-radius: 100px;
	width: 400px;
	height: 150px;
	font-size: 1.9rem;
}
.btn-style03:hover {
	background: var(--col-sub-light);
}
.btn-style03 .icon {
	display: block;
	width: 36px;
	height: auto;
	text-align: center;
	margin: 0 auto 15px;
}

.btn-style04 {
	background: var(--col-sub-light);
	border-radius: 100px;
	width: 400px;
	height: 100px;
}
.btn-style04:hover {
	opacity: 0.7;
}
.btn-style04 .btn-wrap {
	gap: 20px;
}
.btn-style04 .icon {
	display: block;
	width: 31px;
	height: auto;
	text-align: center;
	margin: 0 auto 10px;
}
.btn-style04 .sub-text {
	display: block;
	font-size: 1.5rem;
}
.btn-style04 .main-text {
	display: block;
	font-size: 1.6rem;
}

/*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-style01:hover {
		opacity: 0.7;
	}
	.btn-style01:hover::before {
		right: 20px;
	}
	.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;
	font-size: 2rem;
	color: var(--col-text);
	font-weight: 400;
	letter-spacing: 0.06em;
	font-family: var(--font-ttl-en);
	line-height: 1.15em;
	width: fit-content;
}
.tel-style01 .tel-wrap {
	width: fit-content;
	display: block;
	line-height: 1;
}
.tel-style01 .tel-text {
	text-align: right;
	display: block;
}
.tel-style01 .num {
	position: relative;
	display: block;
	width: fit-content;
	padding-left: 30px;
	font-size: 3.3rem;
	letter-spacing: 0.1em;
}
.tel-style01 .num::before {
	position: absolute;
	content: '';
	background: url(../img/common/icon-tel.png) no-repeat;
	width: 20px;
	height: 24px;
	background-size: contain;
	bottom: 0;
	left: 0;
	margin: auto;
	top: 8px;
}

.com-info-text {
	flex-direction: column;
	gap: 15px;
}
.com-info-text-item {
	position: relative;
	gap: 10px;
	width: 100%;
	line-height: 1.2;
}

.com-info-text-item .ttl {
	width: fit-content;
	position: relative;
	box-sizing: border-box;
	padding-right: 12px;
}

.com-info-text-item .ttl::before {
	position: absolute;
	content: '';
	background: var(--col-text);
	width: 1px;
	height: 16px;
	right: 0;
	margin: auto;
	top: 2px;
	background-size: contain;
	transition: all 0.3s ease;
}

.com-info-text-item .text {
	width: 80%;
}

/*--------------- ▲ info ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼  ▼ ---------------*/
/*--------------- ▲  ▲ ---------------*/
/*--------------- ▼ list-style ▼ ---------------*/
.list-style01-item {
	font-size: 1.9rem;
	position: relative;
	display: block;
	box-sizing: border-box;
	padding: 23px 15px 25px 30px;
	line-height: 1.3rem;
	border-bottom: 1px solid var(--col-main-light);
}
.list-style01-item::before {
	position: absolute;
	content: '';
	background: url(../img/common/icon-check.png) no-repeat;
	width: 22px;
	height: 22px;
	left: 0;
	margin: auto;
	top: 19px;
	background-size: contain;
	transition: all 0.3s ease;
}
.list-style01-item:nth-child(1) {
	padding: 0 15px 25px 30px;
}
.list-style01-item:nth-child(1)::before {
	top: -5px;
}
.list-style01-item:last-child {
	border: none;
	padding: 23px 15px 0 30px;
}

.list-style01-half .list-style01-item {
	width: 50%;
}
.list-style01-half .list-style01-item:nth-child(1) {
	padding: 25px 15px 25px 30px;
}
.list-style01-half .list-style01-item:nth-child(1)::before {
	top: 19px;
}

.list-style02 {
	position: relative;
	gap: 65px;
	flex-direction: column;
	counter-reset: number 0;
}
.list-style02-item {
	position: relative;
	width: 728px;
	background: var(--col-wh);
	border-radius: 30px;
	box-sizing: border-box;
	padding: 40px 27px 30px;
	box-shadow: 0 0 15px rgba(var(--col-sub-rgb), 0.2);
}
.list-style02-ttl {
	font-size: 3rem;
	letter-spacing: 0.12em;
	font-weight: 600;
	position: absolute;
	top: 0;
	transform: translateY(-50%);
	box-sizing: border-box;
	padding: 0 0 0 90px;
}
.list-style02-ttl::before {
	position: absolute;
	content: '0' counter(number);
	counter-increment: number 1;
	left: 0;
	margin: auto;
	right: 0;
	top: -50px;
	background-size: contain;
	transition: all 0.3s ease;
	font-family: var(--font-ttl-en);
	font-size: 8rem;
	color: var(--col-gry);
	font-weight: 300;
}

.list-style03 {
	flex-direction: column;
	gap: 100px;
	counter-reset: number 0;
}
.list-style03-item-left {
	width: 520px;
}
.list-style03-item:nth-child(even) .list-style03-item-left {
	order: 2;
}
.list-style03-item-ttl {
	font-size: 3rem;
	letter-spacing: 0.1em;
	font-weight: 500;
	margin-bottom: 20px;
	padding-top: 30px;
}
.list-style03-item-ttl::before {
	position: absolute;
	content: '0' counter(number);
	counter-increment: number 1;
	left: 0;
	margin: auto;
	right: 0;
	top: -80px;
	background-size: contain;
	transition: all 0.3s ease;
	font-size: 9rem;
	letter-spacing: 0.08em;
	font-weight: 300;
	font-family: var(--font-ttl-en);
	color: var(--col-gry);
}
.list-style03-item-img {
	aspect-ratio: 520/320;
	width: 520px;
	height: 320px;
}

/*--------------- ▲ list-style ▲ ---------------*/
/*--------------- ▼ box-style ▼ ---------------*/
.box-style01 {
	position: relative;
	border-radius: 30px;
	box-sizing: border-box;
	padding: 50px 40px;
	box-shadow: 0 0 15px rgba(var(--col-sub-rgb), 0.35);
}

/*--------------- ▲ box-style ▲ ---------------*/
/*--------------- ▼ img ▼ ---------------*/
/*装飾ありの画像共通スタイル
---------------------------*/
.img-style01 {
	position: relative;
	aspect-ratio: 1/1;
	height: fit-content;
}
.img-style01::before {
	position: absolute;
	content: '';
	border: 1px solid var(--col-gry);
	width: 100%;
	height: 100%;
	margin: auto;
	right: -8px;
	top: -8px;
	background-size: contain;
	transition: all 0.3s ease;
	border-radius: 20px;
}
.img-style01 .com-img {
	aspect-ratio: 1/1;
	width: 520px;
	height: fit-content;
}

/*--------------- ▲ img ▲ ---------------*/
/*--------------- ▼ テーブル ▼ ---------------*/
.table-style01 {
	width: 100%;
}
.table-style01 tr,
.table-style01 tbody {
	width: 100%;
}
.table-style01 th {
	width: 25%;
	vertical-align: middle;
	padding: 16px 20px;
	border-bottom: 1px solid var(--col-main);
	box-sizing: border-box;
	font-weight: 400;
}
.table-style01 td {
	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: 60px;
}
.com-news .news-item {
	width: 320px;
}
.com-news .news-item:last-child {
	margin-bottom: 0;
}
.com-news .news-item a {
	box-sizing: border-box;
	display: block;
	transition: all 0.3s ease;
}
.com-news .news-item a:hover {
	opacity: 0.7;
}
.com-news .news-post-img {
	display: inline;
}
.com-news .news-post-ttl {
	margin-bottom: 10px;
	font-size: 1.5rem;
}
.com-news .news-post-time {
	box-sizing: border-box;
	font-size: 1.5rem;
	text-align: right;
	display: block;
	margin: 0 0 0 auto;
}

.news-tag {
	font-size: 1.5rem;
	font-weight: 500;
	gap: 10px;
	width: fit-content;
	box-sizing: border-box;
	padding: 2px 6px;

	font-family: var(--font-ttl-ja);
	line-height: 1.15;
	margin-bottom: 10px;
}
.news-tag .tag {
	padding: 0 6px;
	box-sizing: border-box;
	background: var(--col-sub-light);
	border-radius: 30px;
}

.com-news .news-post-img .com-img {
	aspect-ratio: 320/220;
	width: 320px;
	height: fit-content;
	margin-bottom: 15px;
}

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

.com-news .text-width {
	width: 830px;
}

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

/*-----------------------
一覧ページ
------------------------*/
.news-post .news-list {
	flex-direction: column;
	gap: 0;
}
.news-post .news-item {
	width: 100%;
	border-bottom: 1px solid var(--col-gry);
}
.news-post .news-post-img {
	display: block;
	width: fit-content;
	height: fit-content;
	aspect-ratio: 320 / 220;
}
.news-post .news-post-img .com-img {
	aspect-ratio: 320 / 220;
	width: 200px;
	height: fit-content;
}

.news-post .news-post-time{
	margin: 0 0 10px 0;
	text-align: left;
}

.news-post .news-post-link{
	display: block;
	padding: 30px 0;
	box-sizing: border-box;
}
/*--------------- △ 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: var(--col-text);
}
ul.pagenation li a:hover {
	opacity: 0.7;
}
ul.pagenation li.current {
	width: 45px;
	height: 45px;
	font-size: 20px;
	line-height: 1.15;
	box-sizing: border-box;
	color: var(--col-wh);
	background: var(--col-main);
}

/*--------------- △ ページネーション △ ---------------*/
/*--------------- ▽ ページボタン ▽ ---------------*/
.page-btn {
	position: relative;
	margin-top: 30px;
}
.page-btn a {
	position: relative;
	font-weight: bold;
}
.page-btn .right,
.page-btn .left {
	position: absolute;
}
.page-btn .right a,
.page-btn .left a {
	font-size: 16px;
}
.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;
}

.privacy .privacy-link {
	color: var(--col-main);
	border-bottom: 2px solid var(--col-main);
}

/*--------------- △ プライバシーポリシー △ ---------------*/
/*--------------- ▽ サイトマップ ▽ ---------------*/
.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);
	border-bottom: 1px solid var(--col-wh);
}

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

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

/*---------------------
お問い合わせ完了
----------------------*/
#complete .complete-box {
	text-align: center;
}

/*--------------- △ お問い合わせ △ ---------------*/
/*--------------- ▽ 404エラー ▽ ---------------*/
.not-found-txt {
	text-align: center;
}

/*--------------- △ 404エラー △ ---------------*/ /*# sourceMappingURL=common.css.map */
