@charset "utf-8";

/*===============================================
●smart.css  画面の横幅が768pxまで
===============================================*/
@media screen and (max-width:768px){
img{
max-width: 100%;
height: auto;
width /***/:auto;　
}

/* common */
/*-------------------------------------------------------- */
* {
	margin: 0px;
	padding: 0px;
}
body {
	font-family: Meiryo, 'MS PGothic', helvetica, osaka, sans-serif;
	font-size: 14px;
	line-height: 160%;
	margin: 0px;
	padding: 0px;
	color: #333333;
	background-image: url(images/bg.jpg);
	background-repeat: repeat;
}
h1, h2, h3, h4, h5, h6, h7 {
	margin: 0px;
	padding: 0px;
}
p, ul, ol, dl, table, div, form, input, select {
	margin: 0px;
	padding: 0px;
}
a img {
	border: 0px;
}
a:link,
a:visited,
a:active {
	color:#FF3366;
	text-decoration:none;
}
a:hover {
	color:#FFACAC;
	text-decoration:none;
}
.clear {
	clear:both;
}


/* container */
/*-------------------------------------------------------- */
#container {
	width: 100%;
	text-align: center;
	background-color: #FFFFFF;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

/* header */
/*-------------------------------------------------------- */
#header {
	display: none;
}
#sp-header {
	width: 100%;
	height: 90px;
	position: fixed; /* ヘッダーを固定(これが重要) */
	top: 0; /* 固定する位置 */
	left: 0; /* 固定する位置 */
	right: 0;  /* 固定する位置 */
	background-color: #998A8A;
    z-index: 3;
}
#sp-header_in {
	padding-right: 5px;
	padding-left: 5px;
}
#sp-h-logo {
	float: left;
	width: 125px;
	padding-top: 15px;
}
#sp-h-info {
	float: right;
	width: 205px;
}
#sp-h-info_n {
	float: right;
	width: 120px;
}
#sp-h-info1 {
	float: left;
	width: 120px;
	padding-right: 5px;
	padding-top: 15px;
}
#sp-h-info2 {
	float: left;
	width: 80px;
	padding-top: 15px;
}
/* 新スマホ用ヘッダー */
#sh-header {
	width: 100%;
	height: 90px;
	position: fixed; /* ヘッダーを固定(これが重要) */
	top: 0; /* 固定する位置 */
	left: 0; /* 固定する位置 */
	right: 0;  /* 固定する位置 */
	background-color: #998A8A;
    z-index: 3;
}
#sh-header_in {
	padding-right: 5px;
	padding-left: 5px;
}
#sh-h-logo {
	float: left;
	width: 140px;
	padding-top: 12px;
}
#sh-h-info {
	float: right;
	width: 205px;
}
#sh-h-info_n {
	float: right;
	width: 120px;
}
#sh-h-info1 {
	float: left;
	width: 70px;
	padding-right: 5px;
	padding-top: 15px;
}
#sh-h-info2 {
	float: left;
	width: 70px;
	padding-top: 15px;
}
#sh-menu {
	float: right;
	width: 42px;
	padding-top: 7px;
	height: 51px;
}

/* ↓スマホ用ナビ */
/*-------------------------------------------------------- */
nav.globalMenuSp {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	height: 100%;
	overflow: auto;
	background: #998A8A;
	color: #FFF;
	text-align: left;
	transform: translateX(-100%);
	transition: all 0.6s;
	width: 42%;
	-webkit-overflow-scrolling: touch;
	margin-top: 90px;
}

nav.globalMenuSp ul {
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #998A8A;
	padding: 0;
}

nav.globalMenuSp ul li {
	font-size: 16px;
	list-style-type: none;
	width: 100%;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	line-height: 100%;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
}

/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 80px;
    border-bottom: none;
}

nav.globalMenuSp ul li a {
	display: block;
	color: #FFF;
	text-decoration: none;
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 20px;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateX(0%);
}

/* メニューだけをスクロールさせる工夫 */
.overflowHidden {
    overflow: hidden;
}

/* ハンバーガーメニュー */
.navToggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 10px;
	top: 18px;
	width: 42px;
	height: 51px;
	cursor: pointer;
	z-index: 4;
	text-align: center;
	background-color: #998A8A;
}

.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #eee;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}

.navToggle span:nth-child(1) {
    top: 9px;
}

.navToggle span:nth-child(2) {
    top: 18px;
}

.navToggle span:nth-child(3) {
    top: 27px;
}

.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}

/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* g_navi */
/*-------------------------------------------------------- */
#g_navi {
	display: none;
}

/* mv */
/*-------------------------------------------------------- */
#mv {
	display: none;
}
#sp-mv {
	width: 100%;
	height: auto;
	background-color: #FFFFFF;
	clear: both;
	margin-right: auto;
	margin-left: auto;
	margin-top: 90px;
}

/* top-menu */
/*-------------------------------------------------------- */
#t-menu {
	display: none;
}
#sp-t-menu {
	padding-top: 15px;
	margin-right: 10px;
	margin-left: 10px;
}

/* main */
/*-------------------------------------------------------- */
.main {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: left;
}
.main h2 {
	font-size: 23px;
	font-weight: bold;
	width: 100%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #BFB4AB;
	text-align: center;
	padding-bottom: 13px;
	color: #FFFFFF;
	margin-bottom: 15px;
	margin-right: auto;
	margin-left: auto;
	background-color: #AE2D5B;
	padding-top: 13px;
	line-height: 140%;
}
.main h3 {
	font-size: 23px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 20px;
	color: #AE2D5B;
	margin-bottom: 15px;
	margin-right: auto;
	margin-left: auto;
	width: 95%;
	line-height: 140%;
}
.main2 {
	display: none;
}
.sp-main {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 50px;
	padding-bottom: 30px;
	text-align: left;
}
.sp-main h2 {
	font-size: 23px;
	font-weight: bold;
	width: 100%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #BFB4AB;
	text-align: center;
	padding-bottom: 13px;
	color: #FFFFFF;
	margin-bottom: 15px;
	margin-right: auto;
	margin-left: auto;
	background-color: #AE2D5B;
	padding-top: 13px;
}

/* footer */
/*-------------------------------------------------------- */
#footer {
	height: auto;
	width: 100%;
	color: #FFFFFF;
	background-color: #998A8A;
	text-align: center;
	font-size: 12px;
}
#footer_in {
	width: 92%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 30px;
	padding-bottom: 15px;
	text-align: center;
}
#footer_in_logo {
	height: auto;
	width: 100%;
	text-align: center;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F4F3F2;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
#footer_in_info {
	width: 100%;
	text-align: left;
}
#footer_in_copy {
	clear: both;
	padding-top: 15px;
	font-size: 11px;
}
#footer_in a:link,
#footer_in a:visited,
#footer_in a:active {
	color:#FFFFFF;
	text-decoration:none;
}
#footer_in a:hover {
	color:#FFFFFF;
	text-decoration:underline;
}

/* bg */
/*-------------------------------------------------------- */
.bg-mv {
	background-color: #F2F7FB;
	width: 100%;
}
.bg-ba {
	background-color: #FFBFC6;
	width: 100%;
}
.bg-g {
	background-color: #F2F7FB;
	width: 100%;
}
.bg-p1 {
	background-color: #AE2D5B;
	width: 100%;
}
.bg-p2 {
	display: none;
}
.sp-bg-p2 {
	background-color: #F5AFBC;
	width: 100%;
}

/* page */
/*-------------------------------------------------------- */
.stt {
	text-align: center;
	font-size: 16px;
	width: 95%;
	margin-right: auto;
	margin-left: auto;
}
.l_box {
	width: 100%;
	}
.r_box {
	}
.rc_box {
	width: 100%;
}
.rc_img1 {
	padding-bottom: 15px;
	text-align: center;
}
.rc_img2 {
	padding-bottom: 15px;
	text-align: center;
}
.itv-box {
	background-color: #FFFFFF;
	border-radius: 10px 10px 10px 10px;
	height: auto;
	width: 100%;
	margin-bottom: 50px;
}
.itv-box_in {
	font-size: 14px;
	padding-top: 25px;
	padding-right: 15px;
	padding-bottom: 25px;
	padding-left: 15px;
}
.itv-q {
	background-color: #F4F3F2;
	border-radius: 7px 7px 7px 7px;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 40px;
	margin-bottom: 15px;
	clear: both;
	background-image: url(images/q.gif);
	background-repeat: no-repeat;
	background-position: 10px center;
	font-weight: bold;
}
.v-l {
	height: auto;
	width: 100%;
	margin-bottom: 30px;
}
.v-r {
	height: auto;
	width: 100%;
	margin-bottom: 30px;
}
.v-p {
	display: none;
}
.itv-tt {
	color: #FFF;
	background-color: #F5AFBC;
	border-radius: 10px 10px 0px 0px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #BFB4AB;
	border-right-color: #BFB4AB;
	border-left-color: #BFB4AB;
}
.itv-tt_in {
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
	text-align: center;
	font-size: 20px;
}
.itv-box2 {
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #BFB4AB;
	border-bottom-color: #BFB4AB;
	border-left-color: #BFB4AB;
	background-color: #FFF;
	border-radius: 0px 0px 10px 10px;
	margin-bottom: 30px;
}
.itv-box2_in {
	padding: 15px;
}



.cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	color: #333333;
}
.cp_actab input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.cp_actab label {
	font-weight: normal;
	line-height: 2;
	position: relative;
	display: block;
	cursor: pointer;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 1em;
	background-color: #FCE7EB;
}
.cp_actab .cp_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
	color: #333333;
	background: #FFFFFF;
}
.cp_actab .cp_actab-content p {
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
	max-height: 180em;
}
/* Icon */
.cp_actab label::after {
	line-height: 2;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 3em;
	height: 2em;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	text-align: center;
}
.cp_actab input[type=checkbox] + label::after {
	content: '+';
}
.cp_actab input[type=checkbox]:checked + label::after {
	transform: rotate(315deg);
}








.kuchikomi {
	display: none;
}
.kuchikomi-s {
}
.rmd {
	background-color: #FFFFFF;
	border: 6px solid #BFB4AB;
	width: 97%;
}
.rmd_in {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.rmd_l {
	height: auto;
	width: auto;
	padding-bottom: 30px;
	text-align: center;
}
.rmd_l2 {
	height: auto;
	width: auto;
	padding-bottom: 30px;
	text-align: center;
}
.worry_b {
	background-color: #FFF;
	border-radius: 10px 10px 10px 10px;
	background-image: url(images/ck.gif);
	background-repeat: no-repeat;
	background-position: 15px 15px;
	height: auto;
	width: 95%;
	text-align: left;
	margin-bottom: 15px;
	margin-right: auto;
	margin-left: auto;
}
.worry_b_in {
	border-radius: 10px 10px 10px 10px;
	text-align: left;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 50px;
	font-size: 16px;
	line-height: 160%;
	font-weight: bold;
}
.prf_tt {
	background-color: #FFFFFF;
	border-radius: 7px 7px 7px 7px;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	margin-bottom: 15px;
	clear: both;
	color: #AE2D5B;
	font-weight: bold;
	border: 1px solid #AE2D5B;
}
.img_l {
	float: left;
	display: block;
}
.img_r {
	float: right;
	display: block;
}
.sc_img1 {
	padding-right: 15px;
	padding-bottom: 15px;
}
.sc_img2 {
	padding-bottom: 15px;
}
.sc_img3 {
	padding-right: 15px;
	padding-bottom: 15px;
}
.sc_img4 {
	padding-bottom: 50px;
}
.sc_box1 {
	display: none;
}
.sc_box2 {
	text-align: center;
	width: 100%;
	font-size: 12px;
}
.offer_box {
	background-color: #F5AFBC;
	height: auto;
	width: 100%;
	text-align: center;
}
.offer_bg {
	background-image: url(images/offer_bg.jpg);
	background-repeat: no-repeat;
	width: 970px;
	height: 349px;
	text-align: left;
}
.offer_bt {
	padding-top: 268px;
	padding-left: 110px;
	padding-right: 0px;
	padding-bottom: 0px;
}
.offer_bt a:hover{
	opacity:0.8;
	filter: alpha(opacity=80);
}
.count1 {
	background-color: #AC2C59;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;
	width: 100%;
}
.count2 {
	background-color: #AC2C59;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;
	width: 100%;
}
.flow_time {
	background-color: #F4F3F2;
	border-radius: 10px 10px 10px 10px;
	height: auto;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	background-image: url(images/clock.gif);
	background-repeat: no-repeat;
	background-position: 15px center;
	margin-bottom: 50px;
}
.flow_time_in {
	padding-left: 125px;
	font-size: 14px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
}
.flow {
	margin-bottom: 20px;
}
.flow_no {
	background-color: #AC2C59;
	font-size: 20px;
	color: #FFF;
	font-weight: bold;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	float: left;
	margin-right: 10px;
}
.flow_tt {
	font-size: 20px;
	font-weight: bold;
	padding-top: 7px;
}
.flow_l {
	text-align: left;
	margin-bottom: 15px;
}
.flow_r {
	text-align: center;
	margin-bottom: 15px;
}
.flow_arw {
	clear: both;
	text-align: center;
	margin-bottom: 15px;
}
.reason_img_l {
	text-align: center;
	padding-bottom: 10px;
}
.reason_img_r {
	display: block;
	text-align: center;
	padding-bottom: 10px;
}
.reason_img_r2 {
	display: block;
	text-align: center;
	padding-bottom: 50px;
}
.reason {
	background-color: #FFFFFF;
	border-radius: 10px 10px 10px 10px;
	border: 1px solid #AC2C59;
	margin-bottom: 20px;
	clear: both;
}
.reason_in {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 18px;
	padding-left: 15px;
}
.reason_no {
	background-color: #AC2C59;
	font-size: 20px;
	color: #FFF;
	font-weight: bold;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	float: left;
	margin-right: 15px;
}
.reason_tt {
	font-size: 20px;
	font-weight: bold;
	padding-top: 7px;
}
.tokuten {
	background-color: #F9F7FB;
	border: 6px solid #8C61B8;
	margin-bottom: 50px;
	width: 97%;
	margin-right: auto;
	margin-left: 0px;
}
.tokuten_in {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.tokuten_no {
	background-color: #8C61B8;
	font-size: 18px;
	color: #FFF;
	font-weight: bold;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	float: left;
	margin-right: 15px;
}
.tokuten_tt {
	font-size: 18px;
	font-weight: bold;
	padding-top: 7px;
	padding-bottom: 15px;
}
.tokuten_tx {
	clear: both;
}
.henkin {
	background-color: #FFFFFF;
	border: 6px solid #BFB4AB;
	margin-bottom: 50px;
	width: 97%;
}
.henkin_in {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.henkin_img {
	height: auto;
	width: auto;
	padding-bottom: 30px;
	text-align: center;
}
.box-s {
	color: #FFF;
	background-color: #F5AFBC;
	border-radius: 10px 10px 0px 0px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #BFB4AB;
	border-right-color: #BFB4AB;
	border-left-color: #BFB4AB;
}
.box-s_in {
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
	text-align: center;
	font-size: 20px;
}
.box-b {
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #BFB4AB;
	border-bottom-color: #BFB4AB;
	border-left-color: #BFB4AB;
	background-color: #FFF;
	border-radius: 0px 0px 10px 10px;
}
.box-b_in1 {
	padding: 15px;
}
.box-b_in1 li {
	background-image: url(images/batu.gif);
	background-repeat: no-repeat;
	background-position: left 3px;
	list-style-type: none;
	padding-left: 25px;
	padding-bottom: 10px;
}
.box-b_in2 {
	padding: 15px;
}
.box-b_in2 li {
	background-image: url(images/maru.gif);
	background-repeat: no-repeat;
	background-position: left 3px;
	list-style-type: none;
	padding-left: 25px;
	padding-bottom: 10px;
}
.box-b_in3 {
	padding: 15px;
}
.batu {
	width: 100%;
}
.maru {
	width: 100%;
}
.map {
	height: auto;
	width: auto;
	text-align: center;
}
.info {
	text-align: left;
	width: 100%;
}
.lm {
	clear: both;
	width: 100%;
}
.lm_tt {
	background-color: #F4F3F2;
	border-radius: 7px 7px 7px 7px;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
	margin-bottom: 25px;
	clear: both;
}
.lm_l {
	height: auto;
	width: auto;
	margin-bottom: 25px;
	text-align: center;
}
.lm_r {
	height: auto;
	width: auto;
	margin-bottom: 25px;
	text-align: center;
}
.lm_c {
	height: auto;
	width: auto;
	margin-bottom: 25px;
	text-align: center;
}
p.gotop {
    position: fixed;
    right: 2%;
        bottom: 0;
}
p.gotop a {
    width: 100px;
    height: 35px;
    display: block;
    filter:alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
}
.simg {
max-width: 45%;
height: auto;
}
.nimg {
	display: none;
}
.sp-tx {
	width: 95%;
	margin-right: auto;
	margin-left: auto;
}

/* YOUTUBE用幅可変タグ */
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* ここまで */


/* parts */
/*-------------------------------------------------------- */
.bmgn3 {margin-bottom: 3px;}
.bmgn5 {margin-bottom: 5px;}
.bmgn7 {margin-bottom: 7px;}
.bmgn10 {margin-bottom: 10px;}
.bmgn12 {margin-bottom: 12px;}
.bmgn13 {margin-bottom: 13px;}
.bmgn15 {margin-bottom: 15px;}
.bmgn18 {margin-bottom: 18px;}
.bmgn20 {margin-bottom: 20px;}
.bmgn25 {margin-bottom: 25px;}
.bmgn28 {margin-bottom: 28px;}
.bmgn30 {margin-bottom: 30px;}
.bmgn40 {margin-bottom: 40px;}
.bmgn45 {margin-bottom: 45px;}
.bmgn50 {margin-bottom: 50px;}
.bmgn70 {margin-bottom: 70px;}
.bmgn80 {margin-bottom: 80px;}

.tmgn20 {margin-top: 20px;}
.tmgn30 {margin-top: 30px;}
.tmgn40 {margin-top: 40px;}
.tmgn50 {margin-top: 50px;}

.lmgn10 {margin-left: 10px;}
.lmgn20 {margin-left: 20px;}
.lmgn40 {margin-left: 40px;}

.rmgn15 {margin-right: 15px;}
.rmgn30 {margin-right: 30px;}

.lpdg5 {padding-left: 5px;}
.lpdg10 {padding-left: 10px;}
.lpdg15 {padding-left: 15px;}
.lpdg50 {padding-left: 50px;}

.rpdg5 {padding-right: 5px;}
.rpdg10 {padding-right: 10px;}
.rpdg15 {padding-right: 15px;}

.fs11 {
	font-size: 11px;
	line-height: 140%;
}
.fs12 {
	font-size: 12px;
	line-height: 140%;
}
.fs14 {
	font-size: 14px;
	line-height: 160%;
}
.fs16 {
	font-size: 16px;
	line-height: 180%;
}
.fs18 {
	font-size: 18px;
	line-height: 180%;
}
.fs20 {
	font-size: 20px;
	line-height: 180%;
}
.fs22 {
	font-size: 22px;
	line-height: 180%;
}
.tx_red {color: #FF0000;}
.tx_pink {color: #FF3366;}
.tx_pink2 {color: #AE2D5B;}
.tx_pink3 {color: #C15974;}
.tx_yellow {color: #FFFF00;}
.tx_white {color: #FFFFFF;}
.tx_gray {color: #999999;}
