@charset "UTF-8";
/* CSS Document */
/*---------------------

下層共通

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

よくある質問

---------------------*/
.archive #faq .accordion li{
	background: var(--gray);
	border: none;
	margin-bottom: 20px;
}

/*---------------------
ボタンエリア
---------------------*/
.menubox{
    display: grid;
	grid-template-columns:repeat(3, 1fr);
	gap:15px;
}
.menubox li{
/*    width: 28%;*/
}
.menubox li a{
    position: relative;
    display: block;
    padding: 10px;
    text-align: center;
    font-size: var(--txt-s);
    border: solid 1px var(--main-color);
    width: 100%;
}
.menubox a::before{
	content:"";
	position: absolute;
	right: 20px;
	top: 40%;
  width: 10px;
  height: 10px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
.menubox a:hover{
    background: var(--main-color);
    color: var(--base-color);
}
@media screen and (max-width: 425px){
    .menubox{
        grid-template-columns:repeat(2, 1fr);
		gap:5px;
    }
	.menubox li a{
		font-size: 1.2rem;
		padding: 5px;
		text-align: left;
	}
	.menubox a::before{
		right: 6px;
		width: 8px;
		height: 8px;
	}
	.archive #faq .accordion li{
		margin-bottom: 10px;
	}
}


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

特定商法取引

---------------------*/
.infobox{
	display: flex;
	font-size: var(--txt-s);
	flex-wrap: wrap;
}
.infobox dt{
	border-bottom: solid 1px var(--main-color);
	width: 20%;
	font-weight: 500;
}
.infobox dd{
	border-bottom: solid 1px #727272;
	width: 80%;
}
.infobox dt,
.infobox dd{
	padding: 20px;
	box-sizing: border-box;
}
@media screen and (max-width:425px){
	.infobox{
		display: block;
	}
	.infobox dt,
	.infobox dd{
		width: 100%;
		padding: 10px;
	}
	.infobox dt{
		border: none;
		padding:10px 10px 0; 
	}
	.infobox dd{
		padding-top: 0;
	}
}

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

プライバシーポリシー

---------------------*/
.privacy-policy main .content p{
    font-size: 1.8rem;
}
.privacy-policy main h2{
    font-size: 3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}
.privacy-policy main h3{
    font-size: 2.3rem;
    margin-top: 30px;
    margin-bottom: 6px;
}
.privacy-policy main h2:first-of-type{
    margin-top: 0;
}

