/*-------------------------------
デザイントークン
サイトごとに変わる設定はここだけ変更すればOK
-------------------------------*/
:root {
	/* color */
	--color-main: #812509;
	--color-sub: #004040;
	--color-accent: #FFEB00;
	--color-font: #000000;
	--color-white: #FFFFFF;
	--color-gray: #DEDEDE;
	--color-silver: #F8F8F8;
	--color-orange: #C4850E;
	--color-bg: #FFFDE2;

	/* font-family */
	--ff-main: "M PLUS 1p", sans-serif;
	--ff-heading: "Noto Serif JP", serif;

	/* font-weight */
	--fw-regular: 400;
	--fw-bold: 700;
	--fw-extra: 800;

	/* letter-spacing */
	--ls-m: 0;

	/* line-height */
	--lh-l: 1.7;
	--lh-m: 1.65;
	--lh-s: 1.4;

	/* font-size（PC・16px=1rem基準） */
	--fs-s: 0.81rem;
	--fs-m: 1rem;
	--fs-ml: 1.25rem;
	--fs-l: 1.5rem;
	--fs-ls: 1.9rem;
	--fs-xl: 2.5rem;
	--fs-xxl: 4.38rem;

	--header-height: 10.63rem;
	--cta-banner-height: 5.13rem;
}
@media (max-width: 1024px) {
	:root {
		--fs-xl: 2.4rem;
		--fs-xxl: 4rem;

		--header-height: 5.6rem;
		--cta-banner-height: 3.73rem;
	}
}
@media (max-width: 599px) {
	:root {
		--fs-s: 0.86rem;
		--fs-ml: 1.14rem;
		--fs-l: 1.3rem;
		--fs-ls: 1.3rem;
		--fs-xl: 1.7rem;
		--fs-xxl: 2.64rem;

		--header-height: 4.79rem;
		--cta-banner-height: 4rem;
	}
}
/*-------------------------------
media query (custom media)
-------------------------------*/
/*-------------------------------
meta setting
-------------------------------*/
html {
	/* 16:9基準。横幅だけでなく高さも見て、16:9より横長な画面では高さ基準（1.78vh）側が優先されて大きくなりすぎないようにする */
	font-size: max(16px, min(1vw, 1.78vh));
	letter-spacing: 0;
	letter-spacing: var(--ls-m);
	font-family: "M PLUS 1p", sans-serif;
	font-family: var(--ff-main);
}
@media(max-width: 1024px){
html {
		font-size: max(15px, min(1vw, 1.78vh));
}
	}
@media(max-width: 599px){
html {
		font-size: max(14px, min(1vw, 1.78vh));
}
	}
body {
	margin: 0;
	overflow-x: hidden;
}
body * {
		font-family: "M PLUS 1p", sans-serif;
		font-family: var(--ff-main);
	}
body.pagename-guide{
	background-color: #FFFDE2;
	background-color: var(--color-bg);
}
/*-------------------------------
font（フォントセット）
名前はトークンのfs-*と一致させている（色・サイズ・太さ・字間・行間の値は setting/_tokens.css を参照）
-------------------------------*/
/* h1の基準 */
/* h2の基準 */
/* h3以降の基準 */
/* p, a, li など通常テキストの基準 */
/* ボタン */
/* ヘッダー */
/* フッター */
/*-------------------------------
ブロックエディタでフォントサイズのプリセット（has-xxx-font-size）をだ時に、行間・太さ・字間もフォントセットとして連動させる
（font-sizeの値自体はWPが自動でクラスに適用するのでここでは指定しない）
-------------------------------*/
.has-xxl-font-size {
	font-weight: 700;
	font-weight: var(--fw-bold);
	line-height: 1.4;
	line-height: var(--lh-s);
}
.has-xl-font-size {
	font-weight: 700;
	font-weight: var(--fw-bold);
	line-height: 1.4;
	line-height: var(--lh-s);
}
.has-ls-font-size {
	font-weight: 700;
	font-weight: var(--fw-bold);
	line-height: 1.65;
	line-height: var(--lh-m);
}
.has-l-font-size,
.has-ml-font-size {
	font-weight: 700;
	font-weight: var(--fw-bold);
	line-height: 1.65;
	line-height: var(--lh-m);
}
.has-m-font-size,
.has-s-font-size {
	font-weight: 400;
	font-weight: var(--fw-regular);
	line-height: 1.65;
	line-height: var(--lh-m);
}
/*-------------------------------
hタグ
-------------------------------*/
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
}
h1, h2, h3, h4, h5, h6{
	font-family: "Noto Serif JP", serif;
	font-family: var(--ff-heading);
}
h1,.font-xl {
	font-size: 2.5rem;
	font-size: var(--fs-xl);
	font-weight: 700;
	font-weight: var(--fw-bold);
	line-height: 1.4;
	line-height: var(--lh-s);
}
h2,.font-ls {
	font-size: 1.9rem;
	font-size: var(--fs-ls);
	font-weight: 700;
	font-weight: var(--fw-bold);
	line-height: 1.65;
	line-height: var(--lh-m);
}
.page-title {
	margin: 2.5rem auto 3rem;
	text-align: center;
}
@media (max-width: 599px) {
.page-title {
		margin: 3rem auto 2rem;
}
	}
.page-title h1,.page-title h2{
		font-size: 2.5rem;
		font-size: var(--fs-xl);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.4;
		line-height: var(--lh-s);
	}
.page-title h1 span, .page-title h2 span {
			font-size: 0.81rem;
			font-size: var(--fs-s);
			font-weight: 700;
			font-weight: var(--fw-bold);
			line-height: 1.65;
			line-height: var(--lh-m);
			display: block;
			margin-top: 5px;
		}
.section-title {
	margin-bottom: 40px;
	text-align: center;
}
@media (max-width: 599px) {
.section-title {
		margin-bottom: 30px;
}
	}
.section-title h2 {
		font-size: 2.5rem;
		font-size: var(--fs-xl);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.4;
		line-height: var(--lh-s);
	}
.section-title span {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.7;
		line-height: var(--lh-l);
		display: block;
		margin-top: 5px;
	}
.section-description{
	text-align: center;
	font-weight: 700;
	font-weight: var(--fw-bold);
}
h3, h4, h5, h6,.font-l {
	font-size: 1.5rem;
	font-size: var(--fs-l);
	font-weight: 700;
	font-weight: var(--fw-bold);
	line-height: 1.65;
	line-height: var(--lh-m);
}
p, ul, ol, li, details, summary,.font-m {
	font-size: 1rem;
	font-size: var(--fs-m);
	font-weight: 400;
	font-weight: var(--fw-regular);
	line-height: 1.65;
	line-height: var(--lh-m);
}
time,.font-s {
	font-size: 0.81rem;
	font-size: var(--fs-s);
	font-weight: 400;
	font-weight: var(--fw-regular);
	line-height: 1.65;
	line-height: var(--lh-m);
}
/*-------------------------------
見出しブロックのスタイルバリエーション
-------------------------------*/
.is-style-section-heading {
	display: block;
	border-radius: 300px;
	background-color: #004040;
	background-color: var(--color-sub);
	color: #FFEB00;
	color: var(--color-accent);
	padding: 1rem 2rem;
	margin: 4rem 0 2rem;
	box-sizing: border-box;
	text-align: center;
}
@media(max-width: 599px){
.is-style-section-heading {
}}
.is-style-heading-main-color {
	color: #812509;
	color: var(--color-main);
	margin-bottom: 0.5rem;
}
img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	   object-fit: contain;
}
.text-clamp {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
/*-------------------------------
reset css
-------------------------------*/
a {
	font-size: 1rem;
	font-size: var(--fs-m);
	font-weight: 400;
	font-weight: var(--fw-regular);
	line-height: 1.65;
	line-height: var(--lh-m);
	color: #000000;
	color: var(--color-font);
	-webkit-text-decoration: none;
	text-decoration: none;
}
a:hover {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
		-webkit-text-decoration: none;
		text-decoration: none;
		opacity: 0.7;
	}
@media (max-width: 1024px) {
a:hover {
			opacity: 1;
	}
		}
ul, ol {
	margin: 1rem 0;
	padding-left: 1.4rem;
}
.list-none {
	margin: 0;
	padding-left: 0;
}
.list-none li {
		list-style: none;
	}
/*-------------------------------
ボタン
-------------------------------*/
.btn-normal {
	display: flex;
	justify-content: center;
	gap: 1rem;
	align-items: center;
	margin-top: 3rem;
}
.btn-normal a {
		font-size: 1.25rem;
		font-size: var(--fs-ml);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.65;
		line-height: var(--lh-m);
		background: #812509;
		background: var(--color-main);
		color: #FFEB00;
		color: var(--color-accent);
		padding: 10px 1rem;
		border-radius: 4px;
		box-sizing: border-box;
		width: 100%;
		text-align: center;
		max-width: 350px;
		margin: 0 auto;
		position: relative;
	}
.btn-normal a:after {
			content: "";
			position: absolute;
			right: 1rem;
			top: calc(50% - 0.35rem);
			display: inline-block;
			width: 0.7rem;
			height: 0.7rem;
			border-top: 2px solid currentColor;
			border-right: 2px solid currentColor;
			transform: rotate(45deg);
			flex-shrink: 0;
		}
.btn-normal.btn-white a{
			background-color: #FFFFFF;
			background-color: var(--color-white);
			color: #812509;
			color: var(--color-main);
		}
.btn-normal.btn-white a:after{
				border-color: #FFFFFF;
				border-color: var(--color-white);
			}
.icon-btn {
	margin-top: 2.5rem;
}
.icon-btn a {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.7;
		line-height: var(--lh-l);
		display: flex;
		margin: 0 auto;
		gap: 12px;
		align-items: center;
		width: -moz-max-content;
		width: max-content;
		padding: 10px 2rem;
		box-sizing: border-box;
	}
.icon-btn a:after {
			content: "";
			display: inline-block;
			background: center / contain no-repeat url("../images/icon/arrow-right.svg");
			width: 1.8rem;
			height: 1rem;
		}
.icon-btn.icon-instagram a:after {
				background: center / contain no-repeat url("../images/icon/icon_instagtam.svg");
			}
.text-center {
	text-align: center;
}
/*-------------------------------
grid
-------------------------------*/
.column-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
.column-block {
		grid-template-columns: 1fr;
}
	}
.column-block .wrap-img img {
			width: 100%;
		}
/*-------------------------------
画像リサイズ
-------------------------------*/
.img-thumb {
	position: relative;
	width: 100%;
}
.img-thumb:before {
		content: "";
		display: block;
		padding-top: 100%;
	}
.img-thumb img {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		   object-fit: cover;
	}
.img-thumb.img-square:before {
			padding-top: 56.25%;
		}
.img-thumb.shape-circle {
		border-radius: 50%;
		overflow: hidden;
	}
.img-thumb.shape-circle img {
			border-radius: 50%;
		}
.img-thumb.img-rect32:before {
			padding-top: 66.66%;
		}
.mt-ss{
	margin-top: 1rem;
}
.mt-s{
	margin-top: 1.5rem;
}
.mt-m{
	margin-top: 3rem;
}
@media(max-width: 599px){
.mt-m{
		margin-top: 2rem;
}
	}
.pad-m{
	padding: 2.5rem 10% 3rem;
	border-radius: 1rem;
	box-sizing: border-box;
}
@media(max-width: 599px){
.pad-m{
		padding: 2.5rem 5% 3rem;
}
	}
/*-------------------------------
背景・効果
-------------------------------*/
.bg-white {
	background-color: #FFFFFF;
	background-color: var(--color-white);
}
.bg-main-t{
	background-color: rgba(129, 37, 9, 0.95);
}
.bg-main-t *{
		color:  #FFFFFF;
		color:  var(--color-white);
	}
.bg-white-t{
	background-color: rgba(255,255,255,0.8);
}
.bg-gray {
	background-color: #DEDEDE;
	background-color: var(--color-gray);
}
/*-------------------------------
コンテンツ要素
-------------------------------*/
.contents-width {
	width: 70%;
	margin: 0 auto;
}
@media (max-width: 1440px) {
.contents-width {
		width: 80%;
}
	}
@media (max-width: 599px) {
.contents-width {
		width: 90%;
}
	}
.slim-width {
	max-width: 1160px;
}
.text-white{
	color: #FFFFFF;
	color: var(--color-white);
}
.section-inner-s{
	padding-left: 5%;
	padding-right: 5%;
	box-sizing: border-box;
}
.section-inner-m{
	padding-left: 10%;
	padding-right: 10%;
	box-sizing: border-box;
}
.section-inner-l{
	padding-left: 20%;
	padding-right: 20%;
	box-sizing: border-box;
}
@media (max-width: 1024px) {
.section-inner-l,
.section-inner-m,
.section-inner-s {
		padding-left: 0;
		padding-right: 0;
}
	}
.border-box{
	border: 2px solid #812509;
	border: 2px solid var(--color-main);
}
/* ページパディング */
.page-padding {
	padding-top: 10.63rem;
	padding-top: var(--header-height);
	padding-bottom: 6rem;
}
/* ブロックパディング */
.section-padding-m {
	padding-top: 80px;
	padding-bottom: 80px;
}
@media (max-width: 599px) {
.section-padding-m {
		padding-top: 60px;
		padding-bottom: 60px;
}
	}
.section-b-bottom{
	border-bottom: 2px solid #FFEB00;
	border-bottom: 2px solid var(--color-accent);
}
/* 改行 */
@media (max-width: 599px) {
.pc-br {
		display: none;
}
	}
.tab-br {
	display: none;
}
@media (max-width: 1024px) {
.tab-br {
		display: block;
}
	}
.sp-br {
	display: none;
}
@media (max-width: 599px) {
.sp-br {
		display: block;
}
	}
.main-header {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 900;
	background: #812509;
	background: var(--color-main);
	color: #FFFFFF;
	color: var(--color-white);
	transition: transform 0.3s;
}
.main-header.is-hidden {
		transform: translateY(-100%);
	}
.main-header .header-wrap .header-top {
			position: relative;
			z-index: 101;
			display: flex;
			justify-content: space-between;
			align-items: center;
			gap: 2rem;
			max-width: 90%;
			margin: 0 auto;
			padding: 16px 0;
		}
.main-header .header-wrap .header-logo {
			flex-shrink: 0;
			boxs-izing: border-box;
		}
.main-header .header-wrap .header-logo img {
				display: block;
				width: 150px;
				height: auto;
			}
@media (max-width: 599px) {
.main-header .header-wrap .header-logo img {
					width: 100px;
			}
				}
.main-header .header-wrap .header-nav-row {
			background: rgba(0, 0, 0, 0.15);
		}
@media (max-width: 1024px) {
.main-header .header-wrap .header-nav-row {
				background: none;
		}
			}
.main-header .header-wrap .header-nav {
			margin: 0 auto;
		}
@media (max-width: 1024px) {
.main-header .header-wrap .header-nav {
				position: fixed;
				top: 0;
				right: -100%;
				width: 70%;
				height: 100%;
				background: #FFFFFF;
				background: var(--color-white);
				z-index: 100;
				transition: right 0.3s;
				overflow-y: auto;
				padding: 80px 5%;
				box-sizing: border-box;
		}
				.main-header .header-wrap .header-nav.is-active {
					right: 0;
				}
			}
@media (max-width: 599px) {
.main-header .header-wrap .header-nav {
				width: 90%;
		}
			}
.main-header .header-wrap .header-nav > ul {
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 2rem;
			}
@media (max-width: 1024px) {
.main-header .header-wrap .header-nav > ul {
					flex-direction: column;
					align-items: flex-start;
					justify-content: flex-start;
					gap: 0;
					width: 100%;
			}
				}
.main-header .header-wrap .header-nav > ul li {
					position: relative;
				}
@media (max-width: 1024px) {
.main-header .header-wrap .header-nav > ul li {
						width: 100%;
				}
					}
.main-header .header-wrap .header-nav > ul li a, .main-header .header-wrap .header-nav > ul li .nav-toggle {
						font-size: 1rem;
						font-size: var(--fs-m);
						font-weight: 400;
						font-weight: var(--fw-regular);
						line-height: 1.65;
						line-height: var(--lh-m);
						color: #000000;
						color: var(--color-font);
						display: inline-block;
						padding: 1rem 0;
						cursor: pointer;
						color: #FFFFFF;
						color: var(--color-white);
					}
@media (max-width: 1024px) {
.main-header .header-wrap .header-nav > ul li a, .main-header .header-wrap .header-nav > ul li .nav-toggle {
							display: block;
							padding: 15px 0;
							border-bottom: 1px solid #E8E8E8;
							color: #000000;
							color: var(--color-font);
					}
						}
.main-header .header-wrap .header-nav > ul li .nav-toggle {
						display: inline-flex;
						align-items: center;
						gap: 0.4rem;
					}
@media (max-width: 1024px) {
.main-header .header-wrap .header-nav > ul li .nav-toggle {
							display: flex;
							justify-content: space-between;
					}
						}
.main-header .header-wrap .header-nav > ul li .nav-toggle:after {
							content: "";
							display: inline-block;
							flex-shrink: 0;
							width: 0.4rem;
							height: 0.4rem;
							margin-bottom: 0.3rem;
							border-right: 2px solid currentColor;
							border-bottom: 2px solid currentColor;
							transform: rotate(45deg);
							transition: transform 0.3s;
						}
.main-header .header-wrap .header-nav > ul li.is-open .nav-toggle:after {
						transform: rotate(225deg);
						margin-bottom: -0.2rem;
					}
@media (max-width: 1024px) {
.main-header .header-wrap .header-nav > ul .mega-menu.mega-menu-2col > ul {
							display: grid;
							grid-template-columns: 1fr 1fr;
							grid-gap: 0 1rem;
							gap: 0 1rem;
					}
						}
.main-header .header-wrap .header-nav > ul .mega-menu {
					display: none;
					position: fixed;
					top: 10.63rem;
					top: var(--header-height);
					left: 0;
					width: 100%;
					background-color: #F8F8F8;
					background-color: var(--color-silver);
					box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
					z-index: 95;
				}
@media (max-width: 1024px) {
.main-header .header-wrap .header-nav > ul .mega-menu {
						position: static;
						width: auto;
						box-shadow: none;
						padding-left: 1rem;
				}
					}
.main-header .header-wrap .header-nav > ul .mega-menu > ul {
						display: flex;
						flex-wrap: wrap;
						gap: 1rem;
						max-width: 90%;
						margin: 0 auto;
						padding: 2rem 0;
					}
@media (max-width: 1024px) {
.main-header .header-wrap .header-nav > ul .mega-menu > ul {
							display: block;
							max-width: none;
							padding: 0;
					}
						}
.main-header .header-wrap .header-nav > ul .mega-menu > ul li {
							flex: 0 0 auto;
							width: 15rem;
							min-height: 5.5rem;
							position: relative;
							overflow: hidden;
							background-color: #004040;
							background-color: var(--color-sub);
						}
@media (max-width: 1024px) {
.main-header .header-wrap .header-nav > ul .mega-menu > ul li {
								width: auto;
								min-height: auto;
								background: none !important;
						}
							}
.main-header .header-wrap .header-nav > ul .mega-menu > ul li .mega-thumb {
								position: absolute;
								top: 0;
								right: 0;
								width: 50%;
								height: 100%;
								background-repeat: no-repeat;
								background-position: center;
								background-size: cover;
							}
@media (max-width: 1024px) {
.main-header .header-wrap .header-nav > ul .mega-menu > ul li .mega-thumb {
									display: none;
							}
								}
.main-header .header-wrap .header-nav > ul .mega-menu > ul li a {
								position: relative;
								z-index: 1;
								display: flex;
								align-items: center;
								height: 100%;
								padding: 16px;
								box-sizing: border-box;
								color: #FFFFFF;
								color: var(--color-white);
								background: linear-gradient(to right, #004040 50%, transparent 65%);
								background: linear-gradient(to right, var(--color-sub) 50%, transparent 65%);
							}
@media (max-width: 1024px) {
.main-header .header-wrap .header-nav > ul .mega-menu > ul li a {
									display: block;
									height: auto;
									padding: 8px 0;
									color: #000000;
									color: var(--color-font);
									background: none;
							}
								}
.main-header .header-wrap .header-nav > ul li.has-mega.is-open > .mega-menu {
					display: block;
				}
.main-header .header-wrap .header-nav .nav-close {
				display: none;
			}
@media (max-width: 1024px) {
.main-header .header-wrap .header-nav .nav-close {
					display: block;
					position: absolute;
					top: 20px;
					right: 20px;
					width: 30px;
					height: 30px;
					font-size: 28px;
					line-height: 1;
					background: none;
					border: none;
					color: #000000;
					color: var(--color-font);
					cursor: pointer;
			}
				}
.main-header .header-wrap .header-link {
			display: flex;
			align-items: center;
			gap: 16px;
		}
.main-header .header-wrap .header-link .icon-btn-nav {
				display: flex;
				align-items: stretch;
				gap: 12px;
			}
.main-header .header-wrap .header-link .icon-btn-nav li {
					display: flex;
				}
.main-header .header-wrap .header-link .icon-btn-nav li a {
						display: flex;
						align-items: center;
						gap: 10px;
						border-radius: 8px;
						padding: 5px 20px;
						color: #FFFFFF;
						color: var(--color-white);
						height: 100%;
						box-sizing: border-box;
					}
@media (max-width: 1024px) {
.main-header .header-wrap .header-link .icon-btn-nav li a {
							padding: 10px;
							border-radius: 50%;
					}
						}
.main-header .header-wrap .header-link .icon-btn-nav li a span {
							font-weight: 700;
							font-weight: var(--fw-bold);
						}
@media (max-width: 1024px) {
.main-header .header-wrap .header-link .icon-btn-nav li a span {
								display: none;
						}
							}
.main-header .header-wrap .header-link .icon-btn-nav li img {
						width: auto;
						height: 25px;
						-o-object-fit: contain;
						   object-fit: contain;
					}
@media (max-width: 1024px) {
.main-header .header-wrap .header-link .icon-btn-nav li img {
							width: 1.5rem;
							height: 1.5rem;
					}
						}
.main-header .header-wrap .header-link .icon-btn-nav .cta-tel a {
						background: #FFEB00;
						background: var(--color-accent);
					}
.main-header .header-wrap .header-link .icon-btn-nav .cta-tel a span {
							font-size: 1rem;
							font-size: var(--fs-m);
							font-weight: 700;
							font-weight: var(--fw-bold);
							line-height: 1.7;
							line-height: var(--lh-l);
							line-height: 1.3;
							color: #000000;
							color: var(--color-font);
						}
.main-header .header-wrap .header-link .icon-btn-nav .cta-tel a span span {
								font-size: 0.81rem;
								font-size: var(--fs-s);
								font-weight: 400;
								font-weight: var(--fw-regular);
								line-height: 1.65;
								line-height: var(--lh-m);
								font-weight: 700;
								font-weight: var(--fw-bold);
								display: block;
							}
.main-header .header-wrap .header-link .icon-btn-nav .cta-line a {
						background: #06C755;
					}
@media (max-width: 1024px) {
.main-header .header-wrap .header-link .icon-btn-nav .cta-mail {
						display: none;
				}
					}
.main-header .header-wrap .header-link .icon-btn-nav .cta-mail a {
						background: #DEDEDE;
					}
.main-header .header-wrap .header-link .icon-btn-nav .cta-mail span {
						color: #812509;
						color: var(--color-main);
					}
.main-header .header-wrap .hamburger-btn {
			display: none;
		}
@media (max-width: 1024px) {
.main-header .header-wrap .hamburger-btn {
				display: block;
				width: 30px;
				height: 15px;
				position: relative;
				z-index: 110;
				cursor: pointer;
				flex-shrink: 0;
		}
				.main-header .header-wrap .hamburger-btn span {
					position: absolute;
					left: 0;
					width: 100%;
					height: 2px;
					background: #FFFFFF;
					background: var(--color-white);
					transition: 0.3s;
				}
					.main-header .header-wrap .hamburger-btn span:nth-child(1) {
						top: 0;
					}
					.main-header .header-wrap .hamburger-btn span:nth-child(2) {
						top: 50%;
						transform: translateY(-50%);
					}
					.main-header .header-wrap .hamburger-btn span:nth-child(3) {
						bottom: 0;
					}
						.main-header .header-wrap .hamburger-btn.is-active span:nth-child(1) {
							top: 50%;
							transform: translateY(-50%) rotate(45deg);
						}
						.main-header .header-wrap .hamburger-btn.is-active span:nth-child(2) {
							opacity: 0;
						}
						.main-header .header-wrap .hamburger-btn.is-active span:nth-child(3) {
							top: 50%;
							transform: translateY(-50%) rotate(-45deg);
						}
			}
.nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.nav-overlay.is-active {
		opacity: 1;
		visibility: visible;
	}
.archive-description {
	font-size: 1rem;
	font-size: var(--fs-m);
	font-weight: 400;
	font-weight: var(--fw-regular);
	line-height: 1.65;
	line-height: var(--lh-m);
	margin-top: 20px;
	margin-bottom: 40px;
}
/*-------------------------------
コラム／お知らせ 切り替えタブ
-------------------------------*/
.category-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-bottom: 4rem;
}
.category-tabs li{
		flex: 1;
		max-width: 15rem;
		text-align: center;
	}
.category-tabs li a {
			font-size: 1rem;
			font-size: var(--fs-m);
			font-weight: 400;
			font-weight: var(--fw-regular);
			line-height: 1.65;
			line-height: var(--lh-m);
			font-weight: 700;
			font-weight: var(--fw-bold);
			display: block;
			padding: 0.5rem 2rem;
			border-radius: 300px;
			border: 1.5px solid #000000;
			border: 1.5px solid var(--color-font);
			background: #FFFFFF;
			background: var(--color-white);
			box-sizing: border-box;
		}
.category-tabs li a.is-active {
				background: #FFEB00;
				background: var(--color-accent);
			}
.archive-blog .page-title{
		margin-bottom: 2rem;
	}
/*-------------------------------
コラム・お知らせ：一覧カード
-------------------------------*/
.post-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 2rem;
	gap: 2rem;
}
@media (max-width: 599px) {
.post-list {
		gap: 1rem;
}
	}
.post-list li {
		height: 100%;
	}
.post-list article {
		height: 100%;
	}
.post-list .post-link {
		height: 100%;
	}
.post-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: 5px;
}
.post-content * {
		color: #000000;
		color: var(--color-font);
	}
.post-content .post-meta {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
	}
.post-content .post-date {
		font-size: 0.81rem;
		font-size: var(--fs-s);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
	}
.post-content .post-cat {
		font-size: 0.81rem;
		font-size: var(--fs-s);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
		padding: 0 5px;
		border-radius: 300px;
	}
.post-content .post-title {
		font-size: 1.5rem;
		font-size: var(--fs-l);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.65;
		line-height: var(--lh-m);
	}
@media (max-width: 1024px) {
.post-content .post-title {
			font-size: 1.25rem;
			font-size: var(--fs-ml);
			font-weight: 700;
			font-weight: var(--fw-bold);
			line-height: 1.65;
			line-height: var(--lh-m);
	}
		}
.post-content .post-excerpt {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
		margin-bottom: 0.5rem;
	}
.post-content .post-more {
		font-size: 0.81rem;
		font-size: var(--fs-s);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
		display: flex;
		width: -moz-max-content;
		width: max-content;
		align-items: center;
		gap: 5px;
		margin-top: auto;
		margin-left: auto;
		padding: 0.5rem 1.5rem;
		border-radius: 0.2rem;
		background: #004040;
		background: var(--color-sub);
		color: #FFEB00;
		color: var(--color-accent);
		font-weight: 700;
		font-weight: var(--fw-bold);
	}
.post-content .post-more:after {
			content: "›";
		}
.blog-list a{
		display: grid;
		grid-template-columns: 0.8fr 1fr;
		grid-gap: 1rem;
		gap: 1rem;
		align-items: stretch;
	}
@media(max-width: 1024px){
.blog-list a{
			display: flex;
			flex-direction: column;
	}
		}
.blog-list .post-thumb {
		align-self: start;
	}
@media(max-width: 1024px){
.blog-list .post-thumb {
			flex-shrink: 0;
	}
		}
@media(max-width: 1024px){
.blog-list .post-content {
			flex: 1;
	}
		}
.blog-list .post-title{
		font-size: 1.25rem;
		font-size: var(--fs-ml);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.65;
		line-height: var(--lh-m);
		line-height: 1.5;
	}
.archive-pagination {
	margin-top: 60px;
}
.archive-pagination ul {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 5px;
		margin: 0;
		padding: 0;
	}
.archive-pagination ul li {
			list-style: none;
		}
.archive-pagination a, .archive-pagination span {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
		font-weight: 700;
		font-weight: var(--fw-bold);
		color: #000000;
		color: var(--color-font);
		display: block;
		padding: 2px 10px;
		box-sizing: border-box;
	}
.archive-pagination .dots {
		cursor: default;
	}
.archive-pagination .current {
		background-color: #812509;
		background-color: var(--color-main);
		color: #FFFFFF;
		color: var(--color-white);
		border-radius: 3px;
	}
/*-------------------------------
お問い合わせフォーム（Contact Form 7）
実際のフォームHTML（cf-row / cf-inner-label / cf-label-text / cf-input-field / acceptance-block / submitbtn）に合わせたスタイル
-------------------------------*/
div.wpcf7 {
	margin: 0 auto;
}
div.wpcf7 form {
		margin-top: 2.5rem;
	}
div.wpcf7 ::-moz-placeholder {
		color: #DEDEDE;
		color: var(--color-gray);
	}
div.wpcf7 ::placeholder {
		color: #DEDEDE;
		color: var(--color-gray);
	}
@media (max-width: 599px) {
div.wpcf7 ::-moz-placeholder {
			font-size: 16px;
	}
div.wpcf7 ::placeholder {
			font-size: 16px;
	}
		}
div.wpcf7 .cf-row {
		margin-bottom: 2rem;
	}
div.wpcf7 .cf-row:last-of-type {
			margin-bottom: 0;
		}
div.wpcf7 .cf-inner-label {
		display: flex;
		align-items: center;
		gap: 1rem;
	}
div.wpcf7 .cf-inner-label:has(textarea) {
			align-items: flex-start;
			padding-top: 12px;
		}
@media (max-width: 1024px) {
div.wpcf7 .cf-inner-label {
			flex-direction: column;
			align-items: flex-start;
			gap: 0.5rem;
			padding-top: 0 !important;
	}
		}
div.wpcf7 .cf-label-text {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.7;
		line-height: var(--lh-l);
		display: flex;
		align-items: center;
		gap: 0.6rem;
		flex-basis: 15rem;
	}
@media (max-width: 1024px) {
div.wpcf7 .cf-label-text {
			flex: 0 0 auto;
			height: auto;
	}
		}
div.wpcf7 .required-mark {
		font-size: 0.81rem;
		font-size: var(--fs-s);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		background: #812509;
		background: var(--color-main);
		color: #FFFFFF;
		color: var(--color-white);
		border-radius: 4px;
		padding: 2px 10px;
		line-height: 1.6;
	}
div.wpcf7 .required-mark:before {
			content: "必須";
		}
div.wpcf7 .cf-input-field {
		display: block;
		flex: 1;
		min-width: 0;
		width: 100%;
	}
div.wpcf7 .check-block {
		display: flex;
		align-items: center;
		gap: 1rem;
	}
@media (max-width: 1024px) {
div.wpcf7 .check-block {
			flex-direction: column;
			align-items: flex-start;
	}
		}
div.wpcf7 .check-block .cf-inner-label {
			flex-basis: auto;
		}
div.wpcf7 .check-block .wpcf7-checkbox {
			display: flex;
			flex-wrap: wrap;
			gap: 12px;
		}
div.wpcf7 .check-block .wpcf7-list-item {
			margin: 0 !important;
		}
div.wpcf7 .check-block label {
			display: flex;
			align-items: center;
			gap: 6px;
		}
div.wpcf7 .check-block input[type="checkbox"] {
			width: 18px;
			height: 18px;
			flex-shrink: 0;
			accent-color: #812509;
			accent-color: var(--color-main);
		}
div.wpcf7 input[type="text"],
	div.wpcf7 input[type="email"],
	div.wpcf7 input[type="tel"],
	div.wpcf7 textarea {
		width: 100%;
		box-sizing: border-box;
		font-family: inherit;
		font-weight: 400;
		background: #FFFFFF;
		background: var(--color-white);
		border: 1px solid #DEDEDE;
		border: 1px solid var(--color-gray);
		border-radius: 8px;
		padding: 14px 18px;
		outline: none;
		transition: border-color 0.3s;
	}
div.wpcf7 input[type="text"]:focus, div.wpcf7 input[type="email"]:focus, div.wpcf7 input[type="tel"]:focus, div.wpcf7 textarea:focus {
			border-color: #812509;
			border-color: var(--color-main);
		}
@media (max-width: 599px) {
div.wpcf7 input[type="text"],
	div.wpcf7 input[type="email"],
	div.wpcf7 input[type="tel"],
	div.wpcf7 textarea {
			font-size: 16px;
	}
		}
div.wpcf7 textarea {
		min-height: 10rem;
		resize: vertical;
	}
div.wpcf7 .acceptance-block {
		margin: 2rem 0 0;
		text-align: center;
	}
div.wpcf7 .acceptance-block .wpcf7-list-item {
			margin-left: 0 !important;
		}
div.wpcf7 .acceptance-block label {
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 0.6rem;
			text-align: center;
		}
div.wpcf7 .acceptance-block input[type="checkbox"] {
			width: 18px;
			height: 18px;
			flex-shrink: 0;
			accent-color: #812509;
			accent-color: var(--color-main);
		}
div.wpcf7 .submitbtn {
		text-align: center;
		margin-top: 2rem;
	}
div.wpcf7 .submitbtn .wpcf7-submit {
			font-size: 1.25rem;
			font-size: var(--fs-ml);
			font-weight: 700;
			font-weight: var(--fw-bold);
			line-height: 1.65;
			line-height: var(--lh-m);
			display: inline-block;
			background: #812509;
			background: var(--color-main);
			color: #FFFFFF;
			color: var(--color-white);
			border: none;
			border-radius: 300px;
			padding: 16px 5rem;
			cursor: pointer;
			transition: opacity 0.3s;
		}
@media (max-width: 599px) {
div.wpcf7 .submitbtn .wpcf7-submit {
				width: 100%;
				padding: 16px;
		}
			}
div.wpcf7 .submitbtn .wpcf7-submit:hover {
				opacity: 0.8;
			}
div.wpcf7 .wpcf7-not-valid-tip {
		font-size: 0.81rem;
		font-size: var(--fs-s);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
		display: block;
		color: #812509;
		color: var(--color-main);
		margin-top: 6px;
	}
div.wpcf7 .wpcf7-response-output {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
		margin-top: 1.5rem;
		border-radius: 8px;
		text-align: center;
		padding: 12px;
	}
.pagename-privacy-policy h2{
		font-size: 1.25rem;
		font-size: var(--fs-ml);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.65;
		line-height: var(--lh-m);
	}
.single-post-content .post-meta {
		display: flex;
		align-items: center;
		gap: 1rem;
	}
.single-post-content .post-cat,.single-post-content .post-date {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
	}
.single-post-content .post-thumb {
		margin-bottom: 1.5rem;
	}
.single-post-content .post-title {
		font-size: 1.9rem;
		font-size: var(--fs-ls);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.65;
		line-height: var(--lh-m);
		margin-bottom: 1.5rem;
	}
.single-post-content .single-content {
		padding: 0 5%;
	}
@media (max-width: 599px) {
.single-post-content .single-content {
			padding: 0;
	}
		}
.single-post-content .single-content h1,.single-post-content .single-content h2,.single-post-content .single-content h3,.single-post-content .single-content h4,.single-post-content .single-content h5,.single-post-content .single-content h6{
			margin-top: 1.5rem;
		}
.single-post-content .single-content ul, .single-post-content .single-content ol, .single-post-content .single-content img, .single-post-content .single-content p, .single-post-content .single-content iframe{
			margin: 1rem 0;
		}
.single-post-content .single-content ul li, .single-post-content .single-content ol li {
				line-height: 1.6;
				margin: 5px 0;
			}
.single-content-more{
	margin-top: 1rem;
}
.single-body{
	border-radius: 1rem;
	padding: 2rem 10%;
}
@media (max-width: 599px) {
.single-body{
		padding-left: 0;
		padding-right: 0;
}
	}
.single-pagination {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 80px;
}
@media (max-width: 599px) {
.single-pagination {
		margin-top: 60px;
}
	}
.single-pagination .prev, .single-pagination .home, .single-pagination .next {
		flex: 1 1 0;
		min-width: 0;
	}
.single-pagination .prev a,.single-pagination .home a,.single-pagination .next a{
			color: #000000;
			color: var(--color-font);
			font-weight: 700;
			font-weight: var(--fw-bold);
		}
.single-pagination .prev a, .single-pagination .next a {
			display: flex;
			align-items: center;
			gap: 0.5rem;
		}
@media (max-width: 599px) {
.single-pagination .prev a, .single-pagination .next a {
				gap: 5px;
		}
			}
.single-pagination .prev a {
			justify-content: flex-start;
		}
.single-pagination .prev a:before {
				content: "";
				display: inline-block;
				background: center / contain no-repeat url("../images/icon/arrow-right.svg");
				width: 1rem;
				height: 1rem;
				transform: scale(-1, 1);
			}
.single-pagination .home {
		text-align: center;
	}
.single-pagination .next {
		text-align: right;
	}
.single-pagination .next a {
			justify-content: flex-end;
		}
.single-pagination .next a:after {
				content: "";
				display: inline-block;
				background: center / contain no-repeat url("../images/icon/arrow-right.svg");
				width: 1rem;
				height: 1rem;
			}
/*-------------------------------
トップページ：背景
（background-attachment:fixedはiOS Safariでの挙動が不安定なため、
　position:fixedの空divに背景画像を置く形にしている）
-------------------------------*/
.home-bg {
	position: fixed;
	background: url("../images/icon/bg.webp") no-repeat top center;
	z-index: -1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: cover;
}
.slide-container {
	position: relative;
}
.slide-scroller {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.slide-scroller::-webkit-scrollbar {
		display: none;
	}
.slide-item {
	flex: 0 0 100%;
	scroll-snap-align: start;
}
.slide-catchcopy {
	position: absolute;
	left: 0;
	bottom: 40px;
	width: 100%;
	text-align: center;
	pointer-events: none;
}
/*-------------------------------
トップページ：ヒーローセクション
-------------------------------*/
.hero-section {
	position: relative;
	overflow: hidden;
	min-height: 100svh;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	padding-top:10.63rem;
	padding-top:var(--header-height);
	padding-bottom: 5.13rem;
	padding-bottom: var(--cta-banner-height);
}
@media (max-width: 1024px) {
.hero-section {
		min-height: 0;
		background-color: #FFFFFF;
		background-color: var(--color-white);
		align-items: flex-start;
}
	}
@media (max-width: 599px) {
.hero-section {
		min-height: 100svh;
}
	}
.hero-bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.hero-bg img {
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		   object-fit: cover;
		-o-object-position: center;
		   object-position: center;
	}
@media (max-width: 1440px) {
.hero-bg img {
			-o-object-position:70% 50%;
			   object-position:70% 50%;
	}
		}
@media (max-width: 599px) {
.hero-bg img {
			-o-object-position: 50% 20%;
			   object-position: 50% 20%;
	}
		}
.hero-inner-wrap{
	width: 65%;
	padding-top: 2rem;
	padding-bottom: 2rem;
	box-sizing: border-box;
}
@media (max-width: 1024px) {
.hero-inner-wrap{
		width: 90%;
}
	}
.hero-inner {
	position: relative;
	z-index: 1;
	width: -moz-max-content;
	width: max-content;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}
@media(max-width: 1024px){
.hero-inner {
		margin: 2rem 5% 6rem;
		width: 100%;
}
	}
@media(max-width: 599px){
.hero-inner {
		margin: 0 5%;
}
	}
.hero-inner-content {
	width: 100%;
}
.hero-area {
	font-size: 1.5rem;
	font-size: var(--fs-l);
	font-weight: 700;
	font-weight: var(--fw-bold);
	line-height: 1.65;
	line-height: var(--lh-m);
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	background: #812509;
	background: var(--color-main);
	color: #FFFFFF;
	color: var(--color-white);
	border-radius: 300px;
	padding: 0.2rem 2rem;
	margin-bottom: 1rem;
}
@media(max-width: 599px){
.hero-area {
		font-size: 0.81rem;
		font-size: var(--fs-s);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.65;
		line-height: var(--lh-m);
}
	}
.hero-area:after {
		content: "";
		position: absolute;
		bottom: -0.5rem;
		left: 15%;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-left: 0.5rem solid transparent;
		border-right: 0.5rem solid transparent;
		border-top: 0.5rem solid #812509;
		border-top: 0.5rem solid var(--color-main);
	}
.hero-main {
	font-size: 4.38rem;
	font-size: var(--fs-xxl);
	font-weight: 700;
	font-weight: var(--fw-bold);
	line-height: 1.4;
	line-height: var(--lh-s);
	font-family: "Noto Serif JP", serif;
	font-family: var(--ff-heading);
	color: #004040;
	color: var(--color-sub);
	line-height: 1.2;
}
.hero-main span{
		display: block;
		font-family: "Noto Serif JP", serif;
		font-family: var(--ff-heading);
		color: #C4850E;
		color: var(--color-orange);
	}
.hero-sub {
	font-size: 1.25rem;
	font-size: var(--fs-ml);
	font-weight: 700;
	font-weight: var(--fw-bold);
	line-height: 1.65;
	line-height: var(--lh-m);
	font-family: "Noto Serif JP", serif;
	font-family: var(--ff-heading);
	color: #004040;
	color: var(--color-sub);
	margin: 1rem 0;
}
.about-section .editor-block h2{
			font-size: 2.5rem;
			font-size: var(--fs-xl);
			font-weight: 700;
			font-weight: var(--fw-bold);
			line-height: 1.4;
			line-height: var(--lh-s);
			margin-bottom: 1.5rem;
			text-align: center;
		}
.about-section .editor-block p{
			font-size: 1rem;
			font-size: var(--fs-m);
			font-weight: 400;
			font-weight: var(--fw-regular);
			line-height: 1.65;
			line-height: var(--lh-m);
		}
/*-------------------------------
トップページ：カラム・flex・grid（等倍）関連のみ
-------------------------------*/
.hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
}
@media (max-width: 599px) {
.hero-points {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-gap: 0.1rem;
		gap: 0.1rem;
}
	}
.hero-points li {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.1rem;
		box-sizing: border-box;
		padding: 3rem;
		background: center / contain no-repeat url("../images/icon/round.svg");
		text-align: center;
		aspect-ratio: 1 / 1;
		position: relative;
	}
@media (max-width: 599px) {
.hero-points li {
			width: 100%;
			height: 100%;
			padding: 0;
			box-sizing: border-box;
	}
		}
.hero-points img {
		width: 2rem;
		height: 2rem;
	}
@media (max-width: 599px) {
.hero-points img {
			width: 1rem;
			height: 1rem;
	}
		}
.hero-points span {
		font-size: 1.25rem;
		font-size: var(--fs-ml);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.3;
		color: #004040;
		color: var(--color-sub);
		font-family: "Noto Serif JP", serif;
		font-family: var(--ff-heading);
	}
.hero-points span span{
			display: block;
			font-size: 2.5rem;
			font-size: var(--fs-xl);
			line-height: 1.1;
		}
@media (max-width: 1440px) {
.hero-points span span{
				font-size: 1.5rem;
				font-size: var(--fs-l);
		}
			}
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-gap: 1.5rem;
	gap: 1.5rem;
}
.circle-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: center;
	grid-gap: 2rem;
	gap: 2rem;
}
@media (max-width: 599px) {
.circle-list {
		grid-template-columns: 1fr 1fr;
}
	}
.circle-list li {
		text-align: center;
	}
.circle-list li h3{
			font-size: 1rem;
			font-size: var(--fs-m);
			font-weight: 700;
			font-weight: var(--fw-bold);
			line-height: 1.7;
			line-height: var(--lh-l);
			font-family: "M PLUS 1p", sans-serif;
			font-family: var(--ff-main);
			margin-top: 10px;
		}
.circle-list li p{
			text-align: left;
		}
.highlight-panel {
	display: grid;
	grid-template-columns: 0.4fr 1fr;
	align-items: center;
	grid-gap: 2rem;
	gap: 2rem;
}
@media (max-width: 599px) {
.highlight-panel {
		grid-template-columns: 1fr;
		gap: 1rem;
}
	}
@media (max-width: 599px) {
			.highlight-panel .wrap-img img{
				width: 100%;
				max-height: 250px;
				-o-object-fit: cover;
				   object-fit: cover;
				-o-object-position: top center;
				   object-position: top center;
			}
		}
.flow-steps {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1.5rem;
	gap: 1.5rem;
	counter-reset: flow-step;
}
.flow-steps li{
		display: flex;
		align-items: center;
		gap: 1rem;
		background-color: #FFFFFF;
		background-color: var(--color-white);
		border: 1px solid #000000;
		border: 1px solid var(--color-font);
		border-radius: 300px;
		padding: 1.7rem 7%;
		counter-increment: flow-step;
	}
.flow-steps li:before {
			content: counter(flow-step) ".";
			font-family: "Noto Serif JP", serif;
			font-family: var(--ff-heading);
			font-size: 2.5rem;
			font-size: var(--fs-xl);
			font-weight: 700;
			font-weight: var(--fw-bold);
			line-height: 1.4;
			line-height: var(--lh-s);
			flex-shrink: 0;
			display: flex;
			align-items: center;
			justify-content: center;
			color: #004040;
			color: var(--color-sub);
			font-weight: 700;
			font-weight: var(--fw-bold);
		}
@media(max-width: 599px){
.flow-steps li{
			border-radius: 2rem;
	}
		}
.flow-steps li h3{
			font-size: 1.25rem;
			font-size: var(--fs-ml);
			font-weight: 700;
			font-weight: var(--fw-bold);
			line-height: 1.65;
			line-height: var(--lh-m);
		}
.flow-steps li p{
			margin-top: 0.2rem;
		}
.flow-section {
	position: relative;
	overflow: hidden;
}
.flow-section::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0, 0, 0, 0.1);
		z-index: 1;
	}
.flow-section > .contents-width {
		position: relative;
		z-index: 2;
	}
.flow-section .section-title{
		color: #FFFFFF;
		color: var(--color-white);
	}
.text-list-block .wp-block-group__inner-container {
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 0.5rem;
		gap: 0.5rem;
	}
@media(max-width: 1024px){
.top-faq{
		padding: 0;
}
	}
.top-faq .faq-list-container{
		background-color: #FFFFFF;
		background-color: var(--color-white);
	}
.main-footer {
	background: #812509;
	background: var(--color-main);
	color: #FFFFFF;
	color: var(--color-white);
}
.main-footer a {
		color: #FFFFFF;
		color: var(--color-white);
	}
.main-footer .footer-wrap {
		width: 90%;
		max-width: 1440px;
		margin: 0 auto;
		padding: 3rem 0 3rem;
	}
.main-footer .footer-top {
		text-align: center;
	}
.main-footer .footer-top .footer-logo img {
				width: 7rem;
				height: auto;
				margin: 0 auto;
			}
.main-footer .footer-top .footer-title {
			font-size: 0.81rem;
			font-size: var(--fs-s);
			font-weight: 400;
			font-weight: var(--fw-regular);
			line-height: 1.65;
			line-height: var(--lh-m);
			font-weight: 700;
			font-weight: var(--fw-bold);
			color: #FFFFFF;
			color: var(--color-white);
			margin-top: 8px;
		}
.main-footer .footer-top .footer-social {
			display: flex;
			justify-content: center;
			margin-top: 1rem;
			gap: 1rem;
		}
.main-footer .footer-top .footer-social li a {
					display: flex;
					align-items: center;
					justify-content: center;
				}
.main-footer .footer-top .footer-social li img {
					width: 2rem;
					height: 2rem;
				}
.main-footer .footer-bottom {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
		gap: 1rem;
		margin-top: 1.5rem;
	}
@media (max-width: 599px) {
.main-footer .footer-bottom {
			flex-direction: column;
			text-align: center;
			align-items: center;
	}
		}
.main-footer .footer-info .footer-address {
			font-size: 1rem;
			font-size: var(--fs-m);
			font-weight: 400;
			font-weight: var(--fw-regular);
			line-height: 1.7;
			line-height: var(--lh-l);
			color: #FFFFFF;
			color: var(--color-white);
		}
.main-footer .footer-info .footer-hours {
			font-size: 1rem;
			font-size: var(--fs-m);
			font-weight: 400;
			font-weight: var(--fw-regular);
			line-height: 1.7;
			line-height: var(--lh-l);
			color: #FFFFFF;
			color: var(--color-white);
		}
.main-footer .footer-links {
		text-align: right;
	}
@media (max-width: 599px) {
.main-footer .footer-links {
			text-align: center;
	}
		}
.main-footer .footer-links .footer-nav-list li a {
					font-size: 1rem;
					font-size: var(--fs-m);
					font-weight: 400;
					font-weight: var(--fw-regular);
					line-height: 1.7;
					line-height: var(--lh-l);
					display: inline-block;
					-webkit-text-decoration: underline;
					text-decoration: underline;
				}
.main-footer .footer-links .footer-copy {
			display: block;
			margin-top: 12px;
			font-size: 0.81rem;
			font-size: var(--fs-s);
			font-weight: 400;
			font-weight: var(--fw-regular);
			line-height: 1.65;
			line-height: var(--lh-m);
			color: #FFFFFF;
			color: var(--color-white);
		}
.page-404 {
	text-align: center;
}
.page-404 .page-404-text {
		margin-top: 20px;
	}
.page-404 .icon-btn a {
			margin: 0 auto;
		}
.column-list-container ul {
		display: flex;
		flex-direction: column;
		gap: 24px;
	}
.column-list-container li {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1.5rem;
		background: #FFFFFF;
		background: var(--color-white);
		border: 2px solid #812509;
		border: 2px solid var(--color-main);
		border-radius: 1rem;
		padding: 1.5rem 5%;
		box-sizing: border-box;
	}
@media (max-width: 599px) {
.column-list-container li {
			flex-direction: column;
			text-align: center;
	}
		}
@media (max-width: 1024px) {
.column-list-container li p{
				text-align: left;
		}
			}
.column-list-container .list-text {
		flex-basis: 70%;
	}
.column-list-container .sub-heading {
		font-size: 0.81rem;
		font-size: var(--fs-s);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
		display: inline-block;
		background: #FFEB00;
		background: var(--color-accent);
		color: #000000;
		color: var(--color-font);
		font-weight: 700;
		font-weight: var(--fw-bold);
		padding: 0.2rem 2rem;
		border-radius: 300px;
		margin-bottom: 1rem;
	}
.column-list-container h3 {
		color: #812509;
		color: var(--color-main);
		margin-bottom: 0.5rem;
	}
.column-list-container p {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
	}
.column-list-container .wrap-img {
		flex-basis: 30%;
	}
@media (max-width: 599px) {
.column-list-container .wrap-img {
			flex-basis: 100%;
			width: 80%;
	}
		}
/*-------------------------------
カラムブロック（wp-block-columns）をグループしているdiv
画像位置が交互になるよう、偶数番目のカラムブロックのみ並びを反転する
-------------------------------*/
.is-layout-grid{
	gap:1.5rem;
}
@media (max-width: 599px) {
.is-layout-grid{
		gap: 1rem;
}
	}
.wp-block-columns{
	gap:1.5rem;
}
.wp-block-columns figure{
		margin: 0;
	}
.wp-block-columns h2,.wp-block-columns h3{
		margin-bottom: 0.75rem;
	}
@media (max-width: 1024px) {
.shift-column-blocks .wp-block-columns {
			flex-direction: column;
	}
		}
@media (max-width: 1024px) {
.shift-column-blocks .wp-block-columns:nth-child(even) {
				flex-direction: column-reverse!important;
		}
			}
/*-------------------------------
CTA追従バナー（固定表示）分の余白確保
（トップページ=.homeは静的配置のバナーなので対象外）
-------------------------------*/
/*-------------------------------
CTA共通ボタン（追従バナー・CTAセクションで共用／ヘッダーの3ボタンと同じデザイン）
-------------------------------*/
.cta-banner > ul, .cta-section-body > ul {
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: center;
		gap: 12px;
	}
.cta-banner > ul li, .cta-section-body > ul li {
			display: flex;
		}
.cta-banner > ul li a, .cta-section-body > ul li a {
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 10px;
				height: 100%;
				box-sizing: border-box;
				padding: 10px 20px;
				border-radius: 8px;
				color: #FFFFFF;
				color: var(--color-white);
			}
@media(max-width: 1024px){
.cta-banner > ul li a, .cta-section-body > ul li a {
					gap: 5px;
			}
				}
.cta-banner > ul li a span, .cta-section-body > ul li a span {
					font-weight: 700;
					font-weight: var(--fw-bold);
				}
.cta-banner > ul li img, .cta-section-body > ul li img {
				width: auto;
				height: 25px;
				-o-object-fit: contain;
				   object-fit: contain;
			}
@media(max-width: 599px){
.cta-banner > ul li img, .cta-section-body > ul li img {
					height: 1.2rem;
			}
				}
.cta-banner > ul .cta-tel a, .cta-section-body > ul .cta-tel a {
				background: #FFEB00;
				background: var(--color-accent);
			}
.cta-banner > ul .cta-tel a span, .cta-section-body > ul .cta-tel a span {
					font-size: 1rem;
					font-size: var(--fs-m);
					font-weight: 700;
					font-weight: var(--fw-bold);
					line-height: 1.7;
					line-height: var(--lh-l);
					line-height: 1.3;
					color: #000000;
					color: var(--color-font);
				}
.cta-banner > ul .cta-tel a span span, .cta-section-body > ul .cta-tel a span span {
						font-size: 0.81rem;
						font-size: var(--fs-s);
						font-weight: 400;
						font-weight: var(--fw-regular);
						line-height: 1.65;
						line-height: var(--lh-m);
						font-weight: 700;
						font-weight: var(--fw-bold);
						display: block;
					}
.cta-banner > ul .cta-line a, .cta-section-body > ul .cta-line a {
				background: #06C755;
			}
.cta-banner > ul .cta-mail a, .cta-section-body > ul .cta-mail a {
				background: #DEDEDE;
			}
.cta-banner > ul .cta-mail span, .cta-section-body > ul .cta-mail span {
				color: #812509;
				color: var(--color-main);
			}
/*-------------------------------
CTA追従バナー
-------------------------------*/
.cta-banner {
	background: #812509;
	background: var(--color-main);
}
.cta-banner.is-fixed {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 800;
		transition: transform 0.3s;
	}
.cta-banner.is-fixed.is-footer-visible,
		.cta-banner.is-fixed.is-scroll-hidden {
			transform: translateY(100%);
			pointer-events: none;
		}
.cta-banner.is-static {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
	}
.cta-banner > ul {
		padding: 10px 5%;
	}
@media (max-width: 1024px) {
.cta-banner > ul {
			display: grid;
			grid-template-columns: 1fr 1fr 1fr;
	}
			.cta-banner > ul li{
				width: 100%;
			}
				.cta-banner > ul li a{
					width: 100%;
					display: grid;
					grid-template-columns: 1fr;
					justify-items: center;
					padding: 5px;
					grid-gap: 3px;
					gap: 3px;
				}
					.cta-banner > ul li a span{
						display: none;
					}
					.cta-banner > ul li a:after {
						font-size: 0.81rem;
						font-size: var(--fs-s);
						font-weight: 400;
						font-weight: var(--fw-regular);
						line-height: 1.65;
						line-height: var(--lh-m);
						font-weight: 700;
						font-weight: var(--fw-bold);
					}
			.cta-banner > ul .cta-tel a:after {
				content: "電話で相談";
				color: #000000;
				color: var(--color-font);
			}
			.cta-banner > ul .cta-line a:after {
				content: "LINEで相談";
			}
			.cta-banner > ul .cta-mail a:after {
				content: "メールで相談";
				color: #812509;
				color: var(--color-main);
			}
		}
/*-------------------------------
CTAセクション
-------------------------------*/
.cta-section {
	width: 100vw;
	margin-left: 50%;
	transform: translateX(-50%);
	background: #FFEB00;
	background: var(--color-accent);
	padding-top: 1.5rem;
}
.cta-section .cta-section-header {
		box-sizing: border-box;
		max-width: 41rem;
		margin: 0 auto;
		position: relative;
	}
@media(max-width: 599px){
.cta-section .cta-section-header {
			max-width: 95%;
	}
		}
.cta-section .cta-section-header .cta-section-title {
			font-size: 1.9rem;
			font-size: var(--fs-ls);
			font-weight: 700;
			font-weight: var(--fw-bold);
			line-height: 1.65;
			line-height: var(--lh-m);
			line-height: 1.4;
			line-height: var(--lh-s);
			font-weight: 700;
			font-weight: var(--fw-bold);
			color: #000000;
			color: var(--color-font);
			margin: 0;
			width: -moz-max-content;
			width: max-content;
			padding-bottom: 1.5rem;
		}
.cta-section .cta-section-header .cta-section-staff {
			position: absolute;
			top: 0;
			right: 0;
			width: 10rem;
			height: auto;
			z-index: 1;
		}
@media(max-width: 1024px){
.cta-section .cta-section-header .cta-section-staff {
				right: 1rem;
		}
			}
@media(max-width: 599px){
.cta-section .cta-section-header .cta-section-staff {
				width: 8rem;
				right: 7%;
				top: 1rem;
		}
			}
.cta-section .cta-section-body {
		position: relative;
		background-image: linear-gradient(rgba(129, 37, 9, 0.7), rgba(129, 37, 9, 0.9)), url("../images/cta/cta_bg.jpg");
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		padding: 3rem 0;
		box-sizing: border-box;
	}
.cta-section .cta-section-body > ul {
			display: grid;
			grid-template-columns: 1fr 1fr;
			grid-gap: 16px;
			gap: 16px;
			z-index: 2;
			position: relative;
		}
.cta-section .cta-section-body > ul li {
				display: block;
			}
.cta-section .cta-section-body > ul li a{
					font-size: 1.5rem;
					font-size: var(--fs-l);
					font-weight: 700;
					font-weight: var(--fw-bold);
					line-height: 1.65;
					line-height: var(--lh-m);
					gap: 0.5rem;
					padding: 1rem;
				}
.cta-section .cta-section-body > ul li a:hover{
						opacity: 1;
					}
.cta-section .cta-section-body > ul li a:hover span{
							opacity: 0.8;
						}
.cta-section .cta-section-body > ul li img{
					width: 2rem;
					height: 2rem;
				}
.cta-section .cta-section-body > ul .cta-tel {
				grid-column: 1 / -1;
			}
.cta-section .cta-section-body > ul .cta-tel a {
					padding: 1.5rem;
					gap: 1rem;
				}
.cta-section .cta-section-body > ul .cta-tel a img{
						width: 4.5rem;
						height: 4.5rem;
					}
.cta-section .cta-section-body > ul .cta-tel a span {
						font-size: 2.5rem;
						font-size: var(--fs-xl);
						font-weight: 700;
						font-weight: var(--fw-bold);
						line-height: 1.4;
						line-height: var(--lh-s);
						font-weight: 800;
						font-weight: var(--fw-extra);
						line-height: 1;
					}
.cta-section .cta-section-body > ul .cta-tel a span span{
							font-size: 1.25rem;
							font-size: var(--fs-ml);
							font-weight: 700;
							font-weight: var(--fw-bold);
							line-height: 1.65;
							line-height: var(--lh-m);
						}
/*-------------------------------
買取実績（constructed）：トップページ用スライダー
中心スタート・両サイドに次カードが少し見える形（PC:1.5枚分／SP:0.5枚分の余白）
-------------------------------*/
.work-slider-wrap {
	position: relative;
	width: 100vw;
	margin-left: 50%;
	transform: translateX(-50%);
}
.work-slider-wrap:before,
	.work-slider-wrap:after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 15%;
		background: rgba(255, 255, 255, 0.7);
		z-index: 1;
		pointer-events: none;
	}
@media (max-width: 1440px) {
.work-slider-wrap:before,
	.work-slider-wrap:after {
			width: 10%;
	}
		}
@media (max-width: 599px) {
.work-slider-wrap:before,
	.work-slider-wrap:after {
			width: 5%;
	}
		}
.work-slider-wrap:before {
		left: 0;
	}
.work-slider-wrap:after {
		right: 0;
	}
.work-list.work-slider {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	gap: 20px;
	margin-top: 40px;
	box-sizing: border-box;
}
.work-list.work-slider::-webkit-scrollbar {
		display: none;
	}
.work-list.work-slider > li {
		flex: 0 0 17rem;
		scroll-snap-align: center;
	}
@media (max-width: 1024px) {
.work-list.work-slider > li {
			flex: 0 0 33.3%;
	}
		}
.work-slider-prev,
.work-slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #FFFFFF;
	background: var(--color-white);
	border: 1px solid #DEDEDE;
	border: 1px solid var(--color-gray);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	z-index: 4;
}
.work-slider-prev:before, .work-slider-next:before {
		content: "";
		display: block;
		width: 10px;
		height: 10px;
		margin: 0 auto;
		border-top: 2px solid #000000;
		border-top: 2px solid var(--color-font);
		border-right: 2px solid #000000;
		border-right: 2px solid var(--color-font);
	}
@media (max-width: 599px) {
.work-slider-prev,
.work-slider-next {
		width: 36px;
		height: 36px;
}
	}
.work-slider-prev {
	left: 12px;
}
.work-slider-prev:before {
		transform: rotate(-135deg);
	}
.work-slider-next {
	right: 12px;
}
.work-slider-next:before {
		transform: rotate(45deg);
	}
/*-------------------------------
買取実績（constructed）：一覧
-------------------------------*/
.filter-accordion {
	margin-bottom: 40px;
}
.filter-accordion summary {
		list-style: none;
		cursor: pointer;
		background: #004040;
		background: var(--color-sub);
		color: #FFFFFF;
		color: var(--color-white);
		padding: 16px 24px;
		border-radius: 8px;
		font-weight: 700;
		font-weight: var(--fw-bold);
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
	}
.filter-accordion summary::-webkit-details-marker {
			display: none;
		}
.filter-accordion summary:after {
			content: "▼";
			font-size: 0.8em;
			transition: transform 0.2s;
		}
.filter-accordion[open] summary:after {
		transform: rotate(180deg);
	}
.filter-accordion .filter-body {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		padding: 24px;
		border: 1px solid #DEDEDE;
		border: 1px solid var(--color-gray);
		border-top: none;
		box-sizing: border-box;
	}
.filter-accordion .filter-group h3 {
			font-size: 1rem;
			font-size: var(--fs-m);
			font-weight: 400;
			font-weight: var(--fw-regular);
			line-height: 1.65;
			line-height: var(--lh-m);
			font-weight: 700;
			font-weight: var(--fw-bold);
			margin-bottom: 12px;
		}
.filter-accordion .filter-group ul {
			display: flex;
			flex-wrap: wrap;
			gap: 8px 20px;
		}
.filter-accordion .filter-group label {
			font-size: 1rem;
			font-size: var(--fs-m);
			font-weight: 400;
			font-weight: var(--fw-regular);
			line-height: 1.65;
			line-height: var(--lh-m);
			display: flex;
			align-items: center;
			gap: 6px;
			cursor: pointer;
		}
.work-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 2rem 1.5rem;
	gap: 2rem 1.5rem;
	margin-top: 40px;
}
@media (max-width: 1440px) {
.work-list {
		grid-template-columns: repeat(3, 1fr);
}
	}
@media (max-width: 1024px) {
.work-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 20px;
}
	}
@media (max-width: 599px) {
.work-list {
		grid-template-columns: 1fr 1fr;
		gap: 20px 12px;
}
	}
.work-list li {
		height: 100%;
	}
.work-item {
	position: relative;
	height: 100%;
}
.work-item article {
		height: 100%;
	}
.work-item .work-link {
		display: flex;
		flex-direction: column;
		height: 100%;
	}
.work-item .work-content {
		display: flex;
		flex-direction: column;
		text-align: center;
		flex: 1;
		margin-top: 0.5rem;
	}
.work-item .work-cat,
	.work-item .work-area {
		font-size: 0.81rem;
		font-size: var(--fs-s);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
	}
.work-item .work-area{
		position: absolute;
		top: 0;
		right: 0;
		z-index: 3;
		background-color: #812509;
		background-color: var(--color-main);
		color: #FFFFFF;
		color: var(--color-white);
		padding: 0.5rem 1rem;
	}
.work-item .work-title {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
		line-height: 1.4;
		line-height: var(--lh-s);
		font-weight: 700;
		font-weight: var(--fw-bold);
	}
.work-item .work-title:has(+ .work-price) {
			margin-bottom: 0.5rem;
		}
.work-item .work-price {
		background: #FFEB00;
		background: var(--color-accent);
		border-radius: 6px;
		padding: 6px 12px;
		margin-top: auto;
		text-align: center;
		box-sizing: border-box;
	}
.work-item .work-price span {
			font-size: 0.81rem;
			font-size: var(--fs-s);
			font-weight: 400;
			font-weight: var(--fw-regular);
			line-height: 1.65;
			line-height: var(--lh-m);
			line-height: 1.4;
			line-height: var(--lh-s);
			display: block;
		}
.work-item .work-price strong {
			font-size: 1.25rem;
			font-size: var(--fs-ml);
			font-weight: 700;
			font-weight: var(--fw-bold);
			line-height: 1.65;
			line-height: var(--lh-m);
			line-height: 1.4;
			line-height: var(--lh-s);
			display: block;
			color: #812509;
			color: var(--color-main);
		}
/*-------------------------------
買取実績：シングル
-------------------------------*/
.single-constructed .work-detail {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 60px;
		gap: 60px;
		margin-bottom: 60px;
	}
@media (max-width: 599px) {
.single-constructed .work-detail {
			grid-template-columns: 1fr;
			gap: 30px;
	}
		}
.single-constructed .work-info dl {
			display: flex;
			border-bottom: 1px solid #DEDEDE;
			border-bottom: 1px solid var(--color-gray);
			padding: 12px 0;
			margin: 0;
		}
.single-constructed .work-info dl dt {
				font-size: 1rem;
				font-size: var(--fs-m);
				font-weight: 700;
				font-weight: var(--fw-bold);
				line-height: 1.7;
				line-height: var(--lh-l);
				width: 140px;
				flex-shrink: 0;
			}
.single-constructed .work-info dl dd {
				font-size: 1rem;
				font-size: var(--fs-m);
				font-weight: 400;
				font-weight: var(--fw-regular);
				line-height: 1.65;
				line-height: var(--lh-m);
				margin: 0;
			}
.single-constructed .work-info .work-price {
			margin-top: 24px;
			background: #FFEB00;
			background: var(--color-accent);
			border-radius: 6px;
			padding: 16px 24px;
			display: flex;
			align-items: center;
			justify-content: space-between;
			box-sizing: border-box;
		}
.single-constructed .work-info .work-price span {
				font-size: 1rem;
				font-size: var(--fs-m);
				font-weight: 700;
				font-weight: var(--fw-bold);
				line-height: 1.7;
				line-height: var(--lh-l);
			}
.single-constructed .work-info .work-price strong {
				font-size: 1.5rem;
				font-size: var(--fs-l);
				font-weight: 700;
				font-weight: var(--fw-bold);
				line-height: 1.65;
				line-height: var(--lh-m);
				display: block;
				color: #812509;
				color: var(--color-main);
			}
/*-------------------------------
サムネイル付き画像スライダー
-------------------------------*/
.img-slider .slider-main {
		position: relative;
	}
.img-slider .slider-track li {
			display: none;
		}
.img-slider .slider-track li img {
				width: 100%;
				height: auto;
			}
.img-slider .slider-track li.is-active {
				display: block;
			}
.img-slider .slider-prev,
	.img-slider .slider-next {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.8);
		border: none;
		cursor: pointer;
		z-index: 2;
	}
.img-slider .slider-prev:before, .img-slider .slider-next:before {
			content: "";
			display: block;
			width: 10px;
			height: 10px;
			margin: 0 auto;
			border-top: 2px solid #000000;
			border-top: 2px solid var(--color-font);
			border-right: 2px solid #000000;
			border-right: 2px solid var(--color-font);
		}
.img-slider .slider-prev {
		left: 12px;
	}
.img-slider .slider-prev:before {
			transform: rotate(-135deg);
		}
.img-slider .slider-next {
		right: 12px;
	}
.img-slider .slider-next:before {
			transform: rotate(45deg);
		}
.img-slider .slider-thumbs {
		display: flex;
		gap: 10px;
		margin-top: 12px;
	}
.img-slider .slider-thumbs li {
			width: 70px;
			height: 70px;
			flex-shrink: 0;
			cursor: pointer;
			overflow: hidden;
			opacity: 0.5;
			border: 2px solid transparent;
			box-sizing: border-box;
		}
.img-slider .slider-thumbs li img {
				width: 100%;
				height: 100%;
				-o-object-fit: cover;
				   object-fit: cover;
			}
.img-slider .slider-thumbs li.is-active {
				opacity: 1;
				border-color: #812509;
				border-color: var(--color-main);
			}
/*-------------------------------
お客様の声（voice）：一覧・シングル共通
-------------------------------*/
.review-list {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}
@media (max-width: 599px) {
.review-list {
		gap: 1.5rem;
}
	}
.review-card {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	position: relative;
}
@media (max-width: 599px) {
.review-card {
		flex-direction: column-reverse;
		gap: 0;
}
	}
.review-item:nth-child(even) .review-card {
	flex-direction: row-reverse;
}
@media (max-width: 599px) {
.review-item:nth-child(even) .review-card {
		flex-direction: column-reverse;
}
	}
.review-icon {
	width: 10rem;
	flex-shrink: 0;
	border: 1px solid #000000;
	border: 1px solid var(--color-font);
	margin: 0 auto;
}
@media (max-width: 599px) {
.review-icon {
		width: 8rem;
		margin-top: -4rem;
}
	}
.review-content {
	flex: 1;
	min-width: 0;
	border: 1px solid #000000;
	border: 1px solid var(--color-font);
	padding: 2rem;
	box-sizing: border-box;
	background-color: #FFFDE2;
	background-color: var(--color-bg);
	border-radius: 1rem;
}
@media (max-width: 599px) {
.review-content {
		padding: 1.5rem 5% 5rem;
}
	}
.review-title {
	font-size: 1.5rem;
	font-size: var(--fs-l);
	font-weight: 700;
	font-weight: var(--fw-bold);
	line-height: 1.65;
	line-height: var(--lh-m);
	font-weight: 700;
	font-weight: var(--fw-bold);
}
.review-meta {
	display: flex;
	gap: 12px;
	margin: 5px 0;
}
.review-excerpt {
	font-size: 1rem;
	font-size: var(--fs-m);
	font-weight: 400;
	font-weight: var(--fw-regular);
	line-height: 1.65;
	line-height: var(--lh-m);
	margin-top: 0.5rem;
}
.review-more,.faq-more {
	margin-top: 12px;
}
@media (max-width: 599px) {
.review-more,.faq-more {
		text-align: center;
}
	}
.review-more a, .faq-more a {
		color: #812509;
		color: var(--color-main);
		border-bottom: 1px solid #812509;
		border-bottom: 1px solid var(--color-main);
	}
/*-------------------------------
お客様の声：シングル
-------------------------------*/
.single-voice .review-card {
		margin-bottom: 40px;
	}
/*-------------------------------
よくある質問（faq）：一覧・シングル共通
-------------------------------*/
.faq-list-container {
	background: #F8F8F8;
	background: var(--color-silver);
	border-radius: 1rem;
	box-sizing: border-box;
}
@media (max-width: 599px) {
.faq-list-container {
		padding: 24px;
}
	}
.faq-list {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1.5rem;
	gap: 1.5rem;
}
.faq-list > li {
		padding-bottom: 1.5rem;
		border-bottom: 1px dashed #000000;
		border-bottom: 1px dashed var(--color-font);
	}
.faq-list > li:last-child {
			border-bottom: none;
			padding-bottom: 0;
		}
.faq-badge {
	font-size: 1rem;
	font-size: var(--fs-m);
	font-weight: 400;
	font-weight: var(--fw-regular);
	line-height: 1.65;
	line-height: var(--lh-m);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 0.1rem 0.5rem;
	background: #000000;
	background: var(--color-font);
	color: #FFFFFF;
	color: var(--color-white);
	font-weight: 700;
	font-weight: var(--fw-bold);
	margin-right: 12px;
}
.faq-q {
	font-size: 1.25rem;
	font-size: var(--fs-ml);
	font-weight: 700;
	font-weight: var(--fw-bold);
	line-height: 1.65;
	line-height: var(--lh-m);
	display: flex;
	font-family: "M PLUS 1p", sans-serif;
	font-family: var(--ff-main);
	align-items: flex-start;
	font-weight: 700;
	font-weight: var(--fw-bold);
	margin-bottom: 1rem;
}
@media(max-width: 599px){
.faq-q {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
		font-weight: 700;
		font-weight: var(--fw-bold);
		margin-bottom: 0.7rem;
}
	}
.faq-a {
	display: flex;
	align-items: flex-start;
}
.faq-a .faq-badge{
		background-color: #812509;
		background-color: var(--color-main);
	}
.faq-content {
	font-size: 1rem;
	font-size: var(--fs-m);
	font-weight: 400;
	font-weight: var(--fw-regular);
	line-height: 1.65;
	line-height: var(--lh-m);
	flex: 1;
	min-width: 0;
}
.faq-content p {
		margin: 0 0 1rem;
	}
.faq-content p:last-child {
			margin-bottom: 0;
		}
/*-------------------------------
よくある質問：シングル
-------------------------------*/
.single-faq .faq-q{
		padding-bottom: 1.5rem;
		margin-bottom: 1.5rem;
		border-bottom: 1px dashed #000000;
		border-bottom: 1px dashed var(--color-font);
	}
/*-------------------------------
地域別買取（taxonomy-area.php）：親見出し＋子カテゴリー横並び
-------------------------------*/
.area-list-container {
	background: #FFFDE2;
	background: var(--color-bg);
	border-radius: 16px;
	padding: 40px;
	box-sizing: border-box;
	margin-bottom: 2rem;
}
@media (max-width: 599px) {
.area-list-container {
		padding: 24px;
}
	}
.area-list-container.on-dark {
		background: none;
		padding: 0;
	}
.area-group {
	padding-bottom: 24px;
}
.area-group:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}
.area-group h2 {
		font-size: 1.5rem;
		font-size: var(--fs-l);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.65;
		line-height: var(--lh-m);
		text-align: center;
		margin-bottom: 20px;
	}
.area-group.on-dark {
		border-bottom-color: rgba(255, 255, 255, 0.3);
	}
.area-child-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}
.area-child-list a {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.7;
		line-height: var(--lh-l);
		position: relative;
		display: flex;
		align-items: center;
		background: #812509;
		background: var(--color-main);
		color: #FFFFFF;
		color: var(--color-white);
		padding: 0.8rem 2.6rem 0.8rem 2rem;
		border-radius: 300px;
		box-sizing: border-box;
	}
.area-child-list a:after {
			content: "";
			position: absolute;
			top: 50%;
			right: 1.4rem;
			width: 7px;
			height: 7px;
			border-top: 2px solid currentColor;
			border-right: 2px solid currentColor;
			transform: translateY(-50%) rotate(45deg);
		}
.area-child-list.on-dark a {
			background: #FFFFFF;
			background: var(--color-white);
			color: #812509;
			color: var(--color-main);
		}
.area-child-list .is-disabled {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.7;
		line-height: var(--lh-l);
		display: flex;
		align-items: center;
		background: #DEDEDE;
		background: var(--color-gray);
		color: #000000;
		color: var(--color-font);
		opacity: 0.6;
		padding: 12px 24px;
		border-radius: 300px;
		box-sizing: border-box;
	}
.area-child-list .is-current {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.7;
		line-height: var(--lh-l);
		display: flex;
		align-items: center;
		background: #FFFFFF;
		background: var(--color-white);
		color: #812509;
		color: var(--color-main);
		border: 2px solid #812509;
		border: 2px solid var(--color-main);
		padding: 10px 22px;
		border-radius: 300px;
		box-sizing: border-box;
	}
/*-------------------------------
地域別買取：個別タームの地域LP（タクソノミー地域LP設定）
-------------------------------*/
.area-lp-section {
	margin-bottom: 60px;
}
.area-lp-section:last-child {
		margin-bottom: 0;
	}
.area-lp-nationwide{
	text-align: center
}
.area-lp-concern-box {
	background: #FFFDE2;
	background: var(--color-bg);
	border-radius: 16px;
	padding: 32px;
	box-sizing: border-box;
}
@media (max-width: 599px) {
.area-lp-concern-box {
		padding: 24px;
}
	}
.area-lp-concern-list {
	display: grid;
	grid-template-columns:1fr;
	width: -moz-max-content;
	width: max-content;
	margin: 0 auto;
	grid-gap: 12px 24px;
	gap: 12px 24px;
}
@media (max-width: 599px) {
.area-lp-concern-list {
		grid-template-columns: 1fr;
}
	}
.area-lp-concern-list li {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
		position: relative;
		padding-left: 1.6em;
	}
.area-lp-concern-list li:before {
			content: "✓";
			position: absolute;
			left: 0;
			color: #812509;
			color: var(--color-main);
			font-weight: bold;
		}
.area-lp-richtext-body {
	font-size: 1rem;
	font-size: var(--fs-m);
	font-weight: 400;
	font-weight: var(--fw-regular);
	line-height: 1.65;
	line-height: var(--lh-m);
	text-align: center;
}
.area-lp-column-list .card-grid li {
			text-align: center;
		}
.area-lp-column-list .card-grid li .wrap-img {
				margin-bottom: 12px;
			}
.area-lp-column-list .card-grid li h3 {
				font-size: 1rem;
				font-size: var(--fs-m);
				font-weight: 700;
				font-weight: var(--fw-bold);
				line-height: 1.7;
				line-height: var(--lh-l);
				margin-bottom: 8px;
			}
/*-------------------------------
地域LP（single-area.php）：対応エリア一覧（topのarea-sectionと同一デザイン）
-------------------------------*/
.area-lp-coverage-band {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.single-area-lp {
	padding-top: 3rem;
	box-sizing: border-box;
}
@media (max-width: 599px) {
.single-area-lp {
		padding-top: 2rem;
}
	}
.breadcrumb {
	font-size: 0.81rem;
	font-size: var(--fs-s);
	font-weight: 400;
	font-weight: var(--fw-regular);
	line-height: 1.65;
	line-height: var(--lh-m);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-bottom: 20px;
}
.breadcrumb a {
		color: #812509;
		color: var(--color-main);
	}
.area-lp-intro {
	margin-bottom: 40px;
}
.area-lp-coverage-body {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}
.area-lp-coverage-body li {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 700;
		font-weight: var(--fw-bold);
		line-height: 1.7;
		line-height: var(--lh-l);
		background: #004040;
		background: var(--color-sub);
		color: #FFFFFF;
		color: var(--color-white);
		padding: 8px 20px;
		border-radius: 300px;
		box-sizing: border-box;
	}
/*-------------------------------
LP投稿（case/purchase-item）：画像カードグリッド
-------------------------------*/
.lp-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 24px;
	gap: 24px;
}
@media (max-width: 1024px) {
.lp-card-grid {
		grid-template-columns: repeat(2, 1fr);
}
	}
@media (max-width: 599px) {
.lp-card-grid {
		grid-template-columns: 1fr;
}
	}
.lp-card {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 4 / 3;
	background-color: #DEDEDE;
	background-color: var(--color-gray);
}
.lp-card-thumb {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.lp-card-thumb img {
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		   object-fit: cover;
	}
.lp-card-rank {
	font-size: 1.25rem;
	font-size: var(--fs-ml);
	font-weight: 700;
	font-weight: var(--fw-bold);
	line-height: 1.65;
	line-height: var(--lh-m);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: #FFEB00;
	background: var(--color-accent);
	color: #812509;
	color: var(--color-main);
	border-bottom-right-radius: 6px;
	padding: 2px 14px;
}
.lp-card-title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: #004040;
	background: var(--color-sub);
	color: #FFFFFF;
	color: var(--color-white);
	text-align: center;
	padding: 12px;
	box-sizing: border-box;
	font-weight: 700;
	font-weight: var(--fw-bold);
	font-size: 1rem;
	font-size: var(--fs-m);
	font-weight: var(--fw-bold);
	line-height: 1.7;
	line-height: var(--lh-l);
}
/*-------------------------------
LP投稿：共通シングル
-------------------------------*/
.single-lp .lp-head{
		padding: 2rem 5%;
		margin-top: 2.5rem;
		background-color: #004040;
		background-color: var(--color-sub);
	}
.single-lp .section-title{
		color: #812509;
		color: var(--color-main);
	}
.single-lp .lp-detail {
		display: grid;
		grid-template-columns: 1fr 1fr;
		background-color: white;
		border-radius: 1rem;
		overflow: hidden;
		align-items: center;
	}
@media (max-width: 599px) {
.single-lp .lp-detail {
			grid-template-columns: 1fr;
	}
		}
.single-lp .lp-thumb {
		margin-bottom: 40px;
	}
@media (max-width: 599px) {
.single-lp .lp-thumb {
			margin-bottom: 20px;
	}
		}
.single-lp .lp-detail .lp-thumb {
		margin-bottom: 0;
	}
.single-lp .lp-description {
		font-size: 1rem;
		font-size: var(--fs-m);
		font-weight: 400;
		font-weight: var(--fw-regular);
		line-height: 1.65;
		line-height: var(--lh-m);
		padding: 1rem 5%;
		box-sizing: border-box;
	}
.single-lp .lp-back {
		margin-top: 60px;
		text-align: center;
	}
@media (max-width: 599px) {
.single-lp .lp-back {
			margin-top: 40px;
	}
		}
.single-lp .lp-back a {
			border-bottom: 1px solid #000000;
			border-bottom: 1px solid var(--color-font);
			padding-bottom: 5px;
			display: inline-block;
		}

/*# sourceMappingURL=main.css.map */
