@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&family=Zen+Maru+Gothic&display=swap');

:root {
	--beige: #EDDAB0;
	--orange: #C5551F;
	--brown: #783E3C;
}

a:hover {
	opacity: 0.7;
}

.keni-container, .keni-mv_wrap {
	overflow: hidden;
	background-image:url( https://asobigokoro-saiyou.com/wp-content/uploads/2024/12/lp-bk.webp);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}

/*日常*/
.daily-life {
	background: var(--beige);
}

/*募集要項*/
.recruitment {
	background: var(--beige);
}

.recruit-btn {
	transition: 0.6s;
}

.recruit-btn:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	transition-property: all;
	transition-duration: 0.6S;
}

.recruitment .recruit-btn {
	width: 90%;
	margin: 0 5% 4rem;
}

.qa {
	background: #EDDAB0;
	padding: 2em 2em 1px;
	font-family: "M PLUS Rounded 1c", serif;
}

/*よくある質問ーアコーディオン*/
details {
	margin-bottom: 20px;
	font-size: 2.4rem;
	background: white;
	border-radius: 2rem;
	box-shadow: 0 0 4px #ccbb97;
	padding: 1.4rem;
}

details p {
	font-size: 2rem;
	text-align: justify;
	border-top: solid 1px #e4e4e4;
	padding: 1rem 1rem 0.5rem 5.5rem!important;
	margin: 0!important;
	position: relative;
}

details p:before {
	position: absolute;
	top: 01.4rem;
	left: 2rem;
	content: "A.";
	color: gray;
	font-size: 2.8rem;
	font-weight: bold;
}

details summary {

    color: var(--brown);
	list-style: none;
	cursor: pointer;
	position:relative;
	padding: 1.5rem 6rem 1.5rem 6rem;
	border-radius: 5px;
}

details summary::before {
    position: absolute;
	top: 1.4rem;
	left: 2rem;
	content: "Q.";
	color: var(--orange);
    font-size: 2.8rem;
	font-weight: bold;
}

/*Chrome用のデフォルト三角削除*/
details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
	position:absolute;
	content: "";
	background: url(https://asobigokoro-saiyou.com/wp-content/uploads/2024/12/qa-arrow1.png);
	background-size: cover;
	width: 3rem;
	height: 3rem;
	top:1.4rem;
	right:1.5rem;
	font-size:2rem;
}
/*アコーディオンオープン時マイナスアイコンに変更*/
details[open] summary::after {
	content: "";
		background: url(https://asobigokoro-saiyou.com/wp-content/uploads/2024/12/qa-arrow2.png);
	background-size: cover;
	width: 3rem;
	height: 3rem;
	position: absolute;
	top: 1.3rem;
	right: 1.5rem;
	font-size: 2.2rem;
}

/*Q&Aの三角を消す*/
summary {
  display: block;
  list-style: none;
}
/* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
  display:none;
}

/*フッター*/
.keni-footer_wrap {
	background: var(--beige)!important;
}

.keni-copyright_wrap {
border-top: none!important;
}

.keni-copyright {
	color: white!important;
	text-align: center;
}

.keni-footer_wrap {
	margin-top: -5rem;
}

@media (max-width: 768px) {
	/*質問*/
	.qa {
		padding: 2em 5% 1px;
	}

	/*よくある質問ーアコーディオン*/
	details {
		font-size: 1.7rem;
		border-radius: 1rem;
		padding: 0.5rem;
		line-height: 1.5;
	}

	details p {
		font-size: 1.6rem;
	}

	details p:before {
		top: 0.5rem;
		left: 1.5rem;
		font-size: 2.5rem;
	}

	details summary {
		padding: 1.5rem 4rem 1.5rem 5rem;
	}

	details summary::before {
		top: 0.8rem;
		left: 1.5rem;
		content: "Q.";
		font-size: 2.5rem;
	}

	details summary::after {
		width: 2.2rem;
		height: 2.2rem;
		top:1.8rem;
	}
	
	/*アコーディオンオープン時マイナスアイコンに変更*/
	details[open] summary::after {
		width: 2.2rem;
		height: 2.2rem;
		top: 1.8rem;
	}
}

/*フッターボタン*/
.footer_btn {
    display: block;
    position: fixed;
    bottom: 6px;
    right: 10px;
    width: 400px;
    z-index: 1000;
    transition-duration: 0.6S;
}
.footer_btn p {
	margin-bottom: 0!important;
}

.footer_btn:hover{
  transform:scale(1.05,1.05);
}
.footer_btn img{
	width: 100%;
}
@media (max-width:500px){
	.footer_btn{
	    width: 100%;
	bottom: 0px;
	right: 0px;
	transition: 0.5s;
	display: block;
}