@charset "utf-8";

/*--------------------------
 デコ告知
--------------------------*/
#deco button{
	outline: none;
	cursor: pointer;
}



/*----- 見出し -----*/
.ttl_1_highlight{
	margin-top:30px;
	padding:7px 20px 6px;
	background: #fffcd3 url(../../images/member/template/bg_ttl1.gif) no-repeat 0 center;
	border-top: solid 1px #d2c48d;
	border-bottom: solid 1px #d2c48d;
	font-weight:bold;
	font-size: 16px;
	line-height:1.4;
	text-align:left;
}

/*----- タブ -----*/
.tab_box{
	margin-bottom: 20px;
}
.tab_btn{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	background-color: #f7f7f7;
	z-index: 1;
}
.tab_btn::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: solid 1px #c9c9c9;
	border-top-width: 2px;
	z-index: -1;
}
.tab_btn::after{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background-color: #c9c9c9;
}
.tab_btn li{
	min-width: calc(100% / 5);
	min-height: 47px;
	padding: 5px 10px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.4;
	border: solid 1px #c9c9c9;
	border-top-width: 2px;
	border-right: none;
	cursor: pointer;
}
.tab_btn li:last-of-type{
	border-right: solid 1px #c9c9c9;
}
.tab_btn li:nth-of-type(n + 6){
	border-top: none;
}
.tab_btn li.current{
	background-color: #fff;
	border-top-color: #2b8306;
	border-bottom-color: #fff;
	border-bottom: none;
	font-weight: bold;
	pointer-events: none;
}


.tab_con{
	position: relative;
	width: calc(100% - 3px);
	min-height: 40px;
	/* background-color: #fff;
	border: solid 1px #000;
	transform: translateY(-1px); */
}
.tab_con li{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	background-color: #fff;
}
.tab_con li:not(:first-of-type){
	display: none;
}


/*----- アコーディオン -----*/
.accodion{
	margin-bottom: 20px;
	border-bottom: solid 1px #dedede;
}
/* .accodion li{
	border: solid 1px #dedede;
}
.accodion li:not(:last-of-type){
	border-bottom: none;
} */
.accodion_main button{
	position: relative;
	width: 100%;
	padding: 10px 10px 10px 15px;
	background-color: #fff;
	border: solid 1px #dedede;
	border-bottom: none;
	text-align: left;
}
.accodion_main button::after{
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	width: 3px;
	height: calc(100% + 2px);
	background-color: #2d7913;
	background-image: linear-gradient(180deg, #2d7913 0%, #51b422 50%, #2d7913 100%);
}
.accodion_sub{
	border: solid 1px #dedede;
	border-bottom: none;
}
.accodion .accodion_main:not(:first-of-type) .accodion_sub{
	display: none;
}
.accodion_sub li{
	padding: 5px 15px;
	background-color: #f7f7f7;
}
.accodion_sub li:first-of-type{
	padding-top: 10px;
}
.accodion_sub li:last-of-type{
	padding-bottom: 10px;
}


/*----- ライトボックス -----*/
.lity{
	background: rgba(0,0,0,0.8);
}

/*----- 画像の囲い枠 -----*/
img.frame{
	border: solid 2px #ababab;
}

/*----- 吹き出し -----*/
.ballon_left,
.ballon_right{
	position: relative;
	padding: 15px;
	border-radius: 10px;
	background-color: #fff;
	background-image: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,0.02) 100%);
	border: solid 2px #c0c0c0;
	/* box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1); */
	margin-bottom: 10px;
}
.ballon_left{
	margin-left: 15px;
}
.ballon_right{
	margin-right: 15px;
}
.ballon_left::after,
.ballon_right::after{
	content: "";
	position: absolute;
	top: 20px;
	width: 0;
	height: 0;
	border-style: solid;
}
.ballon_left::after{
	left: -15px;
	border-width: 0 15px 13px 0;
	border-color: transparent #c0c0c0 transparent transparent;
}
.ballon_right::after{
	right: -15px;
	border-width: 13px 15px 0 0;
	border-color: #c0c0c0 transparent transparent transparent;
}

/*----- マーカー -----*/
.highlight_positive,
.highlight_common,
.highlight_attention,
.highlight_negative{
	padding: 0 3px;
	color: #5a5a5a !important;
	font-weight: bold;
}
.highlight_positive{
	background: linear-gradient(transparent 50%, #bae9ff 0%);
}
.highlight_common{
	background: linear-gradient(transparent 50%, #c5ffbd 0%);
}
.highlight_attention{
	background: linear-gradient(transparent 50%, #ffffb8 0%);
}
.highlight_negative{
	background: linear-gradient(transparent 50%, #ffcfd5 0%);
}