﻿@charset "utf-8";
/* 色変更時用CSS */

/* 菱形 */
.diamond {
	color:#D94659 ;
}


/* 小見出し */
.tips {
    border-color:#E1B8BF;
}

.tips::before {
    color:#CD5872;
}

/* 数字小見出し */
.tips_1 {
    font-weight: bold;
    font-size: 103%;
    border-bottom: solid 3px #FFCCDB;
    position: relative;
	padding: 5px 0px 2px 0px;
    line-height: 30px;
}

.tips_1::before {
    content: "1";
	color: white;
	font-size: 1.1em;
	line-height: 26px;
	vertical-align: middle;
	display: inline-block;
	background: #E46997;
	font-weight: bold;
	width: 25px;
	text-align: center;
	height: 25px;
	border: solid 6px white; 
	border-radius: 50%;
	margin-left: -10px; 
}


.tips_2 {
    font-weight: bold;
    font-size: 103%;
    border-bottom: solid 3px #FFCCDB;
    position: relative;
	padding: 5px 0px 2px 0px;
    line-height: 30px;
}

.tips_2::before {
    content: "2";
	color: white;
	font-size: 1.1em;
	line-height: 26px;
	vertical-align: middle;
	display: inline-block;
	background: #E46997;
	font-weight: bold;
	width: 25px;
	text-align: center;
	height: 25px;
	border: solid 6px white; 
	border-radius: 50%;
	margin-left: -10px; 
}

/* 青文字 */
.blue_txt {
    font-weight: bold;
    color: #004DD8;






