@charset "utf-8";
/* CSS Document */

/*----------------------------------------


基礎知識CSS


----------------------------------------*/
/* 20190724 通常記事HTML */
.c-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e8eaee;
}
    .c-table th {
width: auto !important;
}
    .c-table td {
width: auto !important;
word-break : break-all;
}
.u-article_item_margin {
    margin-top: 38px !important;
}
.c-table__head {
    background-color: #0c5ed4;
    border-color: #0c5ed4;
        border-right-color: rgb(12, 94, 212);
    color: #fff;
    font-weight: 600;
    vertical-align: middle;
}
.c-table__head:not(:last-child) {
    border-right: 1px solid #3579da;
}
.c-table__data:first-child {
    background-color: #f8fafc;
}
.c-table__head, .c-table__data {
    padding: 12px;
    border: 1px solid #e8eaee !important;
    font-size: 14px;
}

.c-adviser--item {
    background-color: #fff;
    border: 2px solid #e8eaee;
    border-radius: 4px;
}
.c-adviser__head__profile__title {
    font-size: 12px;
    font-weight: normal;
}
.c-adviser__head__profile__name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}
.c-adviser {
    padding: 34px 30px;
    border-radius: 4px;
    background-color: #fff;
}
.c-adviser__head {
    display: flex;
}
.c-adviser__head__image img {
    width: 68px;
    height: auto;
    border-radius: 50%;
}
.c-adviser__head__profile {
    margin-left: 18px;
}
.c-adviser__text .c-paragraph {
    font-size: 14px;
}


.balloon-attention {
    margin: 10px 0 30px;
    padding: 5px;
	border-radius: 6px;
	background-image: url(https://financial-field.com/wp/wp-content/uploads/2019/07/fp_img.png);
    background-repeat: no-repeat;
    background-size: 72px;
    background-position: left top 5px;
}
.balloon-attention>div {
    margin: 0 0 15px 89px;
    padding: 25px;
    position: relative;
    background: #fff;
    border: 2px solid #c3c3c3;
    border-radius: 6px;
}
.balloon-attention>div:before {
    right: 100%;
    top: 20px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(0,140,207,0);
    border-right-color: #c3c3c3;
    border-width: 13px;
    margin-top: -3px;
}
.balloon-attention>div p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 15px;
    line-height: 1.7em;
    font-weight: 700;
}
.balloon-attention>div:after {
    right: 100%;
    top: 20px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-right-color: #fbfff6;
    border-width: 10px;
}
.text-line {
    background: linear-gradient(transparent 60%,#fff089 0%);
    font-weight: 700;
}
/* 20190724 通常記事HTML end */
/* 2020/5/27:Vuong add for list-custion */
.list-custom {
		margin: 0;
		padding: 0;
		list-style: none;
	}
.list-custom li{
		border: 2px solid #6491ac;
		border-radius: 5px;
		padding: 8px 16px;
		text-align: center;
		margin-bottom: 20px !important;
		margin-top: 20px !important;
		-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5) !important;
		-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5) !important;
		box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5) !important;
		position: relative !important;
}
	
.list-custom li .arrow{
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 25px 0 25px;
	border-color: #000080 transparent transparent transparent;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	/* z-index: -1; */
}

.list-custom li:last-child .arrow{
    z-index: -1;
}
