@charset "utf-8";

/* TOP
----------------*/
.top-fv-wrapper {
	position: relative;
	overflow: hidden;
}
.top-fv-img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	overflow: hidden;
}
.top-fv-img::before {
	display: block;
	content: "";
	background-color: rgba(0, 0, 0, .4);
	mix-blend-mode: multiply;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.top-fv-imgs  {
	width: 100%;
}
.top-fv-img figure img {
	height: 100%;
	object-fit: cover;
}
.top-fv {
	max-width: 1000px;
	padding: 30vh 20px 80px;
	margin: 0 auto;
}
.top-fv h2 {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
	max-width: 108px;
	margin: 0 auto;
}
.top-fv h2 img {
	width: 50%;
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	animation: topTitle 1000ms linear 600ms forwards;
}
.top-fv h2 img:nth-of-type(2) {
	animation-delay: 2000ms
}
@keyframes topTitle {
	from {
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	}
	to {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}
.top-fv-p {
	color: #fff;
	text-align: center;
	text-indent: 1em;
	margin: 30vh auto 0;
}
.top-fv-p .anchor-vm a {
	color: var(--color-l);
}
.top-fv-p .anchor-vm a::after {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
.top-fv-nav {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin-top: 20vh;
}
.top-fv-nav > div {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	background-color: rgba(255, 255, 255, .9);
	width: calc((100% - 40px) / 2);
}
.top-fv-nav li:nth-of-type(n + 2) {
	margin-top: 20px;
}
.top-fv-nav a {
	font-weight: 700;
	padding-right: 40px;
	position: relative;
	transition: .2s ease-out;
}
.top-fv-nav a::after {
	display: block;
	content: "";
	background: url("../img/ico_arrow.webp") center / contain no-repeat;
	width: 30px;
	height: 30px;
	position: absolute;
	top: calc(50% - 15px);
	right: 0;
	transition: inherit;
}
@media (any-hover: hover) {
	.top-fv-nav a:hover {
		color: var(--color-g);
	}
	.top-fv-nav a:hover::after {
		-webkit-transform: translateX(5px);
		transform: translateX(5px);
	}
}
@media (max-width: 960px) {
	.top-fv-nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-align: center;
		align-items: center;
		gap: 20px;
	}
	.top-fv-nav > div {
		width: 100%;
		max-width: 480px;
	}
}
@media (max-width: 640px) {
	.top-fv h2 {
		max-width: 80px;
	}
	.top-fv-p {
		text-align: justify;
	}
	.top-fv-p br {
		display: none;
	}
	.top-fv-p .anchor-vm {
		text-align: right;
	}
}

.top-news {
	background-color: var(--color-bg);
}
.top-news section {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	column-gap: 80px;
	max-width: 1000px;
	padding: 80px 20px;
	margin: 0 auto;
}
.top-news h2 {
	width: 100px;
}
.top-news div {
	width: calc(100% - 180px);
}
.top-news li {
	border-bottom: 1px dotted #ccc;
}
.top-news li a {
	display: -webkit-box;
	display: flex;
	text-align: left;
	padding: 20px 0;
	transform: .2s ease-out;
}
.top-news li:first-child a {
	padding-top: 10px;
}
.top-news time {
	display: inline-block;
	color: var(--color-g);
	margin-right: 20px;
}
@media (any-hover: hover) {
	.top-news li a:hover {
		color: var(--color-g);
	}
}
@media (max-width: 960px) {
	.top-news section {
		display: block;
	}
	.top-news h2 {
		width: auto;
	}
	.top-news div {
		width: 100%;
		margin-top: 30px;
	}
}
@media (max-width: 640px) {
	.top-news li a {
		display: block;
	}
	.top-news time {
		display: block;
	}
}

/* about
----------------*/
.kurasumu h2 {
	background-color: var(--color-gd);
	color: var(--color-l);
	font-size: 1.5rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.2;
	padding: 10px 20px;
	border-radius: 50px;
}
.list-check li {
	font-weight: 500;
	padding-left: 26px;
	position: relative;
}
.list-check li:nth-of-type(n + 2) {
	margin-top: .5em;
}
.list-check li::before {
	display: block;
	content: "";
	background: url("../img/about/ico_check.webp") left center / contain no-repeat;
	width: 21px;
	height: 18px;
	position: absolute;
	top: .4em;
	left: 0;
}

/* owner
----------------*/
#akiya h3 {
	font-size: 1.125rem;
	font-weight: 700;
	padding-left: 1.2em;
	position: relative;
}
#akiya * + h3 {
	margin-top: 20px;
}
#akiya h3::before {
	display: block;
	content: "\25CF";
	color: var(--color-g);
	position: absolute;
	top: 0;
	left: 0;
}
#akiya h4 {
	color: var(--color-g);
	font-weight: 700;
	margin-top: 20px;
}
#akiya p {
	margin-top: 10px;
}
#akiya dl {
	background-color: var(--color-gd);
	color: var(--color-l);
	padding: 30px 40px;
	margin-top: 30px;
}
#akiya dt {
	font-weight: 700;
}
#akiya li {
	padding-left: 1.2em;
	margin-top: 5px;
	position: relative;
}
#akiya li::before {
	display: block;
	content: "\25B6\FE0E";
	color: var(--color-gl);
	position: absolute;
	top: 0;
	left: 0;
}
#flow ol {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
#flow ol li {
	background-color: var(--color-l);
	width: calc((100% - 60px) / 4);
	padding: 20px;
	border-radius: 20px;
	-webkit-filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
	filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
}
#flow ol h3 {
	font-weight: 700;
	text-align: center;
	line-height: 1.4;
	padding-bottom: 12px;
	border-bottom: 2px dotted var(--color-g);
}
#flow ol h3 span {
	display: inline-block;
	color: var(--color-g);
	font-size: 1.125rem;
}
#flow ol h3 span:nth-of-type(1) {
	font-size: .75rem;
	font-weight: 400;
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
}
#flow ol p {
	margin-top: 10px;
}
#qanda section {
	display: -webkit-box;
	display: flex;
	gap: 30px 80px;
}
#qanda dl {
	width: calc(100% - 235px);
}
#qanda dt {
	background-color: var(--color-gd);
	color: var(--color-l);
	font-weight: 700;
	padding: 20px 70px 20px 80px;
	border-radius: 10px;
	position: relative;
	cursor: pointer;
}
#qanda dt:nth-of-type(n + 2) {
	margin-top: 10px;
}
#qanda dt::before,#qanda dt::after,#qanda dd::before {
	display: block;
	content: "";
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
}
#qanda dt::before,#qanda dd::before {
	background-image: url("../img/ico_Q.webp");
	width: 40px;
	height: 40px;
	position: absolute;
	top: 14px;
	left: 20px;
}
#qanda dt::after {
	background-image: url("../img/ico_arrow.webp");
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: 18px;
	right: 20px;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	transition: .2s ease-out;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
#qanda dt.open-a::after {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
#qanda dd {
	display: none;
	padding: 20px 0 40px 80px;
	position: relative;
}
#qanda dd::before {
	background-image: url("../img/ico_A.webp");
}
@media (max-width: 960px) {
	#flow ol li {
		width: calc((100% - 20px) / 2);
	}
}
@media (max-width: 748px) {
	#qanda section {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
	}
	#qanda dl {
		width: 100%;
	}
}
@media (max-width: 640px) {
	#akiya dl {
		padding: 30px 20px;
	}
	#flow ol li {
		width: 100%;
	}
}

/* user
----------------*/
.ritto01 {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
	gap: 30px 60px;
}
.ritto01 > * {
	width: calc((100% - 60px) / 2);
}
.ritto01 figure {
	height: 230px;
	border-radius: 20px;
	overflow: hidden;
	-webkit-filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
	filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
}
.ritto01 figure img {
	height: 100%;
	object-fit: cover;
}
.ritto02 {
	display: -webkit-box;
	display: flex;
	gap: 60px;
}
.ritto02 > * {
	width: calc((100% - 60px) / 2);
}
.ritto03 table {
	width: 100%;
	text-align: center;
}
.ritto03 table a {
	display: inline;
	text-decoration: underline;
}
@media (any-hover: hover) {
	.ritto03 table a:hover {
		color: var(--color-g);
	}
}
.ritto03 th,.ritto03 td {
	font-size: .875rem;
	padding: 5px 10px;
	border: 1px solid var(--color-gd);
}
.ritto03 th {
	background-color: var(--color-g);
	color: var(--color-l);
	font-weight: 700;
}
.ritto03 thead th {
	background-color: var(--color-gd);
	color: var(--color-l);
	font-size: 1.125em;
}
.ritto03 tfoot td {
	font-size: .85em;
	text-align: right;
	border: none;
}
@media (max-width: 960px) {
	.ritto01 {
		gap: 30px;
	}
	.ritto01 > * {
		width: calc((100% - 30px) / 2);
	}
}
@media (max-width: 640px) {
	.ritto01 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		flex-direction: column-reverse;
	}
	.ritto01 > * {
		width: 100%;
	}
	.ritto02 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
	}
	.ritto02 > * {
		width: 100%;
	}
	.ritto03 th,.ritto03 td {
		font-size: .75rem;
		padding: 5px;
	}
}

/* 空き家一覧 */
#vhList {
	background-color: var(--color-gd);
	color: var(--color-l);
}
.vh-list {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.vh-list > * {
	width: calc((100% - 20px) / 2);
	position: relative;
}
.vh-list a {
	background-color: var(--color-l);
	color: var(--color-txt);
	padding: 20px;
	border-radius: 20px;
	-webkit-filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
	filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
}
.vh-list > *.is-negotiating a,
.vh-list > *.is-closed a {
	opacity: .6;
	pointer-events: none;
	-webkit-filter: unset;
	filter: unset;
}
.vh-list > *.is-negotiating::after,
.vh-list > *.is-closed::after {
	display: block;
	background-color: var(--color-gd);
	width: 100%;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
	padding: .1em 2em;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%) skewY(-4deg);
	transform: translateY(-50%) skewY(-4deg);
}
.vh-list > *.is-negotiating::after {
	content: "商談中";
}
.vh-list > *.is-closed::after {
	content: "成約済";
}
@media (any-hover: hover) {
	.vh-list a:hover {
		background-color: var(--color-gl);
		-webkit-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .1));
		filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .1));
	}
}
.vh-list h3 {
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 700;
	border-bottom: 2px dotted var(--color-g);
}
.vh-list h3 span {
	color: var(--color-g);
}
.vh-list a > div {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
	gap: 20px;
	margin-top: 20px;
}
.vh-list a > div > * {
	width: calc((100% - 20px) / 2);
}
.vh-list a > div > div {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.vh-list a ul {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.vh-list a li {
	background-color: var(--color-g);
	color: var(--color-l);
	font-size: .75rem;
	font-weight: 700;
	text-align: center;
	padding: 0 1em;
	border-radius: 20px;
}
.vh-list a dl {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: center;
	align-items: center;
}
.vh-list a dt {
	width: 5em;
	font-size: .875rem;
	font-weight: 500;
	padding-right: 1em;
	position: relative;
}
.vh-list a dt::after {
	display: block;
	content: "：";
	position: absolute;
	top: 0;
	right: 0;
}
.vh-list a dd {
	width: calc(100% - 5em);
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-left: .5em;
	overflow: hidden;
}
.vh-list a dd br {
	display: none;
}
.vh-list a figure {
	aspect-ratio: 1 / 1;
	position: relative;
	overflow: hidden;
}
.vh-list a img {
	height: 100%;
	object-fit: cover;
}
@media (max-width: 960px) {
	.vh-list > * {
		width: 100%;
	}
	.vh-list a > div > div {
		width: calc(100% - 200px);
	}
	.vh-list a > div > figure {
		width: 180px;
	}
}
@media (max-width: 640px) {
	.vh-list a > div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		flex-direction: column-reverse;
	}
	.vh-list a > div > div {
		width: 100%;
		gap: 20px;
	}
	.vh-list a > div > figure {
		width: 100%;
		aspect-ratio: 4 / 3;
	}
}

#case {
	background-color: var(--color-gd);
	color: var(--color-l);
}
.case-list {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	color: var(--color-txt);
}
.case-list > * {
	background-color: var(--color-l);
	width: calc((100% - 40px) / 3);
	border-radius: 20px;
	overflow: hidden;
	-webkit-filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
	filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
}
.case-list figure {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.case-list figure img {
	height: 100%;
	object-fit: cover;
}
.case-list dl {
	padding: 20px;
}
.case-list dt {
	font-weight: 700;
	text-align: center;
}
.case-list dd {
	font-size: .875rem;
	margin-top: 10px;
}
@media (max-width: 960px) {
	.case-list > * {
		width: calc((100% - 20px) / 2);
	}
}
@media (max-width: 640px) {
	.case-list > * {
		width: 100%;
	}
}

/* 空き家詳細 */
.vh-detail h2 {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	background-color: var(--color-gd);
	height: 50px;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 2px 1em 2px 2px;
	border-radius: 50px;
}
.vh-detail h2 span {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	background-color: var(--color-l);
	width: 80px;
	height: 46px;
	color: var(--color-gd);
	margin-right: 1em;
	border-radius: 50px;
}
.vh-img {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.vh-img > * {
	width: calc((100% - 60px) / 4);
	-webkit-filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
	filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
	transition: .2s ease-out;
}
.vh-img a {
	background-color: var(--color-l);
	aspect-ratio: 1 / 1;
	border-radius: 20px;
	overflow: hidden;
}
.vh-img a img {
	height: 100%;
	object-fit: cover;
	transition: 1s ease-out;
}
@media (any-hover: hover) {
	.vh-img > *:hover {
		-webkit-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .3));
		filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .3));
	}
	.vh-img a:hover img {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
}
.vh-body {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: start;
	align-items: flex-start;
	gap: 60px 40px;
}
.vh-body > * {
	width: 100%;
}
.vh-body > *:nth-child(1),
.vh-body > *:nth-child(2),
.vh-body > *:nth-child(3),
.vh-body > *:nth-child(4) {
	width: calc((100% - 40px) / 2);
}
.vh-body dl {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	gap: 0 1px;
}
.vh-body dt {
	color: var(--color-g);
	font-weight: 700;
	padding: 10px 0;
	border-bottom: 1px dotted #ccc;
}
.vh-body dd {
	padding: 10px 0;
	border-bottom: 1px dotted #ccc;
}
.vh-data-3 dt {
	width: 5em;
}
.vh-data-3 dd {
	width: calc(100% - (5em + 1px));
}
.vh-data-4 dt {
	width: 6em;
}
.vh-data-4 dd {
	width: calc(100% - (6em + 1px));
}
.vh-data-5 dt {
	width: 7em;
}
.vh-data-5 dd {
	width: calc(100% - (7em + 1px));
}
.vh-data-7 dt {
	width: 9em;
}
.vh-data-7 dd {
	width: calc(100% - (9em + 1px));
}
.vh-data-8 dt {
	width: 10em;
}
.vh-data-8 dd {
	width: calc(100% - (10em + 1px));
}
.vh-data-p {
	background-color: var(--color-bg);
	color: var(--color-l);
	padding: 10px 20px;
	border-radius: 10px;
}
.vh-data-vho {
	display: block !important;
	background-color: var(--color-bg);
	color: var(--color-l);
	padding: 10px 20px;
	border-radius: 10px;
}
.vh-data-vho dt {
	color: var(--color-l);
	font-size: 1.125rem;
	font-weight: 700;
	padding: 10px 0 0;
	border: none;
}
.vh-data-vho dd {
	padding: 0 0 10px;
	border: none;
}
@media (max-width: 960px) {
	.vh-img > * {
		width: calc((100% - 40px) / 3);
	}
}
@media (max-width: 748px) {
	.vh-body > *:nth-child(1),
	.vh-body > *:nth-child(2),
	.vh-body > *:nth-child(3),
	.vh-body > *:nth-child(4) {
		width: 100%;
	}
}
@media (max-width: 640px) {
	.vh-detail h2 {
		font-size: 1.125rem;
	}
	.vh-detail h2 span {
		width: 50px;
		font-size: .875rem;
	}
	.vh-img > * {
		width: calc((100% - 20px) / 2);
	}
	.vh-body dt {
		padding: 10px 0 0;
		border: none;
	}
	.vh-body dd {
		padding: 0 0 10px;
	}
	.vh-data-3 dt,
	.vh-data-3 dd,
	.vh-data-4 dt,
	.vh-data-4 dd,
	.vh-data-5 dt,
	.vh-data-5 dd,
	.vh-data-7 dt,
	.vh-data-7 dd,
	.vh-data-8 dt,
	.vh-data-8 dd {
		width: 100%;
	}
}

/* 各種補助金・助成金 */
.subsidy {
	margin-top: 30px;
}
.subsidy + .subsidy {
	margin-top: 60px;
	--color-g: #7a99c9;
}

/* contact button
----------------*/
.contact-btn {
	background-color: var(--color-bg);
}
.contact-btn section {
	display: -webkit-box;
	display: flex;
	gap: 40px;
	max-width: 1000px;
	color: var(--color-l);
	padding: 80px 20px;
	margin: 0 auto;
}
.contact-btn .font-color-point {
	color: var(--color-gl);
}
.contact-btn section > div {
	width: calc(50% - 40px);
}
.contact-btn section > figure {
	width: 50%;
	border-radius: 20px;
	overflow: hidden;
	-webkit-filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
	filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
}
.contact-btn section > figure img {
	height: 100%;
	object-fit: cover;
}
@media (max-width: 640px) {
	.contact-btn section {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		flex-direction: column-reverse;
	}
	.contact-btn section > div {
		width: 100%;
	}
	.contact-btn section > figure {
		width: 100%;
		height: 200px;
	}
	.contact-btn section > figure img {
		object-position: center 70%;
	}
}

/* news
----------------*/
#newsList {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	gap: 20px;
	background-color: var(--color-bg);
	padding: 80px 20px;
}
#newsList section {
	background-color: var(--color-l);
	width: 100%;
	max-width: 960px;
	border-radius: 20px;
	overflow: hidden;
	transition: .2s ease-out;
	-webkit-filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
	filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
}
@media (any-hover: hover) {
	#newsList section:hover {
		-webkit-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .1));
		filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .1));
	}
}
.news-ttl {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-align: center;
	align-items: center;
	gap: 10px;
	font-size: 1.125rem;
	font-weight: 700;
	padding: 20px 60px 20px 20px;
	position: relative;
	cursor: pointer;
}
.news-ttl time {
	display: inline-block;
	font-size: .88em;
	font-weight: 400;
}
.news-ttl span {
	background-color: var(--color-g);
	color: var(--color-l);
	font-size: .66em;
	padding: 0 1em;
	border-radius: 20px;
}
.news-ttl::after {
	display: block;
	content: "";
	background: url("../img/ico_arrow.webp") center / contain no-repeat;
	width: 30px;
	height: 30px;
	position: absolute;
	top: calc(50% - 15px);
	right: 20px;
	transition: .2s ease-out;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.news-ttl.open-body::after {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.news-body-outer {
	display: none;
	padding: 0 20px 20px;
}
.news-body {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
	gap: 40px;
	padding-top: 20px;
	border-top: 1px dotted #ccc;
}
.news-txt {
	width: 50%;
}
.news-txt * + * {
	margin-top: 10px;
}
.news-img {
	width: calc(50% - 40px);
}
@media (max-width: 960px) {
	.news-body {
		gap: 20px;
	}
	.news-txt {
		width: calc(100% - 200px);
	}
	.news-img {
		width: 180px;
	}
}
@media (max-width: 640px) {
	.news-ttl {
		-webkit-box-pack: justify;
		justify-content: space-between;
	}
	.news-ttl time {
		-webkit-box-ordinal-group: 1;
		order: 0;
		width: calc(100% - 80px);
	}
	.news-ttl span {
		-webkit-box-ordinal-group: 0;
		order: -1;
		width: 70px;
	}
	.news-body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		flex-direction: column-reverse;
		-webkit-box-align: center;
		align-items: center;
	}
	.news-txt {
		width: 100%;
	}
	.news-img {
		width: 100%;
		max-width: 240px;
	}
}

.news-category {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	max-width: 960px;
	margin-bottom: 30px;
}
.news-category label {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	background-color: #ccc;
	color: var(--color-l);
	font-size: .875rem;
	font-weight: 700;
	text-align: center;
	padding: 0 1em;
	border: 1px solid var(--color-l);
	border-radius: 50px;
	position: relative;
	transition: .2s ease-out;
	cursor: pointer;
}
.news-category label.cateActive {
	background-color: var(--color-gd);
}
.news-category input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
}

/* privacy policy
----------------*/
#privacyPolicy li+li {
	margin-top: 10px;
}
#terms {
	background-color: var(--color-bg);
	color: var(--color-l);
}
#terms h3 {
	font-weight: 700;
	margin-top: 2em;
}
#terms p,#terms li {
	margin-top: 10px;
}

/* contact
----------------*/
#contact {
	background-color: var(--color-bg);
	padding: 80px 20px;
}
#contact .boxfmt {
	padding-top: 60px;
	padding-bottom: 60px;
}
.contact-form form > div:nth-of-type(n + 2) {
	padding-top: 40px;
	margin-top: 40px;
	border-top: 1px dotted #ccc;
}
.contact-form fieldset {
	display: -webkit-box;
	display: flex;
	gap: 10px 30px;
}
.contact-form fieldset + fieldset {
	margin-top: 20px;
}
.contact-form fieldset > p:first-child {
	width: 220px;
	font-weight: 700;
	text-align: right;
}
.contact-form fieldset > p:last-child {
	width: calc(100% - 250px);
}
.contact-form label {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	line-height: 1.2;
	width: fit-content;
	cursor: pointer;
}
.contact-form textarea {
	height: 130px;
	margin-top: 20px;
}
.contact-form input[type="radio"],
.contact-form input[type="checkbox"] {
	height: 1.75em;
	margin: .15em .5em 0 0;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
	background-color: #efefef;
	width: 100%;
	padding: .5em;
	border: none;
	border-radius: 10px;
}
.form-s {
	max-width: 200px;
}
.required {
	position: relative;
}
.required::before {
	display: inline-block;
	content: "必須";
	background-color: #f30;
	color: #fff;
	font-size: .75rem;
	font-weight: 700;
	line-height: 1.4;
	padding: 0 5px;
	margin-right: 1em;
	border-radius: 5px;
}
.pp-check label {
	font-weight: 700;
	margin: 0 auto;
}
.pp-check p:last-child {
	text-align: center;
	font-size: .75em;
	margin-top: 10px;
}
.pp-check p:last-child a {
	display: inline;
	text-decoration: underline;
	transition: .2s ease-out;
}
.contact-form input[type="submit"] {
	display: block;
	background-color: var(--color-g);
	max-width: 240px;
	color: var(--color-l);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
	padding: 1em 2em;
	margin: 40px auto 0;
	border: 2px solid var(--color-g);
	border-radius: 10px;
	transition: .2s ease-out;
	cursor: pointer;
}
.contact-form .wpcf7-list-item {
	display: block;
	margin: 0;
}
.contact-file input {
	width: 100%;
	margin-bottom: 10px;
	border: none;
}
::file-selector-button,
::-webkit-file-upload-button {
	background-color: var(--color-g);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 0.25rem 1rem;
	margin-right: .5rem;
	border: none;
	border-radius: 50px;
	cursor: pointer;
}
.file-fn {
	display: block;
	color: #777;
	font-size: .75rem;
}
@media (any-hover: hover) {
	.pp-check p:last-child a:hover {
		color: var(--color-g)
	}
	.contact-form input[type="submit"]:hover {
		background-color: var(--color-l);
		color: var(--color-g);
	}
}
@media (max-width: 748px) {
	.contact-form fieldset {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
	}
	.contact-form fieldset > p:first-child {
		width: 100%;
		text-align: left;
	}
	.contact-form fieldset > p:last-child {
		width: 100%;
	}
}

/* simulator button
----------------*/
.simulator-btn {
	background-color: var(--color-gd);
}
.simulator-btn section {
	display: -webkit-box;
	display: flex;
	gap: 40px;
	max-width: 1000px;
	color: var(--color-l);
	padding: 80px 20px;
	margin: 0 auto;
}
.simulator-btn section > div {
	width: calc(50% - 40px);
}
.simulator-btn section > figure {
	width: 50%;
}
.simulator-btn section > figure img {
	height: 100%;
	object-fit: contain;
}
@media (max-width: 960px) {
	.simulator-btn section {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-align: center;
		align-items: center;
	}
	.simulator-btn section > div {
		width: 100%;
	}
	.simulator-btn section > figure {
		width: 100%;
		max-width: 240px
	}
}

/* 目次
----------------*/
.p-navi {
	color: var(--color-l);
	font-size: .875rem;
	font-weight: 700;
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 10;
	transition: .4s ease-out;
	-webkit-transform: translate(100%, -50%);
	transform: translate(100%, -50%);
}
.p-navi.p-navi-act,
.p-navi:hover {
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.p-navi dt {
	background-color: var(--color-gd);
	line-height: 1;
	padding: 10px 2em 5px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 5px 5px 0 0;
	-webkit-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: rotate(-90deg) translate(-100%, -100%);
	transform: rotate(-90deg) translate(-100%, -100%);
	cursor: pointer;
}
.p-navi dd {
	background-color: var(--color-gd);
	padding: 1em;
	border-radius: 0 0 0 5px;
}
.p-navi li {
	line-height: 1.2;
	padding-left: 1.1em;
	position: relative;
}
.p-navi li:nth-of-type(n + 2) {
	margin-top: 10px;
}
.p-navi li::before {
	display: block;
	content: "\25B6\FE0E";
	position: absolute;
	top: 0;
	left: 0;
}
.p-navi a {
	color: var(--color-l);
}
@media (any-hover: hover) {
	.p-navi a:hover {
		text-decoration: underline;
	}
}
@media (max-width: 640px) {
	.p-navi {
		display: none;
	}
}

/* 注意書き
----------------*/
.caution small {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	gap: 10px 40px;
	background-color: var(--color-l);
	color: var(--color-txt);
	font-size: .75rem;
	padding: 40px;
}
.caution span {
	display: block;
}
.caution-ttl {
	width: 54px;
	color: #f30;
	font-size: 1.16em;
	font-weight: 700;
	white-space: nowrap;
}
.caution-txt {
	width: calc(100% - 94px);
}
@media (max-width: 640px) {
	.caution small {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		padding: 20px;
	}
	.caution-ttl {
		width: 100%;
		text-align: center;
	}
	.caution-txt {
		width: 100%;
	}
}

/* 404 */
.page404 {
	padding: 60px 20px;
}
.page404 p:first-child {
	font-weight: 700;
	text-align: center;
}
@media (max-width: 960px) {
	.page404 .anchor-btn {
		-webkit-box-align: center;
		align-items: center;
	}
}