@charset "utf-8";
/* --------------------全体レイアウト------------------- */
#wp-side{
	display: grid;
	gap: 30px;
}
.wp-postContainer{
	margin: 0 auto;
}
@media screen and (min-width: 951px){
	.wp-postContainer{
		padding: 60px 0 0;
	}
	.wp-postContainer:has(aside){
		display: grid;
		grid-template-columns: 1fr 220px;
		align-items: flex-start;
		gap: 50px;
	}
}
@media screen and (max-width: 950px){
	.wp-postContainer{
		padding: 20px 0 0;
	}
	.wp-postContainer main{
		margin-bottom: 30px;
	}
	#wp-side{
		margin-top: var(--sec-spc);
	}
}
/* --------------------サイド------------------- */
/* タイトル */
.wp-side__ttl{
	font-weight: bold;
	background-color: var(--c-blue01);
	color: var(--c-white);
	letter-spacing: 0.12em;
}
@media screen and (min-width: 768px){
	.wp-side__ttl{
		font-size: 16px;
		margin-bottom: 10px;
		padding: 5px 12px 7px;
	}
}
@media screen and (max-width: 767px){
	.wp-side__ttl{
		font-size: 16px;
		margin-bottom: 8px;
		padding: 5px 0 7px 10px;
	}
}
/* 検索フォーム */
.wp-side__searchFrom form{
	position: relative;
}
.wp-side__searchFrom input[type="text"]{
	width: 100%;
	display: block;
	border: 1px solid #8d8d8d;
	border-radius: 3px;
}
.wp-side__searchFrom button[type="submit"]{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5px;
	display: block;
	aspect-ratio: 1/1;
	width: 20px;
}
.wp-side__searchFrom button[type="submit"]::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	content: '\f002';
	font-size: 16px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px){
	.wp-side__searchFrom input[type="text"]{
		padding: 10px 31px 10px 8px;
	}
	.wp-side__searchFrom form input[type="image"]{
		width: 16px;
		right: 9px;
	}
}
@media screen and (max-width: 767px){
	.wp-side__searchFrom input[type="text"]{
		padding: 10px 35px 10px 10px;
	}
	.wp-side__searchFrom form input[type="image"]{
		width: 20px;
		right: 9px;
	}
}
/* 記事 */
.wp-side__archive{
	display: grid;
	gap: var(--spc-15);
}
.wp-side__archive li a{
	display: flex;
	align-items: center;
	border: 1px solid var(--c-blue01);
	padding: 10px;
}
.wp-side__archive__ttl{
	flex: 1;
	font-size: 12px;
	line-height: 1.4;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}
/* 人気記事 */
.wp-side__archive--popular{
	counter-reset: original-counter;
}
.wp-side__archive--popular li{
	position: relative;
	z-index: 0;
}
.wp-side__archive--popular li::before{
	content: counter(original-counter);
	counter-increment: original-counter;
	color: #fff;
	position: absolute;
	top: 1px;
	left: 8px;
	font-size: 12px;
	z-index: 2;
}
.wp-side__archive--popular li::after{
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 35px 35px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.wp-side__archive--popular li:nth-of-type(1)::after{
	border-color: var(--ranking-c-1st) transparent transparent transparent;
}
.wp-side__archive--popular li:nth-of-type(2)::after{
	border-color: var(--ranking-c-2nd) transparent transparent transparent;
}
.wp-side__archive--popular li:nth-of-type(3)::after{
	border-color: var(--ranking-c-3rd) transparent transparent transparent;
}
/* メニュー */
.wp-side__menu li a{
	display: block;
	position: relative;
	border-bottom: 1px dashed #ababab;
}
.wp-side__menu li a::before{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	content: '\f054';
	color: #ababab;
	position: absolute;
	left: 3px;
	top: 50%;
	transform: translateY(-50%);
}
@media (hover: hover){
	.wp-side__menu li a:hover{
		background: var(--c-blue01);
		color: var(--c-white);
		opacity: 0.5;
	}
}
@media screen and (min-width: 951px){
	.wp-side__archive__thumb{
		width: 30%;
		margin-right: 10px;
	}
}
@media screen and (max-width: 950px){
	.wp-side__archive__thumb{
		width: fit-content;
		margin-right: 10px;
	}
	.wp-side__archive__thumb img{
		width: auto;
		max-height: clamp( 80px, 12vw, 150px);
	}
}
@media screen and (min-width: 768px){
	.wp-side__menu li a{
		padding: 7px 0 7px 20px;
		font-size: 14px;
	}
	.wp-side__menu li a::before{
		font-size: 13px;
	}
}
@media screen and (max-width: 767px){
	.wp-side__menu li a{
		padding: 7px 0 7px 20px;
		font-size: 14px;
	}
	.wp-side__menu li a::before{
		font-size: 12px;
	}
}
/* セレクトボックス */
.wp-side__select{
	position: relative;
}
.wp-side__select::after{
	font-family: 'Font Awesome 5 Pro';
	font-weight: 500;
	content: '\f107';
	font-size: 16px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
}
.wp-side__select select{
	width: 100%;
	padding: 5px;
	border: 1px solid var(--c-blue01);
	border-radius: 3px;
	font-size: 14px;
	padding: 10px;
}
/* --------------------  カテゴリー・タグ -------------------- */
/* カテゴリー */
.wp-post__cats{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.wp-post__cats li a{
	width: fit-content;
	padding: 1px 8px;
	display: block;
	font-size: 12px;
	background: var(--c-blue01);
	color: var(--c-white) !important;
	text-decoration: none !important;
}
/* タグ */
.wp-post__tags{
	display: flex;
	flex-wrap: wrap;
}
.wp-post__tags li a{
	display: block;
	text-align: center;
	background: #fff;
}
.wp-post__tags li a:before{
	content: "#";
	margin-right: 1px;
}
@media screen and (min-width: 768px){
	.wp-post__tags{
		gap: 8px 10px;
	}
	.wp-post__tags li a{
		font-size: 12px;
	}
}
@media screen and (max-width: 767px){
	.wp-post__tags{
		gap: 6px 10px;
	}
	.wp-post__tags li a{
		font-size: 12px;
	}
}
/* --------------------ブログ一覧------------------- */
.wp-archive__time{
	font-family: var(--ff-noto);
	margin-top: 5px;
}
.wp-archive__time time{
	font-size: var(--fz-14);
}
.wp-archive__ttl{
	line-height: 1.5;
	overflow: hidden;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	font-weight: bold;
	font-size: var(--fz-16);
}
@media screen and (min-width: 768px){
	.wp-archive__list{
		grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
		gap: 50px clamp( 20px, 3.5vw, 40px);
	}
	.wp-archive__ttl{
		margin: 8px 0 5px;
		-webkit-line-clamp: 3;
	}
	.wp-archive__time{
		text-align: right;
	}
}
@media screen and (max-width: 767px){
	.wp-archive__list{
		grid-template-columns: repeat(2,1fr);
		gap: 30px 10px;
	}
	.wp-archive__cats li a{
		font-size: 12px;
	}
	.wp-archive__ttl{
		margin: 8px 0 5px;
		-webkit-line-clamp: 2;
		font-size: 12px;
	}
	.wp-archive__time{
		text-align: left;
		margin-bottom: 3px;
	}
}
/* --------------------お知らせ一覧------------------- */
.wp-news li{
	display: grid;
	font-size: var(--fz-16);
}
.wp-news__ttl a{
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}
.wp-news li:not(:last-child){
	border-bottom: 1px dashed var(--c-blue01);
}
.wp-news__time time{
	font-family: var(--ff-base);
}
.wp-news__day{
	margin-left: 10px;
}
.wp-news li:last-child{
	padding-bottom: 0 !important;
}
.wp-news li:first-child{
padding-top: 0 !important;
}
@media screen and (min-width: 768px){
	.wp-news li{
		grid-template-columns: auto 1fr;
		align-items: center;
		padding: 15px 0;
		gap: var(--spc-50);
	}
}
@media screen and (max-width: 767px){
	.wp-news li{
		padding: 12px 0;
		gap: 7px;
	}
}
/* --------------------futureshopがないときはこちらを使う ページナビ------------------- */
/* .wp-pagenavi{
	display: flex;
	justify-content: center;
	align-items: center;
}
#next > span.pages{
	display: block;
	text-align: center;
	margin-top: 10px;
	display: none;
}
#next .post_range{
	font-size: 13px;
	text-align: center;
	margin-bottom: 16px;
}
.wp-pagenavi > *{
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: normal;
	border-radius: 50%;
}
.wp-pagenavi .current{
	background-color:var(--c-blue01);
	border: 1px solid var(--c-blue01);
	color: var(--c-white);
}
.wp-pagenavi > *{
	font-weight: 500;
}
#next a.previouspostslink,
#next a.nextpostslink{
	border: 1px solid var(--c-blue01);
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	padding: 0;
	position: relative;
	font-weight: 400;
}
#next a.previouspostslink .navi-prev,
#next a.nextpostslink .navi-next{
	position: absolute;
	top: 50%;
	left: 52%;
	transform: translate(-50%, -50%);
}
#next a.previouspostslink .navi-prev::before,
#next a.nextpostslink .navi-next::before{
	font-family: "Font Awesome 5 Pro" !important;
	font-weight: 400;
	display: inline-block;
  vertical-align: text-bottom;
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
}
#next a.previouspostslink .navi-prev::before{
	content: "\f104";
}
#next a.nextpostslink .navi-next::before{
	content: "\f105";
}
@media screen and (min-width: 768px){
	.wp-pagenaviContainer {
		padding-bottom: 80px;
	}
	.wp-pagenavi{
		font-size: 18px;
		gap: 15px;
	}
	#next {
		margin: var(--spc-50) auto 0;
	}
	.wp-pagenavi > *{
		width: 45px;
	}
	#next a.previouspostslink,
	#next a.nextpostslink{
		font-size: 13px;
		width: 45px;
		height: 45px;
	}
}
@media screen and (max-width: 767px){
	.wp-pagenaviContainer {
		padding-bottom: 60px;
	}
	.wp-pagenavi{
		font-size: 12px;
		gap: 3px;
	}
	#next {
		margin: var(--spc-30) auto 0;
	}
	.wp-pagenavi > *{
		width: 30px;
	}
	#next a.previouspostslink,
	#next a.nextpostslink{
		font-size: 10px;
		width: 30px;
		height: 30px;
	}
} */
/* --------------------シングル------------------- */
.wp-single__ttl{
	font-weight: bold;
	margin-bottom: var(--spc-20);
	line-height: 1.5;
}
.wp-single__time{
	text-align: right;
	margin-block: 10px;
}
.wp-single__tags{
	justify-content: flex-end;
}
.wp-single__tags li a{
	font-size: 13px;
}
#wp-single__link{
	display: flex;
	position: relative;
}
.wp-newsPostContainer--news #wp-single__link{
padding-top: var(--spc-50);
}
.wp-postContainer--blog #wp-single__link{
	margin-top: var(--spc-50);
}
#wp-single__link a{
	color: var(--c-blue01);
}
#wp-single__link__previous{
	margin-right: auto;
}
#wp-pagenaviContainer-link{
	margin-left: auto;
}
.wp-single__link__toArchive{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px){
	.news-article{
		max-width: 770px;
	}
	.wp-single__meta{
		margin-bottom: 15px;
	}
	.wp-single__ttl{
		font-size: 25px;
	}
	.wp-single__time{
		font-size: 16px;
	}
	.wp-single__content{
		margin-bottom: 60px;
	}
	.wp-single__tags{
		margin-bottom: 30px;
	}
	#wp-single__link a{
		font-size: 17px;
	}
}
@media screen and (max-width: 767px){
	.wp-single__meta{
		margin-bottom: 10px;
	}
	.wp-single__ttl{
		font-size: 20px;
	}
	.wp-single__time{
		font-size: 14px;
	}
	.wp-single__content{
		margin-bottom: 40px;
	}
	.wp-single__tags{
		margin-bottom: 20px;
	}
	#wp-single__link a{
		font-size: 13px;
	}
}
/* お知らせシングル */
.wp-newsPostContainer{
	margin: 0 auto;
}
@media screen and (min-width: 768px){
	.wp-newsPostContainer{
		max-width: 770px;
		padding-top: 35px;
	}
}
@media screen and (max-width: 767px){
	.wp-newsPostContainer{
		padding-top: 20px;
	}
}

/* 執筆者 */
.wp-writer{
	margin: var(--sec-spc-half) 0;
}
@media screen and (min-width: 768px){
	.wp-writer.pc{
		padding: 37px 50px;
		gap: 37px;
		border: 1px solid var(--c-dark-1);
		border-left: none;
		border-right: none;
		display: flex;
		align-items: center;
	}
	.wp-writer__who{
		width: 106px;
	}
	.wp-writer__who img{
		aspect-ratio: 1/1;
		border-radius: 50%;
		object-fit: cover;
		margin: 14px 0;
		width: 106px;
	}
	.wp-writer__who span{
		display: block;
		text-align: center;
		font-size: 14px;
	}
	.wp-writer__who figcaption{
		white-space: nowrap;
		font-size: 14px;
	}
	.wp-writer__desc{
		flex: 1;
		line-height: 2;
	}
}
@media screen and (max-width: 767px){
	.wp-writer__heading{
		background-color: var(--c-dark-1);
		color: var(--c-white);
		padding: 5px 0 7px 10px;
		font-size: 16px;
		font-weight: var(--fw-bold);
	}
	.wp-writer__desc{
		background-color: var(--bg-c-gray);
		padding: 15px;
		display: flex;
		align-items: center;
		gap: 15px;
	}
	.wp-writer__photo{
		width: 60px;
	}
	.wp-writer__photo img{
		border-radius: 50%;
		aspect-ratio: 1/1;
		object-fit: cover;
	}
	.wp-writer__body{
		flex: 1;
	}
	.wp-writer__name{
		font-weight: bold;
		margin-bottom: 5px;
		font-size: 15px;
	}
	.wp-writer__intro{
		font-size: 13px;
		line-height: 1.5;
	}
}
/* 投稿本文 */
.wp-single__content h1,
.wp-single__content h2,
.wp-single__content h3,
.wp-single__content h4,
.wp-single__content h5,
.wp-single__content strong{
	font-weight: bold;
}
.wp-single__content h2{
	font-size: 1.5em;
}
.wp-single__content h3{
	font-size: 1.17em;
}
.wp-single__content h4{
	font-size: 1em;
}
.wp-single__content h5{
	font-size: 0.83em;
}
.wp-single__content h6{
	font-size: 0.67em;
}
.wp-single__content ul li{
	position: relative;
	padding-left: 15px;
}
.wp-single__content ul li::before{
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}
.wp-single__content > blockquote {
	position: relative;
	padding: 10px 50px 10px 50px;
	box-sizing: border-box;
	font-style: italic;
	background: #efefef;
	color: #555;
}
.wp-single__content > blockquote:before,
.wp-single__content > blockquote::after{
	display: inline-block;
	position: absolute;
	font-family: sans-serif;
	color: #cfcfcf;
	font-size: 90px;
	line-height: 0.2;
}
.wp-single__content > blockquote:before{
	top: 45px;
	left: -3px;
	content: "“";
}
.wp-single__content > blockquote::after{
	content: "”";
	bottom: -3px;
	right: 21px;
}
.wp-single__content > blockquote p {
	padding: 0;
	margin: 10px 0;
	line-height: 1.7;
}
.wp-single__content > blockquote cite {
	display: block;
	text-align: right;
	color: #888888;
	font-size: 0.9em;
}


/* --------------------  よくあるご質問 ------------------- */
.tab-contents.tab-contents--faq a{
	color: rgb(0, 110, 165);
	text-decoration: underline;
}
.s-faqContact a{
	color: var(--c-dark01) !important;
	text-decoration: none !important;
}
.tab-nav--faq{
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
}
.tab-btn-faq{
	border: 1px solid var(--c-blue01);
	color: var(--c-blue01);
	text-align: center;
	padding: 10px 5px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	letter-spacing: 0.01em;
}
@media screen and (max-width: 767px){
	.tab-btn-faq{
		height: 70px;
	}
}
.tab-btn-faq.show{
	color: var(--c-white);
	background: var(--c-blue01);
}
@media screen and (min-width: 768px){
		.g-clm2layoutWrap--faq .s-lowerTitle{
		aspect-ratio: 950 / 100;
	}
	.tab-nav--faq{
		grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
		gap: 20px;
	}
	.tab-btn-faq{
		padding: 20px 10px;
		height: 60px;
		font-size: 12px;
	}
}
@media screen and (max-width: 767px){
	.tab-nav--faq{
		grid-template-columns: repeat(3,1fr);
		gap: 10px;
	}
	.tab-btn-faq{
		font-size: 12px;
		padding: 10px;
	}
}

/* 本文 */
.s-lowerTitle {
    font-size: 32px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 950 / 200;
    background-color: var(--c-yellow01);
}

.s-faq__secTitle {
    font-size: var(--fz-32);
    color: var(--c-blue01);
    font-weight: bold;
}

.s-heading__fz24 {
    font-size: var(--fz-24);
    font-weight: bold;
    margin-bottom: var(--spc-20);
}

.s-heading__fz24.--s-mb30 {
    margin-bottom: var(--spc-30);
}
@media screen and (max-width: 1023px) {
.s-lowerTitle {
font-size: var(--fz-32);
}
}
@media screen and (max-width: 767px){
    .s-lowerTitle {
        aspect-ratio: 950 / 400;
        text-align: center;
    }
}

/* flex */
.s-flex {
    display: flex;
    gap: var(--spc-20);
}

.s-flex.--reverse {
    flex-direction: row-reverse;
}

.s-flex_Equal {
    flex: 1 1 0%;
}

.s-flex_w33 {
    width: 33%;
}

.s-flex_w40 {
    width: 40%;
}

.s-flex_w50 {
    width: 50%;
}

.s-flexStep {
    display: flex;
    gap: var(--spc-50);
}

.s-flexStep > * {
    width: 50%;
}

.s-flexStep > :first-child {
    position: relative;
}

.s-flexStep > :first-child::after {
    content: "";
    width: clamp(20px, 2vw, 30px);
    height: clamp(20px, 2vw, 30px);
    border-right: 2px solid var(--c-blue01);
    border-bottom: 2px solid var(--c-blue01);
    position: absolute;
    top: 50%;
    right: -7%;
    transform: translateY(-50%) rotate(-45deg);
}
.s-kodawariCommitment__item.s-flex {
    justify-content: space-between;
}
@media screen and (max-width: 1023px){
    .s-disposalIntro__stepitems__item.s-flex {
        flex-direction: column;
        align-items: baseline;
    }
}
@media screen and (max-width: 767px){
    .s-flex {
        flex-direction: column;
    }

    .s-flex.--reverse {
        flex-direction: column;
    }
    
    .s-flex > * {
        width: 100%;
    }

    .s-flexStep {
        flex-direction: column;
    }

    .s-flexStep > * {
        width: 100%;
    }

    .s-image.--arrow::after {
        top: auto;
        bottom: -5px;
        right: auto;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }

    .s-flexStep > :first-child::after {
        top: auto;
        bottom: -20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }
}

.s-faq__dd__text a {
    font-weight: bold;
    text-decoration: underline;
}

.s-faq__dd {
    padding-top: var(--spc-20);
    border-top: 1px solid transparent;
    border-image: repeating-linear-gradient(to right,var(--c-blue01) 0 2px,transparent 0 4px) 2;
}

.s-faq__dd__text a {
    font-weight: bold;
    text-decoration: underline;
}

.s-faq__dd__movie {
    margin-top: var(--spc-20);
    width: 80%;
}

.s-faq__dd__movie iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 530 /315;
}

.s-faq__dd__houToList--item {
    padding-left: 18px;
    position: relative;
}

.s-faq__dd__houToList--item span {
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (max-width: 767px){
    .s-faq__dd__movie {
        width: 100%;
    }
}

.s-faq__dd__movie {
    margin-top: var(--spc-20);
    width: 80%;
}

.s-faq__dd__movie iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 530 /315;
}



.s-main {
    line-height: 1.8;
    letter-spacing: 0.05em;
    font-size: var(--fz-16);
}

.s-lowerSectinTitle {
    font-size: 32px;
    font-weight: bold;
    padding-top: var(--spc-20);
    margin-bottom: var(--spc-lg);
    text-align: center;
    position: relative;
}

.s-lowerSectinTitle span {
    width: 60px;
    height: 2px;
    background-color: #F6FF2F;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.s-lowerSectinTitle span::before,
.s-lowerSectinTitle span::after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--c-yellow-400);
    position: absolute;
    top: 0;
}

.s-lowerSectinTitle span::before {
    background-color: var(--c-blue02);
    left: 0;
}

.s-lowerSectinTitle span::after {
    background-color: var(--c-red01);
    right: 0;
}

.s-heading__fz24 {
    font-size: var(--fz-24);
    font-weight: bold;
    margin-bottom: var(--spc-20);
}

.s-heading__fz24.--s-mb30 {
    margin-bottom: var(--spc-30);
}

.s-textCenter {
    text-align: center;
}

.s-textBold {
    font-weight: bold;
}

.s-textSmall {
    font-size: var(--fz-14);
}

.s-mgb--10 {
    margin-bottom: var(--spc-10);
}

.s-mgb--20 {
    margin-bottom: var(--spc-20);
}

.s-mgb--30 {
    margin-bottom: var(--spc-30);
}

.s-headingNumber {
    line-height: 1.4;
    font-size: var(--fz-50);
    color: var(--ranking-c-1st);
    font-family: var(--ff-zen-mincho);
}

.s-headingNumber.--blue {
    color: var(--c-blue01);
}

.s-btn {
    margin-top: var(--spc-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spc-lg);
}

.s-btn a {
    color: var(--c-white);
    font-size: var(--fz-14);
    font-weight: bold;
    max-width: 250px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--c-blue01);
    border-radius: 25px;
}

.s-image {
    position: relative;
}

.s-image img {
    border-radius: var(--bdrs-md);
    aspect-ratio: 1;
    object-fit: cover;
}

.s-image.--3x2 img {
    aspect-ratio: 3/2;
}

.s-image__badge {
    width: 100px;
    aspect-ratio: 1;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.s-image__badge img {
    border-radius: 50%;
}

.s-image.--arrow {
    position: relative;
}

.s-image.--arrow::after {
    content: "";
    width: clamp(20px, 2vw, 30px);
    height: clamp(20px, 2vw, 30px);
    border-right: 2px solid var(--c-blue01);
    border-bottom: 2px solid var(--c-blue01);
    position: absolute;
    top: 50%;
    right: -3%;
    transform: translateY(-50%) rotate(-45deg);
}

.s-movie {
    max-width: 750px;
    margin-inline: auto;
}

.s-movie iframe {
    max-width: 750px;
    width: 100%;
    height: auto;
    aspect-ratio: 530 /315;
    border: none;
}

.s-bg {
    padding: var(--spc-lg);
    background-color: var(--c-yellow01);
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

/* バナーアイテム */
.s-bnrItems {
    display: flex;
    gap: var(--spc-20);
}

.s-bnrItems__left,
.s-bnrItems__right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: var(--spc-20);
    justify-content: space-between;
    margin-inline: auto;
}
/* LINEボタン */
.s-bnrLine {
    display: flex;
    padding: var(--spc-20);
    align-items: center;
    gap: var(--spc-10);
    background-color: var(--c-yellow01);
    max-width: 468px;
    aspect-ratio: 465 / 150;
    margin-inline: auto;
    justify-content: center;
}

.s-bnrLine__icon {
    width: 20%;
}

.s-bnrLine__qr {
    width: 23%;
}

.s-bnrLine__icon img {
    border-radius: 20%;
}

.s-bnrLine__text {
    font-size: var(--fz-18);
    font-weight: bold;
    color: var(--c-green01);
    letter-spacing: 0;
    white-space: nowrap;
}

.s-bnrLine_id {
    color: var(--c-green01);
    font-weight: bold;
    background-color: var(--c-white);
    text-align: center;
    margin-top: var(--spc-10);
    border-radius: var(--bdrs-md);
    padding: 4px;
}
.s-showroomReservation__list__item .s-bnrLine {
    aspect-ratio: auto;
    height: 100%;
}

.s-showroomReservation__list__item .s-bnrLine__text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.s-showroomReservation__list__item .s-bnrLine__text::before {
    content: "";
    display: inline-block;
    width: 14%;
    min-width: 30px;
    aspect-ratio: 1;
    background: url(../images/common/line-pic.jpg) no-repeat center center / 100%;
}
@media screen and (max-width: 1023px){
    .s-bnrItems {
        flex-direction: column;
    }
    
    .s-bnrItems__left,
    .s-bnrItems__right {
        width: 100%;
    }
    .s-showroomReservation__list__item .s-bnrLine {
        justify-content: center;
    }

    .s-showroomReservation__list__item .s-bnrLine__qr {
        max-width: 80px;
        width: 25%;
        flex-grow: inherit;
    }
}
@media screen and (max-width: 767px){
    .s-bnrLine__qr {
        width: 20%;
    }
}


/* メールボタン */
.s-bnrMail {
    max-width: 468px;
    width: 100%;
    height: 100px;
    margin-inline: auto;
}

.s-bnrMail a {
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--c-yellow01);
    padding: var(--spc-20);
    gap: var(--spc-30);
    font-size: var(--fz-18);
    font-weight: bold;
    height: 100%;
    letter-spacing: 0;
}

.s-bnrMail a::before {
    content: "";
    display: inline-block;
    width: 17%;
    min-width: 30px;
    aspect-ratio: 31 / 23;
    background: var(--mail) no-repeat center center / 100%;
}
.s-showroomReservation__list__item.s-bnrMail a {
    gap: var(--spc-10);
    letter-spacing: normal;
    justify-content:flex-start;
}

.s-showroomReservation__list__item.s-bnrMail a::before {
    width: 18%;
}
@media screen and (max-width: 1023px){
    .s-showroomReservation__list__item.s-bnrMail a {
        justify-content: center;
    }
}


/* TELボタン */
.s-bnrTel {
    background-color: var(--c-yellow01);
    max-width: 468px;
    width: 100%;
    aspect-ratio: 465 / 150;
    margin-inline: auto;  
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.s-bnrTel a {
    height: 100%;
}

.s-bnrTel__num {
    display: flex;
    gap: var(--spc-10);
    font-size: var(--fz-43);
    font-weight: bold;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}

.s-bnrTel__num::before {
    content: "";
    display: inline-block;
    width: 14%;
    min-width: 30px;
    aspect-ratio: 131 / 75;
    background: url(../images/common/t-contactTel-deco.svg) no-repeat center center / 100%;
}

.s-bnrTel__text {
    font-weight: bold;
    text-align: center;
    font-size: var(--fz-18);
}
.s-showroomReservation__list__item .s-bnrTel__text {
    font-size: var(--fz-14);
}

.s-showroomReservation__list__item .s-bnrTel__num {
    font-size: var(--fz-35);
}

.s-showroomReservation__list__item .s-bnrTel__num::before {
    width: 18%;
}


/* FAXボタン */
.s-bnrFax {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spc-15);
    background-color: var(--c-yellow01);
    max-width: 468px;
    width: 100%;
    height: 100px;
    margin-inline: auto;  
}

.s-bnrFax::before {
    content: "";
    display: inline-block;
    width: 14%;
    min-width: 30px;
    aspect-ratio: 1;
    background: url(/asset2025/images/freepage/icon-fax.svg) no-repeat center center / 100%;
}

.s-bnrFax__num {
    font-size: var(--fz-43);
    font-weight: bold;
    line-height: 1.2;
}

.s-bnrFax__text {
    font-size: var(--fz-14);
    font-weight: bold;
}
.s-bnrItems p{
	display: none;
}

/* ページャー */
@media screen and (min-width: 768px){
.wp-pagenavi > * {
    width: 35px;
    height: 35px;
		font-size: 14px !important;
}
}

@media screen and (max-width: 767px){
	.wp-pagenavi > *{
		font-size: 10px !important;
		width: 27px;
    height: 27px;
	}
	.wp-pagenavi > a.previouspostslink,
	.wp-pagenavi > a.nextpostslink{
		width: 20px !important;
		height: 20px !important;
	}
}
.wp-pagenavi .navi-next{
border: none !important;
}
.wp-pagenavi .navi-next::before{
	color: var(--c-dark01) !important;
}
.wp-pagenavi .navi-prev{
border: none !important;
}
.wp-pagenavi .navi-prev::before{
	color: var(--c-dark01) !important;
}
.wp-pagenavi .navi-next,
.wp-pagenavi .navi-prev{
	padding: 0 !important;
}
.wp-pagenavi a, .wp-pagenavi span{
	margin: 0px !important;
}

/* ページャー */
@media screen and (max-width: 767px){
	a.larger.page,
	.extend ~ .extend{
		display: none;
	}
	a.larger.page + .extend{
		display: block !important;
	}
	[aria-current="page"] + *{
		display: flex !important;
	}
}


/* よくあるご質問 */
.s-faqImg{
	max-width: 400px;
	margin-top: 15px;
}
.s-faqImg._cl3{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3,1fr);
}
.s-faqImg._cl3 li::marker{
	display: none;
	font-size: 0;
}

.faq-table{
		table-layout: fixed; /*各セル幅を均等に保つ*/
	border-collapse: collapse; /*隣り合うセルの罫線を重ねて表示*/
}
.faq-table th,
.faq-table td{
	border: 1px  solid;
	padding: 10px;
	text-align: left;
}
#wpadminbar{
	display: none !important;
}

/* サイドバー - 画像 */
@media screen and (max-width: 767px){
	#wp-side img{
		display: block;
		height: auto;
		aspect-ratio: 3/2;
		object-fit: cover;
	}
}