@charset "UTF-8";

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

	howto_block

-----------------------------------*/
#howto_block {
	padding: 30px 0 43px;
	position: relative;
}
#howto_block .copy {
	width: max-content;
	background: #000;
	color: #FFF;
	font-size: 27px;
	padding: 15px 20px;

	position: absolute;
	top: -3vw;
	left: 50%;
	font-weight: 700;
	transform: translateX(-50%);
}
#howto_block .copy br {
	display: none;
}
#howto_block h1 {
	font-size: 40px;
	width: fit-content;
	margin: 40px auto 60px;
}
@media screen and (max-width: 840px) {
	#howto_block .copy {
		font-size: 21px;
		top: -2vw;
	}
	#howto_block h1 {
		font-size: 32px;
		margin: 50px auto 60px;
	}
}
@media screen and (max-width: 640px) {
	#howto_block {
		padding: 0;
	}
	#howto_block .copy {
		font-size: 15px;
		line-height: 1.8;
		padding: 2px 5px;
		position: relative;
		top: 1vw;
	}
	#howto_block .copy br {
		display: inline;
	}

	#howto_block h1 {
		font-size: 20px;
		font-weight: 900;
		margin: 25px auto 30px;
	}
}
/*-- read --*/
#howto_block .read {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 40px;
}
#howto_block .read .image {
	width: 30.331%;
}
#howto_block .read .text {
	width: 60%;
}
#howto_block .read .text p {
	font-size: 20px;
	white-space: pre-line;
	line-height: 50px;
}
#howto_block .read .text .item01 {
	color: #DB002A;
	font-size: 38px;
	font-family: "Open Sans", sans-serif;
	padding: 0 10px;
}
#howto_block .read .text .item01 span {
	font-size: 24px;
}
#howto_block .read .text .item02 {
	background: linear-gradient(transparent 80%, #F8DD02 80%);
}
@media screen and (max-width: 1100px) {
	#howto_block .read .text {
		width: 65%;
	}
	#howto_block .read .text p br.pc {
		display: none;
	}
}
@media screen and (max-width: 840px) {
	#howto_block .read {
		flex-direction: column;
		justify-content: center;
		gap: 30px;
	}
	#howto_block .read .image {
		width: 330px;
	}
	#howto_block .read .text {
		width: 100%;
	}
}
@media screen and (max-width: 640px) {
	#howto_block .read {
		align-items: center;
		gap: 15px;
		margin-bottom: 30px;
	}
	#howto_block .read .image {
		width: 48.53vw;
	}
	#howto_block .read .text {
		width: min(300px,100%);
	}
	#howto_block .read .text p {
		font-size: 13px;
		line-height: 30px;
	}
	#howto_block .read .text p br.sp {
		display: inline !important;
	}
	#howto_block .read .text .item01 {
		font-size: 24px;
		padding: 0 5px;
	}
	#howto_block .read .text .item01 span {
		font-size: 14px;
	}
}
/*-- box --*/
#howto_block .box {
	display: flex;
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 30px;
}
#howto_block .box > dt {
	width: 22.33%;
	display: grid;
	place-content: center;
	place-items: center;
	gap: 10px;
	font-size: 30px;
}
#howto_block .box02 > dt {
	gap: 16px;
}
#howto_block .box03 > dt {
	gap: 29px;
}
#howto_block .box04 > dt {
	gap: 24px;
}
#howto_block .box > dt::before {
	content: "";
}
#howto_block .box > dd {
	padding: 50px 50px 40px 40px;
	display: flex;
	flex-direction: column;
	gap: 20px 0;
	width: 77.67%;
}
#howto_block .box02 > dd {
	padding: 40px 50px 50px 40px;
}
#howto_block .box03 > dd {
	gap: 25px 0;
}
#howto_block .box > dd > ul.list {
	line-height: 1.5;
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}
#howto_block .box > dd > ul.list > li {
	font-size: 20px;
	padding-left: 45px;
	position: relative;
}
#howto_block .box04 > dd > ul.list:nth-of-type(2) > li {
	margin-top: 5px;
}
#howto_block .box > dd > ul.list > li::before {
	content: "";
	width: 25px;
	height: 25px;
	border-radius: 50%;
	position: absolute;
	top: 2.5px;
	left: 0;
	background-image: url(../img/howto/howto_check.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 19px;
}
#howto_block .box > dd > ul.list li span {
	color: #DB002A;
}
#howto_block .box > dd > dl {
	display: flex;
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
}
#howto_block .box > dd > dl dt {
	width: 26%;
	font-size: 15px;
	display: grid;
	place-content: center;
	place-items: center;
	gap: 5px;
}
#howto_block .box > dd > dl dd {
	width: 74%;
	padding: 25px 10px;
	font-size: 15px;
	font-weight: 500;
}
#howto_block .box > dd > dl dd ul {
	line-height: 2;
}
#howto_block .box > dd > dl.collect_none {
	background: #EFEFEF;
}
#howto_block .box > dd > dl.collect_none dt::before {
	content: "";
	width: 30px;
	height: 31px;
	background: url(../img/howto/howto_not.svg) no-repeat center/contain;
}
#howto_block .box > dd > dl.inner_box {
	background: #FDF2F6;
}
#howto_block .box > dd > dl.inner_box dt {
	color: #EA6DA4;
	place-content: start center;
}
#howto_block .box > dd > dl.inner_box:nth-of-type(1) dt {
	padding-top: 30px;
}
#howto_block .box > dd > dl.inner_box:nth-of-type(2) dt {
	padding-top: 25px;
}
#howto_block .box > dd > dl.inner_box dd ul {
	column-count: 2;
}
@media screen and (max-width: 1100px) {
	#howto_block .box > dt {
		font-size: 26px;
	}
}
@media screen and (max-width: 840px) {
	#howto_block .box {
		flex-direction: column;
	}
	#howto_block .box > dt {
		width: 100%;
		height: 120px;
		grid-auto-flow: column;
	}
	#howto_block .box > dd {
		padding: 30px 40px 40px 40px;
		width: 100%;
	}
	#howto_block .box > dd > dl {
		flex-direction: column;
	}
	#howto_block .box > dd > dl dt {
		width: 100%;
		grid-auto-flow: column;
		place-content: baseline;
		gap: 10px;
		padding: 25px;
	}
	#howto_block .box > dd > dl dd {
		width: 100%;
		padding: 0 25px 25px 25px;
	}
	#howto_block .box > dd > dl.collect_none dd {
		padding-left: 60px;
	}
}
@media screen and (max-width: 640px) {
	#howto_block .box {
		border-radius: 15px;
		margin-bottom: 15px;
	}
	#howto_block .box > dt {
		height: 50px;
		font-size: 15px;
	}
	#howto_block .box01 > dt {
		font-size: 20px;
		padding-top: 10px;
	}
	#howto_block .box02 > dt {
		gap: 19px;
	}
	#howto_block .box03 > dt,
	#howto_block .box04 > dt {
		gap: 15px;
	}
	#howto_block .box > dd {
		padding: 20px 30px 30px 30px;
		gap: 10px 0 !important;
	}
	#howto_block .box01 > dd {
		padding-top: 13px;
	}
	#howto_block .box > dd > ul.list {
		gap: 15px 0;
	}
	#howto_block .box > dd > ul.list > li {
		font-size: 12px;
		padding-left: 22px;
	}
	#howto_block .box > dd > ul.list > li::before {
		width: 15px;
		height: 15px;
		top: 2.5px;
		background-size: 11px;
	}
	#howto_block .box > dd > dl dt {
		font-size: 12px;
		padding: 15px 15px 7px !important;
		place-content: baseline !important;
	}
	#howto_block .box > dd > dl dd {
		padding: 0 15px 15px 15px;
		font-size: 10px;
	}
	#howto_block .box > dd > dl.collect_none dt::before {
		width: 15px;
		height: 16px;
	}
	#howto_block .box > dd > dl.collect_none dd {
		padding-left: 40px;
	}
	#howto_block .box > dd > dl.inner_box dd ul {
		column-count: 1;
	}
}
/*-- box01 --*/
#howto_block .box01 {
	border: 3px solid #DB002A;
}
#howto_block .box01 > dt {
	color: #DB002A;
}
#howto_block .box01 > dt::before {
	width: 58px;
	height: 58px;
	background: url(../img/howto/howto_icon01.svg)no-repeat center/contain;
}
#howto_block .box01 > dd > ul.list > li::before {
	background-color: #DB002A;
}
@media screen and (max-width: 640px) {
	#howto_block .box01 {
		border: 2px solid #DB002A;
	}
	#howto_block .box01 > dt::before {
		width: 30px;
		height: 30px;
	}
}
/*-- box02 --*/
#howto_block .box02 {
	border: 3px solid #00B7ED;
}
#howto_block .box02 > dt {
	background: #E7F9FE;
}
#howto_block .box02 > dt::before {
	width: 78px;
	height: 84px;
	background: url(../img/howto/howto_icon02.svg)no-repeat center/contain;
}
#howto_block .box02 > dd > ul.list > li::before {
	background-color: #00B7ED;
}
@media screen and (max-width: 640px) {
	#howto_block .box02 {
		border: 2px solid #00B7ED;
	}
	#howto_block .box02 > dt::before {
		width: 30px;
		height: 32px;
	}
}
/*-- box03 --*/
#howto_block .box03 {
	border: 3px solid #3DAE36;
}
#howto_block .box03 > dt {
	background: #ECF7EC;
}
#howto_block .box03 > dt::before {
	width: 87px;
	height: 63px;
	background: url(../img/howto/howto_icon03.svg)no-repeat center/contain;
}
#howto_block .box03 > dd > ul.list > li::before {
	 background-color: #3DAE36;
}
#howto_block .box03 > dd > dl.collect_none dd ul {
	column-count: 2;
}
@media screen and (max-width: 640px) {
	#howto_block .box03 {
		border: 2px solid #3DAE36;
	}
	#howto_block .box03 > dt::before {
		width: 35px;
		height: 25px;
	}
	#howto_block .box03 > dd > dl.collect_none dd ul {
		column-count: 1;
	}
}
/*-- box04 --*/
#howto_block .box04 {
	border: 3px solid #EA6DA4;
	margin-bottom: 0;
}
#howto_block .box04 > dt {
	background: #FDF1F7;
}
#howto_block .box04 > dt::before {
	width: 100px;
	height: 86px;
	background: url(../img/howto/howto_icon04.svg)no-repeat center/contain;
}
#howto_block .box04 > dd > ul.list > li::before {
	 background-color: #EA6DA4;
}
#howto_block .box04 > dd > dl.collect_none dd ul {
	column-count: 2;
}
@media screen and (max-width: 640px) {
	#howto_block .box04 {
		border: 2px solid #EA6DA4;
	}
	#howto_block .box04 > dt::before {
		width: 37px;
		height: 32px;
	}
	#howto_block .box04 > dd > dl.collect_none dd ul {
		column-count: 1;
	}
}