@charset 'utf-8';
section{
	margin: 4rem auto;
}
main > section:first-of-type{
	margin-top: 0;
}
.contentsText{
	margin-bottom: 2rem;
}
#useful .link{
	width: 40rem;
}
#useful .linkList{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#useful .linkList li{
	width: 35rem;
}
#advice .largeHeading .new{
	margin-right: 1rem;
	padding: .5rem;
	display: inline-block;
	background-color: var(--colorOrange);
	font-size: 1.2rem;
	color: var(--colorWhite);
	vertical-align: middle;
}
#advice .flexBox{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#advice .flexBox.textFlex{
	margin-bottom: 3rem;
}
#advice .flexBox .imgBox{
	width: 42rem;
}
#advice .flexBox .imgBox iframe{
	width: 100%;
	height: 23.6rem;
}
#advice .flexBox .textBox{
	width: 63rem;
}
#advice .flexBox.textFlex .textBox{
	width: 52.5rem;
}
#advice .flexBox .textBox .commonBtn{
	max-width: 42rem;
	margin: 0 auto;
}
#advice .flexBox .textBox .LinkList li{
	margin-bottom: 2rem;
}
#advice .flexBox .textBox .LinkList li:last-of-type{
	margin-bottom: 0;
}
#advice .textBox.noImg .LinkList{
	margin-bottom: 3rem;
	display: flex;
	align-items: center;
}
#advice .textBox.noImg .LinkList li{
	width: 42rem;
	margin-right: 2rem;
}
#advice .textBox.noImg .LinkList li:last-of-type{
	margin-right: 0;
}
#manga .introductionImg{
	max-width: 68rem;
	margin: 0 auto 5rem;
}
#manga .mangaList{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
#manga .mangaList li{
	width: calc((100% - 3rem) / 4);
	padding: 2rem;
	margin-bottom: 1rem;
	margin-right: 1rem;
	display: flex;
	align-items: center;
	background-color: var(--colorLightBlue);
	transition: opacity .7s;
	cursor: pointer;
}
#manga .mangaList li:nth-of-type(4n){
	margin-right: 0;
}
#manga .mangaList li:nth-last-of-type(-n + 4){
	margin-bottom: 0;
}
#manga .mangaList li:hover{
	opacity: .7;
}
#manga .mangaList li .imgBox{
	width: 5rem;
	margin-right: 1rem;
}
#manga .mangaList li .textBox{
	width: calc(100% - 6rem);
	line-height: 1.25;
	font-weight: bold;
}
#manga #popUp{
	width: 100%;
	height: 100%;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	inset: 0;
	z-index: 999;
	opacity: 0;
	transition: opacity .7s;
}
#manga #popUp.active{
	opacity: 1;
}
#manga #popUp .bg{
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, .5);
}
#manga #popUp .popUpItem{
	padding: 3rem;
	position: absolute;
	z-index: 3;
	border-radius: 1.5rem;
	background-color: var(--colorLightBlue);
}
#manga #popUp .popUpItem #popImg{
	width: auto;
	height: calc(100vh - 10rem);
}
#manga #popUp .popUpItem .close,
#manga #popUp .popUpItem .btnFlex{
	position: absolute;
	z-index: 2;
	font-size: 3rem;
	color: var(--colorBlue);
}
#manga #popUp .popUpItem .close{
	top: 1.5rem;
	right: 1.5rem;
	z-index: 5;
}
#manga #popUp .popUpItem .btnFlex{
	width: 100%;
	margin: auto;
	padding: 0 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	inset: 0;
}
#manga #popUp .popUpItem .close i,
#manga #popUp .popUpItem .btnFlex i{
	position: relative;
	z-index: 1;
}
#manga #popUp .popUpItem .close i:after,
#manga #popUp .popUpItem .btnFlex i:after{
	content: '';
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: 50%;
	background-color: var(--colorWhite);
}
#faq .anchorList{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#faq .anchorList li{
	width: 35rem;
}
#faq .faqDl{
	margin-bottom: 3rem;
}
#faq .faqDl dt{
	padding: 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 1.5rem;
	background-color: var(--colorGray);
	font-weight: bold;
}
#faq .faqDl dt:after{
	content: '\2b';
	margin-left: 1.5rem;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	transition: transform .5s;
}
#faq .faqDl dt.active:after{
	transform: rotate(90deg);
}
#faq .faqDl dd{
	padding: 1.5rem;
}
#faq .faqDl dd .contentsText:last-of-type{
	margin-bottom: 0;
}
#faq .faqDl dd .faqDlList{
	margin-bottom: 2rem;
}
#faq .faqDl dd .faqDlList li{
	margin-bottom: 1rem;
	line-height: 1.25;
}
#faq .faqDl dd .faqDlList li:last-of-type{
	margin-bottom: 0;
}
#faq .faqDl dd .commonBtn{
	max-width: 52.5rem;
	margin: 0 auto 2rem;
}
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
			sp
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */
@media screen and (max-width: 780px){
	#useful .link{
		width: 100%;
	}
	#useful .linkList{
		flex-direction: column;
	}
	#useful .linkList li{
		width: 100%;
		margin-bottom: 2rem;
	}
	#useful .linkList li:last-of-type{
		margin-bottom: 0;
	}
	#advice .largeHeading .new{
		margin-right: 1rem;
		padding: .5rem;
		display: inline-block;
		background-color: var(--colorOrange);
		font-size: 1.2rem;
		color: var(--colorWhite);
		vertical-align: middle;
	}
	#advice .flexBox{
		flex-direction: column;
	}
	#advice .flexBox .imgBox{
		width: 100%;
		max-width: 42rem;
		margin: 0 auto 2rem;
	}
	#advice .flexBox .imgBox iframe{
		height: 20.6rem;
	}
	#advice .flexBox .textBox{
		width: 100%;
	}
	#advice .flexBox.textFlex .textBox{
		width: 100%;
	}
	#advice .textBox.noImg .LinkList{
		flex-direction: column;
	}
	#advice .textBox.noImg .LinkList li{
		width: 100%;
		margin-bottom: 2rem;
		margin-right: 0;
	}
	#advice .textBox.noImg .LinkList li:last-of-type{
		margin-bottom: 0;
	}
	#manga .mangaList li{
		width: calc((100% - 1rem) / 2);
		padding: 1rem;
	}
	#manga .mangaList li:nth-of-type(2n){
		margin-right: 0;
	}
	#manga .mangaList li:nth-last-of-type(-n + 4){
		margin-bottom: 1rem;
	}
	#manga .mangaList li:nth-last-of-type(-n + 2){
		margin-bottom: 0;
	}
	#manga .mangaList li .imgBox{
		width: 3rem;
		margin-right: .5rem;
	}
	#manga .mangaList li .textBox{
		width: calc(100% - 3.5rem);
		font-size: 1.4rem;
	}
	#faq .anchorList{
		flex-direction: column;
	}
	#faq .anchorList li{
		width: 100%;
		margin-bottom: 2rem;
	}
	#faq .anchorList li:last-of-type{
		margin-bottom: 0;
	}
}