/*-----------------------------------------------------------------

	template/index

-----------------------------------------------------------------*/

:root {
	--page-color: #ff5390;
}

.h-type2::before {
	background-color: var(--page-color);
}

/*----main-tit----*/
.main-tit {
	background: url(../../../_images/template/tit-back.gif) no-repeat;
	background-position: center 10px;
	min-height: 165px;
	text-align: center;
	display:flex;
	justify-content: center;
	align-items: center;
	flex-direction:column-reverse;
	margin: 10px auto 3rem;
	position: relative;	
}
.main-tit:before,
.main-tit:after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	display: block;
}
.main-tit:before {
	background: url(../../../_images/template/tit-img-l.webp);
	left: 0;
	width: 208px;
	height: 162px;
}
.main-tit:after {
	background: url(../../../_images/template/tit-img-r.webp);
	right: 0;
	width: 123px;
	height: 138px;
}

.main-tit .inner {
	margin-bottom: 1.5rem;
	z-index: 1;
}

.main-tit .inner .text-free {
	position: absolute;
	top: -10px;
	right: 110px;
}

.main-tit .tit {
	font-weight: bold;
	color: #FFF;
	font-size: 4.1rem;
	-webkit-text-stroke: 4px var(--page-color);
	text-stroke: 4px var(--page-color);
	paint-order: stroke;
	text-shadow: 0px 3px 9px rgba(0, 0, 0, 0.4);
	letter-spacing: 0;
	z-index: 1;
}

@media screen and (max-width: 810px) {
	.main-tit {
		padding: 4rem 30px;
		background-size: cover;
	}

	.main-tit .tit {
		line-height: 1.1;
	}

	.main-tit:before {
		left: -15px;
	}
	.main-tit:after {
		right: -15px;
	}
	.main-tit .inner .text-free {
		right: -15px;
	}

}

@media screen and (max-width: 480px) {
	.main-tit:before,
	.main-tit:after {
		opacity: .6;
	}

	.main-tit .inner .text-free {
		width: 80px;
		height: 80px;
	}

	.main-tit .inner {
		padding-right: 20px;
	}

	.main-tit .tit {
		font-size: 3.5rem;
	}
}



/*-----------------------------------------------------------------
	search-cont
-----------------------------------------------------------------*/
.search-cont {
	margin-bottom: 9rem;
}

.search-cont .tit {
	text-align: center;
	font-weight: bold;
	margin: 0 auto 2.5rem;
	font-size: 2.5rem;
	letter-spacing: .1em;
	line-height: 1.2;
}

/*----search-area----*/
.search-cont .search-area {
	margin-bottom: 5rem;
}

.search-cont .search-area input {
	flex-grow: 1;
	padding: 2rem 3rem;
	font-size: 1rem;
	width: 700px;
	height: 6rem;
	box-sizing: border-box;
	display: block;
	margin: 0 auto;
	border: 1px solid #212121;
	font-size: 1.6rem;
}

.search-cont .search-area dd {
	width: fit-content;
	margin: 0 auto;
	position: relative;
}
.search-cont .search-area dd:before,
.search-cont .search-area dd:before {
	content: "";
	display: block;
	position: absolute;
	pointer-events: none;
}
.search-cont .search-area dd:before {
	width: 6rem;
	height: 6rem;
	background: #212121;
	top: 0;
	right: 0;
}
.search-cont .search-area dd:after {
	font-family: "Font Awesome 5 Free";
	content: '\f002';
	font-weight: 900;
	font-size: 3rem;
	color: #FFF;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

@media screen and (max-width: 810px) {
	.search-cont .search-area dd {
		width: 100%;
	}

	.search-cont .search-area input {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	.search-cont .search-area dd:after {
		font-size: 2.5rem;
	}
}


/*----filters-main----*/
.search-cont .filters-main {
	width: 690px;
	margin: 0 auto 4rem;
}

.search-cont .filters-main .inner {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem calc(8% / 3);
}

.search-cont .filters-main .inner label {
	width: 23%;
}

.search-cont .filters.none {
	display: none;
}

@media screen and (max-width: 810px) {
	.search-cont .filters-main {
		width: 90%;
	}

	.search-cont .filters-main .inner {
		gap: 1.2rem calc(7% / 2);
	}

	.search-cont .filters-main .inner label {
		width: 31%;
	}
}

@media screen and (max-width: 480px) {
	.search-cont .filters-main {
		width: 100%;
	}

	.search-cont .filters-main .inner {
		gap: 10px;
	}

	.search-cont .filters-main .inner label {
		width: fit-content;
	}
}

/*----summary----*/
.search-cont .number-cont {
	margin: 4rem auto;
	border-bottom: 1px solid #191919;
	padding-bottom: 4rem;
	display:flex;
	justify-content: center;
	align-items: center;
	gap: 2rem 3rem;
}

.search-cont .number-cont .summary {
	text-align: center;
	font-size: 2rem;
	color: #232323;
	font-weight: bold;
}

.search-cont .summary .count {
	font-size: 4rem;
	font-weight: bold;
	margin: 0 1rem;
	color: var(--page-color);
}

.search-cont #clear-button {
	border: 1px solid #878f9e;
	background: #FFF;
	border-radius: 100px;
	padding: .7rem 3rem;
	font-size: 14px;
	color: #4a4a4a;
	transition: all .2s ease;
	cursor: pointer;
}
.search-cont #clear-button:hover {
	background: #ffeef4;
	color: var(--page-color);
	border-color: var(--page-color);
	font-weight: bold;
}

@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {
	.search-cont .number-cont {
		flex-flow: column;
	}
}


/*----pagination----*/
.search-cont .pagination {
	margin: 3rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.search-cont .pagination button {
	width: 4rem;
	height: 4rem;
	text-align: center;
	display:flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	font-weight: bold;
	border-radius: 100px;
	border: 1px solid #9c9c9c;
	color: #6a6a6a;
	background: #FFF;
	transition: all .2s ease;
	cursor: pointer;
}
.search-cont .pagination button:hover {
	background: #ffeef4;
	border-color: var(--page-color);
}


.search-cont .pagination button.active {
	background: var(--page-color);
	color: #fff;
	border-color: var(--page-color);
	cursor: auto;
}

.search-cont .pagination button:disabled {
	opacity: 0.5;
	border: 1px dashed #9c9c9c;
	background: none;
	cursor: auto;
}

/*prev,next*/
.search-cont .pagination .page-btn {
	width: 4.5rem;
	height: 4.5rem;
	color: transparent;
	margin: 0 .5rem;
	cursor: pointer;
	position: relative;
}
.search-cont .pagination .page-btn.next:before,
.search-cont .pagination .page-btn.prev:before {
	content: '\f077';
	position: absolute;
	top: 50%;
	left: 50%;
	color: var(--page-color);
	font: var(--fa-font-solid);
	font-size: 16px;
}

.search-cont .pagination .page-btn.next:before {
	transform: translate(-50%, -50%) rotate(90deg);
}
.search-cont .pagination .page-btn.prev:before {
	transform: translate(-50%, -50%) rotate(270deg);
}

.search-cont .pagination .page-btn:disabled::before,
.search-cont .pagination .page-btn:disabled::after {
	color: #ccc;
}

@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {

}


/*----products----*/
.search-cont ul.products {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 20px 2%;
}

.search-cont ul.products > li {
	width: 32%;
}

.search-cont ul.products > li a.modal-syncer {
	display: block;
	cursor: pointer;
	border: 1px solid #bbbfc6;
	border-radius: 1.5rem;
	overflow: hidden;
}
.search-cont ul.products > li a.modal-syncer:hover {
	opacity: 1;
	border-color: var(--page-color);
	box-shadow: 0px 5px 10px 0px rgba(29, 29, 29, 0.15);
}

.search-cont ul.products li .img {
	padding: 1rem 0;
	text-align: center;
}
.search-cont ul.products li .img img {
	width: 250px;
	height: auto;
}

@media screen and (max-width: 810px) {
	.search-cont ul.products li .img {
		padding: 0;
	}

	.search-cont ul.products li .img img {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	.search-cont ul.products {
		gap: 20px 6%;
	}

	.search-cont ul.products > li {
		width: 47%;
	}
}

/**/
.search-cont ul.products li .data-cont {
	background: #f7f8fa;
	padding: 2rem;
	text-align: center;
}

.search-cont ul.products li .data-cont .number {
	font-size: 1.7rem;	
	margin-bottom: 1.5rem;
	line-height: 1;
}

.search-cont ul.products li .data-cont .tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 5px;
}

.search-cont ul.products li .data-cont .tags li {
	background: #FFF;
	font-size: 13px;
	padding: 5px 15px;
	font-weight: bold;
}

.search-cont ul.products li .data-cont .tags li.size { color: #5cd2e0; }
.search-cont ul.products li .data-cont .tags li.text { color: #ff7c7c; }

@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {
	.search-cont ul.products li .data-cont .tags li {
		font-size: 11px;
	}
}



/*-----------------------------------------------------------------
	modal-content
-----------------------------------------------------------------*/
.modal-content {
	position: fixed; /* JSで top/left を計算するため fixed にする */
	display: none;   /* JSのfadeIn/fadeOutで制御 */
	z-index: 1001;

    max-width: 900px;
    width: calc(100% - 60px);
    max-height: calc(100vh - 60px); /* ★ dvh から vh に戻す */
    margin-top: 0;
    overflow-y: auto;
	padding: 0;
	overflow: initial;
	border-radius: 1.5rem;
}
.modal-content div {
	padding: 0;
	max-height: none;
	overflow-y: visible;
}

#modal-overlay {
    display: none; /* JSで制御 */
}

@media screen and (max-width: 810px) {
	.modal-content {
		max-width: 900px;
		max-height: calc(100dvh - 60px);
		width: calc(100% - 60px);
		margin-top: 0;
		overflow-y: auto;
		
	}

	.modal-content div {
		height: auto;
	}
}

@media screen and (max-width: 480px) {

}


/*----id-cont----*/
.modal-content .id-cont {
	padding: 3rem;
	text-align: center;
}

.modal-content .id-cont .inner {
	display:flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

.modal-content .id-cont .copy-text {
	color: var(--page-color);
	font-weight: bold;
	font-size: 2rem;
}

.modal-content .id-cont .copy-btn {
	position: relative;
	padding: .6rem 3rem;
	background: var(--page-color);
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 15px;
	transition: background 0.3s;
	font-weight: bold;
	overflow: visible;
}
.modal-content .id-cont .copy-btn:hover {
	background: #da316c;
}
.modal-content .id-cont .copy-btn::after {
	content: "コピーしました";
	position: absolute;
	top: -3.5rem;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(30,64,132,0.7);
	color: #fff;
	padding: .8rem 15px;
	border-radius: 4px;
	font-size: 12px;
	pointer-events: none;
	transition: opacity 0.3s;
	opacity: 0;
	width: fit-content;
	white-space: nowrap;
}
.modal-content .id-cont .copy-btn::before {
	content: "";
	position: absolute;
	top: -0.2rem;
	left: 50%;
	transform: translateX(-50%);
	border-width: .8rem .5rem 0 .5rem;
	border-style: solid;
	border-color: rgba(30,64,132,0.7) transparent transparent transparent;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 10;
}

/* コピー時に表示 */
.modal-content .id-cont .copy-btn.copied::after,
.modal-content .id-cont .copy-btn.copied::before {
	opacity: 1;
}

.modal-content .id-cont > p {
	font-size: 1.3rem;
	color: #6a6a6a;
	letter-spacing: .1em;
}

@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {
	.modal-content .id-cont .inner {
		flex-flow: column;
		gap: .5rem;
		margin-bottom: 1rem;
	}
}


/*----temp-data----*/
.modal-content .temp-data {
	background: #f7f8fa;
	padding: 3rem 5rem;
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
	border-radius: 0 0 1rem 1rem;
	align-items: flex-start;
}

/*----swiper----*/
.modal-content .swiper-parent{
	display: block;
	position: relative;
	width: 380px;
}
.modal-content .swiper-container{
	width: 100%;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

/**/
.modal-content .swiper-slide{
	width: 100%;
	border: 1px solid #bbbfc6;
}

.modal-content .swiper-slide img{
	width: 100%;
	height: auto;
}


/*左右*/
.modal-content .swiper-button-prev,
.modal-content .swiper-button-next{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background-color: #fff;
	border: 1px solid #bbbfc6;
	border-radius: 50%;
	background-image: none;
	transition: all 0.3s ease-out;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	opacity: 1;
    position: absolute;
    z-index: 2;
}
.modal-content .swiper-button-prev{
	left: -20px;
}
.modal-content .swiper-button-next{
	right: -20px;
}

.modal-content .swiper-button-prev:before,
.modal-content .swiper-button-next:before{
	content: "";
	width: fit-content;
	height: fit-content;
	color: #555;
	font: var(--fa-font-solid);
	font-size: 2rem;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
.modal-content .swiper-button-prev:before{
	content: "\f053";
}
.modal-content .swiper-button-next:before{
	content: "\f105";
}
.modal-content .swiper-button-prev:hover,
.modal-content .swiper-button-next:hover{
	background-color: #a0aac0;
	cursor: pointer;
}
.modal-content .swiper-button-prev:hover:before,
.modal-content .swiper-button-next:hover:before{
	color: #fff;
}

@media screen and (max-width: 810px) {
	.modal-content .temp-data {
		padding: 3rem;
	}

	.modal-content .swiper-parent{
		width: 48%;
	}

	.modal-content .swiper-button-prev,
	.modal-content .swiper-button-next{
		width: 30px;
		height: 30px;
	}

	.modal-content .swiper-button-prev:before,
	.modal-content .swiper-button-next:before{
		font-size: 1.7rem;
	}

}

@media screen and (max-width: 480px) {
	.modal-content .swiper-parent{
		width: 100%;
		margin-bottom: 2rem;
	}

	
}


/*----text----*/
.modal-content .text {
	width: 380px;
}

.modal-content .text dt {
	font-weight: bold;
	color: #1e4084;
	font-size: 14px;
	letter-spacing: .1em;
	margin-bottom: 1rem;
}
.modal-content .text dd {
	padding-left: 1.5rem;

}

.modal-content .text dl:not(:last-child) dd {
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid #bbbfc6;
}

.modal-content .text dd .main {
	font-size: 14px;
}

.modal-content .text dd .small {
	font-size: 12px;
	color: #6a6a6a;
	margin-top: .5rem;
	line-height: 1.6;
}

@media screen and (max-width: 810px) {
	.modal-content .text {
		width: 48%;
	}

}

@media screen and (max-width: 480px) {
	.modal-content .text {
		width: 100%;
	}

	.modal-content .text dd .small {
		font-size: 11px;
	}
}

/*----button-close----*/
.modal-content .button-close {
	position: absolute;
	top: -2rem;
	right: -2rem;
	width: 4.5rem;
	height: 4.5rem;
	background: #a4abbb;
	border-radius: 50%;
	color: transparent;
	cursor: pointer;
}

.modal-content .button-close:before {
	font-family: "Font Awesome 5 Free";
	content: '\f00d';
	font-weight: 900;
	font-size: 2.7rem;
	color: #FFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
}

@media screen and (max-width: 810px) {
	.modal-content .button-close {
		border-radius: 0 0 0 30%;
		top: 0rem;
		right: 0rem;
	}

}

@media screen and (max-width: 480px) {

}



.search-cont .selected-tags {
	padding: .5rem;
	border-radius: 1rem;
	border: 1px dashed #9b9b9b;
}

.search-cont .selected-tags span {
	display: inline-block;
	background: #333;
	color: #fff;
	padding: .4rem 1.5rem;
	border-radius: 100px;
	cursor: pointer;
	font-size: 11px;
	margin: 5px;
}

.search-cont .additional-content-item {
	display: none;
}

.search-cont .hidden {
	display: none;
}

/* チェックボックスカスタム */
.search-cont input[type="checkbox"] {
	display: none;
}

.search-cont input[type="checkbox"] + span {
	display: block;
	padding: 1.2rem 2rem;
	border-radius: 100px;
	background-color: #f3f5f8;
	cursor: pointer;
	transition: background 0.3s;
	user-select: none;
	color: #4a4a4a;
	font-size: 1.5rem;
	text-align: center;
	transition: all .2s ease;
	height: 100%;
	display:flex;
	justify-content: center;
	align-items: center;
}
.search-cont input[type="checkbox"] + span:hover {
	background: #ffeef4;
}


.search-cont input[type="checkbox"]:checked + span {
	background-color: var(--page-color);
	color: #fff;
	font-weight: bold;
}

/* ラジオボタンカスタム */
.search-cont input[type="radio"] {
	display: none; /* デフォルト非表示 */
}

/* 外側の丸（非アクティブ） */
.search-cont label:has(input[type="radio"])::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid #878f9e;
	background: #fff;
	box-sizing: border-box;
}

/* 内側の丸（アクティブ時） */
.search-cont label:has(input[type="radio"]:checked):after {
	content: '';
	position: absolute;
	left: 9px; /* 外円中央に配置 */
	top: 50%;
	transform: translate(-50%, -50%);
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--page-color);
	border: none;
}

/* label全体を丸用に相対配置 */
.search-cont label:has(input[type="radio"]) {
	position: relative;
	padding-left: 28px; /* 丸のスペース確保 */
	cursor: pointer;
	user-select: none;
}

@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {
	.search-cont input[type="checkbox"] + span {
		font-size: 12px;
		padding: 5px 15px;
	}
}


/*-----------------------------------------------------------------
	use-cont
-----------------------------------------------------------------*/
.use-cont {
	margin-bottom: 9rem;
}

.use-cont .use-list li {
	position: relative;
	background: #f7f8fa;
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	padding: 4rem 5rem;
	row-gap: 2rem;
}

.use-cont .use-list li:before {
	content: "";
	position: absolute;
	left: 2rem;
	top: -2rem;
	display: block;
	width: 90px;
	height: 70px;
}
.use-cont .use-list li:nth-child(1):before { background: url(../../../_images/template/flow-01.webp); }
.use-cont .use-list li:nth-child(2):before { background: url(../../../_images/template/flow-02.webp); }
.use-cont .use-list li:nth-child(3):before { background: url(../../../_images/template/flow-03.webp); }


.use-cont .use-list li:not(:last-child) {
	margin-bottom: 5.5rem;
	background: #f7f8fa;
}

.use-cont .use-list li:not(:last-child):after {
	content: '\f078';
	color: #b1b9cb;
	font: var(--fa-font-solid);
	font-size: 3.5rem;
	position: absolute;
	bottom: -4.2rem;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

@media screen and (max-width: 810px) {
	.use-cont .use-list li:before {
		width: 64px;
		height: 50px;
		background-size: contain !important;
	}
}

@media screen and (max-width: 480px) {
	.use-cont .use-list li {
		padding: 5rem 3rem 3rem;
	}

}


/*----text----*/
.use-cont .use-list li .text {
	width: 400px;	
}

.use-cont .use-list li .text dt {
	font-weight: bold;
	font-size: 2.2rem;
	margin-bottom: 2.5rem;
	line-height: 1.3;
}

.use-cont .use-list li .text dd {
	color: #4a4a4a;
}

@media screen and (max-width: 810px) {
	.use-cont .use-list li .text {
		width: 50%;	
	}

	.use-cont .use-list li .img {
		width: 45%;	
	}
}

@media screen and (max-width: 480px) {
	.use-cont .use-list li .text {
		width: 100%;	
	}

	.use-cont .use-list li .img {
		width: 100%;	
	}

	.use-cont .use-list li .text dt {
		margin-bottom: 1.5rem;
	}
}


/*-----------------------------------------------------------------
	voice-cont
-----------------------------------------------------------------*/
.voice-cont {
	margin-bottom: 7rem;
}

.voice-cont .voice-list li:not(:last-child) {
	margin-bottom: 2rem;
}

.voice-cont .voice-list li {
	background: #f7f8fa;
	border-radius: 1rem;
	padding: 2rem 5rem;
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}


/*div*/
.voice-cont .voice-list li div {
	text-align: center;
	font-size: 12px;
	color: #6a6a6a;
	width: 125px;
}
.voice-cont .voice-list li div:before {
	content: "";
	width: 125px;
	height: 125px;
	background-size: contain;
	display: block;
	margin: 0 auto 1rem;
}
.voice-cont .voice-list li:nth-child(1) div:before { background: url(../../../_images/template/voive-icon1.webp); }
.voice-cont .voice-list li:nth-child(2) div:before { background: url(../../../_images/template/voive-icon2.webp); }
.voice-cont .voice-list li:nth-child(3) div:before { background: url(../../../_images/template/voive-icon3.webp); }

/*dl*/
.voice-cont .voice-list li dl {
	width: 640px;
}

.voice-cont .voice-list li dl dt {
	font-size: 1.7rem;
	font-weight: bold;
	color: #1e4084;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.voice-cont .voice-list li dl dd {
	color: #4a4a4a;
}

@media screen and (max-width: 810px) {
	.voice-cont .voice-list li dl {
		width: calc(100% - 160px);
	}
}

@media screen and (max-width: 480px) {
	.voice-cont .voice-list li {
		padding: 3rem;
	}

	.voice-cont .voice-list li div {
		margin: 0 auto 2rem;
	}

	.voice-cont .voice-list li dl {
		width: 100%;
	}

	.voice-cont .voice-list li dl dt {
		margin-bottom: 1rem;
	}
}



/*-----------------------------------------------------------------
	faq-box
-----------------------------------------------------------------*/
.main-contents .faq-box .faq-list{
	margin: 30px auto;
}

.main-contents .faq-box .faq-list dl{
	margin: 30px auto;
	border: 3px solid #94e7e6;
	border-radius: 15px;
	overflow: hidden;
}

.main-contents .faq-box .faq-list dl dt{
	background-color: #94e7e6;
	padding: 10px 30px 10px 100px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.8em;
	position: relative;
}

.main-contents .faq-box .faq-list dl dd{
	padding: 20px 30px 20px 100px;
	position: relative;
}

.main-contents .faq-box .faq-list dl dt:before,
.main-contents .faq-box .faq-list dl dd:before{
	content: "";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	font: var(--fa-font-solid);
	font-size: 2.5rem;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid #111;
	position: absolute;
	left: 45px;
}
.main-contents .faq-box .faq-list dl dt:before{
	content: "\51";
	top: 0;
	bottom: 0;
	margin: auto;
}
.main-contents .faq-box .faq-list dl dd:before{
	content: "\41";
	top: 10px;
}

.main-contents .faq-box .faq-list dl dd p{
	font-size: 1.4rem;
}

.main-contents .faq-box .faq-list dl dd ol{
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin: 5px 0;
	font-size: 1.4rem;
	counter-reset: number;
}

.main-contents .faq-box .faq-list dl dd ol > li{
	padding-left: 25px;
	line-height: 1.5em;
	position: relative;
}

.main-contents .faq-box .faq-list dl dd ol > li:before{
	content: counter(number);
	counter-increment: number;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15px;
	height: 15px;
	border: 1px solid #111;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 0;
}

.main-contents .faq-box .faq-list dl dd a{
	color: #35bebc;
	text-decoration: underline;
}

.main-contents .faq-box .faq-list dl dd a:hover{
	text-decoration: none;
}

.main-contents .faq-box .faq-list dl dd .qa-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 1.5rem;
	font-size: 13px;
	margin: 1rem 0;
}


/*開閉*/
.main-contents .faq-box .faq-list input{
	display: none;
}

@media screen and (max-width: 810px) {
	.main-contents .faq-box .faq-list dl{
		margin: 30px auto;
	}

	.main-contents .faq-box .faq-list dl dt{
		padding: 15px 30px 15px 60px;
		line-height: 1.3em;
	}

	.main-contents .faq-box .faq-list dl dd{
		padding: 15px 15px 15px 60px;
		position: relative;
	}
	
	.main-contents .faq-box .faq-list dl dt:before,
	.main-contents .faq-box .faq-list dl dd:before{
		width: 35px;
		height: 35px;
		left: 10px;
	}
}

@media screen and (max-width: 480px) {
	.main-contents .faq-box .faq-list dl{
		margin: 20px auto;
	}

	.main-contents .faq-box .faq-list dl dt{
		padding: 10px 30px 10px 50px;
	}

	.main-contents .faq-box .faq-list dl dd{
		padding: 15px 15px 15px 50px;
		position: relative;
	}
	
	.main-contents .faq-box .faq-list dl dt:before,
	.main-contents .faq-box .faq-list dl dd:before{
		width: 30px;
		height: 30px;
		left: 8px;
	}

	/*開閉*/
	.main-contents .faq-box .faq-list dl input + label{
        width: 100%;
    }

	.main-contents .faq-box .faq-list dl input + label dt{
		padding-right: 30px;
		position: relative;
	}

	.main-contents .faq-box .faq-list dl input + label dt:after{
		content: "";
		display: block;
		width: 0;
		height: 0;
		border: 8px solid transparent;
		border-top: 12px solid #fff;
		position: absolute;
		top: 8px;
		bottom: 0;
		right: 8px;
		margin: auto;
		transition: all 0.3s ease-out;
	}

	.main-contents .faq-box .faq-list dl > dd{
		padding: 0 15px 0 60px;
		max-height: 0;
		overflow: hidden;
		transition: 0.5s;
	}

	.main-contents .faq-box .faq-list dl input:checked + label + dd{
		padding: 15px 15px 15px 60px;
		max-height: 400px;
	}

	.main-contents .faq-box .faq-list dl input:checked + label dt:after{
		border-top-color: transparent;
		border-bottom: 12px solid #fff;
		top: -8px;
	}
}


/*-----------------------------------------------------------------
	faq-box
-----------------------------------------------------------------*/


@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {

}


/*----★----*/

@media screen and (max-width: 810px) {

}

@media screen and (max-width: 480px) {

}