@charset "utf-8";
/* CSS Document */


/***全体にかかる設定***/
.max_w1800{max-width: 1800px;}
.width90 {
    width: 90%;
	margin: 0 auto;
}
.howtouse .sec_flex{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row-reverse;
	width: 85%;
    margin: 0 auto;
}

@media screen and (max-width: 750px){
	.howtouse .sec_flex{
		flex-direction: column;
		text-align: center;
		width: 100%;
	}
	.br_pc{display: none;}
}


.howtouse .bg_yellow{background-color: #fdffda;}
img{
	max-width: 100%;
}

/***青背景***/
.howtouse .bg_blue{background-color: #c3f0fa;}
.howtouse .bg_blue .sec_flex{flex-direction: row;}



/***見出し文***/
.howtouse .midashi{
	margin-bottom: 50px;
}
.howtouse .t_m{
	font-size: 24px;
	font-weight: bold;
	line-height: 55px;
	margin-bottom: 50px;
}
@media screen and (max-width: 750px){
	.howtouse .t_m{
		margin: 0 auto;
		display: inline-block;
		text-align: justify;
		text-align: left;
		font-size: 15px;
		line-height: 30px;
		margin-bottom: 30px;
	}
}


/***各カテゴリ***/
.howtouse .howto_list{
	padding: 50px 0;
	text-align: left;
	font-weight: bold;
	margin-bottom: 50px;
	border-radius: 100px;
}
.howtouse .howto_list:last-of-type{
	margin-bottom: 0px;
}
@media screen and (max-width: 900px){
	.howtouse .howto_list .sec_flex{
		flex-direction: column;
		text-align: center;
	}
	.howtouse .howto_list{
		padding: 30px 5%;
		border-radius: 30px;
	}
}

@media screen and (max-width: 900px){
	.howtouse .howto_list_contents .setumei{max-width: 100%;}
}


/***イメージ***/
.howtouse .bg_blue .howto_list_contents .howtoimg{
	margin-right: 5%;
}
.howtouse .howto_list_contents .howtoimg img{
	width: 100%;
	height: auto;
}

@media screen and (max-width: 900px){
	.howtouse .bg_blue .howto_list_contents .howtoimg{
		margin-right: 0;
	}
	.howtouse .howto_list_contents .howtoimg{
		margin-right: 0;
		max-width: 100%;
	}
	.howtouse .howto_list_contents .howtoimg img{
		margin-bottom: 20px;
	}
}


/***見出し***/
.howtouse .howto_list_contents .hukidashi{
	margin-bottom: 30px;
	width: 80%;
}
@media screen and (max-width: 900px){
	.howtouse .howto_list_contents .hukidashi{
		margin-bottom: 20px;
		width: 100%;
	}
}

/***文章***/
.howtouse .howto_list_contents .setumei p{
	margin-bottom: 45px;
	line-height: 50px;
	font-size: 22px;
}
.howtouse .howto_list_contents .setumei p .red{
	color: #e94119;
}
@media screen and (max-width: 900px){
	.howtouse .howto_list_contents .setumei p{
		margin-bottom: 35px;
		text-align: left;
		line-height: 2;
		font-size: 18px;
	}
}

/***確認ボタン***/
.btn{
	width: 370px;
	height: 80px;
	vertical-align: middle;
	color: #000;
	background-color: #fff;
	border-radius: 50px;
    display: flex;                 /* 追加 */
	align-items: center;           /* 縦中央 */
	justify-content: center;       /* 横中央 */
	position: relative;
	border: 3px solid #000;
	transition: .3s ease-in-out;
	font-size: 30px;
	line-height: 1;
	text-decoration: none;
	text-align: center;
    align-content: center;
	-webkit-text-size-adjust: 100%;
}
.btn:hover{transform: scale(1.1,1.1);background-color: #fee300;opacity: 1;}
.btn::after{
	transition: .3s ease-in-out;
	color: #fee300;
	background-color: #000;
	border-radius: 50px;
	position: absolute;
	width: 78px;
	line-height: 78px;
	top: -1px;
    font-size: 22px;
}
.btn_right::after{
	content: "▶";
	right: -1px;
}
@media screen and (max-width: 1020px){
	.btn_right{
		max-width: 370px;
		width: 100%;
		margin: 0 auto;
	}
}


/***キャラクター***/
.howtouse .character{margin-top: 100px;}
@media screen and (max-width: 900px){
	.howtouse .character{margin-top: 50px;}
}