@charset "utf-8";
/**
/* 共通 CSS
----------------------------------------------- */
/*　　ローディングアニメーション　　*/
.loading-anime-wrap {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0px;
	left: 0px;
	background: #f9f5ef;
	z-index: 99999;
}
.loading-anime-wrap .loading-anime-img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	max-width: 400px;
}
.loading-anime-wrap .loading-anime-line {
	background-color: #de9547;
	width: 100%;
	height: 1px;
	position: absolute;
	top: 75%;
	transform: scale(0, 1);
	animation: example 1.5s ease 0.5s 1 forwards;
}
@keyframes example {
	0% {
		transform: scale(0, 1);
	}
	100% {
		transform: scale(1, 1);
	}
}
/*　　アニメーション　　*/
.fadeUp{
	opacity: 0;
	visibility: hidden;
	transform: translateY(40px);
	transition: opacity 0.5s,visibility 0.5s, transform 0.5s;
}
.fadeUp.active{
	opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
/*　　見出し　　*/
.guide-ttl{
	position: relative;
	margin-bottom: 3.5625rem;
}
.page-wrap .guide-ttl{
	margin-bottom: 3rem;
}
.guide-ttl .roma{
	font-family: "Roboto Condensed", sans-serif;
	color: #4ea6cc;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.1em;
	margin-bottom: 0.625rem;
}
.guide-ttl h2{
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.1em;
}
.icn-ttl{
	display: inline-block;
	position: relative;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.45;
	padding-left: 5.3125rem;
	margin-bottom: 3rem;
}
.icn-ttl::before{
	position: absolute;
	background: url(../img/icon/icn_ttl.png) no-repeat center;
	background-size: contain;
	content: '';
	width: 3.5625rem;
	height: 2.625rem;
	top: -0.125rem;
	left: 0;
}
@media only screen and (max-width: 767px) {
	.guide-ttl{
		margin-bottom: 1.875rem;
	}
	.page-wrap .guide-ttl{
		margin-bottom: 2rem;
	}
	.guide-ttl .roma{
		font-size: 0.9375rem;
		margin-bottom: 0.365rem;
	}
	.guide-ttl h2{
		font-size: 1.375rem;
	}
	.icn-ttl{
		font-size: 1.125rem;
		padding-left: 3.3125rem;
		margin-bottom: 1.75rem;
	}
	.icn-ttl::before{
		width: 2.4rem;
		height: 1.625rem;
		top: 0;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.guide-ttl{
		margin-bottom: 2.5rem;
	}
	.icn-ttl{
		font-size: 1.25rem;
		padding-left: 4rem;
		margin-bottom: 1.75rem;
	}
	.icn-ttl::before{
		width: 3rem;
		height: 2.125rem;
		top: 0;
	}
}
/**
/* ページ共通 CSS
----------------------------------------------- */
.p-text{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.68;
	letter-spacing: 0.05em;
}
.c-red{
	color: #da6363;
}
.bg-brown{
	background: #ebe2d5;
}
@media only screen and (max-width: 767px) {
	.p-text{
		font-size: 0.9375rem;
	}
}
/**
/* トップページ CSS
----------------------------------------------- */
/*　　MV　　*/
.mv-view{
	position: relative;
	-webkit-justify-content: center;
	justify-content: centerflex-end;
	align-items: center;
}
.mv-view .view-img img{
	width: 100%;
	height: auto;
}
.mv-view .view-box{
	position: absolute;
	top: 35%;
	right: 10%;
	z-index: 1000;
}
.mv-view .view-box p{
	color: #212121;
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 2;
}
@media only screen and (max-width: 1380px) {
	.mv-view .view-box p{
		font-size: 2rem;
	}
}
@media only screen and (max-width: 767px) {
	.mv-view{
		margin-top: 4rem;
	}
	.mv-view .view-img .swiper-slide{
		height: 18.75rem;
	}
	.mv-view .view-img img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.mv-view .view-box{
		top: 35%;
		right: 10%;
	}
	.mv-view .view-box p{
		font-size: 1.5rem;
		line-height: 1.85;
		text-shadow:1px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF,  0 -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.mv-view{
		margin-top: 5rem;
	}
	.mv-view .view-box{
		position: absolute;
		top: 30%;
		right: 10%;
	}
	.mv-view .view-box p{
		font-size: 1.875rem;
	}
}
/*　　初めての方へ　　*/
.front-about{
	padding: 7.5rem 0 3.75rem 0;
}
.front-about .imageArea{
	width: 55%;
}
.front-about .contentArea{
	width: 45%;
	padding: 0 1.75rem 0 6.25rem;
}
.front-about .contentArea .guide-ttl{
	text-align: center;
	margin-bottom: 2.3125rem;
}
.front-about .contentArea .guide-ttl h2{
	font-size: 2.5rem;
	line-height: 1.45;
	text-align: left;
}
.front-about .contentArea .guide-ttl h2 strong{
	font-size: 3.375rem;
	font-weight: 500;
	margin-bottom: 3.375rem;
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
.front-about .contentArea .guide-ttl h2 .brackets{
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}
.front-about .contentArea .p-text{
	line-height: 2.125;
}
.front-about .contentArea .block_btn{
	margin-top: 3.375rem;
}
.front-about .contentArea .block_btn li{
	text-align: center;
	max-width: 16.25rem;
}
@media only screen and (max-width: 767px) {
	.front-about{
		padding: 4.5rem 0 2.75rem 0;
	}
	.front-about .imageArea{
		width: 100%;
		margin-bottom: 2.5rem;
		display: none;
	}
	.front-about .contentArea{
		position: relative;
		width: 100%;
		padding: 0;
	}
	.front-about .contentArea::after{
		content: "";
		display: inline-block;
		position: absolute;
		z-index: 0;
		right: -5%;
		top: 71%;
		width: 50%;
		height: 44vw;
		background-image: url(../img/top/about_pic_sp.png);
		background-repeat: no-repeat;
		background-position: right bottom;
		background-size: contain;
	}
	.front-about .contentArea .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.front-about .contentArea .guide-ttl h2{
		font-size: 1.875rem;
		text-align: left;
	}
	.front-about .contentArea .guide-ttl h2 strong{
		font-size: 2.375rem;
		margin-bottom: 3.375rem;
	}
	.front-about .contentArea .p-text{
		position: relative;
		z-index: 1;
		line-height: 2.125;
	}
	.front-about .contentArea .block_btn{
		position: relative;
		z-index: 1;
		text-align: left;
		margin-top: 2.375rem;
	}
	.front-about .contentArea .block_btn li{
		max-width: 16rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-about{
		padding: 5.5rem 0 2.75rem 0;
	}
	.front-about .imageArea{
		width: 55%;
	}
	.front-about .contentArea{
		width: 45%;
		padding: 0 0 0 2rem;
	}
	.front-about .contentArea .guide-ttl{
		margin-bottom: 1.3125rem;
	}
	.front-about .contentArea .guide-ttl h2{
		font-size: 2rem;
		text-align: right;
	}
	.front-about .contentArea .guide-ttl h2 strong{
		font-size: 2.65rem;
		margin-bottom: 3.375rem;
	}
	.front-about .contentArea .p-text{
		line-height: 2.125;
	}
	.front-about .contentArea .block_btn{
		margin-top: 1.875rem;
	}
}
/*　　専門店の魅力　　*/
.front-price{
	padding: 3.75rem 0 6.875rem 0;
}
.front-price .block_btn{
	margin-top: 3.5rem;
}
@media only screen and (max-width: 767px) {
	.front-price{
		padding: 2.75rem 0 4.875rem 0;
	}
	.front-price .block_btn{
		margin-top: 3.5rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-price{
		padding: 3.75rem 0 5.875rem 0;
	}
}
/*　　買取下取り　　*/
.buy-guide{
	background: #ffffff;
	box-shadow: 0.1875rem 0.3125rem 0.625rem rgb(34, 39, 48, 0.1);
	padding: 4.0625rem 0;
}
.buy-guide .contentArea{
	width: 50%;
	padding-right: 3.75rem;
}
.buy-guide .contentArea .guide-ttl{
	margin-bottom: 2.6875rem;
}
.buy-guide .contentArea h3{
	color: #de9547;
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
	margin-left: -0.875rem;
}
.buy-guide .contentArea .block_btn{
	margin-top: 1.875rem;
	margin-left: 3.75rem;
}
.buy-guide .imageArea{
	width: 50%;
}
@media only screen and (max-width: 767px) {
	.buy-guide{
		padding: 3.0625rem 0;
	}
	.buy-guide .contentArea{
		width: 100%;
		padding-right: 0;
	}
	.buy-guide .contentArea .guide-ttl{
		margin-bottom: 1.6875rem;
	}
	.buy-guide .contentArea h3{
		font-size: 1.25rem;
		margin-bottom: 1.25rem;
		margin-left: 0;
	}
	.buy-guide .contentArea .block_btn{
		text-align: center;
		margin-top: 1.875rem;
		margin-left: 0;
	}
	.buy-guide .imageArea{
		width: 100%;
		margin-bottom: 2rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.buy-guide{
		padding: 4rem 0;
	}
	.buy-guide .contentArea{
		padding-right: 1.75rem;
	}
	.buy-guide .contentArea .guide-ttl{
		margin-bottom: 1.6875rem;
	}
	.buy-guide .contentArea h3{
		font-size: 1.25rem;
		margin-bottom: 1.25rem;
	}
	.buy-guide .contentArea .block_btn{
		text-align: center;
		margin-left: 0;
	}
}
/*　　お知らせ　　*/
.front-news{
	padding: 7.9375rem 0 3.4375rem 0;
}
.front-news .guide-ttl{
	margin-bottom: 3.3125rem;
}
.news-wrap .jstabs{
	column-gap: 1.25rem;
}
.news-wrap .jstabs .js-tab-btn{
	background: #ffffff;
	display: block;
	width: calc(25% - 0.9375rem);
	max-width: 10.625rem;
	color: #de9547;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.05em;
	text-align: center;
	border: 1px solid #de9547;
	border-radius: 3.125rem;
	padding: 0.35rem 0.625rem 0.375rem 0.625rem;
	cursor: pointer;
}
.news-wrap .jstabs .js-tab-btn.current{
	background: #de9547;
	color: #ffffff;
}
.news-wrap .js-tab-contents{
	display: none;
}
.news-wrap .js-tab-contents.current{
	display: block;
}
.front-news .block_btn{
	margin-top: 3.3125rem;
}
@media only screen and (max-width: 767px) {
	.front-news{
		padding: 5.5rem 0 2.4375rem 0;
	}
	.front-news .guide-ttl{
		margin-bottom: 3.3125rem;
	}
	.news-wrap .jstabs{
		column-gap: 0.625rem;
		row-gap: 0.625rem;
	}
	.news-wrap .jstabs .js-tab-btn{
		width: calc(50% - 0.375rem);
		max-width: 100%;
		font-size: 0.9375rem;
		padding: 0.35rem 0.625rem 0.375rem 0.625rem;
	}
	.front-news .block_btn{
		margin-top: 3rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-news{
		padding: 6.9375rem 0 3.4375rem 0;
	}
	.front-news .guide-ttl{
		margin-bottom: 3rem;
	}
	.front-news .block_btn{
		margin-top: 3rem;
	}
}
/*　　お客様の声　　*/
.voice-guide{
	padding: 3.4375rem 0 7.625rem 0;
}
.voice-guide .inner-wrap{
	background: #ffffff;
	box-shadow: 0.1875rem 0.3125rem 0.625rem rgb(34, 39, 48, 0.1);
	padding: 4.5rem 4rem 4.375rem 4rem;
}
.voice-guide .guide-ttl{
	margin-bottom: 1.875rem;
}
.voice-guide .voice-list{
	overflow: hidden;
	padding: 1rem;
}
.voice-list .voice-items{
	background: #ffffff;
	box-shadow: 0.1875rem 0.3125rem 0.625rem rgb(34, 39, 48, 0.1);
	padding: 1rem;
}
.voice-list .voice-items .imageArea{
	margin-bottom: 1.5rem;
	height: 18vw;
	max-height: 240px;
}
.voice-list .voice-items .imageArea img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.voice-list .voice-items .date{
	font-family: "Roboto Condensed", sans-serif;
	color: #de9547;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
	margin-bottom: 0.375rem;
}
.voice-list .voice-items .ttl{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.voice-guide .swiper-button-next,
.voice-guide .swiper-button-prev{
	background: #de9547;
	top: calc(50% - 2.5rem);
	width: 2rem;
	height: 14rem;
	border-radius: 3.125rem;
}
.voice-guide .swiper-button-prev{
	left: 1.875rem;
}
.voice-guide .swiper-button-next{
	right: 1.875rem;
}
.voice-guide .swiper-button-next:after,
.voice-guide .swiper-button-prev:after{
	color: #ffffff;
	font-size: 1.25rem;
}
.voice-box .coming-soon{
	font-family: "Roboto Condensed", sans-serif;
	font-size: 1.625rem;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.1em;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.voice-guide{
		padding: 2.4375rem 0 3.625rem 0;
	}
	.voice-guide .inner-wrap{
		padding: 2rem 2rem 1.375rem 2rem;
	}
	.voice-guide .guide-ttl{
		margin-bottom: 0.5rem;
	}
	.voice-list .voice-items .imageArea{
		margin-bottom: 1.125rem;
		height: 38vw;
		max-height: none;
	}
	.voice-list .voice-items .date{
		font-size: 0.9375rem;
		margin-bottom: 0.25rem;
	}
	.voice-list .voice-items .ttl{
		font-size: 0.9375rem;
	}
	.voice-guide .swiper-button-next,
	.voice-guide .swiper-button-prev{
		top: calc(50% - 1rem);
		width: 1.5rem;
		height: 10rem;
	}
	.voice-guide .swiper-button-prev{
		left: auto;
		right: calc(100% - 1.5rem);
	}
	.voice-guide .swiper-button-next{
		left: calc(100% - 1.5rem);
		right: auto;
	}
	.voice-guide .swiper-button-next:after,
	.voice-guide .swiper-button-prev:after{
		font-size: 1rem;
	}
	.voice-box .coming-soon{
		font-size: 1.375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.voice-guide{
		padding: 3.4375rem 0 4.625rem 0;
	}
	.voice-guide .inner-wrap{
		padding: 4.5rem 3rem 2.375rem 3rem;
	}
	.voice-guide .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.voice-list .voice-items .imageArea{
		margin-bottom: 1.25rem;
		height: 28vw;
		max-height: 320px;
	}
	.voice-guide .swiper-button-prev{
		left: 1.25rem;
	}
	.voice-guide .swiper-button-next{
		right: 1.25rem;
	}
	.voice-guide .swiper-button-next:after,
	.voice-guide .swiper-button-prev:after{
		font-size: 1.125rem;
	}
}
/*　　よくあるご質問　　*/
.faq-guide{
	padding: 7.0625rem 0 6.5625rem 0;
}
.faq-guide .grid-ttl{
	margin-bottom: 3.125rem;
}
.faq-list .faq-items{
	background: #ffffff;
	box-shadow: 0.1875rem 0.3125rem 0.625rem rgb(34, 39, 48, 0.1);
	margin-bottom: 1.25rem;
	border-radius: 0.625rem;
}
.faq-list .faq-items .dl_table{
	width: 100%;
	display: table;
}
.faq-list .faq-items .dl_table dt,
.faq-list .faq-items .dl_table dd{
	display: table-cell;
	vertical-align: middle;
}
.faq-list .faq-items .question{
	position: relative;
	padding: 0.9375rem 5.25rem 0.9375rem 2rem;
	cursor: pointer;
}
.faq-list .faq-items .question:after{
	content: "";
	position: absolute;
	background: url(../img/icon/icn-plus.png) no-repeat center;
	background-size: cover;
	right: 1.25rem;
	top: 0.875rem;
	width: 3.25rem;
	height: 3.25rem;
}
.faq-list .faq-items .question.open:after{
	background: url(../img/icon/icn-minus.png) no-repeat center;
	background-size: cover;
}
.faq-list .faq-items .question dt{
	font-family: "Roboto Condensed", sans-serif;
	width: 2.8125rem;
	color: #de9547;
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1.25;
}
.faq-list .faq-items .question dd{
	width: calc(100% - 2.8125rem);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.1em;
	padding-left: 1.5rem;
	vertical-align: middle;
}
.faq-list .faq-items .answer{
	display: none;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 2.2;
	letter-spacing: 0.1em;
	padding: 0 3.75rem 3.125rem 3.75rem;
}
@media only screen and (max-width: 767px) {
	.faq-guide{
		padding: 5.0625rem 0 2.5625rem 0;
	}
	.faq-guide .grid-ttl{
		margin-bottom: 3.125rem;
	}
	.faq-list .faq-items{
		margin-bottom: 1rem;
	}
	.faq-list .faq-items .question{
		padding: 0.9375rem 4rem 0.9375rem 1rem;
	}
	.faq-list .faq-items .question:after{
		right: 1.25rem;
		top: 50%;
        transform: translateY(-50%);
		width: 2.25rem;
		height: 2.25rem;
	}
	.faq-list .faq-items .question dt{
		width: 2rem;
		font-size: 2rem;
	}
	.faq-list .faq-items .question dd{
		width: calc(100% - 2rem);
		font-size: 1rem;
		padding-left: 0.875rem;
	}
	.faq-list .faq-items .answer{
		font-size: 0.9375rem;
		line-height: 1.65;
		padding: 0 1.75rem 1.5rem 1.75rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.faq-guide{
		padding: 5.0625rem 0 4.5625rem 0;
	}
	.faq-guide .grid-ttl{
		margin-bottom: 3.125rem;
	}
	.faq-list .faq-items .question{
		padding: 0.9375rem 3.85rem 0.9375rem 1.25rem;
	}
	.faq-list .faq-items .question:after{
		right: 1rem;
		top: 1.125rem;
		width: 2.5rem;
		height: 2.5rem;
	}
	.faq-list .faq-items .question dt{
		width: 2.5rem;
		font-size: 2.35rem;
	}
	.faq-list .faq-items .question dd{
		width: calc(100% - 2.5rem);
		padding-left: 1.25rem;
	}
	.faq-list .faq-items .answer{
		font-size: 1rem;
		line-height: 1.85;
		padding: 0 2.75rem 2rem 3.75rem;
	}
}
/*　　会社案内　　*/
.front-company{
	padding: 5.625rem 0;
}
.front-company .inner-wrap{
	background: #ffffff;
	box-shadow: 0.1875rem 0.3125rem 0.625rem rgb(34, 39, 48, 0.1);
	padding: 1.875rem;
}
.front-company .contentArea{
	width: 48%;
	padding: 0 3.75rem 0 1.25rem;
}
.front-company .contentArea .guide-ttl{
	margin-bottom: 1.875rem;
}
.front-company .contentArea .block_btn{
	margin-top: 1.875rem;
}
.front-company .imageArea{
	width: 52%;
}
@media only screen and (max-width: 767px) {
	.front-company{
		padding: 2.625rem 0;
	}
	.front-company .inner-wrap{
		padding: 1.875rem;
	}
	.front-company .contentArea{
		width: 100%;
		padding: 0;
	}
	.front-company .contentArea .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.front-company .contentArea .block_btn{
		margin-top: 1.5rem;
	}
	.front-company .imageArea{
		width: 100%;
		margin-bottom: 1.25rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.front-company{
		padding: 3.625rem 0;
	}
	.front-company .inner-wrap{
		padding: 1.875rem;
	}
	.front-company .contentArea{
		padding: 0 1.75rem 0 0.5rem;
	}
	.front-company .contentArea .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.front-company .contentArea .block_btn{
		margin-top: 1.5rem;
	}
}
/*　　お問い合わせ　　*/
.bottom-contact{
	background: #ebe2d5;
	padding: 5rem 0 4.125rem 0;
}
.home .bottom-contact {
	background: inherit;
}
.bottom-contact .contact-block{
	width: 50rem;
	margin: 0 auto;
}
.contact-block .block-items{
	background: #ffffff;
	box-shadow: 0.125rem 0.3125rem 0.3125rem rgb(38, 33, 37, 0.2);
	padding: 1.875rem 2.75rem;
	border-radius: 5rem;
}
.contact-block .block-items:not(:last-child) {
	margin-bottom: 1.875rem;
}
.contact-block .block-items h3{
	display: flex;
	align-items: center;
	width: 18.75rem;
	color: #de9547;
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.35;
}
.contact-block .block-items h3 span{
	line-height: 0;
	margin-right: 1.25rem;
}
.contact-block .block-items h3 span img{
	width: 1.75rem;
}
.contact-block .block-items .contact_btn{
	width: calc(100% - 18.75rem);
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	padding-left: 5rem;
}
.contact-block .block-items .contact_btn li{
	width: 100%;
	max-width: 20rem;
}
.contact-block .block-items .contact_btn li + li{
	margin-left: 4%;
}
.contact-block .block-items .contact_btn li a{
	background: #de9547;
	display: block;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	border-radius: 3.125rem;
	padding: 1.125rem 1rem;
}
.contact-block .block-items .tel-grid{
	width: calc(100% - 18.75rem);
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	padding-left: 2rem;
}
.contact-block .block-items .tel-grid .tel a{
	font-family: "Roboto Condensed", sans-serif;
	display: block;
	color: #211d1a;
	font-size: 2.85rem;
	font-weight: 500;
	line-height: 1.25;
}
.contact-block .block-items .tel-grid .hours{
	background: #ffffff;
	border: 1px solid #de9547;
	border-radius: 3.125rem;
	margin-left: 0;
}
.contact-block .block-items .tel-grid .hours dt{
	background: #de9547;
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	border-radius: 3.125rem;
	padding: 0.3125rem 1.375rem;
}
.contact-block .block-items .tel-grid .hours dd{
	font-family: "Roboto Condensed", sans-serif;
	color: #211d1a;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.25;
	padding: 0 1.25rem 0 1.5rem;
}
@media only screen and (max-width: 1290px) {
	.contact-block .block-items{
		padding: 1.875rem 2.5rem;
	}
	.contact-block .block-items h3{
		width: 16.5rem;
		font-size: 1.25rem;
	}
	.contact-block .block-items h3 span{
		margin-right: 1rem;
	}
	.contact-block .block-items .contact_btn{
		width: calc(100% - 16.5rem);
		padding-left: 3rem;
	}
	.contact-block .block-items .tel-grid{
		width: calc(100% - 16.5rem);
		padding-left: 3rem;
	}
	.contact-block .block-items .tel-grid .tel a{
		font-size: 2.5rem;
	}
	.contact-block .block-items .tel-grid .hours dt{
		font-size: 1.0625rem;
		padding: 0.3125rem 1.125rem;
	}
	.contact-block .block-items .tel-grid .hours dd{
		font-size: 1.45rem;
		padding: 0 1.25rem 0 1rem;
	}
}
@media only screen and (max-width: 1100px) {
	.contact-block .block-items .tel-grid .tel a{
		font-size: 2rem;
	}
	.contact-block .block-items .tel-grid .hours dt{
		font-size: 1rem;
		padding: 0.3125rem 1.125rem;
	}
	.contact-block .block-items .tel-grid .hours dd{
		font-size: 1.25rem;
		padding: 0 1.25rem 0 1rem;
	}
}
@media only screen and (max-width: 767px) {
	.bottom-contact{
		padding: 4rem 0 3.125rem 0;
	}
	.bottom-contact .contact-block{
		width: 100%;
	}
	.contact-block .block-items{
		padding: 1.875rem 1.75rem;
		border-radius: 0.625rem;
	}
	.contact-block .block-items:not(:last-child) {
		margin-bottom: 1.25rem;
	}
	.contact-block .block-items h3{
		width: 100%;
		font-size: 1.25rem;
		margin-bottom: 0.875rem;
		-webkit-justify-content: center;
		justify-content: center;
	}
	.contact-block .block-items h3 span{
		margin-right: 0.625rem;
	}
	.contact-block .block-items .contact_btn{
		width: 100%;
		padding-left: 0;
		margin-top: 0.625rem;
	}
	.contact-block .block-items .contact_btn li{
		width: 100%;
		max-width: 20rem;
	}
	.contact-block .block-items .contact_btn li + li{
		margin-top: 0.625rem;
	}
	.contact-block .block-items .contact_btn li a{
		font-size: 1rem;
		padding: 1rem 0.625rem;
	}
	.contact-block .block-items .tel-grid{
		width: 100%;
		padding-left: 0;
		-webkit-justify-content: center;
		justify-content: center;
	}
	.contact-block .block-items .tel-grid .tel{
		width: 100%;
	}
	.contact-block .block-items .tel-grid .tel a{
		font-size: 2.35rem;
		text-align: center;
	}
	.contact-block .block-items .tel-grid .hours dt{
		font-size: 1rem;
		padding: 0.3125rem 1.125rem;
	}
	.contact-block .block-items .tel-grid .hours dd{
		font-size: 1.125rem;
		padding: 0 1.25rem 0 1rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.bottom-contact .contact-block{
		width: 40rem;
	}
	.contact-block .block-items{
		padding: 1.5rem 2rem;
	}
	.contact-block .block-items:not(:last-child) {
		margin-bottom: 1.5rem;
	}
	.contact-block .block-items h3 span img{
		width: 1.75rem;
	}
	.contact-block .block-items .contact_btn{
		padding-left: 2rem;
	}
	.contact-block .block-items .tel-grid{
		padding-left: 2rem;
	}
	.contact-block .block-items .tel-grid .tel a{
		font-size: 1.875rem;
	}
	.contact-block .block-items .tel-grid .hours dt{
		font-size: 1rem;
		padding: 0.3125rem 0.625rem;
	}
	.contact-block .block-items .tel-grid .hours dd{
		font-size: 1rem;
		padding: 0 1rem 0 0.625rem;
	}
}
/*　　お問い合わせ完了　　*/
.thanks-guide h3{
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	margin-bottom: 2rem;
}
.thanks-guide p{
	text-align: center;
}
.thanks-guide .block_btn{
	text-align: center;
	margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
	.thanks-guide h3{
		font-size: 1.375rem;
		margin-bottom: 1.5rem;
	}
	.thanks-guide .block_btn{
		margin-top: 2rem;
	}
}
/**
/* 下層ページ共通 CSS
----------------------------------------------- */
/*　　ページヘッダー　　*/
.page-view{
	position: relative;
	margin-top: 6.875rem;
}
.page-view .view-img{
	height: 18.75rem;
}
.page-view .view-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom 0 right 9%;
}
.page-view .view-ttl{
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}
.page-view .view-ttl h1{
	color: #ffffff;
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 1.45;
}
@media only screen and (max-width: 1380px) {
	.page-view{
		margin-top: 5.675rem;
	}
}
@media only screen and (max-width: 767px) {
	.page-view{
		margin-top: 4rem;
	}
	.page-view .view-img{
		height: 13.75rem;
	}
	.page-view .view-ttl h1{
		font-size: 1.375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.page-view{
		margin-top: 5rem;
	}
}
/*　　table　　*/
.bg-tbl{
	border-radius: 0.625rem;
}
.bg-tbl table{
	width: 100%;
	border-collapse: separate;
	border-spacing: 0.625rem;
}
.bg-tbl table th,
.bg-tbl table td{
	vertical-align: middle;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0.3125rem;
	padding: 1.125rem 2rem;
}
.bg-tbl table th{
	background: #ffffff;
	color: #de9547;
	font-weight: 500;
}
.bg-tbl table td{
	background: #ffffff;
}
@media only screen and (max-width: 767px) {
	.bg-tbl table{
		border-spacing: 0.375rem;
	}
	.bg-tbl table th,
	.bg-tbl table td{
		display: block;
		font-size: 0.9375rem;
		border-radius: 0;
		padding: 0.625rem 1rem 1rem 1rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.bg-tbl table th,
	.bg-tbl table td{
		padding: 1.125rem 1.5rem;
	}
}
/**
/* 初めての方へ CSS
----------------------------------------------- */
.about-guide{
	padding-bottom: 5rem;
}
.about-guide .about-head{
	padding-bottom: 7.5rem;
}
.about-guide .about-head .p-text{
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 2;
	text-align: center;
}
.about-list .about-items:not(:last-child){
	margin-bottom: 6.75rem;
}
.about-list .about-items .p-text:not(:last-child){
	margin-bottom: 2.5rem;
}
.about-list .about-items h3{
	color: #de9547;
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
}
.about-list .about-items .p-text{
	line-height: 2;
}
.about-list .about-items .service-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.5rem;
	margin-top: 2.5rem;
}
.about-list .about-items .service-list .service-box{
	position: relative;
	font-size: 1.125rem;
	line-height: 1.85;
	padding: 2rem;
	background-color: #fff;
	box-shadow: 0.1875rem 0.3125rem 0.625rem rgb(34, 39, 48, 0.1);
	border-radius: 0.625rem;
	width: calc((100% - 5rem)/3);
}
.about-list .about-items .service-list .service-box h4{
	margin-bottom: 1.5rem;
	line-height: 1.5;
	font-weight: 500;
	font-size: 1.125rem;
}
.about-list .about-items .service-list .service-box h4 .text-block{
	display: inline-block;
}
.about-list .about-items .service-list .service-box .image-box img{
	max-width: 100%;
	height: auto;
}


.about-list .about-items .box{
	background: #ffffff;
	padding: 2rem;
	margin-top: 1.5rem;
}
.about-list .about-items .box .imageArea{
	width: 40%;
}
.about-list .about-items .box .contentArea{
	width: 60%;
	padding: 0 1rem 0 3rem;
}
.about-list .about-items .box .flex_row .contentArea{
	padding: 0 3rem 0 1rem;
}
.about-list .about-items .box h3{
	border-bottom: 1px solid #d5d4d4;
	padding-bottom: 1.25rem;
}
.about-list .about-items .box .p-text{
	font-weight: 400;
	line-height: 1.85;
}
.about-list .about-items dl.list{
	padding: 0 1rem 0 2rem;
	margin-top: 2.5rem;
}
.about-list .about-items dl.list dt{
	width: 10rem;
	color: #de9547;
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.05em;
}
.about-list .about-items dl.list dd{
	width: calc(100% - 10rem);
}
.about-list .about-items dl.list dd p{
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
}
.about-list .about-items .list li + li{
	margin-top: 1.8rem;
}
.about-list .about-items .list li > span{
	font-weight: bold;
}
.about-list .about-items .list li .flex_wrap{
	margin-top: 1rem;
}
.about-list .about-items .list li .flex_wrap .imageArea{
	width: 30%;
}
.about-list .about-items .list li .flex_wrap .contentArea{
	width: 70%;
	padding-left: 2.5rem;
}
@media only screen and (max-width: 767px) {
	.about-guide{
		padding-bottom: 3rem;
	}
	.about-guide .about-head{
		padding-bottom: 4.5rem;
	}
	.about-guide .about-head .p-text{
		font-size: 1rem;
		text-align: left;
	}
	.about-list .about-items:not(:last-child){
		margin-bottom: 3.75rem;
	}
	.about-list .about-items .p-text:not(:last-child){
		margin-bottom: 2rem;
	}
	.about-list .about-items h3{
		font-size: 1.125rem;
		margin-bottom: 1rem;
	}
	.about-list .about-items .p-text{
		text-align: left;
	}
	.about-list .about-items .list li{
		font-size: 0.9375rem;
		padding-left: 1.5rem;
	}
	.about-list .about-items .list.flex_wrap li{
		width: 100%;
		text-align: left;
		margin: 0;
		margin-bottom: 1rem;
	}
	.about-list .about-items .box{
		padding: 1.5rem;
		margin-top: 1rem;
	}
	.about-list .about-items .box .imageArea{
		width: 100%;
	}
	.about-list .about-items .box .contentArea{
		width: 100%;
		padding: 1rem 0 0 0;
	}
	.about-list .about-items .box .flex_row .contentArea{
		padding: 1rem 0 0 0;
	}
	.about-list .about-items .box h3{
		width: 100%;
		padding-bottom: 1rem;
	}
	.about-list .about-items dl.list{
		padding: 0;
		margin-top: 1.5rem;
	}
	.about-list .about-items dl.list dt{
		width: 100%;
		font-size: 1.125rem;
		line-height: 1.85;
	}
	.about-list .about-items dl.list dd{
		width: 100%;
	}
	.about-list .about-items dl.list dd p{
		font-size: 0.9375rem;
		line-height: 1.85;
	}
	.about-list .about-items .list li .flex_wrap{
		margin-top: 1rem;
	}
	.about-list .about-items .list li .flex_wrap .imageArea{
		width: 100%;
		margin-bottom: 1.125rem;
	}
	.about-list .about-items .list li .flex_wrap .contentArea{
		width: 100%;
		padding-left: 0;
	}
	.about-list .about-items .service-list{
		flex-direction: column;
		gap: 1.5rem;
	}
	.about-list .about-items .service-list .service-box{
		width: 100%;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.about-guide{
		padding-bottom: 3rem;
	}
	.about-guide .about-head{
		padding-bottom: 5.5rem;
	}
	.about-guide .about-head .p-text{
		font-size: 1.25rem;
	}
	.about-list .about-items:not(:last-child){
		margin-bottom: 5rem;
	}
	.about-list .about-items .p-text:not(:last-child){
		margin-bottom: 2rem;
	}
	.about-list .about-items h3{
		font-size: 1.125rem;
		margin-bottom: 1rem;
	}
	.about-list .about-items .list li{
		font-size: 1rem;
		padding-left: 1.5rem;
	}
	.about-list .about-items .box{
		align-items: flex-start;
		padding: 1.5rem;
	}
	.about-list .about-items .box .contentArea{
		padding: 0 0 0 2rem;
	}
	.about-list .about-items .box .flex_row .contentArea{
		padding: 0 2rem 0 0;
	}
	.about-list .about-items .box h3{
		padding-bottom: 1rem;
	}
	.about-list .about-items dl.list{
		padding: 0 0 0 1rem;
		margin-top: 1.5rem;
	}
	.about-list .about-items dl.list dt{
		width: 7rem;
		font-size: 1.125rem;
		line-height: 1.85;
	}
	.about-list .about-items dl.list dd{
		width: calc(100% - 7rem);
	}
	.about-list .about-items dl.list dd p{
		line-height: 1.85;
	}
	.about-list .about-items .list li .flex_wrap .imageArea{
		width: 30%;
	}
	.about-list .about-items .list li .flex_wrap .contentArea{
		width: 70%;
		padding-left: 1.5rem;
	}
}
/**
/* 専門店の魅力 CSS
----------------------------------------------- */
.price-guide .price-head{
	padding-bottom: 8.5rem;
}
.price-guide .price-head h3{
	color: #de9547;
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
	margin-bottom: 3.75rem;
}
.price-guide .price-head h3 > .deco-wave{
	display: inline-block;
	position: relative;
}
.price-guide .price-head h3 > .deco-wave::before{
	content: "〜";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: calc(100% + 0.5em);
	transform: translateY(-50%);
}
.price-guide .price-head h3 > .deco-wave::after{
	content: "〜";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: calc(100% + 0.5em);
	transform: translateY(-50%);
}
.price-guide .price-head .p-text{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.price-guide .price-head{
		padding-bottom: 4.5rem;
	}
	.price-guide .price-head h3{
		font-size: 1.25rem;
		margin-bottom: 1.75rem;
	}
	.price-guide .price-head .p-text{
		font-size: 0.9375rem;
		text-align: left;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.price-guide .price-head{
		padding-bottom: 6.5rem;
	}
	.price-guide .price-head h3{
		font-size: 1.25rem;
		margin-bottom: 1.75rem;
	}
	.price-guide .price-head .p-text{
		font-size: 1rem;
	}
}
/*　　よくあるお悩み　　*/
.worries-box{
	margin-bottom: 7rem;
}
.worries-box h3{
	color: #de9547;
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
	margin-bottom: 3.75rem;
}
.worries-box .check{
	column-gap: 2rem;
	row-gap: 1rem;
}
.worries-box .check li{
	position: relative;
	background: #ffffff;
	width: calc(50% - 1rem);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5;
	padding: 1rem 1rem 1rem 2.75rem;
	border-radius: 0.375rem;
}
.worries-box .check li::before {
	position: absolute;
	left: 1rem;
	color: #9ed3ea;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f058';
}
.worries-box .p-text{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.65;
	text-align: center;
	margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
	.worries-box{
		margin-bottom: 4rem;
	}
	.worries-box h3{
		font-size: 1.25rem;
		margin-bottom: 1.75rem;
	}
	.worries-box .check{
		column-gap: 0;
		row-gap: 0.625rem;
	}
	.worries-box .check li{
		width: 100%;
		font-size: 1rem;
	}
	.worries-box .p-text{
		font-size: 1.125rem;
		margin-top: 2.5rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.worries-box{
		margin-bottom: 5rem;
	}
	.worries-box h3{
		font-size: 1.475rem;
		margin-bottom: 2.75rem;
	}
	.worries-box .check{
		column-gap: 1rem;
	}
	.worries-box .check li{
		width: calc(50% - 0.5rem);
		font-size: 1.0625rem;
	}
	.worries-box .p-text{
		font-size: 1.25rem;
		margin-top: 3rem;
	}
}
/*　　専門店の魅力　　*/
.price-list .price-items{
	background: #ffffff;
	box-shadow: 0.1875rem 0.3125rem 0.625rem rgb(34, 39, 48, 0.1);
	padding: 1.25rem 3.75rem 1.25rem 1.25rem;
	margin-bottom: 2.5rem;
	border-radius: 0.625rem;
}
.price-list .price-items:nth-child(even){
	padding: 1.25rem 1.25rem 1.25rem 3.75rem;
}
.price-list .price-items .contentArea{
	width: 50%;
}
.price-list .price-items .no{
	margin-bottom: 1.5625rem;
}
.price-list .price-items .no span{
	display: inline-block;
	background: #9ed3ea;
	font-family: "Roboto Condensed", sans-serif;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
	border-radius: 0.3125rem;
	padding: 0.45rem 1.1rem 0.375rem 1.1rem;
}
.price-list .price-items h3{
	color: #de9547;
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.05em;
	border-bottom: 1px solid #d5d4d4;
	padding-bottom: 1.5625rem;
	margin-bottom: 2.5rem;
}
.price-list .price-items .p-text{
	color: #211d1a;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.77;
	letter-spacing: 0.05em;
}
.price-list .price-items .imageArea{
	width: 42%;
}
@media only screen and (max-width: 767px) {
	.price-list .price-items{
		padding: 1.25rem;
		margin-bottom: 1.5rem;
	}
	.price-list .price-items:nth-child(even){
		padding: 1.25rem;
	}
	.price-list .price-items .contentArea{
		width: 100%;
		margin-bottom: 1.25rem;
	}
	.price-list .price-items .no{
		margin-bottom: 1rem;
	}
	.price-list .price-items .no span{
		font-size: 0.875rem;
		padding: 0.4375rem 0.625rem;
	}
	.price-list .price-items h3{
		font-size: 1.25rem;
		padding-bottom: 1rem;
		margin-bottom: 0.9375rem;
	}
	.price-list .price-items .p-text{
		font-size: 0.9375rem;
	}
	.price-list .price-items .imageArea{
		width: 100%;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.price-list .price-items{
		padding: 1.25rem;
		margin-bottom: 1.5rem;
	}
	.price-list .price-items:nth-child(even){
		padding: 1.25rem;
	}
	.price-list .price-items .contentArea{
		width: 53%;
	}
	.price-list .price-items .no{
		margin-bottom: 1rem;
	}
	.price-list .price-items .no span{
		padding: 0.4375rem 0.625rem;
	}
	.price-list .price-items h3{
		font-size: 1.475rem;
		padding-bottom: 1rem;
		margin-bottom: 1rem;
	}
	.price-list .price-items .p-text{
		font-size: 1rem;
	}
}
/**
/* 納車までの流れ CSS
----------------------------------------------- */
.flow-guide{
	padding-bottom: 5rem;
}
.flow-guide .flow-head{
	padding-bottom: 4rem;
}
.flow-guide .flow-head h3{
	color: #de9547;
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
	margin-bottom: 3.75rem;
}
.flow-guide .flow-head .p-text{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2;
	text-align: center;
}
.flow-guide .flow-list{
	position: relative;
	column-gap: 3.0625rem;
	justify-content: center;
}
/* .flow-guide .flow-list::before{
	position: absolute;
	background: #a2a2a2;
	content: '';
	height: 1px;
	top: 50%;
	transform: translateY(-50%);
} */
.flow-guide .flow-list:nth-child(1){
	/* margin-right: 2.1875rem; */
	margin-bottom: 3.75rem;
}
/* .flow-guide .flow-list:nth-child(2){
	margin-left: 2.1875rem;
} */
/* .flow-guide .flow-list:nth-child(1)::before{
	width: calc(100% + 1.875rem);
	left: 0;
}
.flow-guide .flow-list:nth-child(2)::before{
	width: calc(66.6666% + -0.125rem);
	left: -1.875rem;
} */
.flow-list .flow-items{
	position: relative;
	display: flex;
	flex-direction:column;
	width: calc(33.3333% - 2.0625rem);
	background: #ffffff;
	box-shadow: 0.1875rem 0.3125rem 0.625rem rgb(34, 39, 48, 0.1);
	padding: 3rem 2rem;
	border-radius: 0.625rem;
	z-index: 2;
}
/* .flow-list .flow-items::before,
.flow-list .flow-items::after{
	position: absolute;
	background: #9ed3ea;
	content: '';
	width: 2.25rem;
	height: 2.25rem;
	top: 50%;
	transform: translateY(-50%);
	border: 0.375rem solid #ffffff;
	box-shadow: 0.1875rem 0.3125rem 0.625rem rgb(34, 39, 48, 0.1);
	border-radius: 100%;
}
.flow-list .flow-items::before{
	left: -1rem;
}
.flow-list .flow-items::after{
	right: -1rem;
} */
.flow-guide .flow-list:nth-child(1) .flow-items:nth-child(1)::before,
.flow-guide .flow-list:nth-child(2) .flow-items:nth-child(2)::after{
	content: none;
}
.flow-list .flow-items .no{
	font-family: "Roboto Condensed", sans-serif;
	color: #9ed3ea;
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 1.2rem;
}
.flow-list .flow-items .icon-img{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.5rem;
	height: 13vw;
	max-height: 120px;
}
.flow-list .flow-items .icon-img > span{
	display: inline-block;
	width: 45%;
	max-width: 100px;
}
.flow-list .flow-items h3{
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
	margin-bottom: 1.25rem;
}
.flow-list .flow-items h4{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
	margin-bottom: 1.25rem;
}
.flow-list .flow-items .p-text{
	color: #211d1a;
	font-weight: 400;
}
.flow-guide .bg-text{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2;
	text-align: center;
	padding-top: 6rem;
}
@media only screen and (max-width: 767px) {
	.flow-guide{
		padding-bottom: 2rem;
	}
	.flow-guide .flow-head{
		padding-bottom: 3rem;
	}
	.flow-guide .flow-head h3{
		font-size: 1.25rem;
		margin-bottom: 1.75rem;
	}
	.flow-guide .flow-head .p-text{
		font-size: 0.9375rem;
		text-align: left;
	}
	.flow-guide .flow-list{
		column-gap: 0;
		row-gap: 2rem;
	}
	.flow-guide .flow-list:nth-child(1){
		margin-right: 0;
		margin-bottom: 2rem;
	}
	.flow-guide .flow-list:nth-child(2){
		margin-left: 0;
	}
	.flow-guide .flow-list:nth-child(1)::before{
		width: 1px;
		height: 110%;
		top: 0;
		left: 50%;
		transform: translateY(0%);
	}
	.flow-guide .flow-list:nth-child(2)::before{
		width: calc(66.6666% + -0.125rem);
		left: -1.875rem;
		width: 1px;
		height: 100%;
		top: 0;
		left: 50%;
		transform: translateY(0%);
	}
	.flow-list .flow-items{
		width: 100%;
		padding: 2rem 1.5rem;
	}
	.flow-list .flow-items::before,
	.flow-list .flow-items::after{
		width: 2rem;
		height: 2rem;
	}
	.flow-list .flow-items::before{
		left: calc(50% - 1rem);
		top: -0.625rem;
		transform: translateY(0%);
	}
	.flow-list .flow-items::after{
		right: calc(50% - 1rem);
		top: auto;
		bottom: -0.625rem;
		transform: translateY(0%);
	}
	.flow-list .flow-items .no{
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}
	.flow-list .flow-items .icon-img{
		height: auto;
		max-height: none;
	}
	.flow-list .flow-items h3{
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	.flow-list .flow-items h4{
		font-size: 1rem;
		margin-bottom: 1.25rem;
	}
	.flow-guide .bg-text{
		font-size: 1rem;
		text-align: left;
		padding-top: 3rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.flow-guide{
		padding-bottom: 3rem;
	}
	.flow-guide .flow-head{
		padding-bottom: 3rem;
	}
	.flow-guide .flow-head h3{
		font-size: 1.475rem;
		margin-bottom: 1.875rem;
	}
	.flow-guide .flow-head .p-text{
		font-size: 1rem;
		text-align: center;
	}
	.flow-guide .flow-list:nth-child(1){
		margin-right: 1.1875rem;
		margin-bottom: 2.75rem;
	}
	.flow-guide .flow-list:nth-child(2){
		margin-left: 1.1875rem;
	}
	.flow-list .flow-items{
		padding: 2rem 1.5rem;
	}
	.flow-list .flow-items::before,
	.flow-list .flow-items::after{
		width: 2rem;
		height: 2rem;
	}
	.flow-list .flow-items .no{
		font-size: 2.25rem;
		margin-bottom: 1rem;
	}
	.flow-list .flow-items h3{
		font-size: 1.25rem;
		margin-bottom: 1.125rem;
	}
	.flow-list .flow-items h4{
		margin-bottom: 1.125rem;
	}
	.flow-guide .bg-text{
		padding-top: 4rem;
	}
}
/**
/* 会社案内 CSS
----------------------------------------------- */
/*　　経営理念　　*/
.philosophy-guide h3{
	color: #de9547;
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
	margin-bottom: 3.75rem;
}
.philosophy-guide .p-text{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 2;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.philosophy-guide h3{
		font-size: 1.25rem;
		margin-bottom: 1.75rem;
	}
	.philosophy-guide .p-text{
		font-size: 0.9375rem;
		text-align: left;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.philosophy-guide h3{
		font-size: 1.475rem;
		margin-bottom: 1.875rem;
	}
	.philosophy-guide .p-text{
		font-size: 1rem;
	}
}
/*　　代表メッセージ　　*/
.message-guide .imageArea{
	width: 42%;
}
.message-guide .comment{
	width: 58%;
	padding-left: 5rem;
}
.message-guide .comment h3{
	color: #de9547;
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.35;
	margin-bottom: 1.5rem;
}
.message-guide .comment .p-text{
	font-weight: 400;
	line-height: 2;
}
.message-guide .comment p.right{
	margin-top: 1em;
	text-align: right;
}
.message-guide .comment p.right span{
	margin-right: 1rem;
}
.message-guide .comment p.right img{
	width: 8rem;
}
@media only screen and (max-width: 767px) {
	.message-guide .imageArea{
		width: 100%;
		text-align: center;
	}
	.message-guide .comment{
		width: 100%;
		padding-left: 0;
		margin-top: 2rem;
	}
	.message-guide .comment h3{
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	.message-guide .comment p.right{
		margin-top: 0.625em;
	}
	.message-guide .comment p.right img{
		width: 6rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.message-guide .message-grid{
		align-items: flex-start;
	}
	.message-guide .comment{
		padding-left: 2rem;
	}
	.message-guide .comment h3{
		margin-bottom: 1rem;
	}
}
/*　　会社概要　　*/
.company-guide .bg-tbl table th{
	width: 18.75rem;
}
@media only screen and (max-width: 767px) {
	.company-guide .bg-tbl table th{
		width: 100%;
		padding: 1rem 1rem 0 1rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.company-guide .bg-tbl table th{
		width: 12.75rem;
	}
}
/**
/* お知らせ CSS
----------------------------------------------- */
/*　　一覧ページ　　*/
.news-nav{
	max-width: 50rem;
	margin: 0 auto;
	margin-bottom: 4.25rem;
}
.news-nav dt{
	display: block;
	width: 7.875rem;
	/*color: #de9547;*/
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.05em;
	text-align: center;
	padding: 0.625rem;
}
.news-nav dd{
	width: calc(100% - 7.875rem);
}
.news-category{
	column-gap: 1.25rem;
}
.news-category li{
	width: calc(25% - 0.9375rem);
	max-width: 10.625rem;
}
.news-category li a{
	background: #ffffff;
	display: block;
	color: #de9547;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.05em;
	text-align: center;
	border: 1px solid #de9547;
	border-radius: 3.125rem;
	padding: 0.35rem 0.625rem 0.375rem 0.625rem;
}
.news-category li a:hover,
.news-category li a.current{
	background: #de9547;
	color: #ffffff;
	opacity: 1;
}
.news-list .news-items{
	border-bottom: 1px solid #d5d4d4;
	padding-bottom: 1.125rem;
	margin-bottom: 2rem;
}
.news-list .news-items dt{
	width: 20rem;
	padding: 0 1.25rem;
}
.news-list .news-items dt .date{
	font-family: "Roboto Condensed", sans-serif;
	color: #211d1a;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.news-list .news-items dt .category{
	background: #de9547;
	width: 10.625rem;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.05em;
	text-align: center;
	border: 1px solid #de9547;
	border-radius: 3.125rem;
	padding: 0.35rem 0.625rem 0.375rem 0.625rem;
	margin-left: 1.625rem;
}
.news-list .news-items dt .category a{
	color: #ffffff;
}
.news-list .news-items dd{
	width: calc(100% - 20rem);
}
.news-list .news-items dd a{
	color: #211d1a;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
	.news-wrap{
		padding: 1rem 0 3.75rem 0;
	}
	.news-nav{
		max-width: 58rem;
		margin-bottom: 3.25rem;
	}
	.news-nav dt{
		width: 100%;
		font-size: 0.9375rem;
		padding: 0.35rem 0.625rem 0.375rem 0.625rem;
		margin-bottom: 1.25rem;
		text-align: left;
	}
	.news-nav dd{
		width: 100%;
		padding-left: 0;
	}
	.news-category{
		column-gap: 0.625rem;
		row-gap: 0.625rem;
	}
	.news-category li{
		width: calc(50% - 0.375rem);
		max-width: 100%;
	}
	.news-category li a{
		font-size: 0.9375rem;
		padding: 0.35rem 0.625rem 0.375rem 0.625rem;
	}
	.news-list .news-items{
		padding-bottom: 1.125rem;
		margin-bottom: 1.125rem;
	}
	.news-list .news-items dt{
		width: 100%;
		padding: 0;
	}
	.news-list .news-items dt .category{
		width: auto;
		font-size: 0.875rem;
		padding: 0.25rem 0.625rem 0.275rem 0.625rem;
		margin-left: 0.625rem;
	}
	.news-list .news-items dd{
		width: 100%;
		margin-top: 0.625rem;
	}
	.news-list .news-items dd a{
		font-size: 0.9375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.news-wrap{
		padding: 2rem 0 4.75rem 0;
	}
}
/*　　詳細ページ　　*/
.single-guide article{
	background: #ffffff;
	border-radius: 0.625rem;
	padding: 5rem 3.375rem 3.375rem 3.375rem;
}
.single-guide article .entry-inner{
	max-width: 1080px;
	margin: 0 auto;
}
.single-guide .entry-header{
	margin-bottom: 4rem;
}
.single-guide .entry-header h2{
	position: relative;
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 1.45;
	border-bottom: 1px solid #d5d4d4;
	padding-left: 5.3125rem;
	padding-bottom: 1.25rem;
	margin-bottom: 1.25rem;
}
.single-guide .entry-header h2::before{
	position: absolute;
	background: url(../img/icon/icn_ttl.png) no-repeat center;
	background-size: contain;
	content: '';
	width: 3.5625rem;
	height: 2.625rem;
	top: -0.125rem;
	left: 0;
}
.single-guide .entry-header .data{
	align-items: flex-start;
	margin-top: 0.65rem;
}
.single-guide .entry-header .date{
	font-family: "Roboto Condensed", sans-serif;
	color: #211d1a;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
.single-guide .entry-header .category{
	background: #de9547;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.05em;
	text-align: center;
	border: 1px solid #de9547;
	border-radius: 3.125rem;
	padding: 0.35rem 1rem 0.375rem 1rem;
}
.single-guide .entry-header .category a{
	color: #ffffff;
}
.single-guide .entry-body h2{
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.45;
	border-left: 0.5rem solid #de9547;
	padding-left: 0.65rem;
	margin-bottom: 1.5rem;
}
.single-guide .entry-body h3{
	color: #e86c28;
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.45;
	margin-bottom: 1.125rem;
	margin-top: 1.5rem;
}
.single-guide .entry-body h4{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
	margin-bottom: 1.125rem;
	margin-top: 1.25rem;
}
.single-guide .entry-body p{
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	margin-bottom: 2.5rem;
}
.single-guide .entry-body p:last-child{
	margin-bottom: 0;
}
.single-guide .entry-body ol{
	list-style: decimal;
	margin: 2.5rem 0 2.5rem 1.5rem;
}
.single-guide .entry-body ul{
	list-style: disc;
	margin: 2.5rem 0 2.5rem 1.5rem;
}
.single-guide .entry-body ol li,
.single-guide .entry-body ul li{
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
}
.single-guide .entry-body figcaption {
	font-size: 90%;
}
.alignleft {
	display: inline;
	float: left;
}
.alignright {
	display: inline;
	float: right;
}
.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}
blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
	margin: 0 5rem 3.75rem 0;
}
blockquote.alignright,
.wp-caption.alignright,
img.alignright {
	margin: 0 0 3.75rem 5rem;
}
blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
	clear: both;
}
.single-guide .entry-author{
	background: #f8f9f9;
	padding: 2rem;
	margin-top: 3rem;
	border-radius: 0.3125rem;
}
.single-guide .entry-author p{
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
}
.single-guide .entry-author .name{
	color: #4ea6cc;
	font-size: 1.125rem;
	font-weight: 500;
}
.single-guide .page-nav{
	width: 100%;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	align-items: center;
	margin-top: 6.25rem;
}
.single-guide .page-nav .nav__item{
	position: relative;
}
.single-guide .page-nav .nav__item a{
	position: relative;
	display: block;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
}
.single-guide .page-nav .nav__item--prev a{
	padding-left: 1.5625rem;
}
.single-guide .page-nav .nav__item--next a{
	padding-right: 1.5625rem;
}
.single-guide .page-nav .nav__item a:before{
	font-family: "Font Awesome 5 Free";
	color: #de9547;
	font-size: 1.125rem;
	font-weight: 900;
	position: absolute;
	top: 0;
}
.single-guide .page-nav .nav__item--prev a:before{
	content: "\f060";
	left: 0;
}
.single-guide .page-nav .nav__item--next a:before{
	content: "\f061";
	right: 0;
}
.single-guide .page-nav .return_btn{
	width: 20rem;
}
.single-guide .page-nav .return_btn .btn{
	background: #de9547;
	display: block;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	border-radius: 3.125rem;
	padding: 1.125rem 1rem;
}
@media only screen and (max-width: 767px) {
	.single-guide article{
		padding: 2.5rem 1.375rem 1.5rem 1.375rem;
	}
	.single-guide .entry-header{
		margin-bottom: 2rem;
	}
	.single-guide .entry-header h2{
		font-size: 1.25rem;
		padding-left: 3.3125rem;
		padding-bottom: 1.25rem;
		margin-bottom: 1rem;
	}
	.single-guide .entry-header h2::before{
		width: 2.4rem;
		height: 1.625rem;
		top: 0;
	}
	.single-guide .entry-header .data{
		margin-top: 0.65rem;
	}
	.single-guide .entry-header .category{
		border-radius: 3.125rem;
		padding: 0.25rem 1rem;
	}
	.single-guide .entry-header .category span + span{
		margin-left: 0.625rem;
	}
	.single-guide .entry-body h2{
		font-size: 1.125rem;
		border-left: 0.375rem solid #de9547;
		padding-left: 0.65rem;
		margin-bottom: 1.25rem;
	}
	.single-guide .entry-body h3{
		font-size: 1.125rem;
		margin-bottom: 1rem;
		margin-top: 1.25rem;
	}
	.single-guide .entry-body h4{
		font-size: 1.0625rem;
		margin-bottom: 1rem;
		margin-top: 1.125rem;
	}
	.single-guide .entry-body p{
		font-size: 0.9375rem;
		margin-bottom: 1.5rem;
	}
	.single-guide .entry-body ol{
		margin: 1.5rem 0 1.5rem 1.25rem;
	}
	.single-guide .entry-body ul{
		margin: 1.5rem 0 1.5rem 1.25rem;
	}
	.single-guide .entry-body ol li,
	.single-guide .entry-body ul li{
		font-size: 0.9375rem;
		line-height: 1.75;
	}
	.single-guide .entry-author{
		padding: 1rem;
		margin-top: 2rem;
	}
	.single-guide .entry-author p{
		font-size: 0.9375rem;
		line-height: 1.75;
	}
	.single-guide .entry-author .name{
		font-size: 1rem;
	}
	.single-guide .page-nav{
		margin-top: 3.25rem;
	}
	.single-guide .page-nav .nav__item a{
		font-size: 0.9375rem;
	}
	.single-guide .page-nav .prev-link:after{
		content: attr(data-prev);
		text-align: center;
	}
	.single-guide .page-nav .next-link:after{
		content: attr(data-next);
		text-align: center;
	}
	.single-guide .page-nav .nav__item-img,
	.single-guide .page-nav .nav__item-ttl{
		display: none;
	}
	.single-guide .page-nav .nav__item--prev a{
		padding-left: 1.5625rem;
	}
	.single-guide .page-nav .nav__item--next a{
		padding-right: 1.5625rem;
	}
	.single-guide .page-nav .nav__item a:before{
		font-size: 1rem;
	}
	.single-guide .block_btn{
		text-align: center;
		margin-top: 2rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.single-guide article{
		padding: 4rem 2.375rem 2.375rem 2.375rem;
	}
	.single-guide .entry-header h2{
		font-size: 1.475rem;
		padding-left: 4rem;
	}
	.single-guide .entry-header h2::before{
		width: 3rem;
		height: 2.125rem;
		top: 0;
	}
	.single-guide .entry-header .data{
		margin-top: 0.65rem;
	}
	.single-guide .entry-header .category span + span{
		margin-left: 0.625rem;
	}
	.single-guide .entry-body h2{
		font-size: 1.375rem;
	}
	.single-guide .entry-body h3{
		font-size: 1.25rem;
	}
	.single-guide .entry-body h4{
		font-size: 1.125rem;
		margin-bottom: 1.125rem;
		margin-top: 1.25rem;
	}
	.single-guide .entry-author{
		padding: 1.5rem;
		margin-top: 2rem;
	}
	.single-guide .page-nav{
		margin-top: 4.25rem;
	}
	.single-guide .page-nav .return_btn{
		width: 18rem;
	}
}
/**
/* お問い合わせ CSS
----------------------------------------------- */
.contact-wrap{
	padding: 3.25rem 0 5.75rem 0;
}
.contact-guide ..p-text{
	font-size: 1.125rem;
}
.contact-guide .tel-box{
	margin-top: 5rem;
}
.contact-guide .tel-box .box{
	margin-top: 5rem;
}
.contact-guide .tel-box h3{
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.45;
	border-left: 0.5rem solid #de9547;
	padding-left: 1rem;
	margin-bottom: 1.5rem;
	margin-top: 2rem;
}
.contact-guide .tel-box .tel li{
	display: flex;
	align-items: center;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1;
}
.contact-guide .tel-box .tel li a{
	font-family: Lato, sans-serif;
	color: #de9547;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1;
}
.contact-guide .tel-box .hours{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
	margin-top: 1rem;
}
.contact-guide .tel-box .line li.line_btn{
	width: 3.75rem;
}
.form-grid{
	margin-top: 5rem;
}
.form-grid .tabArea{
	border-bottom: 0.1875rem solid #de9547;
}
.form-grid .tabArea .tab-btn{
	width: 20rem;
}
.form-grid .tabArea li + li{
	margin-left: 0.625rem;
}
.form-grid .tabArea .tab-btn a{
	background: #bbbbbb;
	display: block;
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 500;
	text-align: center;
	padding: 1rem;
	border-radius: 1.125rem 1.125rem 0 0;
}
.form-grid .tabArea .tab-btn a.select{
	background: #de9547;
}
.form-grid .tabArea .tab-btn a:hover{
	opacity: 1;
}
.form-grid .js-tab-main{
	display: none;
}
.form-grid .js-tab-main.is_show{
	display: block;
}
.form-box{
	width: 80%;
	margin: 0 auto;
	margin-top: 5rem;
}
.form-box .alert{
	color: #dc3232;
}
.form-box .wpcf7-not-valid-tip{
	display: none!important;
}
.form-box h3{
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.45;
	border-left: 0.5rem solid #de9547;
	padding-left: 1rem;
	margin-bottom: 2.5rem;
	margin-top: 4rem;
}
.form-box .form-tbl{
	margin-bottom: 2.5rem;
}
.form-box .form-tbl dt{
	margin-bottom: 0.875rem;
}
.form-box .form-tbl dt .ttl{
	display: flex;
	align-items: center;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
}
.form-box .form-tbl dt .ttl span{
	display: inline-block;
	background: #da6363;
	color: #ffffff;
	font-size: 0.75rem;
	padding: 0 0.375rem 0.0625rem 0.375rem;
	margin-left: 1rem;
}
.form-box .form-tbl dd{
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 500;
}
.form-box .form-tbl dd.confirm-text{
	padding: 1rem 0;
}
.form-box .form-tbl dd ul{
	width: 100%;
}
.form-box .form-tbl dd ul.flex{
	column-gap: 1rem;
}
.form-box .form-tbl dd ul.flex li{
	width: calc(50% - 0.5rem);
}
.form-box .form-tbl dd ul li span{
	display: block;
	margin-bottom: 0.25rem;
}
.form-box .form-tbl dd ul li + li{
	margin-top: 1.5rem;
}
.form-box .form-tbl dd ul.flex li + li{
	margin-top: 0;
}
.form-box .form-tbl dd label{
	margin-right: 1rem;
}
.wpcf7-list-item{
	margin: 0.375rem 0;
}
.wpcf7-list-item.last{
	display: block;
}
input[type=checkbox],
input[type=radio]{
	margin: -0.15rem 0.15rem 0 0;
	vertical-align: middle;
}
input[type="date"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select{
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #d5d4d4;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25;
	padding: 1.125rem;
}
input[type="date"]::placeholder,
input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder{
	color: #a2a2a2;
}
input[type="date"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
textarea:-ms-input-placeholder{
	color: #a2a2a2;
}
input[type="date"]::-ms-input-placeholder,
input[type="text"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="url"]::-ms-input-placeholder,
textarea::-ms-input-placeholder{
	color: #a2a2a2;
}
textarea{
	height: 100%;
}
.submit_btn{
	text-align: center;
	margin-top: 5rem;
}
.submit_btn li{
	display: inline-block;
	width: 100%;
	max-width: 18.75rem;
}
.submit_btn li + li{
	margin-left: 2rem;
}
input[type="submit"],
input.confirmBtn {
	position: relative;
	display: block;
	width: 100%;
	background: #de9547;
	border: none;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	color: #FFFFFF;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 3.4;
	text-align: center;
	cursor: pointer;
	border-radius: 3.125rem;
}
.submit_btn li .wpcf7-previous,
input.backBtn {
	position: relative;
	display: block;
	width: 100%;
	background: #c1c1c1;
	border: none;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	color: #FFFFFF;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 3.4;
	text-align: center;
	cursor: pointer;
	border-radius: 3.125rem;
}
.form-box .p-note{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
}
.wpcf7-spinner{
	display: none;
}
@media only screen and (max-width: 767px) {
	.contact-guide .tel-box{
		margin-top: 3rem;
	}
	.contact-guide .tel-box h3{
		font-size: 1rem;
		border-left: 0.35rem solid #de9547;
		padding-left: 0.65rem;
		margin-bottom: 1rem;
	}
	.contact-guide .tel-box .tel li{
		font-size: 1rem;
	}
	.contact-guide .tel-box .tel li a{
		font-size: 1.5rem;
	}
	.contact-guide .tel-box .hours{
		font-size: 1rem;
		margin-top: 0.65rem;
	}
	.form-grid{
		margin-top: 3rem;
	}
	.form-grid .tabArea li + li{
		margin-left: 0.375rem;
	}
	.form-grid .tabArea .tab-btn a{
		font-size: 1.125rem;
		line-height: 1.25;
		padding: 1rem 0.625rem;
	}
	.form-box{
		width: 95%;
		margin-top: 3rem;
	}
	.form-box h3{
		font-size: 1rem;
		border-left: 0.35rem solid #de9547;
		padding-left: 0.65rem;
		margin-bottom: 1.25rem;
		margin-top: 3rem;
	}
	.form-box .form-tbl{
		display: block;
		margin-bottom: 2rem;
	}
	.form-box .form-tbl dt{
		width: 100%;
		margin-bottom: 1.125rem;
	}
	.form-box .form-tbl dt .ttl{
		font-size: 0.9375rem;
	}
	.form-box .form-tbl dt .ttl.mt{
		margin-top: 0;
	}
	.form-box .form-tbl dt .ttl span{
		margin-left: 1rem;
	}
	.form-box .form-tbl dd{
		width: 100%;
		font-size: 0.9375rem;
		padding-left: 0;
	}
	.form-box .form-tbl dd.confirm-text{
		padding: 0;
	}
	.form-box .form-tbl dd ul.flex{
		column-gap: 0.5rem;
	}
	.form-box .form-tbl dd ul.flex li{
		width: calc(50% - 0.25rem);
	}
	.form-box .form-tbl dd label{
		margin-right: 0.65rem;
		margin-top: 0.65rem;
	}
	input[type=checkbox],
	input[type=radio]{
		margin: 0 0.375rem 0 0;
	}
	input[type="date"],
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="url"],
	textarea,
	select{
		font-size: 0.9375rem;
		padding: 1rem;
	}
	.submit_btn{
		margin-top: 3rem;
	}
	input[type="submit"] {
		font-size: 1rem;
	}
	.form-box .p-note{
		font-size: 0.9375rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.form-box .form-tbl dt{
		width: 21rem;
	}
	.form-box .form-tbl dd{
		width: calc(100% - 18rem);
		padding-left: 2rem;
	}
	.form-box .form-tbl dd.confirm-text{
		padding: 1rem 0 1rem 2rem;
	}
}
/*　　プライバシーポリシー　　*/
.privacy-box h3{
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.45;
	border-left: 0.5rem solid #de9547;
	padding-left: 1rem;
	margin-bottom: 1.5rem;
	margin-top: 6rem;
}
.privacy-box .box{
	background: #FFFFFF;
	border: 1px solid #d5d4d4;
	height: 13.75rem;
	padding: 2rem 2.5rem 1.5rem 2.5rem;
	overflow-y: scroll;
}
.privacy-box dl{
	margin-top: 1.5rem;
}
.privacy-box p{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.85;
}
.privacy-box dl dt{
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 0.625rem;
}
.privacy-box dl dd{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.85;
}
.privacy-box dl dd > a{
	display: inline-block;
	color: #de9547;
	text-decoration: underline;
}
.privacy-box dl dd > a:hover{
	text-decoration: none;
}
@media only screen and (max-width: 767px) {
	.privacy-box h3{
		font-size: 1rem;
		border-left: 0.35rem solid #de9547;
		padding-left: 0.65rem;
		margin-bottom: 1.25rem;
		margin-top: 3rem;
	}
	.privacy-box .box{
		height: 12rem;
		padding: 1rem;
	}
	.privacy-box p{
		font-size: 0.875rem;
	}
	.privacy-box dl{
		margin-top: 1.25rem;
	}
	.privacy-box dl dt{
		font-size: 0.9375rem;
	}
	.privacy-box dl dd{
		font-size: 0.875rem;
	}
}
.acceptance-check {
	margin-top: 2rem;
	font-size: 1rem;
	text-align: center;
}
.acceptance-check .txt-wrap {
	display: inline-block;
	position: relative;
	padding-bottom: 0.5rem;
}
.acceptance-check .txt-wrap::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	border-bottom: 1px solid #211d1a;
}
.acceptance-check input[type="checkbox"] {
	transform: scale(1.3, 1.3);
}
.acceptance-check label {
	display: flex;
	column-gap: 0.8rem;
}
/**
/* エラー CSS
----------------------------------------------- */
.error-guide .entry p{
	text-align: center;
}
.error-guide .entry .error_url{
	padding: 3rem 0;
}
.error-guide .entry .block_btn{
	margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
	.error-guide .entry .error_url{
		padding: 1.5rem 0;
	}
	.error-guide .entry .block_btn{
		margin-top: 2rem;
	}
}


/* プライバシーポリシーページ CSS
----------------------------------------------- */
.privacy-wrap{
	background: #ffffff;
    box-shadow: 0.1875rem 0.3125rem 0.625rem rgb(34, 39, 48, 0.1);
    padding: 3rem 3rem;
    border-radius: 0.625rem;
		overflow-wrap: anywhere;
		word-break: normal;
		line-break: strict;
}
.privacy-wrap p{
	font-size: 1rem;
    font-weight: 400;
    line-height: 1.85;
}
.privacy-wrap dl {
    margin-top: 1.5rem;
}
.privacy-wrap dl dt {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
	border-left: 0.5rem solid #de9547;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

@media only screen and (max-width: 767px) {
	.privacy-wrap{padding: 1rem;}
}

/*　バナー CSS
----------------------------------------------- */
.banner-guide.banner-top{padding:4rem 0;}
.banner-guide .banner-image{
	text-align: center;
}
.banner-guide .banner-image img{
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0.125rem 0.3125rem 0.3125rem rgb(38, 33, 37, 0.2));
}
@media only screen and (max-width: 767px) {
	.banner-guide.banner-top{padding:2rem 0;}
}