@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/
/*メインカラー*/
:root {
	--col-main: #f39037;
	--col-main-rgb: 243, 144, 55;
	--col-main-light: #fae8c3;
	--col-main-light02: #fadeb4;
	--col-sub: #5c3513;
	--col-sub-rgb: 92, 53, 19;
	--col-text: #5c3513;
	--col-text-rgb: 92, 53, 19;
	--col-wh: #fff;
	--col-wh-rgb: 255, 255, 255;
	--col-base: #f3eee6;
	--col-base-rgb: 243, 238, 230;
	--col-base02: #f1f0eb;
}

/*フォント*/
:root {
	--font-text: 'Noto Sans JP', sans-serif;
	--font-ttl-ja: 'M PLUS 1p', sans-serif;
	--font-ttl-en: 'Barlow', sans-serif;
}

:root {
	--font-size-base: 1.6rem;
}

/*
  --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: 50px;
}

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);
	background: var(--col-base);
	/*禁則処理*/
	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;
}
.com-text .mb {
	margin-bottom: 25px;
}

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

.margin-center {
	margin: 0 auto;
}

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

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

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

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

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

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

/*--------------------------
タイトルスタイル
--------------------------*/
.ttl-style01 {
	padding-bottom: 12px;
	margin-bottom: 10%;
	font-size: 2.6rem;
	font-weight: 600;
}
.ttl-style01::before {
	position: absolute;
	content: '';
	background: var(--col-main);
	width: 30px;
	height: 3px;
	background-size: contain;
	transition: all 0.3s ease;
	bottom: 0;
}

.ttl-style01.text-center::before {
	left: 0;
	margin: auto;
	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: 700;
	box-sizing: border-box;
	padding: 7px 15px;
	margin: 0 auto 7%;
	border-radius: 10px;
}

.ttl-style04 {
	font-size: 1.8rem;
	letter-spacing: 0.04em;
	font-weight: 700;
	border-bottom: 2px dashed var(--col-main);
	box-sizing: border-box;
	padding: 0 0 10px 55px;
	margin-bottom: 6%;
}
.ttl-style04::before {
	content: '0' counter(number);
	counter-increment: number 1;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 20px;
	margin: auto;
	background: var(--col-main);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 2;
	font-size: 2rem;
	font-weight: 700;
	color: var(--col-wh);
}

.ttl-style05 {
	padding-bottom: 20px;
	margin-bottom: 7%;
	font-size: 2rem;
	font-weight: 600;
}
.ttl-style05::before {
	position: absolute;
	content: '';
	background: var(--col-main);
	width: 30px;
	height: 2px;
	background-size: contain;
	transition: all 0.3s ease;
	bottom: 0;
}

.ttl-style05.text-center::before {
	left: 0;
	margin: auto;
	right: 0;
}

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

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

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

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

.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;
}

/*--------------------
ボタンスタイル
----------------------*/
.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;
}

.btn-style01 {
	padding: 20px 30px;
	line-height: 1.2;
	width: 80%;
	background: var(--col-sub);
	color: var(--col-wh);
	border-radius: 30px;
	margin: 0 auto;
}
.btn-style01::before {
	position: absolute;
	content: '';
	border-bottom: 3px solid var(--col-wh);
	border-right: 3px solid var(--col-wh);
	width: 12px;
	height: 12px;
	bottom: 0;
	margin: auto;
	right: 20px;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
	transform: rotate(-45deg);
}

.btn-style02 {
	background: var(--col-sub);
	color: var(--col-wh);
	width: 80%;
	min-height: 50px;
	border-radius: 30px;
	text-align: center;
	box-sizing: border-box;
	padding: 12px;
}
.btn-style02 .btn-wrap {
	gap: 8px;
}

.btn-style03 {
	background: var(--col-main);
	width: fit-content;
	color: var(--col-wh);
	font-size: 1.8rem;
	box-sizing: border-box;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.btn-style04 {
	color: var(--col-wh);
	box-sizing: border-box;
	padding: 15px 30px 15px 15px;
	border-radius: 40px;
}
.btn-style04::before {
	position: absolute;
	content: '';
	border-bottom: 2px solid var(--col-wh);
	border-right: 2px solid var(--col-wh);
	width: 8px;
	height: 8px;
	bottom: 0;
	margin: auto;
	right: 15px;
	top: 0;
	background-size: contain;
	transition: all 0.3s ease;
	transform: rotate(-45deg);
}

/*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,
	.btn-style04:hover {
		opacity: 0.7;
	}
	.btn-style01:hover {
		opacity: 0.7;
	}
	.btn-style01:hover::before {
		right: 10px;
	}
	.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: 600;
	letter-spacing: 0.06em;
}
.tel-style01 .tel-wrap {
	width: fit-content;
}
.tel-style01 .num {
	position: relative;
	display: block;
	width: fit-content;
	padding-left: 40px;
	margin: 0 auto 1%;
	font-size: 2.8rem;
	font-weight: 700;
}
.tel-style01 .num::before {
	position: absolute;
	content: '';
	background: url(../img/common/icon-tel.png) no-repeat;
	width: 26px;
	height: 26px;
	background-size: contain;
	bottom: 0;
	left: 0;
	margin: auto;
	top: 0;
}

.com-info {
	gap: 20px;
}
.com-info .com-info-btn {
	width: 100%;
}

.com-tel-bnr {
	position: relative;
	display: block;
	margin: 0 auto;
	background: var(--col-wh);
	box-sizing: border-box;
	padding: 8% 4%;
	width: fit-content;
	border-radius: 10px;
	width: 85%;
}
.com-tel-bnr::before {
	position: absolute;
	content: '';
	background: url(../img/common/illust-dog01.png) no-repeat;
	width: 60px;
	height: 110px;
	bottom: -40px;
	margin: auto;
	right: -50px;
	background-size: contain;
	transition: all 0.3s ease;
}

/*--------------------
SNS
----------------------*/
.com-sns-icon-list {
	gap: 25px;
	width: fit-content;
	padding: 6%;
}
.com-sns-icon-list .link {
	display: block;
	width: 40px;
}
.com-sns-icon-list .link:hover {
	opacity: 0.7;
}

.com-info-tel-list {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	padding: 6%;
}

.com-info-tel-item {
	position: relative;
	width: 100%;
	margin-bottom: 6%;
}
.com-info-tel-item:last-child {
	margin-bottom: 0;
}
.com-info-tel-item .ttl {
	display: block;
	font-weight: 700;
	position: relative;
	border-left: 3px solid var(--col-main);
	padding: 0 0 0 15px;
	box-sizing: border-box;
	font-size: 1.5rem;
  color: var(--col-main);
}
.com-info-tel-item .num {
	display: block;
	font-size: 1.9rem;
	font-weight: 700;
	padding: 0 0 0 15px;
	box-sizing: border-box;
}
.com-info-tel-item .small{
  font-size: 1.4rem;
}

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

/*--------------- ▲ img ▲ ---------------*/
/*--------------- ▼ テーブル ▼ ---------------*/
.table-style01 {
	width: 100%;
}
.table-style01 th {
	background: var(--col-main-light);
	width: 100%;
	display: block;
	padding: 12px 20px;
	box-sizing: border-box;
	font-weight: 600;
}
.table-style01 td {
	background: var(--col-wh);
	width: 100%;
	display: block;
	padding: 16px 20px;
	box-sizing: border-box;
	font-weight: 500;
}

.table-style02 {
	width: 100%;
}
.table-style02 th {
	width: 100%;
	display: block;
	padding: 16px 0 0;
	box-sizing: border-box;
	font-weight: 600;
	color: var(--col-main);
}
.table-style02 td {
	width: 100%;
	display: block;
	padding: 16px 0;
	border-bottom: dotted 1px var(--col-text);
	box-sizing: border-box;
	font-weight: 400;
}

.table-style03 {
	width: 100%;
}
.table-style03 th {
	width: 100%;
	display: block;
	padding: 16px 0 0;
	box-sizing: border-box;
	font-weight: 600;
}
.table-style03 td {
	width: 100%;
	display: block;
	padding: 16px 0;
	border-bottom: dotted 1px var(--col-text);
	box-sizing: border-box;
	font-weight: 400;
	text-align: right;
}

/*--------------- ▲ テーブル ▲ ---------------*/
/*--------------- △ 共通パーツ △ ---------------*/
/*--------------- ▽ com-news ▽ ---------------*/
.com-news .news-item a {
	box-sizing: border-box;
	padding: 20px 0;
	display: block;
	line-height: 1;
	transition: all 0.3s ease;
	border-bottom: 1px dashed var(--col-text);
}
.com-news .news-item a:hover {
	opacity: 0.7;
}
.com-news .news-post-ttl {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 15px;
}
.com-news .news-post-time {
	margin-right: 10px;
	box-sizing: border-box;
	display: block;
}
.com-news .news-text {
	margin-bottom: 10px;
}

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

.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: 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 */
