#beginner_guide main {
	background: #fff;
}

.l-container {
	position: relative;
	z-index: 3;
}
.breadcrumb {
	position: relative;
	z-index: 2;
}

.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;
}

.AnchorList {
	position: fixed;
	display: none;
	top: 80px;
	left: 0;
	width: 100%;
	height: 80px;
	background: #f9f2ed;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	z-index: 10;
	opacity: 0.5;
	transition: .5s;
}
.AnchorList.is-active {
	opacity: 1;
}
.AnchorList.is-fixed {
	display: block;
}
.AnchorList nav {
	height: 80px;
}

/* .AnchorList::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: rgba(251, 251, 251, 0.5);
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}

.AnchorList.is-active::after {
	background: rgba(251, 251, 251, 	0);
} */

.AnchorList nav ul {
	width: 1280px;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	height: 100%;
	align-items: center;
}

.AnchorList nav ul li {
	width: calc(100% / 4);
	position: relative;
}
.AnchorList nav ul li::before {
	content: '';
	position: absolute;
	background: #e3cfc2;
	width: 45px;
	height: 5px;
	right: -40px;
	bottom: 8px;
	top: auto;
	margin: auto 0;
	display: block;
	transform: rotate(-65deg);
	-webkit-transform: rotate(-65deg);
	-moz-transform: rotate(-65deg);
	-ms-transform: rotate(-65deg);
	-o-transform: rotate(-65deg);
}
.AnchorList nav ul li:after {
	content: '';
	position: absolute;
	background: #e3cfc2;
	width: 45px;
	height: 5px;
	right: -40px;
	top: -40px;
	bottom: 0;
	margin: auto 0;
	display: block;
	transform: rotate(65deg);
	-webkit-transform: rotate(65deg);
	-moz-transform: rotate(65deg);
	-ms-transform: rotate(65deg);
	-o-transform: rotate(65deg);
}
.AnchorList nav ul li a:hover::after {
	background: #fff;
	color: #EB131C;
}
.AnchorList nav ul li a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 2rem;
	text-align: left;
	color: #74ae8b;
}

.AnchorList nav ul li a:hover {
	opacity: 1;
}
.AnchorList nav ul li a::before {
	content: '';
	width: 60px;
	height: 60px;
	background: #74ae8b;
	opacity: 0.15;
	position: absolute;
	top: 0;
	left: 70px;
	bottom: 0;
	right: 0;
	margin: auto;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.AnchorList nav ul li a::after {
	position: absolute;
	content: '\f175';
	font-family: "Font Awesome 6 Pro";
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
	background: #EB131C;
	border: 2px solid #EB131C;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.8rem;
	font-weight: normal;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: .5s;
}
.AnchorList nav ul li:nth-of-type(2) a {
	color: #6aa7d4;
}
.AnchorList nav ul li:nth-of-type(2) a::before {
	background: #6aa7d4;
	opacity: 0.15;
}
.AnchorList nav ul li:nth-of-type(3) a {
	color: #bc9f24;
}
.AnchorList nav ul li:nth-of-type(3) a::before {
	background: #bc9f24;        
	opacity: 0.15;
}
.AnchorList nav ul li:nth-of-type(4) a {
	color: #f78624;
}
.AnchorList nav ul li:nth-of-type(4) a::before {
	background: #f78624;
	opacity: 0.15;
}

section {
	overflow: hidden;
}

h2 {
	position: relative;
	font-weight: bold;
	font-size: 3.2rem;
	text-align: center;
	line-height: 1.3;
}

h2 span {
	position: relative;
	display: inline-block;
}

h2 > span::before {
	content: "";
	background: url('../../images/beginner_guide/dotted.svg') no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
	position: absolute;
	top: auto;
	bottom: 0;
  left: -60px;
}

h2 > span::after {
	content: "";
	background: url('../../images/beginner_guide/dotted.svg') no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
	position: absolute;
	bottom: 0;
	right: -60px;
	transform: scale(1, -1);
}

h2 .small {
	font-size: 2.4rem;
	display: block;
}

.btn a:hover {
	opacity: 1;
}
.btn .link.-arrow.-r:hover::after {
	color: #eb131c;
}
.mainvisual img {
	width: 100%;
	height: auto;
}
.flow {
	margin-top: 40px;
}

.flow .FlowArea::after {
	content: none;
}
.CheckList > li {
	text-indent: -1em;
	padding-left: 1em;
}
.CheckList > li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Pro";
	color: #6AA7D4;
	font-size: 1.7rem;
	margin-right: 5px;
}

.CheckList > li + li {
	margin-top: 5px;
}
.CheckList > li .disc {
	padding-left: 1em;
}
.CheckList > li .disc li {
	font-size: 1.8rem;
}
.FlowBox {
	margin-top: 30px;
	background: rgba(235, 19, 28, 0.09);
	padding-bottom: 60px;
}

.FlowArea {
	position: relative;
}

.FlowArea .FlowBtn {
	width: 100%;
}
.FlowArea .FlowBtn li {
	position: absolute;
}

.FlowArea .FlowBtn li a {
	display: block;
	height: 100%;
}
.FlowArea .FlowBtn li a:hover {
	opacity: 1;
}
.FlowArea .FlowBtn li a::after {
	position: absolute;
	content: '\f175';
	font-family: "Font Awesome 6 Pro";
	bottom: 0;
	right: 50%;
	background: #EB131C;
	width: 50px;
	height: 50px;
	border: 2px solid #EB131C;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 600;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: .5s;
}

.FlowArea .FlowBtn li a:hover::after {
	background: #fff;
	color: #EB131C;
	border: 2px solid #EB131C;
}
.FlowArea .FlowBtn li.step01 {
	width: 490px;
	height: 360px;
	top: 5px;
	left: 0;
}

.FlowArea .FlowBtn li.step01 a::after {
	bottom: 40px;
	right: 33.4%;
}

.FlowArea .FlowBtn li.step02 {
	width: 490px;
	height: 360px;
	top: 5px;
	right: 22%;
}

.FlowArea .FlowBtn li.step02 a::after {
	bottom: 35px;
	right: 37.4%;
}

.FlowArea .FlowBtn li.step03 {
	width: 445px;
	height: 410px;
	bottom: 14%;
	left: 0;
}

.FlowArea .FlowBtn li.step03 a::after {
	bottom: 8px;
	right: 34.3%;
}
.FlowArea .FlowBtn li.step04 {
	width: 490px;
	height: 340px;
	bottom: 0;
	left: 35%;
}

.FlowArea .FlowBtn li.step04 a::after {
	bottom: -25px;
	right: 49.3%;
}

.TitleArea {
	position: relative;
}

.TitleArea::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	background: #824824;
	bottom: 10.8%;
  left: 98.2%;
}
.TitleArea::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	background: #824824;
	bottom: 10.8%;
	right: 98.2%;
}
.TitleArea .inner {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	z-index: 2;
}

.TitleArea .inner::before {
	content: "";
	position: absolute;
	top: 55px;
	width: 1235px;
	height: 175px;
	border: solid 2px #824824 ;
	border-bottom: 0;
	border-radius: 60px 60px 0 0;
	z-index: 0;
}

.TitleArea h3 {
	margin: 50px 0 0 270px;
	position: relative;
	z-index: 1;
}


.TitleArea h3::before {
	content: "";
	background: url(../../images/beginner_guide/p_speech01.svg) no-repeat;
	position: absolute;
	background-size: contain;
	width: 189px;
	height: 155px;
	top: -77px;
	left: -240px;
}

.TitleArea figure {
	z-index: 2;
	margin-right: 50px;
}

#step01 {
	margin-top: 100px;
	position: relative;
}

#step01::before {
	content: "";
	width: 100%;
	height: 110px;
	position: absolute;
	background: rgba(116, 174, 139 ,0.12);
	bottom: -10px;
	left: 0;
	z-index: 0;
}

#step01::after {
	content: "";
	width: 100%;
	height: 550px;
	position: absolute;
	background: rgba(116, 174, 139 ,0.4);
	bottom: 100px;
	left: 0;
	z-index: 0;
}

.TrickBox {
	border: 3px solid #000;
	border-radius: 20px;
	height: 290px;
	margin-bottom: 50px;
	background: #fff;
}

.TrickBox .title {
	position: relative;
	font-size: 2.3rem;
	top: -30px;
	left: 30px;
	border-radius: 10px;
	background: #000;
	color: #fff;
	padding: 5px 15px;
	display: inline-block;
	transform: rotate(-5deg);
}

.TrickBox .text {
	font-size: 1.9rem;
	padding: 0 0 0 90px
}

.TrickBox .l-row {
	height: 100%;
}
.TrickBox .title {
	font-size: 1.9rem;
}
.TrickBox .textbox {
	display: flex;
	align-items: center;
	height: 100%;
	flex-wrap: wrap;
	position: relative;
}

.TrickBox .btn.-l {
	position: absolute;
	bottom: -30px;
	left: 20%;
}

.TrickBox .btn a:hover {
	opacity: 1;
}

.TrickBox .btn a:hover::after {
	color: #eb131c;
}

.TrickBox .imgbox {
	position: relative;
	top: -45px;
	right: -50px;
}

.TrickBox .imgbox img {
	width: 85%;
	height: auto;
}

.purchase_purpose {
	padding: 30px 0 70px;
	background: rgba(116, 174, 139 ,0.12);
	position: relative;
}
.purchase_purpose h2.astest::before {
	content: "";
	background: url('../../images/beginner_guide/p_astest.svg') no-repeat;
	position: absolute;
	background-size: contain;
	width: 110px;
	height: 100px;
	top: -50px;
	left: 32%;
}

.purchase_purpose .text {
	font-size: 2rem;
	text-align: center;
	font-weight: 500;
}

.PurposeList {
	display: flex;
	flex-wrap: wrap;
	margin-top: 80px;
	align-items: stretch;
}

.PurposeList li {
	width: calc((100% / 4) - 23px);
	margin-right: 30px;
	position: relative;
	height: 100%;
	display: flex;
  flex-direction: column;
}

.PurposeList li:nth-of-type(4n) {
	margin-right: 0;
}

.PurposeList li:nth-of-type(n + 5) {
	margin-top: 60px;
}
.PurposeList dl {
	position: relative;
	left: 0;
	z-index: 0;
	border-radius: 10px;
	background: #fff;
	border: 2px solid #74ae8b;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	padding: 40px 25px 25px;
	margin-top: -40px;
}
.PurposeList dl::before {
	position: absolute;
	content: "";
	width: 70%;
	height: 2px;
	background: #fff;
	top: -2px;
	left: 0;
	right: 0;
	margin: auto;
}

.PurposeList .PurposeList_title {
	font-weight: bold;
	font-size: 2.4rem;
	text-align: center;
	line-height: 1.3;
	color: #74ae8b;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 99;
	margin-bottom: 10px;
	left: 0;
	width: 100%;
}

.PurposeList dd {
	font-size: 1.8rem;
	font-weight: 500;
	text-align: left;
}
.PurposeList dd.text {
	font-size: 1.8rem;
	text-align: left;
	margin-top: 10px;
}
.PurposeList .BtnArea {
	margin-top: 20px;
}

.PurposeList .BtnArea .btn.piece {
	height: 100%;
}
.PurposeList .BtnArea .btn.piece a.PcBtn {
	display: flex;
	justify-content: center;
	align-items: center;
}

.PurposeList .BtnArea .btn.piece a.SpBtn {
	display: none;
}

.PurposeList .BtnArea .btn a {
	background:	#74AE8B;
	padding: 10px 20px !important;
	border: solid 2px #74AE8B;
	height: 100%;text-align: center;
	line-height: 1.5;
	font-size: 1.7rem;
}

.PurposeList .BtnArea .btn.piece a {
	display: flex;
	justify-content: center;
	align-items: center;
}
.PurposeList .BtnArea .btn a:hover {
	background-color: #fff;
	color: #74AE8B;
	opacity: 1;
}

.js-btn {
	width: 400px;
	margin: 35px auto 0;
}

.js-btn a,
.js-toggle a {
	font-size: 2rem;
	line-height: 1.5;
}

.js-btn-more .link::after,
.js-toggle .link::after {
	transform: rotate(90deg);
	top: 10px;
	right: 20px !important;
}

.js-btn-close .link::after,
.js-toggle .link.close::after {
	transform: rotate(-90deg);
	top: -10px;
	right: 20px !important;
}

.faq {
	padding:  116px 0;
}
.FaqCorner {
	position: relative;
	border-radius: 20px;
	background: #fff;
	border: 2px solid #eb131c;
	padding: 60px 0 85px;
}
.FaqCorner::before {
	position: absolute;
	content: "";
	background: url('../../images/beginner_guide/p_faq01.svg') no-repeat;
	width: 297px;
	height: 310px;
	background-size: contain;
	top: -43px;
	left: 20px;
}

.FaqCorner::after {
	position: absolute;
	content: "";
	background: url('../../images/beginner_guide/p_faq02.svg') no-repeat;
	width: 297px;
	height: 310px;
	background-size: contain;
	top: -43px;
	right: 20px;
}
.FaqCorner h3{
	font-weight: bold;
	font-size: 4.2rem;
	text-align: center;
}
.FaqCorner h3 span {
	display: inline-block;
	position: relative;
	z-index: 2;
}
.FaqCorner h3 span::after{
	content: "";
	width: 100%;
	height: 0.5em;
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline;
  background: #F9EAE0;
	z-index: -1;
}
.FaqCorner p {
	width: 100%;
	position: absolute;
	font-weight: bold;
	text-align: center;
	font-size: 2.3rem;
	color: #eb131c;
	top: -20px;
}
.FaqCorner p span{
	display: inline-block;
	padding: 0 0.5em;
	background: #fff;
}
.FaqCorner .btn {
	position: absolute;
	width: 570px;
	left: 0;
	bottom: -30px;
	right: 0;
	margin: auto;
	font-size: 2.4rem;
}

.FaqCorner .btn a {
	padding: 22px 10px;
}

.FormBox {
	position: relative;
	border-radius: 20px;
	background: #fff;
	padding: 35px;
	border: 2px solid #eb131c;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	margin-bottom: 50px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
}

.FormBox .copy {
	font-weight: bold;
	font-size: 42px;
	text-align: center;
	margin-bottom: 40px;
}

.FormBox .copy span {
	position: relative;
	z-index: 2;
}

.FormBox .copy span::after {
	content: "";
	width: 100%;
	height: 0.7em;
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline;
	background: #F9EAE0;
	z-index: -1;
}

.FormBox .copy em {
	color: #EB131C;
}
.FormBox .imgbox img {
	width: 100%;
	height: auto;
}

.FormBox .btn.-l {
	position: absolute;
	bottom: -30px;
	left: 18%;
}
.FlowArea {
	position: relative;
}

.FlowArea + .FlowArea {
	margin-top: 140px;
}
.FlowArea::after {
	content: "";
	background: url("../../images/beginner_guide/i_arrow.svg") no-repeat;
	background-size: contain;
	width: 222px;
	height: 122px;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: -116px;
}

.FlowArea h2 {
	font-size: 5rem;
}
.FlowArea h2 > span {
	padding: 0 40px 20px;
	position: relative;
}
.FlowArea h2 > span::before {
	content: none;
}

.FlowArea h2 > span::after {
	background: #6AA7D4;
	width: 100%;
	height: 10px;
	left: 0;
	right: auto;
	border-radius: 25px;
	z-index: 5;
	bottom: -7px;
}

.FlowArea .card {
	position: relative;
	border-radius: 10px;
	background: #fff;
	border: 2px solid #6aa7d4;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	padding: 60px 60px 30px;
}
.FlowArea .card + .card {
	margin-top: 100px;
}


.FlowArea .card .text {
	font-size: 2.4rem;
}

.PointBox {
	margin-top: 55px;
	position: relative;
	border-radius: 20px;
	background: #ddecf7;
	font-weight: 500;
	font-size: 2.2rem;
	padding: 50px 55px 35px;
}

.PointBox.operator {
	margin-bottom: 70px;
}
.PointBox.operator::after  {
	content: "";
	position: absolute;
	background: url('../../images/beginner_guide/i_operator.svg') no-repeat;
	background-size: contain;
	width: 254px;
	height: 290px;
	top: -70px;
  right: 0;
}
.PointBox label {
	position: absolute;
	color: #6aa7d4;
	font-style: normal;
	font-size: 3.6rem;
	top: -32px;
  left: 20px;
	font-family: 'Sedgwick Ave', cursive;
	border-bottom: 4px double #6aa7d4;
	transform: rotate(-5deg);
}

.itembox.more {
	position: relative;
}

.itembox.more {
	margin-top: 90px;
}
.itembox.more .PointBox {
	margin-top: 0;
}
.itembox.more .imgbox {
	position: absolute;
	top: 20px;
	right: 0;
}
.itembox.more .imgbox img {
	width: auto;
	height: auto;
}

.FlowArea .js-btn {
	margin: 15px auto 0;
}

#step02 {
	margin-top: 50px;
	padding-top: 50px;
	position: relative;
}
.BgItem {
	position: relative;
	z-index: 1;
}

.BgItem::before {
	content: "";
	width: 100%;
	height: calc(100% - 210px);
	position: absolute;
	background: #EDF4FA;
	top: 150px;
	left: 0;
	z-index: 0;
}

#step02 .TitleArea h3::before {
	content: "";
	background: url(../../images/beginner_guide/p_speech02.svg) no-repeat;
	background-size: contain;
}


.js-toggle {
	width: 450px;
	margin: 35px auto 0;
}
.toggle .title {
	text-align: center;
}
.toggle .title .loupe {
	font-weight: bold;
	font-size: 3.2rem;
	color: #000;
	text-align: center;
	position: relative;
}
.title span {
	position: relative;
}


.title span.decoration::before {
	content: "";
	position: absolute;
	left: -350px;
	top: 0;
	bottom: 0;
	margin: auto;
	background: url("../../images/beginner_guide/i_decoration.png") no-repeat;
	width: 182px;
	height: 17px;
	background-size: contain;
}

.title span.decoration::after {
	content: "";
	position: absolute;
	right: -190px;
	top: 0;
	bottom: 0;
	margin: auto;
	background: url(../../images/beginner_guide/i_decoration.png) no-repeat;
	width: 182px;
	height: 17px;
	background-size: contain;
	transform: scale(-1, 1);
}


.title span.loupe::before {
	content: "";
	position: absolute;
	left: -160px;
	top: 0;
	bottom: 0;
	background: url("../../images/beginner_guide/i_loupe.svg") no-repeat;
	width: 80px;
	height: 96px;
	background-size: contain;
}
.tab_wrap {
	margin-top: 35px;
}
.tab_wrap input[type="radio"]{
	display:none;
}

.tab_area {
	display: flex;
	justify-content: center;
}

.tab_area label {
	position: relative;
	width: 400px;
	display: inline-block;
	padding: 20px;
	color:#6AA7D4;
	background:#EDF4FA;
	text-align: center;
	font-size: 3rem;
	cursor: pointer;
	border-radius: 20px 20px 0px 0px;
	margin-right: 30px;
}

.tab_area label::after {
	content: '';
	position: absolute;
	top: 43%;
	right: 50px;
	width: 16px;
	height: 16px;
	margin-top: -5px;
	border-top: 2px solid #6AA7D4;
	border-right: 2px solid #6AA7D4;
	transform: rotate(135deg);              
}

.tab_area label:last-of-type {
	margin-right: 0;
}

.tab_area label:hover{opacity:0.5;}
.tab_panel {
	position: relative;
	background:#DDECF7;
	border-radius: 20px;
	padding: 45px;
}
.tab_panel{
	width: 100%; 
	display: none;
}

#tab1:checked ~ .tab_area .tab1_label{
	background:#6AA7D4;
	color:#fff;
}
#tab1:checked ~ .tab_area .tab1_label::after{
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

#panel2.tab_panel::before {
	background: #3CB9BA;
}
#tab2:checked ~ .tab_area .tab2_label {
	background:#3CB9BA;
	color:#fff;
}
#tab2:checked ~ .tab_area .tab2_label::after{
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
#tab1:checked ~ .panel_area #panel1,
#tab2:checked ~ .panel_area #panel2 {
	display: block;
}

#tab2:checked ~ .panel_area #panel2 {
	background: #E4FAFB;
}

.PointList {
	counter-reset: my-counter;
}
.PointList li {
	position: relative;
}
.PointList li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #fff;
  border: 3px solid #6AA7D4;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  color: #6AA7D4;
  font-size: 3.2rem;
  position: absolute;
  top: 0;
	bottom: 0;
  left: 0;
	margin: auto;
	font-family: 'Sedgwick Ave', cursive;
  padding-top: 7px;
	z-index: 3;
}

.PointList li + li {
	margin-top: 20px;
}
.PointList li a {
	display: block;
	position: relative;
	border-radius: 25px;
	background: #6aa7d4;
	color: #fff;
	font-size: 2rem;
	font-weight: 600;
	padding: 10px;
	text-align: center;
	transition: .5s;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s;
}
.PointList li a:hover {
	opacity: 0.7;
}
.PointList li a::after {
	position: absolute;
	content:' \f002';
	font-family: "Font Awesome 6 Pro";
	width: 20px;
	height: 30px;
	top: 0;
	bottom: 0;
	right: 25px;
	font-weight: normal;
	margin: auto;
}

.panel_area{
	position: relative;
}

#panel2 .PointList li a {
	background: #3CB9BA;
}

#panel2 .PointList li:before {
	border: 3px solid #3CB9BA;
	color: #3CB9BA;
}

.iziModal-overlay {
	background-color: rgba(251, 251, 251, 0.8) !important;
}
.js-modal {
	border-radius: 10px !important;
}

.iziModal {
	max-height: 90%;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	border-radius: 3px !important;
	box-sizing: border-box;
	-webkit-border-radius: 3px !important;
	-moz-border-radius: 3px !important;
	-ms-border-radius: 3px !important;
	-o-border-radius: 3px !important;
}

.modal_inner {
	position: relative;
	padding: 75px;
	overflow: hidden;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
}

.modals-view02.view .modal_inner {
	border-radius: 10px 10px 0 10px;
	-webkit-border-radius: 10px 10px 0 10px;
	-moz-border-radius: 10px 10px 0 10px;
	-ms-border-radius: 10px 10px 0 10px;
	-o-border-radius: 10px 10px 0 10px;
}
.modal_inner .close {
	position: fixed;
	top: 15px;
	right: 25px;
	font-size: 4rem;
	color: #999999;
	cursor: pointer;
	z-index: 99;
}

.modal_inner .izimodal-close {
	display: none;
}

.modal-open .modal_inner .izimodal-close {
	display: block;
}

.modal_inner p {
	line-height: 1.7;
}

.modal_inner dt {
	display: flex;
	font-weight: bold;
	font-size: 2.7rem;
	margin-bottom: 30px;
}
.modal_inner dt span {
	display: flex;
	padding-top: 5px;
	margin-right: 10px;
	justify-content: center;
	align-items: center;
	font-family: 'Sedgwick Ave', cursive;
	width: 45px;
	height: 45px;
	background: #fff;
	color: #6AA7D4;
	border: 4px solid #6AA7D4;
	border-radius: 50%;
	font-weight: normal;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.modal_inner dt p {
	width: calc(100% - 45px);
}
.modal_inner dd dt {
	font-size: 1.6rem;
	margin-bottom: 10px;
	color: #BC9F24;
	display: flex;
	align-items: center;
}

.modal_inner dd {
	font-size: 1.8rem;
}
.modal_inner dd dt i {
	margin-right: 5px;
}
.modal_inner dd dl {
	padding-top: 20px;
	border-top: solid 1px #BC9F24;
}

.modal_inner dd dl:first-of-type {
	margin-top: 20px;
}
.modal_inner dd dl + dl {
	margin-top: 30px;
}
.modal_inner figure {
	margin-bottom: 20px;
}

.interior .modal_inner dt span {
	color: #3CB9BA;
	border: 4px solid #3CB9BA;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Sedgwick Ave', cursive;
	margin-right: 10px;
}

#step03 {
	margin-top: 110px;
	position: relative;
}

#step03 .BgItem::before {
	background: rgba(188, 159, 36, 0.15);
}


#step03 .TitleArea h3::before {
	content: "";
	background: url(../../images/beginner_guide/p_speech03.svg) no-repeat;
	background-size: contain;
}

#step03 .FlowArea .card {
	border: 2px solid #BC9F24;
}
#step03 .FlowArea h2 > span::after {
	background: #BC9F24;
}

#step03 .PointBox label {
	color: #BC9F24;
	border-bottom: 4px double #BC9F24;
}

#step03 .PointBox {	
	background: #EFE9CD;
}

#step03 .ViewBox {	
	background: #efe9cd;
	border-radius: 20px;
	padding: 45px;
}

#step03 .PurchaseConditions h3 {
	position: relative;
	text-align: center;
	font-size: 3.2rem;
	font-weight: bold;
	top: -30px;
}

#step03 .PurchaseConditions h3::before {
	content: "";
	position: relative;
	display: inline-block;
	background: url('../../images/beginner_guide/i_viewbox_decoration.png') no-repeat;
	background-size: contain;
	width: 276px;
	height: 17px;
	margin-right: 30px;
}

#step03 .PurchaseConditions h3::after {
	content: "";
	position: relative;
	display: inline-block;
	background: url('../../images/beginner_guide/i_viewbox_decoration.png')no-repeat;
	background-size: contain;
	width: 276px;
	height: 17px;
	transform: scale(-1, 1);
	margin-left: 30px;
}

#step03 .PointList li a {
	background: #BC9F24;
}

#step03 .PointList li:before {
	border: 3px solid #BC9F24;
	color: #BC9F24;
}

.view .modal_inner dt span {
	color: #BC9F24;
	border: 4px solid #BC9F24;
}

.view .modal_inner img {
	width: 50%;
	height: auto;
	display: block;
	margin: auto;
}
.view .modal_inner dd {
	font-size: 1.8rem;
}
.notes {
	font-size: 1.4rem;
	text-indent: -1rem;
	padding-left: 1em;
}

#step04  {
	margin-top: 110px;
	position: relative;
}

#step04 .provision img {
 width: 90%;
 height: auto;
}

#step04 .BgItem::before {
	background: #FEF2E8;
	top: 50px;
    height: calc(100% - 100px);
}

#step04 .TitleArea h3::before {
	content: "";
	background: url(../../images/beginner_guide/p_speech04.svg) no-repeat;
	background-size: contain;
}

#step04 .FlowArea .card {
	border: 2px solid #F78624;
	padding: 40px 60px 30px;
}

#step04 h2.dotted {
	position: relative;
	font-weight: bold;
	font-size: 4rem;
	text-align: center;
	line-height: 1.3;
}

#step04 h2.dotted span {
	position: relative;
	padding: 0;
}

#step04 h2.dotted > span::before {
	content: "";
	background: url('../../images/beginner_guide/dotted_orange.svg')  no-repeat transparent !important;
	background-size: contain;
	width: 55px;
	height: 55px;
	position: absolute;
	bottom: -10px;
	left: -80px;
}
#step04 h2.dotted > span::after {
	content: "";
	background: url('../../images/beginner_guide/dotted_orange.svg')  no-repeat transparent !important;
	background-size: contain;
	width: 55px !important;
	height: 55px !important;
	position: absolute;
	bottom: -10px;
	left: auto !important;
	border-radius: 0;
	right: -80px;
	transform: scale(1, -1);
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}
.PreparationBox {
	border-radius: 20px;
	background: #feedde;
	padding: 55px 35px 35px;
	position: relative;
}
.PreparationBox + .PreparationBox {
	margin-top: 120px;
}
.PreparationBox::after {
	position: absolute;
	content: "";
	background: url("../../images/beginner_guide/i_arrow_orange.svg") no-repeat;
	background-size: contain;
	width: 115px;
	height: 61px;
	bottom: -61px;
	left: 0;
	right: 0;
	margin: auto;
}

.PreparationBox:last-of-type:after {
	content: none;
}
.Agreement h3 {
	font-weight: bold;
	font-size: 3.2rem;
	text-align: center;
	position: relative;
	top: 20px;
	z-index: 4;
}
.Agreement h3 span {
	position: relative;
}

.Agreement h3 span::before {
	position: relative;
	display: inline-block;
	content: "";
	background: url(../../images/beginner_guide/i_decoration_orange.png) no-repeat;
	background-size: contain;
	width: 276px;
	height: 17px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 50px auto 0;
}

.Agreement h3 span.long::before {
	position: relative;
	display: inline-block;
	content: "";
	background: url(../../images/beginner_guide/i_decoration_orange_s.png) no-repeat;
	background-size: contain;
	width: 250px;
	height: 17px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 25px auto 0;
}

.Agreement h3 span::after {
	position: relative;
	display: inline-block;
	content: "";
	background: url(../../images/beginner_guide/i_decoration_orange.png) no-repeat;
	background-size: contain;
	width: 276px;
	height: 17px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0 auto 50px;
	transform: scale(-1, 1);
	-webkit-transform: scale(-1, 1);
	-moz-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
}
.Agreement h3 span.long::after {
	position: relative;
	display: inline-block;
	content: "";
	background: url(../../images/beginner_guide/i_decoration_orange.png) no-repeat;
	background-size: contain;
	width: 250px;
	height: 17px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0 auto 25px;
	transform: scale(-1, 1);
}

.PreparationBox .textbox {
	font-size: 2.2rem;
}

.t-red {
	color: #EB131C;
}

.PreparationBox .CheckList > li::before {
	color: #F78624;
}
.AgreementList {
	justify-content: center;
}
.AgreementList > * {
	width: 64%;
	padding: 0 20px;
	position: relative;
	border-radius: 10px;
}

.AgreementList .AgreementBox {
	display: flex;
	background: #fff;
	padding: 20px 25px;
}

.AgreementList .AgreementBox > *:first-of-type {
	padding-right: 20px;
	margin-right: 20px;
	border-right: 1px dashed #F78624;
}

.AgreementList > *:last-of-type,
.AgreementList > *:nth-of-type(2) {
	border: 0;
}

.AgreementList > *:last-of-type {
	padding: 20px 25px;
	background: #fff;
	width: 33%;
	margin: 0 0 0 auto;
}
.AgreementList > *:last-of-type::after {
	position: absolute;
	content: "";
	background: url(../../images/beginner_guide/i_plus.svg) no-repeat;
	background-size: contain;
	width: 63px;
	height: 63px;
	top: 0;
	bottom: 0;
	left: -50px;
	margin: auto;
}

.AgreementList .CheckList {
	font-weight: 500;
	font-size: 2rem;
}

.AgreementList .notes {
	font-weight: 500;
}

.AgreementList dt {
	background: #FEF2E8;
	font-weight: bold;
	font-size: 2rem;
	text-align: center;
	padding: 5px 10px;
	margin-bottom: 20px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

#step04 .FlowArea::after {
	content: "";
	background: url(../../images/beginner_guide/i_arrow_dark-orange.svg) no-repeat;
	background-size: contain;
}

#step04 .FlowArea h2 > span {
	position: relative;
}

#step04 .FlowArea h2 > span::after {
	background: #F78624;
}

#step04 .PointBox label {
	color: #F78624;
	border-bottom: 4px double #F78624;
}

#step04 .PointBox {
	background: #FEEDDE;
}

.DealerBox {
	width: 955px;
	margin: 0 auto;
}

.DealerBox .box {
	position: relative;
	display: flex;
	align-items: center;
	background: #fff;
	border: 5px solid #f78624;
	border-radius: 50%;
	width: 100%;
	height: 100%;
	padding: 80px 35px 50px;
}
.DealerBox .box figure {
	position: absolute;
	top: -50px;
	left: 50%;
	margin-left: -70px;
}
.DealerBox .box p {
	font-weight: bold;
	font-size: 2.4rem;
	text-align: center;
	color: #f78624;
}

.InsuranceBox {
	border-radius: 20px;
	background: #eee;
}

.InsuranceBox dl {
	display: flex;
	align-items: center;
	padding: 30px 50px;
}
.InsuranceBox dt {
	font-weight: bold;
	font-size: 2rem;
	width: 12em;
}

.InsuranceBox dd {
	width: calc(100% - 12em);
}

.InsuranceBox dd img {
	width: 100%;
	height: auto;
}

.maintenance {
	margin-top: 120px !important;
	position: relative;
	margin-bottom: 100px;
}

.maintenance::after {
	content: "";
	position: absolute;
	bottom: -100px;
	left: 0;
	right: 0;
	margin: auto;
	background: url(../../images/beginner_guide/i_arrow_dark-orange-s.png) no-repeat;
	background-size: contain;
	width: 154px;
	height: 105px;

}
.maintenance .card {
	background: #005da1;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	width: 1008px;
	margin: 0 auto;
	border: 0 !important;
	border-radius: 20px;
}

.maintenance .sub {
	font-weight: bold;
	font-size: 2.3rem;
	color: #fff;
	text-align: center;
}
.maintenance .lead { 
	font-weight: bold;
	font-size: 4.2rem;
	text-align: center;
	color: #fff;
}
.maintenance .lead span{
	position: relative;
	z-index: 2;
}
.maintenance .lead span::after {
	content: "";
	width: 100%;
	height: 0.7em;
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline;
	background: #0A0A56;
	z-index: -1;
}

.maintenance .btn a {
	background: #fff;
	padding: 22px !important;
	font-size: 2.4rem;
	width: 470px;
	margin: 30px auto;
	border: solid 2px #fff;
	color: #eb131c;
}

.maintenance .btn .link.-arrow.-r::after {
	color: #eb131c;
}

.maintenance .btn a:hover {
	border: solid 2px #eb131c;
	color: #fff;
	background: #eb131c ;
}

.maintenance .btn .link.-arrow.-r:hover::after {
	color: #fff;
}

.FlowArea.insurance::after {
	width: 115px;
	background: #f78624 !important;
	box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
	bottom: -122px;

}

#goal {
	overflow: initial;
}

#goal .BgItem::before {
	height: calc(100% - 80px);
	background: #fee9ea;
	top: 40px;
}
.GoalArea {
	border-radius: 20px;
	background: #fff;
	border: 2px solid #eb131c;
	padding: 30px;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	height: 250px;
	position: relative;
}

.GoalArea::after {
	content: "";
	position: absolute;
	background: url("../../images/beginner_guide/i_operator02.svg") no-repeat;
	background-size: contain;
	width: 249px;
	height: 307px;
	bottom: -30px;
	right: 20px;
}

.GoalArea .imgbox {
	position: absolute;
	left: 0;
	z-index: 3;
	top: -35%;
}

.GoalArea .imgbox img {
	width: 100%;
	height: auto;
}

.GoalArea .textbox {
	margin: 30px 0 0 100px;
	height: 100%;
}
.GoalArea .textbox .lead {
	font-size: 3.6rem;
	font-weight: bold;
	text-align: center;
}
.GoalArea .textbox .lead span {
	color: #EB131C;
}

.afterBox {
	border-radius: 70px;
	background: #fff;
	border: 12px solid #eb131c;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.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;
}
.after .CheckList {
	position: relative;
}
.after .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;
}
.after .CheckList li {
	font-weight: bold;
	font-size: 2.8rem;
	color: #000;
}

.after .CheckList li::before {
	content: none;
}

.after .CheckList li span {
	position: relative;
	z-index: 2;
}
.after .CheckList li span::after {
	content: "";
	width: 100%;
	height: 0.7em;
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline;
	background: #F9EAE0;
	z-index: -1;
}

.after .CheckList li em {
	color: #EB131C;
}
.after .CheckList li + li {
	margin-top: 10px;
}
.after .CheckList li i {
	font-size: 2rem;
	color: #EB131C;
	margin-right: 10px;
}

.after {
	margin-top: 160px;
	padding-bottom: 100px;
}
.afterBox {
	position: relative;
	margin-top: 100px;
}
.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 {
	background: #fff;
	width: 640px;
	margin: -60px auto 30px;
}

.afterBox h2 span {
	background: #fff;
}
.afterBox h2 > span::before {
	left: -30px;
	bottom: -5px;
}

.afterBox .imgbox {
	position: relative;
	top: 50px;
	left: -12px;
}

.afterBox .imgbox img {
	width: 100%;
	height: auto;
}

.after .btn a {
	position: relative;
	top: 80px;
  left: -30px;
	width: 570px;
	font-size: 2.4rem;
	padding: 22px 30px !important;
}

.other {
	position: relative;
}
.other::after {
	content: "";
	width: 100%;
	height: 530px;
	position: absolute;
	background: rgba(116, 174, 139 ,0.4);
	bottom: 100px;
	left: 0;
	z-index: 0;
}

.modals-maintenance .copy {
	font-weight: bold;
	font-size: 2.4rem;
	text-align: center;
	color: #eb131c;
}

.modals-maintenance .copy span {
	position: relative;
	z-index: 2;
}
.modals-maintenance .copy span::after {
	content: "";
	width: 100%;
	height: 0.9em;
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline;
	background: #F9EAE0;
	z-index: -1;
}

.modals-maintenance .strong {
	position: relative;
	border-radius: 20px;
	background: #eee;
	padding: 0 45px 45px;
	margin: 60px 0 100px;
}
.modals-maintenance .strong dl {
	position: relative;
	top: -20px;
}
.modals-maintenance .strong dt {
	display: block;
	text-align: center;
	position: relative;
	text-align: center;
}

.modals-maintenance .strong dt::before {
	content: "";
	background: url('../../images/beginner_guide/i_modal_decoration.png') no-repeat;
	background-size: contain;
	width: 183px;
	height: 17px;
	position: absolute;
	top: 12px;
	left: -20px;
	bottom: 0;
	margin: 0;
}

.modals-maintenance .strong dt::after {
	content: "";
	background: url('../../images/beginner_guide/i_modal_decoration.png') no-repeat;
	background-size: contain;
	width: 183px;
	height: 17px;
	position: absolute;
	top: 12px;
	right: -20px;
	bottom: 0;
	margin: 0;
	transform: scale(-1, 1);
	-webkit-transform: scale(-1, 1);
	-moz-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
}

.modals-maintenance .strong dd {
	position: relative;
	left: -85px;
	font-weight: 600;
}

.modals-maintenance .CheckList {
	font-size: 2rem;
}

.modals-maintenance .CheckList > li::before {
	color: #EB131C;
}

.modals-maintenance .imgbox {
	width: 298px;
	position: absolute;
	bottom: -120px;
	right: 25px;
}

.modals-maintenance .all  {
	border-radius: 20px;
	background: #eee;
	padding: 0 45px 45px;
	margin: 150px 0 100px;
}

.modals-maintenance .all dl {
	position: relative;
	top: -20px;
}

.modals-maintenance .all dt {
	display: block;
	text-align: center;
	position: relative;
}
.modals-maintenance .all dt span {
	display: block;
	font-size: 1.8rem;
	font-weight: 500;
	color: #000;
	width: auto;
	height: auto;
	border: 0;
	background: transparent;
	margin-right: 0;

}

.modals-maintenance .all dt::before {
	content: "";
	background: url('../../images/beginner_guide/i_modal_decoration_blue.png') no-repeat;
	background-size: contain;
	width: 183px;
	height: 17px;
	position: absolute;
	top: 12px;
	left: -20px;
	bottom: 0;
	margin: 0;
}

.modals-maintenance .all dt::after {
	content: "";
	background: url('../../images/beginner_guide/i_modal_decoration_blue.png') no-repeat;
	background-size: contain;
	width: 183px;
	height: 17px;
	position: absolute;
	top: 12px;
	right: -20px;
	bottom: 0;
	margin: 0;
	transform: scale(-1, 1);
	-webkit-transform: scale(-1, 1);
	-moz-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
}

.modals-maintenance .all dd dl {
	border-top: 0;
}

.modals-maintenance .all dd dl + dl {
	border-top: 1px dotted #707070;
}

.modals-maintenance .all dd dl dt {
	text-align: left;
	color: #4A8FC1;
}

.modals-maintenance .all dd dl dt::before,
.modals-maintenance .all dd dl dt::after {
	content: none;
}

.modals-maintenance .all dd dl dd {
	text-align: left;
	color: #000;
	font-size: 1.8rem;
	font-weight: bold;
	padding-left: 20px;
}

.modals-maintenance .all .CheckList {
	display: flex;
	flex-wrap: wrap;
}

.modals-maintenance .all .CheckList > li {
	width: calc(100% / 2);
}

.modals-maintenance .all .CheckList > li + li {
	margin-top: 0;
}
.modals-maintenance .all .CheckList > li::before {
	color: #4A8FC1;
}

.modals-maintenance .vehicle_maintenance {
	border-radius: 20px;
	background: #eee;
	padding: 0 45px 45px;
	margin: 120px 0 0;
}

.modals-maintenance .vehicle_maintenance dl {
	position: relative;
	top: -20px;
	border-top: 0;
}

.modals-maintenance .vehicle_maintenance dt {
	display: block;
	text-align: center;
	position: relative;
}


.modals-maintenance .vehicle_maintenance dt::before {
	content: "";
	background: url('../../images/beginner_guide/i_modal_decoration_green.png') no-repeat;
	background-size: contain;
	width: 183px;
	height: 17px;
	position: absolute;
	top: 12px;
	left: -20px;
	bottom: 0;
	margin: 0;
}

.modals-maintenance .vehicle_maintenance dt::after {
	content: "";
	background: url('../../images/beginner_guide/i_modal_decoration_green.png') no-repeat;
	background-size: contain;
	width: 183px;
	height: 17px;
	position: absolute;
	top: 12px;
	right: -20px;
	bottom: 0;
	margin: 0;
	transform: scale(-1, 1);
	-webkit-transform: scale(-1, 1);
	-moz-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
}

.modals-maintenance .vehicle_maintenance .CheckList {
	display: flex;
	flex-wrap: wrap;
}

.modals-maintenance .vehicle_maintenance .CheckList > li + li {
	margin-top: 0;
}
.modals-maintenance .vehicle_maintenance .CheckList > li::before {
	color: #559B71;
}
.modals-maintenance .vehicle_maintenance dd dl dt::before,
.modals-maintenance .vehicle_maintenance dd dl dt::after {
	content: none;
}

.modals-maintenance .vehicle_maintenance dd dl dt {
	text-align: left;
	color: #559B71;
}
.modals-maintenance .vehicle_maintenance dd dl + dl {
	border-top: 1px dotted #707070;
}

.modals-maintenance .vehicle_maintenance .CheckList > li {
	width: calc(100% / 2);
}

.modals-maintenance .vehicle_maintenance dd dl dd {
	text-align: left;
	color: #000;
	font-size: 1.8rem;
	font-weight: bold;
	padding-left: 20px;
}
.modals-view02.view.iziModal {
	height: 90%;
}

.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 65px;
	height: 100%;
	border-radius: 20px 0px 0px 50px;
	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;
	-webkit-border-radius: 20px 0px 0px 20px;
	-moz-border-radius: 20px 0px 0px 20px;
	-ms-border-radius: 20px 0px 0px 20px;
	-o-border-radius: 20px 0px 0px 20px;
}
.btn_prev a::before {
	content: "\f178";
	font-family: "Font Awesome 6 Pro";
	position: absolute;
	display: flex;
	right: 10px;
	font-size: 2.6rem;
	align-items: center;
	height: 100%;
}

.btn_prev a::after {
	content: "";
	background: url('../../images/beginner_guide/i_faq.png');
	width: 40px;
	height: 65px;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 15px;
	bottom: 0;
	margin: auto;
}

.btn_prev a:hover::after {
	content: "";
	background: url('../../images/beginner_guide/i_faq_red.png');
	width: 40px;
	height: 65px;
	background-size: contain;
}

.btn_prev a:hover {
	color: #eb131c;
	background: #fff;
}
.btn_prev span {
	font-weight: bold;
	display: block;
	width: 100%;
	font-size: 2.6rem;	
}

.js-modal-maintenance {
	height: 90% !important;
	border-radius: 3px !important;
	-webkit-border-radius: 3px !important;
	-moz-border-radius: 3px !important;
	-ms-border-radius: 3px !important;
	-o-border-radius: 3px !important;
}

@media (max-width: 767px) {
	h2 {
		font-size: 2.2rem;
		line-height: 1.5;
		position: relative;
	}
	h2 .small {
    font-size: 1.4rem;
		font-weight: normal;
	}

	h2 > span::after {
		right: -50px;
	}

	.l-container {
    width: 100%;
    padding: 0 25px;
	}

	.mainvisual {
		margin-top: 20px;
	}

	.FlowBox {
		padding: 15px 0;
	}

	.FlowBox img {
		width: 100%;
		height: auto;
	}

	.FlowArea .FlowBtn li a::after {
    width: 20px;
    height: 20px;
		font-size: 1rem;
	}
	.FlowArea .FlowBtn li.step01 {
		width: 83%;
    height: 90px;
    top: 18px;
    left: 31px;
	}
	
	.FlowArea .FlowBtn li.step01 a::after {
		bottom: 30px;
    right: 15px;
	}
	
	.FlowArea .FlowBtn li.step02 {
		width: 83%;
    height: 100px;
		top: 16%;
    right: 9%;
	}
	
	.FlowArea .FlowBtn li.step02 a::after {
		bottom: 23px;
    right: 43.4%;
	}
	
	.FlowArea .FlowBtn li.step03 {
		width: 85%;
		height: 100px;
    bottom: 44%;
    left: 7%;
	}
	
	.FlowArea .FlowBtn li.step03 a::after {
		bottom: 8px;
    right: -8px;
	}
	.FlowArea .FlowBtn li.step04 {
		width: 86%;
    height: 95px;
    bottom: 27%;
    left: 7%;
	}
	
	.FlowArea .FlowBtn li.step04 a::after {
		bottom: 20px;
    right: 41.3%;
	}
	.AnchorList {
    height: 45px;
	}
	.AnchorList nav {
    height: 45px;
	}
	.AnchorList nav ul {
    width: auto;
	}

	.AnchorList nav ul li:after {
    content: '';
    position: absolute;
    background: #e3cfc2;
    width: 40px;
    height: 2px;
    right: -18px;
	}
	.AnchorList nav ul li::before {
    content: '';
    position: absolute;
    background: #e3cfc2;
		width: 25px;
    height: 2px;
    right: -14px;
    bottom: 4px;
	}

	.AnchorList nav ul li:last-of-type::before,
	.AnchorList nav ul li:last-of-type::after {
		content: none;
	}

	.AnchorList nav ul li a {
		font-size: 1rem;
	}
	.AnchorList nav ul li a::before {
    content: '';
    width: 27px;
    height: 27px;
		left: 20px;
	}

	.AnchorList nav ul li a span {
		position: relative;
		top: -10px;
    left: 5px;
    z-index: -1;
	}
	.AnchorList nav ul li a img {
		width: 22px;
		height: auto;
	}

	.AnchorList nav ul li a::after {
		content: none;
	}
	#step01 {
    margin-top: 0;
		padding-top: 35px;
    position: relative;
	}	

	#step01::before {
    bottom: 20px;
	}
	#step01::after {
		height: 155vw;
	}
	.TitleArea::before {
    left: 97.2%;
    top: 83px;
    bottom: auto;
	}
	.TitleArea {
    margin-bottom: 20px;
	}
	.TitleArea::after {
    right: 97.2%;
    top: 83px;
    bottom: auto;
	}

	.TitleArea .inner {
		padding: 0 20px;
	}
	.TitleArea .inner::before {
    content: "";
    position: absolute;
    top: 0;
    width: 95%;
    height: 85px;
    border: solid 2px #824824;
    border-bottom: 0;
    border-radius: 30px 30px 0 0;
    z-index: -1;
    left: 0;
    right: 0;
    margin: auto;
	}

	.TitleArea h3 {
		text-align: left;
		margin: 25px 0 0 10px;
	}

	.TitleArea h3::before {
    content: "";
    background: url(../../images/beginner_guide/p_speech01.svg) no-repeat;
    position: absolute;
    background-size: contain;
    width: 69px;
    height: 55px;
    top: -53px;
		left: -25px;
	}

	.TitleArea h3 img {
		width: 60%;
    height: auto;
	}

	.TitleArea figure {
    margin: 0;
    position: absolute;
    width: 50%;
    bottom: -20px;
    right: 0;
	}

	.TitleArea figure img {
    width: 80%;
    display: block;
    margin: 0 -10px 0 auto;
	}
	.TrickBox {
		height: auto;
		padding-bottom: 40px;
		position: relative;
	}
	.TrickBox .text {
    font-size: 1.4rem;
    padding: 0 20px;
		line-height: 2;
	}

	.TrickBox .imgbox {
    position: relative;
    top: 0;
    right: 0;
		padding: 20px;
	}

	.TrickBox .imgbox img {
		display: block;
    width: 85%;
		height: auto;
		margin: 0 auto;
	}
	.TrickBox .btn.-l {
    bottom: -30px;
		left: 15px;
		width: 90%;
		line-height: 1.5;
	}
	.TrickBox .btn.-l a {
		padding: 5px 30px !important;
	}

	.purchase_purpose {
		margin-top: -20px;
		padding: 0 0 40px;
    background: rgba(116, 174, 139 ,0.12);
    position: relative;
	}

	.purchase_purpose .text {
    font-size: 1.6rem;
    font-weight: normal;
	}
	.PurposeList {
    margin-top: 20px;
	}
	.PurposeList li {
    width: calc((100% / 2) - 5px);
    margin-right: 10px;
	}
	.PurposeList li:nth-of-type(2n) { 
		margin-right: 0;
	}

	.PurposeList li:nth-of-type(n + 3) { 
		margin-top: 30px;
	}
	.PurposeList .BtnArea {
    margin-top: 15px;
	}
	.PurposeList dl {
		margin-top: -28px;
		padding: 30px 10px 25px;
	}
	.PurposeList dl::before {
    top: -2px;
		width: 90%;
	}

	.PurposeList .PurposeList_title {
    font-size: 1.4rem;
	}

	.PurposeList dd.text {
    font-size: 1.2rem;
	}

	.PurposeList dd img {
		width: 100%;
		height: auto;
	}

	.PurposeList .BtnArea .btn a {
    padding: 10px 5px!important;
		border-radius: 10px;
		font-size: 1.4rem;
	}

	.PurposeList .BtnArea .btn.piece a.PcBtn {
		display: none;
	}
	
	.PurposeList .BtnArea .btn.piece a.SpBtn {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.PurposeList .BtnArea .btn a span {
		display: none;
	}
	.js-btn {
    width: 90%;
    margin: 35px auto 0;
	}
	.js-btn a,
	.js-toggle a {
    font-size: 1.8rem;
	}
	.js-toggle a:hover {
    background-color: #eb131c;
    color: #fff;
    box-shadow: none;
	}

	.js-toggle .link.-arrow.-r:hover::after {
    color: #fff;
	}

	.faq {
    padding: 50px 0;
	}

	.FaqCorner {
    position: relative;
    border: 2px solid #eb131c;
		padding: 20px 0 40px;
}
	.FaqCorner p {
    font-size: 1.6rem;
		top: -15px;
	}
	.FaqCorner p span {
    padding: 0 1em;
	}

	.FaqCorner h3 {
    font-size: 2.4rem;
	}

	.FaqCorner h3 span {
    padding: 0 0.2em;
	}

	.FaqCorner h3 span::after {
    content: "";
    height: 1em;
	}
	.FaqCorner::before {
    position: absolute;
    content: "";
    background: url(../../images/beginner_guide/p_faq01.svg) no-repeat;
    width: 90px;
    height: 100px;
    background-size: contain;
    top: 15px;
    left: 5px;
	}
	.FaqCorner::after {
    background: url(../../images/beginner_guide/p_faq02.svg) no-repeat;
    width: 90px;
    height: 100px;
    background-size: contain;
    top: 15px;
    right: 5px;
	}
	.FaqCorner .btn {
    position: absolute;
    width: 90%;
    left: 0;
    bottom: -30px;
    right: 0;
    margin: auto;
    font-size: 1.8rem;
	}
	.purchase_purpose h2.astest::before {
    content: "";
    background: url(../../images/beginner_guide/p_astest.svg) no-repeat;
    position: absolute;
    background-size: contain;
    width: 70px;
    height: 58px;
    top: -30px;
    left: 3%;
	}
	.other h2 > span::before {
		left: -20px;
	}
	.other h2 > span::after {
    right: -10px;
	}
	.other::after {
		height: 440px;
	}
	.other .FormBox .imgbox img {
		width: 60%;
    margin: auto;
    display: block;
	}
	.FormBox {
    padding: 15px;
	}
	.FormBox .copy {
    font-size: 18px;
		margin-bottom: 20px;
	}
	.FormBox .imgbox {
		margin-bottom: 50px;
	}

	.FormBox .btn.-l {
    position: absolute;
    bottom: -40px;
    left: 0;
		right: 0;
		margin: auto;
		width: 90%;
		line-height: 1.3;
	}
	.FlowArea::after {
    content: "";
    background: url(../../images/beginner_guide/i_arrow.svg) no-repeat;
    background-size: contain;
    width: 90px;
    height: 49px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -46px;
	}
	.FlowArea + .FlowArea {
    margin-top: 60px;
	}
	.FlowArea h2 {
    font-size: 2.8rem;
	}
	.FlowArea h2 > span {
    padding: 0 30px 20px;
	}
	.FlowArea .card {
    position: relative;
		overflow: hidden;
    padding: 35px 20px 40px;
	}
	.FlowArea .js-btn {
    margin: 30px auto 0;
}
	.FlowArea .card .text {
    font-size: 1.6rem;
	}

	#step04 .FlowArea h2 > span::after {
    background: #F78624;
    width: 70vw;
    left: 0;
		right: 0;
		margin: auto;
	}

	.DealerBox {
    width: 100%;
    margin: 0 auto;
	}

	.DealerBox .box {
		border-radius: 20px;
		background: #fff;
		border: 3px solid #f78624;
    padding: 10px;
	}

	.DealerBox .box figure {
    position: relative;
    top: 0;
    left: 0;
    margin-left: 0;
		width: 32%;
	}

	.DealerBox .box figure img {
		width: 90%;
		height: auto;
	}

	.DealerBox .box p {
    font-size: 1.6rem;
		width: 100%;
	}

	.InsuranceBox dl {
    display: block;
    align-items: center;
    padding: 30px 20px;
	}

	.InsuranceBox dt {
		font-size: 1.6rem;
		text-align: center;
		width: 100%;
		margin-bottom: 10px;
	}
	.InsuranceBox dd {
		width: 100%;
	}

	.InsuranceBox dd img {
    width: 70%;
    height: auto;
		display: block;
		margin: 0 auto;
	}
	.PointBox {
    margin-top: 35px;
    border-radius: 10px;
    font-size: 1.4rem;
    padding: 30px 25px 20px;
	}
	.PointBox label {
    font-size: 2rem;
		top: -20px;
    left: 20px;
	}
	.PointBox p {
    line-height: 1.5;
	}
	.PointBox.operator p {
		padding-right: 100px;
		margin-top: 0 !important;
	}
	.itembox.more {
    margin-top: 50px;
	}
	.itembox.more .imgbox {
    position: relative;
    top: 0;
    right: 0;
		margin-top: 20px;
	}
	.PointBox.operator {
    margin-bottom: 0;
	}
	.PointBox.operator::after {
    content: "";
    position: absolute;
    background: url(../../images/beginner_guide/i_operator.svg) no-repeat;
    background-size: contain;
    width: 121px;
    height: 138px;
    top: auto;
		bottom: -20px;
    right: 0;
	}
	.toggle .title .loupe {
    font-size: 2rem;
		padding-left: 20px;
	}
	.title span.loupe::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 20px;
    bottom: 0;
    background: url(../../images/beginner_guide/i_loupe.svg) no-repeat;
    width: 44px;
    height: 52px;
    background-size: contain;
	}
	.title span.decoration::before {
		content: "";
		position: absolute;
		left: -15px;
		top: auto;
		bottom: -25px;
		margin: auto;
		background: url(../../images/beginner_guide/i_decoration.png) no-repeat;
		width: 182px;
		height: 17px;
		background-size: contain;
	}
	.title span.decoration::after {
    content: "";
    position: absolute;
    right: -50px;
    top: auto;
		bottom: -25px;
    margin: auto;
    background: url(../../images/beginner_guide/i_decoration.png) no-repeat;
    width: 182px;
    height: 17px;
    background-size: contain;
    transform: scale(-1, 1);
	}

	.tab_area label {
		width: 37%;
    display: inline-block;
    padding: 20px 10px;
    color: #6AA7D4;
    background: #EDF4FA;
    text-align: center;
    font-size: 1.4rem;
		margin-right: 10px;
	}
	.tab_area label::after {
		content: '';
    position: absolute;
    top: auto;
    bottom: 5px;
		left: 0;
		margin: auto;
    right: 0;
    width: 8px;
    height: 8px;
    margin-top: -5px;
    border-top: 2px solid #6AA7D4;
    border-right: 2px solid #6AA7D4;
    transform: rotate(135deg);
	}                  
	.tab_panel {
		position: relative;
		border-radius: 0;
		width: 115%;
		left: -20px;
		padding: 0 20px;
	}

	.tab_panel::before {
		content: "";
		background: #000;
		position: absolute;
		width: 20px;
		height: 100%;
		top: 0;
		left: 0;
	}

	.tab_panel img {
		width: 90%;
		display: block;
		margin: auto;
	}
	.PointList li + li {
    margin-top: 10px;
	}
	.PointList li a {
    font-size: 1.2rem;
	}
	.PointList li a::after {
    right: 10px;
		height: 15px;
	 }
	.PointList li:before {
    height: 32px;
    width: 32px;
		font-size: 1.5rem;
		left: -10px;
		padding-top: 3px;
	}
	.js-toggle {
    width: 100%;
    margin: 20px auto 0;
	}
	.js-modal {
    width: 95% !important;
	}
	.modal_inner .close {
    top: 10px;
    right: 20px;
    font-size: 2rem;
	}

	.modal_inner {
    padding: 40px 20px 25px;
		background: transparent;
		border-bottom: 0;
	}

	.modal_inner dt {
    font-size: 2rem;
		margin-bottom: 15px;
	}
	.modal_inner > dt {
    font-size: 2rem;
    margin-bottom: 20px;
	}
	.modal_inner dt span {
		font-size: 1.4rem;
    width: 35px;
    height: 35px;
		padding-top: 0px;
	}

	.modal_inner dd {
		font-size: 1.6rem;
	}
	.view.iziModal {
		height: 90%;
	}
	#step03 {
    margin-top: 30px;
    padding-top: 20px;
	}

	#step03 .ViewBox {
		width: 114%;
    background: #efe9cd;
    border-radius: 0;
    padding: 20px 20px 30px;
		position: relative;
		left: -20px;
		z-index: 10;
		margin-top: -20px;
	}

	#step03 .PurchaseConditions h3 {
		font-size: 2rem;
		width: 100%;
		left: 0;
		z-index: 99;
	}

	#step03 .PurchaseConditions h3::before {
		position: absolute;
		bottom: -20px;
		left: 10px;
		width: 220px;
	}

	#step03 .PurchaseConditions h3::after {
		position: absolute;
		bottom: -20px;
		right: 10px;
    width: 220px;
	}
	#step03 .ViewBox img {
		width: 90%;
		display: block;
		margin: auto;
	}

	#step04 {
    margin-top: 25px;
    padding-top: 20px;
	}

	#step04 h2.dotted {
		font-size: 2.2rem;
	}
	#step04 h2.dotted > span::before {
		left: -40px;
	}
	#step04 h2.dotted > span::after {
		right: -40px;
	}
	#step04 .toggle.Agreement .js-toggle {
    margin: 20px auto 0;
  } 

	#step04 .FlowArea .card {
		padding: 35px 20px 20px;
	}
	.maintenance {
    margin-top: 50px !important;
	}

	.maintenance .card {
    width: auto;
	}

	.maintenance img {
		width: 70%;
		display: block;
		margin: 0 auto;
	}
	.maintenance .sub {
			font-size: 1.4rem;
	}
	.maintenance .lead {
    font-size: 2rem;
	}
	.maintenance .btn a {
    padding: 20px !important;
    font-size: 1.5rem;
    width: auto;
	}
	.FlowArea.maintenance .card {
    position: relative;
    overflow: hidden;
    padding: 35px 20px 0 !important;
	}
	.FlowArea.insurance::after {
    width: 76px;
    background: #f78624 !important;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    bottom: -49px;
	}

	.GoalArea .imgbox {
		text-align: center;
	}
	.GoalArea .imgbox img {
    width: 65%;
    height: auto;
		margin: 0 auto;
	}
	#goal {
    margin-top: 60px;
	}
	#goal .BgItem::before {
    height: calc(100% - -20px);
    background: #fee9ea;
    top: 40px;
	}
	.GoalArea .textbox {
    margin: 90px 0 0 0;
    height: 100%;
	}
	.GoalArea .textbox .lead {
    font-size: 2.2rem;
		margin-top: 10px;
	}
	.GoalArea::after {
    width: 108px;
    height: 134px;
    bottom: -40px;
		left: 0;
    right: 0;
		margin: auto;
	}

	.GoalArea {
    border-radius: 20px;
    background: #fff;
    border: 2px solid #eb131c;
    padding: 20px 10px 100px;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
    height: auto;
    position: relative;
	}

	
	.afterBox h2 {
		width: 90%;
    margin: -83px auto 30px;
    padding-bottom: 50px;
		font-size: 2rem;
	}

	.after .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: 70px;
		padding-bottom: 20px;
	}
	.afterBox {
		border-radius: 40px;
		padding: 0 0 20px;
	}

	.afterBox h2 > span::after {
    right: -30px;
    bottom: -15px;
	}
	.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;
	}
	.after .CheckList {
    position: relative;
    width: 80%;
    margin: auto;
	}
	.after .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;
	}
	.after .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: 118px;
    height: 118px;
    bottom: 98px;
    right: 20px;
	}

	.afterBox h2 > span::before {
    left: -30px;
    bottom: -15px;
	}
	.PreparationBox {
		margin-top: 5px;
		padding: 35px 15px 15px;
	}
	.Agreement h3 {
    font-size: 2rem;
    text-align: center;
	}
	.PreparationBox:nth-of-type(2) {
		margin-top: 5px;
		padding: 90px 15px 15px;
	}
	.PreparationBox:nth-of-type(2) h3 {
		top: -70px;
	}
	.Agreement h3 span {
		display: block;
		width: 100%;
	}
	.Agreement h3 span::before {
    content: none;
	}
	.Agreement h3 span.long::before,
	.Agreement h3 span.long::after {
    content: none;
	}

	.Agreement h3 span::after,
	.Agreement h3 span.long::after {
    position: relative;
    display: inline-block;
    content: "";
    background: url('../../images/beginner_guide/i_preparation.png') no-repeat;
    background-size: contain;
    width: 90%;
    height: 17px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
	
	}
	.PreparationBox .textbox {
    font-size: 1.4rem;
	}
	.AgreementList {
		margin-top: -70px;
	}
	.AgreementList > * {
    width: 100%;
    padding: 0 10px 25px;
		margin-bottom: 25px;
    border-bottom: 0;
    border-right: 0;
	}

	.AgreementList .AgreementBox {
    display: block;
		padding: 20px 15px;
	}
	.AgreementList .AgreementBox > * + * {
		margin-top: 20px;
	}
	.AgreementList .AgreementBox > *:first-of-type {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
	}
	.AgreementList > *:nth-of-type(2)::after {
    position: absolute;
    content: "";
    background: url(../../images/beginner_guide/i_plus.svg) no-repeat;
    background-size: contain;
    width: 34px;
    height: 34px;
    top: -45px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: auto;
	}
	.AgreementList > *:last-of-type {
		margin: 30px 0 0;
    border-bottom: 0;
		width: 100%;

	}
	.AgreementList .CheckList {
    font-size: 1.4rem;
	}

	.AgreementList dt {
		border-radius: 10px;
		margin-bottom: 10px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		-ms-border-radius: 10px;
		-o-border-radius: 10px;
		font-size: 1.6rem;
	}

	.CheckList > li .disc li {
    font-size: 1.4rem;
	}

	.view .modal_inner dd {
    font-size: 1.6rem;
	}
	.modals-maintenance .copy {
    font-weight: bold;
    font-size: 1.6rem;
    text-align: center;
    color: #eb131c;
	}
	.modals-maintenance .strong dt {
		font-size: 2rem;
    line-height: 1.3;
		position: absolute;
		width: 100%;
		top: -60px;
		left: 0;
	}
	.modals-maintenance .strong {
    margin: 100px 0 100px;
		padding: 0 0 50px;
		background: transparent;
	}

	.modals-maintenance .strong dl {
		border-radius: 20px;
		background: #eee;
	}
	.modals-maintenance .strong dt::before {
    content: "";
    background: url(../../images/beginner_guide/i_modal_decoration.png) no-repeat;
    background-size: contain;
    width: 183px;
    height: 17px;
    position: absolute;
    top: auto;
		left: 0;
    bottom: -20px;
    margin: 0;
	}
	.modals-maintenance .strong dt::after {
    content: "";
    background: url(../../images/beginner_guide/i_modal_decoration.png) no-repeat;
    background-size: contain;
    width: 183px;
    height: 17px;
    position: absolute;
    top: auto;
		right: 0;
    bottom: -20px;
    margin: 0;
    transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
	}
	.modals-maintenance .strong dd {
    position: relative;
    left: 0;
    font-weight: 600;
		padding: 10px 20px 60px;
	}

	.modals-maintenance .strong .img img {
		width: 70%;
		height: auto;
		display: block;
		margin: 0 auto;
	}
	.modals-maintenance .strong .imgbox {
		margin-top: -30px;
	}
	.modals-maintenance .CheckList {
    font-size: 1.4rem;
	}

	.modals-maintenance .imgbox {
    width: 80%;
    position: absolute;
		bottom: 10px;
    right: 30px;
	}

	.modals-maintenance .all {
		margin: 0 0 60px;
		padding: 10px 0 0;
		height: auto;
		background: transparent;
	}
	.modals-maintenance .all dl {
    position: relative;
    top: -55px;
		background: #eee;
		border-radius: 20px;
	}
	.modals-maintenance .all dt::before {
    content: "";
    background: url(../../images/beginner_guide/i_modal_decoration_blue.png) no-repeat;
    background-size: contain;
    width: 183px;
    height: 17px;
    position: absolute;
    top: auto;
    left: 0;
    bottom: -20px;
    margin: 0;
		z-index: 2;
	}

	.modals-maintenance .all dt {
    font-size: 2rem;
    line-height: 1.3;
		position: absolute;
    width: 100%;
    top: -55px;
    left: 0;
	}

	.modals-maintenance .all dt span {
    display: block;
    font-size: 1.4rem;
    font-weight: normal;
}

	.modals-maintenance .all dt::after {
    content: "";
    background: url(../../images/beginner_guide/i_modal_decoration_blue.png) no-repeat;
    background-size: contain;
    width: 183px;
    height: 17px;
    position: absolute;
    top: auto;
    right: 0;
    bottom: -20px;
    margin: 0;
    transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
		z-index: 2;
	}

	.modals-maintenance .all dd {
		padding: 25px 20px 10px;
	}

	.modals-maintenance .all dd dl dt {
		font-size: 1.6rem;
		top: 0;
	}
	.modals-maintenance .all dd dd {
	}
	.modals-maintenance .all .CheckList {
		display: block;
	}
	.modals-maintenance .all .CheckList > li {
    width: 100%;
	}

	.modals-maintenance .all dd dl {
    border-top: 0;
		top: 0;
	}

	.modals-maintenance .all dd dl + dl {
		margin-top: 10px;
		border-radius: 0;
	}

	.modals-maintenance .all dd dl + dl dt {
		padding-top: 10px;
	}
	.modals-maintenance .all dd dl dd {
    padding: 10px;
	}
	.modal_inner dd dl:first-of-type {
    top: 0;
		margin-top: 0;
	}
	
	.modals-maintenance .vehicle_maintenance dl {
    position: relative;
    top: -40px;
    border-top: 0;
		border-radius: 20px;
		background: #eee;
	}
	.modals-maintenance .vehicle_maintenance dt {
		font-size: 2rem;
    line-height: 1.3;
		position: absolute;
    width: 100%;
    top: -40px;
    left: 0;
	}	
	.modals-maintenance .vehicle_maintenance dt::before {
		content: "";
		background: url(../../images/beginner_guide/i_modal_decoration_green.png) no-repeat;
		background-size: contain;
		width: 183px;
		height: 17px;
		position: absolute;
		top: auto;
		left: 0;
		bottom: -25px;
		margin: 0;
	}
	.modals-maintenance .vehicle_maintenance dt::after {
		content: "";
		background: url(../../images/beginner_guide/i_modal_decoration_green.png) no-repeat;
		background-size: contain;
		width: 183px;
		height: 17px;
		position: absolute;
		top: auto;
		right: 0;
		bottom: -25px;
		margin: 0;
		transform: scale(-1, 1);
		-webkit-transform: scale(-1, 1);
		-moz-transform: scale(-1, 1);
		-ms-transform: scale(-1, 1);
		-o-transform: scale(-1, 1);
	}
	.modals-maintenance .vehicle_maintenance {
    margin: 0;
    padding: 0 0 20px;
		height: auto;
		background: transparent;
	}
	.modals-maintenance .vehicle_maintenance dl dd{
		padding: 25px 20px 10px;
	}

	.modals-maintenance .vehicle_maintenance dd dl {
		top: 0;
	}
	
	.modals-maintenance .vehicle_maintenance dd dl + dl {
		border-radius: 0;
    margin-top: 10px;
	}

	.modals-maintenance .vehicle_maintenance dd dl + dl dt {
		padding-top: 10px;
	}

	.modals-maintenance .vehicle_maintenance dd dl dt {
		top: 0;
		font-size: 1.6rem;
	}
	.modals-maintenance .vehicle_maintenances dd dl dd {
    padding-left: 10px;
	}
	.modals-maintenance .vehicle_maintenance dd dl dd {
		font-size: 1.4rem;
		padding: 10px;
	}
	.modals-maintenance .vehicle_maintenance .CheckList > li {
		width: 100%;
	}

	.btn_prev a figure {
		width: 40px;
    position: relative;
    top: 10px;
	}

	.btn_prev {
		position: fixed;
		left: 0;
		border-radius: 0;
		right: auto;
		bottom: 0;
		width: calc(100% - 60px);
		height: 60px;
		z-index: 3;
	}
	.btn_prev a {
		border-radius: 0;
		display: flex;
		text-align: center;
		font-size: 1.1rem;
		line-height: 1.3;
		padding: 3px 0;
	}
	.btn_prev a::before {
    content: "\f177";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    display: flex;
    right: 20px;
    font-size: 3rem;
    align-items: center;
    height: 100%;
		transform: scale(-1, 1);
	}

	.btn_prev a::before {
		font-size: 2rem;
	}
	.btn_prev span {
    font-size: 1.8rem;
	}

	.btn_prev a figure {
		padding: 5px;
	}
	.btn_prev a figure img {
    height: 70%;
	}

	.BgItem::before {
    content: "";
    width: 100%;
    height: calc(100% - 160px);
    position: absolute;
    background: #EDF4FA;
    top: 110px;
    left: 0;
    z-index: 0;
	}
	#step02 {
    margin-top: 20px;
    padding-top: 20px;
	}

	#step02 .WithCar .u-img-100  {
		width: 50%;
	}

	#step02 .WithCar .CheckList > li + li {
		margin-top: 0;
	}
	#step02 .card.WebReserve {
		padding: 35px 0 40px;
	}
	#step02 .card.WebReserve .inner {
		padding: 0 20px 30px;
	}

	#step02 .WebReserve .js-toggle {
		width: 90%;
	}
	.btn_prev a::after {
    content: "";
    background: url('../../images/beginner_guide/i_faq.png') no-repeat;
    background-size: contain;
    width: 30px;
    height: 45px;
	}
	.btn_prev a:hover::after {
    content: "";
    background: url('../../images/beginner_guide/i_faq_red.png') no-repeat;
    width: 30px;
    height: 45px;
    background-size: contain;
	}
	.js-modal-maintenance {
    width: 95% !important;
    max-height: 97% !important;
    height: 97% !important;
		overflow: hidden;
	}

	.itembox.more .imgbox img {
    width: 80%;
    height: auto;
		display: block;
		margin: 0 auto;
	}

	.iziModal {
		border: 0;
		border-radius: 3px !important;
		-webkit-border-radius: 3px !important;
		-moz-border-radius: 3px !important;
		-ms-border-radius: 3px !important;
		-o-border-radius: 3px !important;
	}
	.modals-view02.view.iziModal {
		width: 95% !important;
    max-height: 97% !important;
	}
	.modals-view03.view.iziModal {
		width: 95% !important;
    max-height: 97% !important;
	}
	.modals-view04.view.iziModal {
		width: 95% !important;
    max-height: 97% !important;
	}

	.modals-view02.view.iziModal {
		width: 95% !important;
    max-height: 97% !important;
	}

	.modals-exterior04.iziModal {
		width: 95% !important;
    max-height: 97% !important;
	}

	.modals-exterior05.iziModal {
		width: 95% !important;
    max-height: 97% !important;
	}

	.modals-interior01.interior.iziModal {
		width: 95% !important;
    max-height: 97% !important;
	}

	.modals-interior05.interior.iziModal {
		width: 95% !important;
    max-height: 97% !important;
	}

	.interior.iziModal {
    border: 0;
	}

	.view.iziModal {
    border: 0;
	}

	.interior .modal_inner {
    border-bottom: 0;
	}
	.u-img-sm-70 {
		width: 70% !important;
	}
	.u-img-sm-50 {
		width: 50% !important;
	}

	.u-img-sm-45 {
    width: 45% !important;
	}
}