#beginner_faq main {
	background-color: #fff;
}
.title_lv1 img {
	vertical-align: middle;
	position: relative;
	top: -1px;
}
.mainvisual img {
	width: 100%;
	height: auto;
}
 
.breadcrumb li a::after,
.breadcrumb li a::before {
	border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 11px solid #fff;
	margin-top: -30px;
}
.breadcrumb li a::before {
	z-index: 1;
	border-left-color: #eee;
}
.AnchorArea {
	position: relative;
	margin: 100px 0;
}
.AnchorArea .copy span {
	position: relative;
}
.AnchorArea .copy span::before {
	position: absolute;
	content: "";
	background: url('../../images/beginner_faq/bg_anchor01.svg') no-repeat;
	background-size: contain;
	width: 130px;
	height: 174px;
	bottom: -50px;
	left: -180px;
}

.AnchorArea .copy span::after {
	position: absolute;
	content: "";
	background: url('../../images/beginner_faq/bg_anchor02.svg') no-repeat;
	background-size: contain;
	width: 130px;
	height: 174px;
	bottom: -50px;
	right: -175px;
}

.AnchorArea .copy {
	font-weight: bold;
	font-size: 3.2rem;
	text-align: center;
}
.AnchorArea nav {
	margin-top: 49px;
}
.AnchorArea nav ul {
	display: flex;
}
.AnchorArea nav ul li {
	width: calc(100% / 3);
	margin-right: 28px;
}

.AnchorArea nav ul li:nth-of-type(3n) {
	margin-right: 0;
}

.AnchorArea nav ul li a {
	position: relative;
	display: block;
	padding: 40px 15px 48px;
	font-weight: bold;
	font-size: 2.2rem;
	color: #000;
	border-radius: 20px;
	background: #fff;
	border: 4px solid #eb131c;
	text-align: center;
}

.AnchorArea nav ul li a:hover {
	opacity: 1;
}
.AnchorArea nav ul li a::after {
	position: absolute;
	content: '\f175';
	font-family: "Font Awesome 6 Pro";
	left: 0;
	bottom: -25px;
	right: 0;
	margin: auto;
	border: 2px solid #EB131C;
	background: #EB131C;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.8rem;
	font-weight: normal;
	border-radius: 50%;
	transition: .5s;
}

.AnchorArea nav ul li:nth-of-type(2) a {
	border: 4px solid #6aa7d4;
}

.AnchorArea nav ul li:nth-of-type(2) a::after {
	background: #6aa7d4;
	border: 2px solid #6aa7d4;
}


.AnchorArea nav ul li:nth-of-type(2) a:hover::after {
	color: #6aa7d4;
}
.AnchorArea nav ul li:nth-of-type(3) a {
	border: 4px solid #559B71;
}

.AnchorArea nav ul li:nth-of-type(3) a::after {
	background: #559B71;
	border: 2px solid #559B71;
}


.AnchorArea nav ul li:nth-of-type(3) a:hover::after {
	color: #559B71;
}
.AnchorArea nav ul li a:hover::after {
	background: #fff;
	color: #EB131C;
}

h2 {
	position: relative;
	font-weight: bold;
	font-size: 4rem;
	text-align: center;
	line-height: 1.3;
	margin-bottom: 45px;
}

h2 span {
	position: relative;
}

h2 > span::before {
	content: "";
	background: url(../../images/beginner_faq/dotted_red.svg) no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
	position: absolute;
	bottom: 0;
  left: -60px;
}

h2 > span::after {
	content: "";
	background: url(../../images/beginner_faq/dotted_red.svg) no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
	position: absolute;
	bottom: 0;
	right: -60px;
	transform: scale(1, -1);
}

.faqBox {
	background: rgba(235, 19, 28, 0.09);
	padding: 50px 0 80px;
	
}

.faqBox .card {
	position: relative;
	display: flex;
	width: 100%;
	background: #fff;
	border: 3px solid #eb131c;
	border-radius: 20px;
	padding: 25px;
}
.faqBox .card + .card {
	margin-top: 30px;
} 
.faqBox .card dt {
	position: relative;
	font-weight: bold;
	font-size: 3.6rem;
	color: #eb131c;
	cursor: pointer;
}
.faqBox .card i {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: -130px;
	width: 110px;
	height: 100%;
	text-align: center;
}

.faqBox .card i img {
	width: 100%;
	height: auto;
}
.faqBox dl {
	width: 100%;
	padding-left: 125px;
}
.faqBox dt:before,
.faqBox dt:after { 
	content: "";
	display: block;
	position: absolute;
	top: 27px;
	right: 17px;
	width: 30px;
	height: 3px;
	margin-top: 0;
	border: 0;
	background-color: #EB131C;
	transition: .3s;
}
.faqBox dt:before {
	transform: rotate(-90deg);
}

.faqBox dt::after { 
	transform: rotate(0);
}

.faqBox dt.is-active:before {
	transform: rotate(0deg);
}

.faqBox dt.is-active:after	{ 
	background-color: transparent;
}


.faqBox .card dd {
	display: none;
	font-size: 2rem;
	margin: 25px 0 15px;
	line-height: 1.7;
	position: relative;
	padding-right: 220px;
}

.faqBox .card dd::after {
	content: "";
	position: absolute;
	background: url(../../images/beginner_faq/operator.svg) no-repeat;
	background-size: contain;
	right: 30px;
	bottom: -54px;
	width: 135px;
	height: 143px;
}

.faqBox .card dd .CheckList li {
	font-size: 2rem;
	font-weight: normal;
}

.faqBox .card dd .disc li {
	list-style-type: disc;
	font-size: 1.8rem;
}

.faqBox .card dd .CheckList li .disc {
	margin-top: 10px;
	padding-left: 3em;
}
.faqBox .card dd .CheckList li .disc li {
	text-indent: 0;
	padding-left: 0;
}
.faqBox .card dd .CheckList li p:not(.notes) {
	margin: 10px 0 0 1.5em;
}
.faqBox .card dd .CheckList::before {
	content: none;
}
.faqBox .card dd i {
	position: relative;
	top: 0;
	left: 0;
	width: auto;
	text-align: left;
	color: #4A8FC1;
	display: inline-block;

}
.notes {
	font-size: 1.6rem;
	text-indent: -1em;
	padding-left: 1em;
}
.faqBox {
	padding: 40px 0;
}
.faqBox .TextLink {
	display: inline-block;
	color: #EB131C;
	text-decoration: underline;
}

#anchor02 h2 > span::before,
#anchor02 h2 > span::after {
	content: "";
	background: url(../../images/beginner_faq/dotted_blue.svg) no-repeat;
	background-size: contain;
}
#anchor02 .faqBox {
	background: #EDF4FA;
}

#anchor02 .faqBox .card {
	border: 3px solid #4A8FC1;
}

#anchor02 .faqBox .card dt {
	color: #4A8FC1;
}

#anchor02 .faqBox dt:before, #anchor02 .faqBox dt:after {
	background: #4A8FC1;
}

#anchor03 h2 > span::before,
#anchor03 h2 > span::after {
	content: "";
	background: url(../../images/beginner_faq/dotted_green.svg) no-repeat;
	background-size: contain;
}

#anchor03 .faqBox {
	background: rgba(116, 174, 139, 0.12);
}

#anchor03 .faqBox .card {
	border: 3px solid #559B71;
}

#anchor03 .faqBox .card dt {
	color: #559B71;
}

#anchor03 .faqBox dt:before, #anchor03 .faqBox dt:after {
	background: #559B71;
}

.afterBox {
	border-radius: 70px;
	background: #fff;
	border: 12px solid #eb131c;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.afterBox h2 > span::after {
	right: -100px;
}

.afterBox .text {
	font-size: 2.4rem;
	position: relative;
}

.afterBox .text::before {
	content: "";
	position: absolute;
	background: url('../../images/beginner_faq/dash.svg') no-repeat;
	background-size: contain;
	width: 244px;
	height: 2px;
	top: 0;
	bottom: 0;
	left: 110px;
	margin: auto;
}


.afterBox .text::after {
	content: "";
	position: absolute;
	background: url('../../images/beginner_faq/dash.svg') no-repeat;
	background-size: contain;
	width: 244px;
	height: 2px;
	top: 0;
	bottom: 0;
	right: 90px;
	margin: auto;
}

.afterBox .copy {
	font-weight: bold;
	font-size: 4.8rem;
	text-align: center;
	color: #eb131c;
	margin-top: 30px;
}
.CheckList {
	position: relative;
}
.CheckList::before {
	position: absolute;
	content: "";
	background: url("../..//images/beginner_faq/i_speech.png") no-repeat;
	background-size: contain;
	width: 168px;
	height: 129px;
	top: -60px;
	left: -180px;
}
.CheckList li {
	font-weight: bold;
	font-size: 2.8rem;
	color: #000;
}
.CheckList li span {
	position: relative;
	z-index: 2;
}
.CheckList li span::after {
	content: "";
	width: 100%;
	height: 0.7em;
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline;
	background: #F9EAE0;
	z-index: -1;
}

.CheckList li em {
	color: #EB131C;
}
.CheckList li + li {
	margin-top: 10px;
}
.CheckList li i {
	font-size: 2rem;
	color: #EB131C;
	margin-right: 10px;
}

.after {
	margin-top: 160px;
	padding-bottom: 100px;
}
.afterBox {
	position: relative;
}
.afterBox::after {
	position: absolute;
	content: "";
	background: url("../../images/beginner_faq/bg_after.svg");
	background-size: contain;
	width: 292px;
	height: 292px;
	bottom: -60px;
	right: 0;
}

.afterBox h2 {
	margin-top: -60px;
	background: #fff;
	width: 640px;
	margin: -103px auto 30px;
}

.afterBox h2 span {
	background: #fff;
}
.afterBox .imgbox {
	position: relative;
	top: 50px;
	left: -12px;
}

.afterBox .imgbox img {
	width: 100%;
	height: auto;
}

.btn a {
	position: relative;
	top: 80px;
  left: -120px;
	width: 570px;
	font-size: 2.4rem;
	padding: 22px 30px !important;
}

.btn_fixed-b {
	display: none;
}

.btn_prev {
	position: fixed;
	right: 0;
	bottom: 35px;
	width: 270px;
	height: 121px;
	z-index: 9;
}
.btn_prev a {
	font-size: 2rem;
	position: relative;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	padding: 0 23px 0 55px;
	height: 100%;
	border-radius: 20px 0px 0px 20px;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	background: #eb131c;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}
.btn_prev a::before {
	content: "\f177";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	display: flex;
	left: 20px;
	font-size: 3rem;
	align-items: center;
	height: 100%;
}
.btn_prev a:hover {
	color: #eb131c;
	background: #fff;
}
.btn_prev span {
	font-weight: bold;
	display: block;
	width: 100%;
	font-size: 2.6rem;	
}


@media (max-width: 767px) {
	.title_lv1 img {
		display: inline-block;
		width: 14px;
		margin-right: 5px;
	}

	h2 {
    font-size: 2.2rem;
    margin-bottom: 45px;
	}

	h2 > span::before {
		content: "";
		background: url(../../images/beginner_faq/dotted_red.svg) no-repeat;
		background-size: contain;
		width: 40px;
		height: 40px;
		position: absolute;
		bottom: -20px;
		left: -40px;
	}

	h2 > span::after {
    content: "";
    background: url(../../images/beginner_faq/dotted_red.svg) no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: -20px;
    right: -40px;
    transform: scale(1, -1);
	}

	.AnchorArea {
    margin: 0 0 50px;
	}
	.AnchorArea .copy {
    font-size: 2rem;
    position: relative;
    top: 25px;
	}

	.AnchorArea .copy span::before {
		position: absolute;
		content: "";
		background: url('../../images/beginner_faq/bg_anchor01_sp.svg') no-repeat;
		background-size: contain;
		width: 84px;
		height: 112px;
    bottom: -30px;
    left: -110px;
	}
	
	.AnchorArea .copy span::after {
		position: absolute;
		content: "";
		background: url('../../images/beginner_faq/bg_anchor02_sp.svg') no-repeat;
		background-size: contain;
		width: 84px;
		height: 112px;
		bottom: -30px;
    right: -75px;
	}
	.AnchorArea nav ul {
    display: block;
	}
	.AnchorArea nav ul li {
    width: 100%;
    margin-right: 0;
	}
	.AnchorArea nav ul li a {
		padding: 15px 15px 15px 30px;
    font-size: 1.6rem;
    text-align: left;
	}
	.AnchorArea nav ul li + li {
		margin-top: 10px;
	}
	.AnchorArea nav ul li a::after {
		top: 0;
		left: auto;
		bottom:0;
		right: 15px;
		width: 30px;
		height: 30px;
	}

	.faqBox .card {
    position: relative;
    padding: 15px;
	}
	.faqBox .card {
		position: relative;
		display: flex;
		width: 100%;
		background: #fff;
		border: 3px solid #eb131c;
		border-radius: 20px;
		padding: 15px 15px 15px 5px;
	}
	.faqBox .card i {
		position: absolute;
    width: 55px;
		left: -20px;
	}
	.faqBox .card + .card {
    margin-top: 20px;
	}
	.faqBox dl {
    width: 100%;
    padding-left: 25px;
	}

	.faqBox .card dt {
    position: relative;
    font-weight: bold;
    font-size: 1.8rem;
    color: #eb131c;
    cursor: pointer;
		padding: 0 25px 0 45px;
		height: auto;
    display: flex;
    align-items: center;
	}
	.faqBox dt:before, .faqBox dt:after {
    top: 50%;
    right: 0;
    width: 18px;
	}
	.faqBox .card dd {
    font-size: 1.4rem;
    margin: 25px 0 0;
    line-height: 1.7;
		padding-right: 0;
	}
	.faqBox .card dd::after {
		content: none;
	}
	.faqBox .card dd .CheckList li {
    font-size: 1.4rem;
    font-weight: normal;
	}
	.faqBox .card dd .CheckList li p:not(.notes) {
		font-size: 1.6rem;
	}
	#anchor02 h2 > span::after,
	#anchor03 h2 > span::after {
    right: -60px;
	}
	.afterBox h2 {
		width: 90%;
    margin: -83px auto 30px;
    padding-bottom: 50px;
	}

	.btn a {
		position: relative;
    top: 0;
    left: 0;
    margin: auto;
    width: 90%;
    font-size: 1.8rem;
    padding: 10px 30px !important;
    line-height: 1.5;
	}
	.after {
    margin-top: 110px;
		padding-bottom: 30px;
	}
	.afterBox {
		border-radius: 40px;
		padding: 0 0 20px;
	}
	.afterBox h2 > span::before {
		left: -100px;
	}
	.afterBox h2 > span::after {
    right: -30px;
	}
	.afterBox .text {
		position: relative;
		z-index: 3;
    font-size: 1.6rem;
		margin-top: -40px;
	}
	.afterBox .text::before,
	.afterBox .text::after {
		content: none;
	}
	.afterBox .imgbox {
    position: relative;
    top: 15px;
    left: 15px;
	}
	.afterBox .copy {
    font-weight: bold;
    font-size: 2.4rem;
    text-align: center;
    color: #eb131c;
    margin-top: 30px;
	}
	.CheckList {
    position: relative;
    width: 100%;
    margin: auto;
	}

	.afterBox .CheckList {
    width: 80%;
	}

	.CheckList::before {
    position: absolute;
    content: "";
    background: url(../..//images/beginner_faq/i_speech.png) no-repeat;
    background-size: contain;
    width: 87px;
    height: 66px;
    top: -75px;
    left: -20px;
	}
	.CheckList li {
    font-size: 1.4rem;
		text-indent: -15px;
		padding-left: 15px;
	}
	.afterBox::after {
    position: absolute;
    content: "";
    background: url(../../images/beginner_faq/bg_after.svg);
    background-size: contain;
    width: 168px;
    height: 168px;
    bottom: 98px;
    right: 20px;
	}

	.notes {
    font-size: 1.4rem;
	}

	.btn_prev {
		position: fixed;
		left: 0;
		border-radius: 0;
		right: auto;
		bottom: 0;
		width: calc(100% - 60px);
		height: 60px;
	}
	.btn_prev a {
		border-radius: 0;
		display: block;
		text-align: center;
		font-size: 1.1rem;
		line-height: 1.3;
		padding: 3px 0;
	}

	.btn_prev a::before {
		font-size: 2rem;
	}
	.btn_prev span {
    font-size: 1.8rem;
	}
}