@charset "UTF-8";

/* main
----------------------------------------*/
.contents {
	max-width: 1200px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	position: static;
}
@media only screen and (max-width: 736px) {	
	.contents {
		display: block;
	}
}

/* lnav_block
----------------------------------------*/
.lnav_block {
	width: 300px;
	margin-right: 20px;
	text-align: center;
}
.lnav_block h2 {
	background: #1ECBCA;
	color: #fff;
	padding: 15px;
	font-size: 1.8rem;
}
.lnav_block li {
	border-bottom: solid 1px #E7F4FD;
	font-size: 1.6rem;
}
.lnav_block li a {
	display: block;
	color: #121157;
	padding: 16px;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.lnav_block li a:hover {
	opacity: .6;
}
.lnav_block li.current a {
	background: #E7F4FD;
}
.lnav_block + .section_block,
.e-sidemenu + .section_block {
	width: calc(100% - 320px);
}
@media only screen and (max-width: 736px) {	
	.lnav_block {
		width: auto;
		margin: 0 5% 30px;
		z-index: 100;
	}
	.lnav_block h2 {
		padding: 15px 35px;
		font-size: 1.8rem;
	}
	.lnav_block h2::before {
		content: "";
		display: block;
		width: 10px;
		height: 10px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		position: absolute;
		right: 20px;
		top: 50%;
		margin-top: -10px;
	}
	.lnav_block h2.open::before {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		margin-top: -5px;
	}
	.lnav_block ul {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		background: #fff;
	}
	.lnav_block li {
		font-size: 1.6rem;
	}
	.lnav_block li a {
		padding: 15px;
	}
	.lnav_block li a:hover {
		opacity: 1;
	}
	.lnav_block + .section_block,
	.e-sidemenu + .section_block {
		width: auto;
	}
}

/* ttl_page
----------------------------------------*/
.ttl_page {
	background: #f1f1f1;
	text-align: center;
	margin-bottom: 38px;
}
.ttl_page h1 {
	font-size: 2.6rem;
	color: #333;
	padding: 32px 20px 0;
}
.ttl_page h1::after {
	content: "";
	display: block;
	width: 50px;
	height: 2px;
	background: #1ECBCA;
	margin: 27px auto 0;
}
@media only screen and (max-width: 736px) {	
	.ttl_page {
		margin-bottom: 30px;
	}
	.ttl_page h1 {
		font-size: 2.2rem;
		padding: 30px 5% 0;
	}
}

/* title
----------------------------------------*/
.ttl_h2 {
	font-size: 2.6rem;
	color: #121157;
	border-bottom: solid 2px #1ECBCA;
	padding: 4px 9px 6px;
	margin-bottom: 30px;
}
.ttl_h3 {
	font-size: 2.15rem;
	color: #121157;
	border-left: solid 6px #1ECBCA;
	margin: 0 10px 30px;
	padding: 2px 0 2px 13px;
}
.ttl_h4 {
	background: #E7F4FD;
	font-size: 1.6rem;
	color: #121157;
	padding: 16px 29px 17px;
	margin-bottom: 30px;
}
.ttl_link {
	text-decoration: underline;
	position: absolute;
	bottom: 10px;
	right: 0;
	color: #1436D9;
	font-size: 1.3rem;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
	display: inline-block;
	padding-left: 20px;
	background: url(../img/common/icon_arrow_01.svg) no-repeat 2px 3px;
	background-size: 7px auto;
}
.ttl_link:hover {
	opacity: .6;
}
.ttl_tag {
	display: inline-block;
	background: #57d8d8;
	color: #fff;
	padding: 0 15px;
	margin: 0;
	line-height: 1.8;
	font-size: 1.3rem;
	position: absolute;
	bottom: 10px;
	right: 0;
}
@media only screen and (max-width: 736px) {	
	.ttl_h2 {
		font-size: 2rem;
		padding: 13px 10px 5px;
	}
	.ttl_h3 {
		font-size: 1.8rem;
		border-left: solid 4px #1ECBCA;
		margin: 0 0 30px;
		padding: 2px 0 2px 10px;
	}
	.ttl_h4 {
		font-size: 1.6rem;
		padding: 12px 15px;
	}
	.ttl_link {
		font-size: 1.3rem;
		bottom: -25px;
	}
	.ttl_link:hover {
		opacity: 1;
	}
	.ttl_tag {
		bottom: -28px;
	}
}

/* section_block
----------------------------------------*/
.section_block {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto 50px;
}
.section_block > .e-contents-inner {
	padding-left: 0;
	padding-right: 0;
}
.section_block > .e-contents-inner:first-child {
	padding-top: 0;
}
.section_block p {
	font-size: 1.45rem;
	line-height: 1.8;
}
.section_block p + p {
	margin-top: 20px;
}
.section_block .asterisk {
	font-size: 1.4rem;
	margin-left: 1em;
	text-indent: -1em;
}
.section_block strong {
	font-weight: bold;
}
.section_block p.intro-text {
	font-size: 1.45rem;
	line-height: 1.8;
	text-align: center;
}
@media only screen and (max-width: 736px) {	
	.section_block {
		width: auto;
		margin: 0 5% 50px;
	}
	.section_block p {
		font-size: 1.5rem;
		line-height: 1.8;
	}
	.section_block p + p {
		margin-top: 15px;
	}
	.section_block .asterisk {
		font-size: 1.4rem;
	}
}

/* learn_list
----------------------------------------*/
.learn_list {
	margin: 50px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.learn_list li {
	width: 400px;
	text-align: center;
	padding: 21px 0 19px;
	border-left: solid 2px #1ecbca;
}
.learn_list li:nth-child(3n+1) {
	border-left: none;
}
.learn_list li figure {
	margin-bottom: 29px;
}
.learn_list li h3 {
	font-size: 2.15rem;
	color: #121157;
	font-weight: bold;
	margin-bottom: 10px;
}
.learn_list li p {
	font-size: 1.45rem;
	margin: 0 40px;
}
.learn_list li .asterisk {
	padding-left: 0;
	text-indent: 0;
	text-align: center;
	margin: 0 65px;
	font-size: 1.2rem;
}
@media only screen and (max-width: 736px) {
	.learn_list {
		margin: 10px 0;
		display: block;
	}
	.learn_list li {
		width: auto;
		padding: 30px 0;
		border: none;
	}
	.learn_list li + li {
		border-left: none;
		border-top: solid 2px #1ecbca;
	}
	.learn_list li figure {
		width: 120px;
		margin: 0 auto 20px;
	}
	.learn_list li h3 {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.learn_list li p {
		font-size: 1.5rem;
		margin: 0 5%;
	}
	.learn_list li .asterisk {
		margin: 0 10%;
	}
}

/* btn
----------------------------------------*/
.btn_arrow {
	margin-top: 16px;
}
.btn_arrow a {
	display: inline-block;
	background: #00A2AC url(../img/index/icon_btn_arrow.svg) no-repeat right 10px center;
	background-size: 18px auto;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	min-width: 260px;
	max-width: 100%;
	padding: 14px 20px;
	-webkit-transition: background-position 300ms, opacity 300ms;
	transition: background-position 300ms, opacity 300ms;
}
.btn_arrow span {
	display: inline-block;
	background: #ccc url(../img/index/icon_btn_arrow.svg) no-repeat right 10px center;
	background-size: 18px auto;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	padding: 14px 20px;
	min-width: 260px;
	max-width: 100%;
}
.btn_arrow a:hover {
	background-position: right 5px center;
	opacity: .6;
}
.btn_detail {
	margin-top: 9px;
}
.btn_detail a {
	font-size: 1.3rem;
	color: #1436D9;
	text-decoration: underline;
	display: inline-block;
	padding-left: 20px;
	background: url(../img/common/icon_arrow_01.svg) no-repeat 2px 3px;
	background-size: 7px auto;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.btn_detail a:hover {
	opacity: .6;
}
.btn_large {
	text-align: center;
}
.btn_large + .btn_large {
	margin-top: 20px;
}
.btn_large a,
.btn_large > span {
	min-width: 50%;
	font-size: 1.8rem;
}
@media only screen and (max-width: 736px) {	
	.btn_arrow a,
	.btn_arrow span {
		min-width: 100%;
	}
	.btn_large a,
	.btn_large > span {
		font-size: 1.6rem;
		min-width: 100%;
	}
}

/* basic_list
----------------------------------------*/
.basic_list {
	width: 98.416%;
	margin: 30px auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.basic_list:first-child {
	margin-top: 0;
}
.basic_list li {
	width: 23.73%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 20px 1.693%;
}
.basic_list li:nth-child(4n+1) {
	margin-left: 0;
}
.basic_list li a {
	background: #C5E5FB;
	color: #121157;
	font-size: 1.8rem;
	text-align: center;
	width: 100%;
	height: 150px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.basic_list li:nth-child(8n+5) a,
.basic_list li:nth-child(8n+6) a,
.basic_list li:nth-child(8n+7) a,
.basic_list li:nth-child(8n) a {
	background: #02A2AC;
	color: #fff;
}
.basic_list li a:hover {
	opacity: .6;
}
@media only screen and (max-width: 736px) {
	.basic_list {
		width: 100%;
	}
	.basic_list li,
	.basic_list li:nth-child(4n+1) {
		width: 48%;
		margin: 0 0 4% 4%;
	}
	.basic_list li:nth-child(2n+1) {
		margin-left: 0;
	}
	.basic_list li a {
		font-size: 1.5rem;
		height: 100px;
		padding: 5%;
		background: #C5E5FB;
		color: #121157;
	}
	.basic_list li:nth-child(8n+5) a,
	.basic_list li:nth-child(8n+6) a,
	.basic_list li:nth-child(8n+7) a,
	.basic_list li:nth-child(8n) a {
		background: #C5E5FB;
		color: #121157;
	}
	.basic_list li:nth-child(4n+3) a,
	.basic_list li:nth-child(4n+4) a {
		background: #02A2AC;
		color: #fff;
	}
	.basic_list li a:hover {
		opacity: 1;
	}
}

/* first_list
----------------------------------------*/
.first_list {
	margin: 30px auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.first_list:first-child {
	margin-top: 0;
}
.first_list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 31.583%;
	margin: 0 0 30px 2.625%;
}
.first_list li p {
	font-size: 1.3rem;
}
.first_list li a {
	width: 100%;
	padding: 20px;
	display: block;
	border: solid 1px #d5d5d5;
	border-bottom: none;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.first_list li a:hover {
	opacity: .6;
}
.first_list li a::after {
	content: "";
	display: block;
	background: #02A2AC;
	height: 3px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
.first_list li:nth-child(3n+1) {
	margin-left: 0;
}
.first_list li h3 {
	font-size: 1.7rem;
	font-weight: bold;
	color: #121157;
	margin-bottom: 10px;
}
.first_list li .btn_arrow a {
	min-width: 0;
	width: 100%;
	text-align: center;
}
@media only screen and (max-width: 736px) {
	.first_list {
		width: 100%;
		display: block;
	}
	.first_list li,
	.first_list li:nth-child(3n+1) {
		width: 100%;
		margin: 0 0 4%;
	}
	.first_list li:nth-child(2n+1) {
		margin-left: 0;
	}
}

/* movie_block
----------------------------------------*/
.movie_block {
	width: 100%;
	padding-top: 56.297%;
	margin: 30px 0;
}
.movie_block:first-child {
	margin-top: 0;
}
.movie_block iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: block;
}
@media only screen and (max-width: 736px) {
}

/* toc_list
----------------------------------------*/
.toc_list {
	border: solid 1px #d5d5d5;
	border-bottom: none;
	margin: 30px 0;
}
.toc_list:first-child {
	margin-top: 0;
}
.toc_list a {
	display: block;
	color: #121157;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.toc_list a:hover {
	opacity: .6;
}
.toc_list > li {
	border-bottom: solid 1px #d5d5d5;
}
.toc_list > li > a {
	font-size: 1.6rem;
	padding: 11px 18px 10px;
}
.toc_list > li ul {
	margin-left: 25px;
	padding-bottom: 14px;
}
.toc_list > li ul li {
	margin-bottom: 7px;
}
.toc_list > li li a::before {
	content: "＞";
}
@media only screen and (max-width: 736px) {
	.toc_list a:hover {
		opacity: 1;
	}
	.toc_list > li > a {
		font-size: 1.6rem;
		padding: 15px 18px;
	}
	.toc_list > li ul {
		padding-bottom: 10px;
	}
	.toc_list > li ul li {
		margin-bottom: 13px;
	}
}

/* toc_list
----------------------------------------*/
.border_block {
	margin: 30px 0;
	border: solid 1px #d5d5d5;
	padding: 20px;
}
.border_block:first-child {
	margin-top: 0;
}
@media only screen and (max-width: 736px) {
	.border_block {
		padding: 15px 20px;
	}
}

/* scroll_table
----------------------------------------*/
@media only screen and (max-width: 736px) {
	.scroll_table {
 		width: auto;
 		overflow: auto;
		padding-bottom: 0;
		margin: 0 0 8px;
	}
	.scroll_table table {
		width: 700px !important;
		margin: 0;
	}
	.scroll_table::-webkit-scrollbar{
		height: 5px;
	}
	.scroll_table::-webkit-scrollbar-track{
		background: #f1f1f1;
		border-radius: 5px;
	}
	.scroll_table::-webkit-scrollbar-thumb {
		background: #bcbcbc;
		border-radius: 5px;
	}
}

/* tools
----------------------------------------*/
.ttl_translation {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 20px;
	background: #fff;
	font-size: 2.8rem;
	font-weight: bold;
	padding: 10px 0;
}
.tools table {
	width: 100%;
}
.tools select {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	background-color: #FAFAFA;
	border-radius: 0;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
	background-position: 100% center;
	background-repeat: no-repeat;
	border-style: solid;
	border-width: 1px;
	border-color: #ccc;
	color: rgba(0,0,0,0.75);
	font-family: inherit;
	font-size: 1.4rem;
	line-height: normal;
	padding: 0.5rem;
	border-radius: 0;
	height: 37px;
}
.tools input[type="file"],
.tools input[type="checkbox"],
.tools input[type="radio"],
.tools select {
	margin: 0;
}
.tools nav[arial-label="pagenation"] {
	margin-left: 2.5em;
}
.tools nav[arial-label="pagenation"] a,
.tools a[rel="prev"],
.tools a[rel="next"] {
	color: #121157;
	font-size: 1.6rem;
}
.tools div[style="float:left; margin:10px"]:last-child {
	position: static !important;
}
.tools a[rel="prev"] {
	position: absolute;
	left: 0;
	top: 10px;
}
.tools #frm .pagination-ellipsis {
	height: auto;
	padding: 0;
	margin: 0;
}
.tools #frm .pagination-ellipsis {
	height: auto;
	padding: 0;
	margin: 0;
}
.tools #frm {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.tools .upload_form #frm {
	display: block;
}
.tools .upload_form #frm > div:nth-child(2) {
	margin-left: 0 !important;
}
.field.is-grouped {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.5rem;
	letter-spacing: .5px;
}
.field.is-grouped > .control:not(:last-child) {
	margin-bottom: 0;
	margin-right: 10px;
}
.input-file-val {
	width: 195px !important;
	max-width: 195px !important;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: inline-block;
}
.upload_form .button.is-link.is-outlined {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: solid 1px #5b9bd5;
	background: #fff;
	font-family: inherit;
	font-weight: bold;
	color: #4472c4;
	line-height: 1.3;
	padding: 8px 26px;
	border-radius: 10px;
	font-size: 1.4rem;
	cursor: pointer;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.upload_form .submit {
	padding-left: 70px;
	background: url(../img/tools/icon_arrow.svg) no-repeat left center / 35px auto;
}
.upload_form .submit input[type="submit"],
.upload_form .submit input[name="back"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #3273dc;
	color: #fff;
	font-family: inherit;
	font-weight: bold;
	padding: 15px 40px;
	letter-spacing: 1px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.upload_form .submit input[name="back"] {
	background: #1ecbca;
}
.tools #frm > div:nth-child(1) {
	order: 0;
}
.tools #frm > div:nth-child(6) {
	order: 1;
}
.tools #frm > div:nth-child(7) {
	padding: 0 !important;
	order: 2;
}
.tools #frm > div:nth-child(8) {
	padding: 0 !important;
	order: 3;
}
.tools #frm > div:nth-child(2) {
	width: auto !important;
	margin-left: 30px !important;
	margin-right: 0 !important;
	order: 4;
}
.tools #frm > div:nth-child(3) {
	margin-right: 0 !important;
	order: 5;
}
.tools #frm > div:nth-child(4) {
	margin-right: 20px;
	order: 6;
}
.tools #frm > div:nth-child(9) {
	order: 7;
}
.tools #frm > .upload_form {
	order: 8;
}
.tools #frm .scroll_table {
		order: 8;
}
.tools #frm table {
	border: solid 1px #f5f5f5;
}
.tools #frm table thead th {
	text-align: center;
	font-weight: bold;
	border: solid 1px #f5f5f5;
	vertical-align: middle;
	padding: 5px 10px;
	color: #fff;
	background: #00a2ac;
	white-space: nowrap;
}
.tools #frm .file_list table thead th {
	background: #2c8c8d;
}
.tools #frm table thead th:nth-child(1), 
.tools #frm table thead th:nth-child(2) {
	color: #121157;
	background: #fff;
	width: 210px;
}
.tools #frm .file_list table thead th:nth-child(3) {
	color: #fff;
	background: #121157;
}
.tools #frm .file_list table thead th:nth-child(6),
.tools #frm .file_list table thead th:nth-child(7),
.tools #frm .file_list table thead th:nth-child(8) {
	color: #fff;
	background: #4bd5d5;
}
.tools #frm table td {
	background: #f1f1f1;
	border: solid 1px #f5f5f5;
	padding: 3px 8px;
	font-weight: bold;
	color: #121157;
}
.tools #frm table td a {
	color: #2f5597;
	text-decoration: underline;
}
.tools #frm table tr:nth-child(2n) td {
	background: #d0cece;
}
.tools .file_detail #frm table td:not(:first-child) {
	background: none !important;
	padding: 0;
}
.tools .file_detail #frm table thead th {
	color: #fff;
	background: #1ecbca;
}
.tools .file_detail #frm table thead td:first-child {
	color: #fff;
	background: #00a2ac;
}
.tools #frm #file_name {
	width: 343px;
	border-radius: 5px;
	border: solid 2px #e0e0e0;
	font-family: inherit;
	padding: 7px;
}
.tools #frm .button.is-info[name="search"] {
	width: 39px;
	height: 39px;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: none;
	overflow: hidden;
	text-indent: -999px;
	background: url(../img/tools/icon_btn_search.png) no-repeat center center;
	cursor: pointer;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.tools #frm button[name="upload"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #3273dc;
	color: #fff;
	border-radius: 5px;
	text-align: center;
	border: none;
	font-family: inherit;
	font-weight: bold;
	padding: 0 20px;
	cursor: pointer;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.tools #frm .button.is-info:hover,
.tools #frm button[name="upload"]:hover,
.upload_form .button.is-link.is-outlined:hover,
.upload_form .submit input[type="submit"]:hover,
.tools #frm button[name="back"]:hover,
.tools #frm input[name="back"]:hover {
	opacity: .6;
}
.upload_form {
	width: 100%;
	margin: 25px 0 0;
}
.upload_form.bg_blue {
	background: #dae3f3;
	padding: 20px;
}
.upload_form.bg_blue p,
.upload_form.bg_blue .e-list {
	font-size: 1.3rem;
}
.upload_form .form_btn {
	margin: 40px 0 15px;
}
.tools .upload_form #frm .form_btn button[name="upload"] {
	padding: 15px 50px !important;
	font-size: 1.6rem;
	margin: 0 10px;
}
.tools .upload_form #frm .form_btn button[name="back"] {
	padding: 15px 50px !important;
	font-size: 1.6rem;
	margin: 0 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #1ecbca;
	color: #fff;
	border-radius: 5px;
	text-align: center;
	border: none;
	font-family: inherit;
	font-weight: bold;
	cursor: pointer;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.upload_form input[type=checkbox] {
	-webkit-appearance: none;
	-moz-appearance: none;
	margin: 2px 0;
	display: block;
	width: 22px;
	height: 22px;
	border: solid 1px #121157;
	background: #fff;
	border-radius: 3px;
	position: relative;
}
.upload_form input[type=checkbox]:checked::before {
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 3px;
	width: 11px;
	height: 6px;
	border-left: 2px solid #121157;
	border-bottom: 2px solid #121157;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.upload_form input[type=radio] {
	vertical-align: middle;
	margin: 0 0 5px 20px;
}
.upload_form #frm input[type=text] {
	-webkit-appearance: none;
	-moz-appearance: none;
	border-radius: 0;
	background-color: #fff;
	border-style: solid;
	border-width: 1px;
	border-color: #ccc;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
	color: rgba(0,0,0,0.75);
	display: block;
	font-family: inherit;
	font-size: 1.6rem;
	margin: 0 0 1rem 0;
	padding: 8px;
	width: 100%;
	max-width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: border-color 0.15s linear,background 0.15s linear;
	-moz-transition: border-color 0.15s linear,background 0.15s linear;
	-ms-transition: border-color 0.15s linear,background 0.15s linear;
	-o-transition: border-color 0.15s linear,background 0.15s linear;
	transition: border-color 0.15s linear,background 0.15s linear;
}
.upload_form #frm select {
	width: 100%;
	height: 42px;
	max-width: 100%;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	background-color: #FFF;
	border-radius: 0;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
	background-position: 100% center;
	background-repeat: no-repeat;
	border-style: solid;
	border-width: 1px;
	border-color: #ccc;
	color: rgba(0,0,0,0.75);
	font-family: inherit;
	font-size: 1.6rem;
	line-height: normal;
	padding: 8px;
	border-radius: 0;
}
@media only screen and (max-width: 736px) {
	.ttl_translation {
		width: auto;
		margin: 0 5% 10px;
		font-size: 2rem;
	}
	.tools #frm {
		margin-top: 20px;
	}
	.tools #frm > div:nth-child(6) {
		margin: 0 !important;
	}
	.tools #frm > div:nth-child(7) {
	}
	.tools #frm > div:nth-child(8) {
		padding: 0 !important;
		order: 3;
	}
	.tools #frm > div:nth-child(2) {
		width: 100% !important;
		margin: 20px 0 0 !important;
	}
	.tools #frm > div:nth-child(3) {
		width: 100%;
		margin: 10px 0 !important;
	}
	.tools #frm > div:nth-child(4) {
		width: 100% !important;
		text-align: center;
		margin: 0;
		padding-right: 1em;
	}
	.tools #frm #file_name {
		width: 100% !important;
	}
	.tools #frm .button.is-info[name="search"] {
		position: absolute;
		top: -50px;
		right: 0;
	}
	.tools #frm .button.is-info:hover,
	.tools #frm button[name="upload"]:hover,
	.upload_form .button.is-link.is-outlined:hover,
	.upload_form .submit input[type="submit"]:hover,
	.tools #frm button[name="back"]:hover {
		opacity: 1;
	}
	.field.is-grouped {
		display: block;
		text-align: center;
	}
	.field.is-grouped > .control:first-child {
		text-align: left;
	}
	.field.is-grouped > .control:not(:last-child) {
		margin-right: 0;
		margin-bottom: 10px;
	}
	.input-file-val {
		width: 100% !important;
		max-width: 100% !important;
	}
	.upload_form .button.is-link.is-outlined {
		padding: 15px 26px;
	}
	.upload_form .submit {
		padding-left: 0;
		background: none;
	}
	.upload_form .submit::before {
		content: "";
		display: block;
		width: 35px;
		height: 30px;
		background: url(../img/tools/icon_arrow.svg) no-repeat left top / 100% auto;
		margin: 0 auto 10px;
		transform: rotate(90deg);
	}
	.upload_form.bg_blue {
		padding: 15px 5%;
	}
	.tools .upload_form #frm .form_btn {
		margin: 40px 0 15px !important;
		text-align: center;
	}
	.tools .upload_form #frm .form_btn button[name="upload"] {
		padding: 15px 25px !important;
		margin: 0 5px;
	}
	.tools .upload_form #frm .form_btn button[name="back"] {
		padding: 15px 25px !important;
		margin: 0 5px;
	}
	.upload_form input[type=radio] {
		margin: 0 0 5px 10px;
	}
}

/* seminar_list
----------------------------------------*/
.seminar_list {
	display: -webkit-box;
	display: -ms-flexbox;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.seminar_list li {
	width: 23.209%;
	margin: 0 0 20px 2.388%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.seminar_list li:nth-child(4n+1) {
	margin-left: 0;
}
.seminar_list li > a {
	display: block;
	padding: 0 20px 65px;
	border: solid 1px #bfbfbf;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.seminar_list.archive li > a {
	padding: 0 20px 105px;
}
.seminar_list li figure {
	margin: 0 -20px 20px;
}
.seminar_list li figure img {
	width: 100%;
}
.seminar_list li a:hover {
	opacity: .6;
}
.seminar_tag {
	display: inline-block;
	background: #57d8d8;
	color: #fff;
	padding: 0 15px;
	margin: 0;
}
.seminar_tag.status01 {
	background: #c2f2ef;
	color: #003147;
}
.seminar_tag.status02 {
	background: #1dcbca;
	color: #003147;
}
.seminar_tag.status03 {
	background: #01718f;
}
.seminar_tag.status04 {
	background: #003147;
}
.section_block .seminar_date {
	color: #a6a6a6;
	margin: 10px 0 5px;
	font-weight: bold;
	font-size: 1.1rem;
}
.seminar_list li h3 {
	font-size: 1.7rem;
	font-weight: bold;
	color: #121157;
	margin-bottom: 10px;
}
.seminar_list li p {
	font-size: 1.3rem;
}
.section_block .seminar_detail {
	margin-top: 0;
	position: absolute;
	bottom: 20px;
	right: 20px;
	left: 20px;
}
.section_block .seminar_list.archive .seminar_detail {
	bottom: 60px;
}
.seminar_list_btn {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
}
.seminar_list_btn a {
	display: block;
	background: #121157;
	color: #fff;
	text-align: center;
	padding: 3px 10px;
	border-radius: 2px;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.seminar_list_btn span {
	display: block;
	background: #ccc;
	color: #fff;
	text-align: center;
	padding: 3px 10px;
	border-radius: 2px;
}
@media only screen and (max-width: 736px) {
	.seminar_list li {
		width: 100%;
		margin: 15px 0 20px;
	}
	.seminar_list li a:hover {
		opacity: 1;
	}
}

/* bg_gray
----------------------------------------*/
.bg_gray {
	background: #f4f4f8;
	padding: 20px;
}
@media only screen and (max-width: 736px) {
	.bg_gray {
		padding: 15px;
	}
}

/* news_block
----------------------------------------*/
.news_block_second {
	width: 1200px;
	margin: 0 auto 37px;
}
.news_block_second:first-child {
	margin-top: 49px;
}
.news_block_second dl {
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	color: #666;
	font-size: 1.6rem;
}
.news_block_second dt {
	width: 190px;
	font-weight: bold;
	margin-bottom: 19px;
}
.news_block_second dt span {
	display: block;
	font-size: 1.3rem;
	color: #999;
}
.news_block_second dd {
	width: calc(100% - 190px);
	margin-bottom: 19px;
}
.news_block_second dd a {
	display: inline-block;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.news_block_second dd a[target="_blank"]::after {
	content: "";
	width: 12px;
	height: 12px;
	margin-bottom: 4px;
	display: inline-block;
	vertical-align: middle;
	background: url(../img/common/icon_external.svg) no-repeat left top / 100% auto;
	margin-left: 5px;
}
.news_block_second dd a:hover {
	opacity: .6;
}
@media only screen and (max-width: 736px) {
	.news_block_second {
		width: auto;
		margin: 0 8% 37px;
	}
	.news_block_second:first-child {
		margin-top: 35px;
	}
	.news_block_second dl {
		margin: 0;
		display: block;
		font-size: 1.4rem;
	}
	.news_block_second dt {
		width: 100%;
		margin-bottom: 8px;
	}
	.news_block_second dd {
		width: 100%;
		margin-bottom: 25px;
	}
	.news_block_second dd a {
		display: block;
	}
	.news_block_second dd a:hover {
		opacity: 1;
	}
}

/* pager
----------------------------------------*/
.pager {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 500;
	font-size: 1.6rem;
	margin-top: 95px;
}
.pager li {
	width: 30px;
	margin: 0 5px;
	text-align: center;
}
.pager li a,
.pager li span {
	width: 30px;
	height: 30px;
	line-height: 30px;
	display: block;
	color: #02A2AC;
	background: #f1f1f1;
	-webkit-transition: all 300ms;
	transition: all 300ms;
}
.pager li a {
	text-decoration: underline;
}
.pager li span {
	color: #fff;
	background: #02A2AC;
}
.pager li a:hover {
	opacity: .6
}
.pager li.btn_prev a,
.pager li.btn_next a {
	overflow: hidden;
	text-indent: -999px;
	background: url(../img/common/icon_arrow_green.svg) no-repeat center center;
	background-size: 12px auto;
}
.pager li.btn_prev {
	margin-right: 17px;
	transform: scale(-1, 1);
}
.pager li.btn_next a {
	overflow: hidden;
	text-indent: -999px;
}
.pager li.btn_next {
	margin-left: 17px;
}
@media only screen and (max-width: 736px) {
	.pager {
		margin-top: 50px;
		width: 100%;
		padding: 0 30px;
	}
	.pager li {
		margin: 5px;
	}
	.pager li.btn_prev {
		position: absolute;
		left: 0;
		top: 50%;
		margin: -15px 0 0;
	}
	.pager li.btn_next {
		position: absolute;
		top: 50%;
		right: 0;
		margin: -15px 0 0;
	}
}

/* research
----------------------------------------*/
.research_block dl {
	margin: 0 auto;
	border-top: solid 1px #dedede;
	border-left: solid 1px #dedede;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.research_block dt {
	width: 315px;
	background: #f1f1f1;
	font-weight: bold;
	padding: 13px 16px 12px;
	border-right: solid 1px #dedede;
	border-bottom: solid 1px #dedede;
}
.research_block dd {
	width: calc(100% - 315px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 13px 16px 12px;
	border-right: solid 1px #dedede;
	border-bottom: solid 1px #dedede;
}
.research_block .research_select {
	width: 100%;
}
.research_block .asterisk {
	width: 100%;
	font-size: 1.2rem;
	margin: 10px 0 0 1em;
	text-indent: -1em;
}
.research_block select {
	background: #fff url(../img/common/icon_select_arrow.svg) right 10px center no-repeat;
	text-align: left;
	text-indent: .01px;
	text-overflow: "";
	cursor: pointer;
	padding: 10px 25px 10px 15px;
	border: 1px solid #DEDEDE;
	-webkit-appearance: none;
	appearance: none;
	font-family: inherit;
}
.research_block select::-ms-expand {
	display: none;
}
.research_block select:focus {
	outline: none;
}
.research_block dd label {
	display: inline-block;
}
.research_scale_list {
	width: 350px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	margin: 0 20px;
}
.research_scale_list li {
	min-width: 20%;
	text-align: center;
}
.research_scale_list.research_radio {
	background: #aaa;
	padding: 4px 0;
}
.research_scale_list.research_radio input[type="radio"] {
	vertical-align: middle;
	width: 20px;
	height: 20px;
	border: solid 1px #ddd;
	border-radius: 50%;
	-webkit-appearance: none;
	appearance: none;
	background: #fff;
}
.research_scale_list.research_radio input[type="radio"]:checked {
	border-color: #006cb8;
}
.research_scale_list.research_radio input[type="radio"]:checked::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: #006cb8;
	border-radius: 50%;
	position: absolute;
	top: 4px;
	left: 4px;
}
.research_block input[type="checkbox"] {
	vertical-align: middle;
	width: 20px;
	height: 20px;
	border: solid 1px #ddd;
	border-radius: 0;
	-webkit-appearance: none;
	appearance: none;
	background: #fff;
	margin-right: 10px;
}
.research_block input[type="checkbox"]:checked {
	background: #006cb8;
	border: solid 1px #006cb8;
}
.research_block input[type="checkbox"]:checked::before {
	content: "";
	display: block;
	position: absolute;
	top: 6px;
	left: 4px;
	width: 8px;
	height: 3px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.research_block input[type="checkbox"]:focus {
	outline: none;
}
.research_check li label {
	padding-left: 17px;
	text-indent: -17px;
}
.research_check li + li {
	margin-top: 5px;
}
.research_form textarea {
	resize: none;
	width: 100%;
	height: 200px;
	padding: 10px;
	font-family: inherit;
	border: solid 1px #DEDEDE;
}
.research_submit {
	line-height: 1.2;
	width: 307px;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	color: #fff;
	border: none;
	font-family: inherit;
	border: 1px solid #E58B03;
	background-color: #E58B03;
	padding: 5px 35px;
	min-width: 250px;
	font-size: 2rem;
	cursor: pointer;
	padding: 1.4rem 2.5rem;
	font-size: 1.4285em;
	font-weight: bold;
	border-radius: 4px;
	outline: none;
	-webkit-transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 300ms;
	transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 300ms;
}
.research_back {
	font-weight: bold;
	line-height: 1.2;
	position: relative;
	display: inline-block;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 64px;
	max-width: 100%;
	padding: 1rem 2.5rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	text-decoration: none;
	color: #212121;
	border: 1px solid #DEDEDE;
	border-radius: 4px;
	outline: none;
	background: #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: inherit;
	cursor: pointer;
	-webkit-transition: all 300ms;
	transition: all 300ms;
}
.research_submit[disabled] {
	background: #eee;
	color: #666;
	border: 1px solid #DEDEDE;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, .2), 0 0 0 0 rgba(0, 0, 0, .14), 0 0 0 0 rgba(0, 0, 0, .12);
	cursor: not-allowed;
}
.research_submit:hover,
.research_back:hover {
	opacity: .6;
}
.research_submit:active,
.research_back:active {
	-webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
	box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
}
.research_submit[disabled]:hover {
	opacity: 1;
}
.research_agree {
	margin-left: 17px;
	text-indent: -17px;
	font-size: 1.4rem !important;
	font-weight: bold;
	text-align: center;
}
.research_agree * {
	text-indent: 0;
}
.research_agree a {
	color: #1436D9;
	text-decoration: underline;
	-webkit-transition: opacity 200ms;
	transition: opacity 200ms;
}
.research_scale_text {
	margin-top: 20px;
}
.research_select {
	width: 100%;
}
.research_select + .research_select {
	margin-top: 20px;
}
.research_agree a:hover {
	opacity: .6;
}
.research_block form.business option[data-type="1"],
.research_block form.sbc option[data-type="2"] {
	display: none;
}
.research_required {
	padding: 1px 6px;
	border-radius: 2px;
	background-color: #e83434;
	color: #fff;
	font-size: 10px;
	display: inline-block;
	font-weight: bold;
	margin-left: 10px;
}
.research_tel {
	margin-top: 50px;
	font-size: 1.3rem;
	text-align: center;
}
.research_tel p {
	font-size: 1.3rem !important;
}
.research_tel dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto;
	text-align: left;
	width: 400px;
}
.research_tel dt {
	width: 5em;
}
.research_tel dd {
	width: calc(100% - 5em);
}
.research_tel dd span {
	display: block;
	margin-left: 5em;
}
.research_tel dd a[href^="tel:"] {
	pointer-events: none;
}
@media only screen and (max-width: 736px) {
	.research_block dl {
		display: block;
	}
	.research_submit:hover {
		opacity: 1;
	}
	.research_block dt {
		width: 100%;
		padding: 10px 15px;
	}
	.research_block dd {
		width: 100%;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding: 10px 15px;
	}
	.research_scale {
		width: 100%;
		order: 10;
	}
	.research_scale_list {
		width: 100%;
		margin: 0;
	}
	.research_agree {
		font-size: 1.25rem !important;
	}
	.research_scale_text {
		margin-top: 0;
		text-align: center;
		line-height: 1.5 !important;
		font-size: 1.3rem !important;
	}
	.research_submit {
		font-size: 1.8rem;
	}
	.research_block select {
		max-width: 100%;
	}
	.research_tel {
		font-size: 1.2rem;
		text-align: left;
	}
	.research_tel p {
		font-size: 1.2rem !important;
	}
	.research_tel dl {
		width: 100%;
	}
	.research_tel dd a[href^="tel:"] {
		pointer-events: auto;
	}
}

/* seminar_detail
----------------------------------------*/
.section_block.seminar_detail {
	width: 878px;
}
.seminar_side {
	width: 300px;
	margin-left: 22px;
	order: 2;
}
.seminar_side_inner {
	width: 300px;
	background: #f4f4f8;
	padding: 40px 20px;
	z-index: 1100;
}
.seminar_side_text {
	position: static;
}
.seminar_side_inner.fixed {
	position: fixed;
	top: 16px;
}
.seminar_side .seminar_tag {
	position: absolute;
	top: 0;
	line-height: 1.8;
	font-size: 1.3rem;
	bottom: auto;
	right: 0;
}
.seminar_side strong {
	font-weight: bold;
}
.seminar_side p + p {
	margin-top: 20px;
}
.seminar_side select {
	font-family: inherit;
	height: 25px;
}
@media only screen and (max-width: 736px) {
	.section_block.seminar_detail {
		width: auto;
	}
	.seminar_side {
		width: 100%;
		margin-left: 0;
	}
	.seminar_side_inner {
		position: fixed;
		bottom: 0 !important;
		width: 100%;
		background: #f4f4f8;
		padding: 55px 5% 20px;
		box-shadow: 0 0 5px rgba(0,0,0,.6);
	}
	.seminar_side_toggle {
		position: absolute;
		top: 15px;
		left: 0;
		width: 100%;
		height: 25px;
		-webkit-appearance: none;
		appearance: none;
		background: none;
		border: none;
		text-align: center;
		font-family: inherit;
	}
	.seminar_side_toggle:focus {
		outline: none;
	}
	.seminar_side_toggle::before {
		content: "";
		display: inline-block;
		width: 8px;
		height: 8px;
		border-bottom: 2px solid #666;
		border-right: 2px solid #666;
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
		margin: 0 8px 0 0;
		top: 3px;
		position: relative;
	}
	.seminar_side_toggle.open::before {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: -2px;
	}
	.seminar_side_inner.fixed {
		top: auto !important;
		bottom: 0 !important;
	}
	.seminar_side_text {
		display: none;
		padding-bottom: 15px;
	}
	.seminar_side_inner .btn_arrow {
		margin-top: 0;
	}
	.seminar_side_inner .btn_arrow + .btn_arrow {
		margin-top: 15px;
	}
}
/* translation tool addtion
----------------------------------------*/
.t-m-button.is-m-dl {
  font-size: 1.7rem;
  margin-top: 4px;
  background-color: #3273dc;
  color: #fff;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-box-align: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 3px;
  box-shadow: none;
  display: inline-flex;
  height: 2.25em;
  line-height: 1.5;
  padding-top: cal(0.375em - 1px);
  position: relative;
  vertical-align: top;
  user-select: none;
  cursor: pointer;
  -webkit-box-pack: center;
  justify-content: center;
  padding-left: 0.75em;
  padding-right: 0.75em;
  white-space: nowrap;
}

.t-m-button.is-link:hover, .t-m-button.is-link.is-hovered {
  background-color: #276cda;
  border-color: transparent;
  color: #fff;
}

.t-m-button.is-link:focus, .t-m-button.is-link.is-focused {
  border-color: transparent;
  color: #fff;
}

.t-m-button.is-link:focus:not(:active), .t-m-button.is-link.is-focused:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
          box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

.t-m-button.is-link:active, .t-m-button.is-link.is-active {
  background-color: #2366d1;
  border-color: transparent;
  color: #fff;
}

.t-m-button.is-link[disabled] {
  background-color: #3273dc;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* num_list
----------------------------------------*/
.num_list {
	counter-reset: content-main-ol-default;
	margin: 7px 0;
}
.num_list > li {
	padding: 0 0 7px 20px;
}
.num_list > li::before {
	content: counter(content-main-ol-default, decimal) ". ";
	counter-increment: content-main-ol-default;
	color: #1ECBCA;
	position: absolute;
	top: 0;
	left: 0;
}
.num_list > li .num_list li::before {
	color: #5b5b5b;
}
.num_list > li:nth-child(n+5)::before {
	left: -3px;
}

/* blog
----------------------------------------*/
.blog_side_keyword {
	padding-top: 94px;
	margin-bottom: 30px;
}
.blog_side_keyword input[type="text"] {
	border: 1px solid #ccc;
	width: 100%;
	padding: 7px 14px;
	font-family: inherit;
	font-size: 1.6rem;
	border-radius: 0;
}
.blog_side_keyword input[type="text"]::placeholder {
	color: #ccc;
	opacity: 1;
}
.blog_side_keyword input[type="text"]:-ms-input-placeholder {
	color: #ccc;
}
.blog_side_keyword input[type="text"]::-ms-input-placeholder {
	color: #ccc;
}
.blog_side_btn {
	margin-top: 20px;
}
.blog_side_btn button {
	-webkit-appearance: none;
	appearance: none;
	width: 208px;
	display: block;
	margin: 0 auto;
	padding: 11px 20px;
	border: none;
	background: #00A2AC url(../img/index/icon_btn_arrow.svg) no-repeat right 10px center / 15px auto;
	font-weight: bold;
	color: #fff;
	font-family: inherit;
	font-size: 1.2rem;
	cursor: pointer;
	-webkit-transition: background-position 300ms, opacity 300ms;
	transition: background-position 300ms, opacity 300ms;
}
.blog_side_btn button:hover {
	opacity: .6;
	background-position: right 5px center;
}
.blog_side_filter {
	background: #F1F1F1;
	margin-bottom: 20px;
	padding: 25px 0 30px;
}
.blog_side_filter .blog_side_ttl {
	background: none;
	font-size: 2rem;
	color: #121157;
	font-weight: bold;
	margin-bottom: 25px;
}
.blog_side_filter .blog_side_ttl::after {
	content: "";
	background: #121157;
	display: block;
	height: 2px;
	width: 50px;
	margin: 17px auto 0;
}
.blog_side_filter ul {
	margin: 0 30px 27px;
}
.blog_side_filter ul li {
	text-align: left;
	font-size: 1.6rem;
}
.blog_side_filter ul li + li {
	margin-top: 7px;
}
.blog_side_filter ul li input[type="checkbox"] {
	position: absolute;
	height: 0;
	width: 0;
	visibility: hidden;
	opacity: 0;
}
.blog_side_filter ul li input[type="checkbox"] + label {
	display: inline-block;
	padding-left: 38px;
}
.blog_side_filter ul li input[type="checkbox"] + label::before {
	content: "";
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	background: #fff;
	border: 5px solid #fff;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.blog_side_filter ul li input[type="checkbox"]:checked + label::before {
	background: #00A2AC;
}
.blog_nav {
	margin: 26px 0 0 11px;
}
.blog_nav .pager {
	margin: 0 118px;
}
.blog_show {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.6rem;
	color: #666;
	z-index: 10;
}
.blog_show select {
	color: #666;
	font-family: inherit;
	font-size: 1.6rem;
	padding: 3px 7px;
	margin-right: 5px;
	vertical-align: -2px;
}
.blog_sort {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	font-weight: bold;
	font-size: 1.8rem;
	text-align: center;
	margin: 37px 0 40px 11px;
}
.blog_sort li {
	width: 31.833%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.blog_sort li a {
	width: 100%;
	color: #ccc;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 14px;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.blog_sort li a:hover {
	opacity: .6;
}
.blog_sort li a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #ccc;
	height: 4px;
}
.blog_sort li.current a {
	color: #00A2AC;
}
.blog_sort li.current a::after {
	background: #00A2AC;
	height: 8px;
}
.blog_list {
	margin-left: 11px;
}
.blog_list li {
	border-bottom: 1px solid #ccc;
	padding-bottom: 40px;
	margin-bottom: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.blog_list figure {
	width: 276px;
	margin: 0 32px 0 0;
	overflow: hidden;
}
.blog_list figure img {
	display: block;
	width: 100%;
	-webkit-transition: transform 300ms;
	transition: transform 300ms;
}
.blog_list figure a {
	display: block;
}
.blog_list figure a:hover img {
	transform: scale(1.1);
}
.blog_list_txt {
	width: calc(100% - 308px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.blog_helpful {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.blog_helpful a {
	display: block;
}
.blog_helpful span:first-child {
	display: inline-block;
	border: 2px solid #121157;
	color: #121157;
	font-weight: bold;
	padding: 1px 8px 0;
	font-size: 1.3rem;
	-webkit-transition: background 300ms, color 300ms;
	transition: background 300ms, color 300ms;
}
.blog_helpful span:last-child {
	display: inline-block;
	font-size: 1.2rem;
	font-weight: bold;
	color: #121157;
	background: #F1F1F1;
	border-radius: 5px;
	padding: 3px 9px 2px;
	margin-left: 15px;
}
.blog_helpful a:hover span:first-child {
	background: #121157;
	color: #fff;
}
.blog_helpful span:last-child::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 6px 12px;
	border-color: transparent transparent #F1F1F1;
	position: absolute;
	top: 9px;
	left: -12px;
}
.section_block .blog_category {
	margin: 0 0 -5px 21px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.section_block .blog_category span,
.section_block .blog_category a {
	display: block;
	font-size: 1.2rem;
	font-weight: bold;
	color: #00A2AC;
	border: 1px solid #00A2AC;
	border-radius: 14px;
	padding: 2.5px 20px;
	margin-bottom: 5px;
	-webkit-transition: color 300ms, background 300ms;
	transition: color 300ms, background 300ms;
}
.section_block .blog_category a:hover {
	color: #fff;
	background: #00A2AC;
}
.section_block .blog_category span + span,
.section_block .blog_category a + a {
	margin-left: 5px;
}
.blog_ttl {
	width: 100%;
	font-size: 2.2rem;
	color: #121157;
	font-weight: bold;
	margin: 13px 0 23px;
}
.blog_ttl a {
	display: block;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.blog_ttl a:hover {
	opacity: .6;
}
.section_block .blog_consultant {
	width: 100%;
	font-size: 1.8rem;
	color: #1436D9;
	font-weight: bold;
	margin: 0;
}
.section_block .blog_consultant a {
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.section_block .blog_consultant a:hover {
	opacity: .6;
}
.section_block .blog_date {
	margin: 0;
	font-size: 1.3rem;
	color: #666;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: .02em;
}
.section_block .blog_more {
	margin: 0 0 0 auto;
}
.section_block .blog_more a {
	display: block;
	font-size: 1.3rem;
	line-height: 1.4;
	color: #1436D9;
	text-decoration: underline;
	display: inline-block;
	padding-left: 19px;
	background: url(../img/common/icon_arrow_01.svg) no-repeat left 1px / 8px auto;
}
.section_block .blog_more a:hover {
	text-decoration: none;
}
.blog .section_block:first-child {
	width: 869px;
}
.blog_header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-top: 11px;
	margin-bottom: 29px;
}
.blog_header h2 {
	width: 100%;
	font-size: 3rem;
	font-weight: 800;
	letter-spacing: .005em;
	color: #121157;
	margin-bottom: 15px;
}
.blog_header .blog_category {
	width: 100%;
	margin: 0 0 12px;
}
.blog_header .blog_category span {
	padding: 3.5px 20px;
}
.blog_header .blog_consultant {
	width: auto;
	margin-left: 17px;
}
.blog_header .blog_consultant img {
	vertical-align: -8px;
	margin-right: 11px;
}
.blog_btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 82px;
}
.section_block .blog_btn p {
	margin: 0 5px 0 0;
}
.blog_btn_twitter a {
	display: block;
	background: #1DA1F2 url(../img/blog/icon_twitter.svg) no-repeat 10px center;
	color: #fff;
	padding: 4px 9px 3px 35px;
	font-size: 1.2rem;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.blog_btn_facebook a {
	display: block;
	background: #39579A url(../img/blog/icon_facebook.svg) no-repeat 10px center;
	color: #fff;
	padding: 4px 17px 3px 38px;
	font-size: 1.2rem;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.blog_btn_twitter a:hover,
.blog_btn_facebook a:hover,
.blog_related li a:hover {
	opacity: .6;
}
.blog_main {
	margin-bottom: 22px;
}
.blog_txt p {
	font-size: 1.6rem;
	color: #333;
	line-height: 1.7;
}
.blog_txt p + p {
	margin-top: 27px;
}
.blog_txt .ttl_h3 {
	margin: 52px 0 25px;
}
.blog_txt .ttl_h3:first-child {
	margin-top: 0;
}
.blog_share,
.blog_login {
	background: #F1F1F1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 63px 0 61px;
	padding: 23px 20px 32px;
}
.blog_login {
	margin: 30px 0 61px;
	display: block;
	text-align: center;
}
.section_block .blog_share_ttl,
.section_block .blog_login_ttl {
	width: 100%;
	font-size: 1.8rem;
	font-weight: bold;
	color: #121157;
	text-align: center;
	letter-spacing: .03em;
}
.section_block .blog_login_ttl {
	font-size: 2.2rem;
	color: inherit;
}
.section_block .blog_login_ttl::before {
	content: "";
	width: 17px;
	height: 22px;
	display: inline-block;
	margin-right: 10px;
	vertical-align: -2px;
	background: url(../img/blog/icon_login.svg) no-repeat left top / 17px;
}
.section_block .blog_login_ttl + p {
	margin-top: 10px;
}
.section_block .blog_share .blog_btn_twitter,
.section_block .blog_share .blog_btn_facebook {
	margin: 13px 5px 0;
}
.section_block .blog_share .blog_btn_twitter a,
.section_block .blog_share .blog_btn_facebook a {
	font-size: 1.3rem;
	font-weight: bold;
	width: 188px;
	text-align: center;
	padding: 12px 32px 12px 77px;
}
.section_block .blog_share .blog_btn_twitter a {
	background-size: 31px auto;
	background-position: 17px center;
}
.section_block .blog_share .blog_btn_facebook a {
	background-size: 30px auto;
	background-position: 16px center;
	padding-right: 45px;
}
.blog_related li {
	margin-bottom: 30px;
}
.blog_related li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.blog_related li a figure {
	width: 240px;
}
.blog_related li a figure img {
	width: 100%;
	display: block;
}
.blog_related li a .blog_related_txt {
	width: calc(100% - 274px);
}
.blog_related li a .blog_related_txt h3 {
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.65;
	color: #121157;
	margin-bottom: 9px;
}
.blog .section_block + .lnav_block {
	margin-right: 0;
	margin-left: 30px;
}
.blog_pickup {
	background: #F1F1F1;
	margin: 16px 0 31px;
	padding: 25px 24px 34px;
}
.blog_pickup a {
	display: block;
	-webkit-transition: opacity 300ms;
	transition: opacity 300ms;
}
.blog_pickup a:hover {
	opacity: .6;
}
.blog_pickup_ttl {
	font-size: 2rem;
	color: #121157;
	font-weight: bold;
	margin-bottom: 22px;
}
.blog_pickup_ttl::after {
	content: "";
	display: block;
	width: 50px;
	height: 2px;
	margin: 17px auto 0;
	background: #121157;
}
.blog_pickup .blog_ttl {
	text-align: left;
	font-size: 1.6rem;
	margin: 21px 2px 10px;
	letter-spacing: .02em;
}
.blog_pickup .blog_date {
	text-align: left;
	font-weight: bold;
	color: #666;
	font-size: 1.3rem;
	letter-spacing: .03em;
	margin-top: 0;
}
.blog_trend_ttl {
	font-size: 2.2rem;
	color: #121157;
	padding-bottom: 8px;
	border-bottom: 2px solid #121157;
	margin-bottom: 19px;
}
.blog_trend ol {
	counter-reset: content-main-ol-default;
}
.blog_trend ol a {
	display: block;
	min-height: 120px;
	text-align: left;
	padding: 0 15px 4px 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	align-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.blog_trend ol li {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #ccc;
}
.blog_trend ol li a::before {
	content: counter(content-main-ol-default, decimal);
	counter-increment: content-main-ol-default;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 30px;
	background: #00A2AC;
	color: #fff;
	font-weight: bold;
	font-size: 1.8rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.blog_trend .blog_ttl,
.blog_trend .blog_date {
	width: 100%;
	letter-spacing: .025em;
}
.blog_trend .blog_ttl {
	margin: 0 0 7px;
	font-size: 1.6rem;
}
.blog_trend .blog_date {
	font-size: 1.3rem;
	font-weight: bold;
	color: #666;
}
.blog .section_block:first-child:last-child {
	width: 1200px;
}
.blog_profile {
	padding-top: 9px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 60px;
}
.blog_profile figure {
	width: 258px;
}
.blog_profile figure img {
	display: block;
	width: 100%;
}
.blog_profile_txt {
	width: calc(100% - 299px);
	color: #333;
	margin-top: -6px;
}
.blog_profile_txt h3 {
	font-size: 2.6rem;
	margin-bottom: 28px;
}
.blog_profile_company {
	font-size: 1.6rem;
	vertical-align: 3px;
	margin-right: 20px;
}
.blog_profile_txt h3 a {
	font-size: 1.2rem;
	color: #1436D9;
	text-decoration: underline;
	vertical-align: middle;
	margin-left: 50px;
	display: inline-block;
}
.blog_profile_txt h3 a:hover {
	text-decoration: none;
}
.blog_profile_txt h3 a::after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 8px;
	background: url(../img/blog/icon_external.svg) no-repeat;
	margin-left: 9px;
}
.blog_profile_list {
	columns: 2;
	max-height: 192px;
	margin-bottom: 21px;
	margin-right: -25px;
}
.blog_profile_list li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	break-inside: avoid-column;
	padding-bottom: 10px;
	margin-right: 25px;
}
.blog_profile_list li h4 {
	background: #121157;
	text-align: center;
	color: #fff;
	width: 114px;
	font-size: 1.3rem;
	padding: 6px 5px 4px;
}
.blog_profile_list li p {
	width: calc(100% - 114px);
	padding: 1px 0 0 21px;
	font-size: 1.4rem;
	line-height: 1.95;
}
.blog_profile_message {
	background: #F1F1F1;
	padding: 18px 26px;
}
.blog_profile_message p {
	font-size: 1.5rem;
}
.blog_post .ttl_h3 {
	margin-left: 0;
}
.blog_post ul {
	margin-left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.blog_post ul li {
	width: 23.583%;
	margin: 0 0 30px 1.889%;
}
.blog_post ul li:nth-child(4n+1) {
	margin-left: 0;
}
.blog_post ul li figure {
	margin-bottom: 20px;
	overflow: hidden;
}
.blog_post ul li figure img {
	width: 100%;
	display: block;
	-webkit-transition: transform 300ms;
	transition: transform 300ms;
}
.blog_post ul li figure a:hover img {
	transform: scale(1.1);
}
.blog_post_txt {
	margin: 0 19px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.blog_post_txt .blog_helpful {
	margin-bottom: 10px;
}
.blog_post_txt .blog_ttl {
	width: 100%;
	font-size: 1.6rem;
	margin: 9px 0 2px;
}
.blog_post_txt .blog_category {
	width: 100%;
	margin-left: 0;
}
.blog_post_txt .blog_more {
	text-align: right;
	margin-top: 10px;
}
.blog_post + .pager {
	margin-top: 40px;
}
@media only screen and (max-width: 736px) {
	.blog.contents {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.blog .lnav_block {
		order: 1;
		width: 100%;
	}
	.blog .lnav_block + .section_block {
		width: 100%;
		order: 0;
	}
	.blog_side_keyword {
		padding-top: 0;
	}
	.blog_side_btn button:hover {
		opacity: 1;
		background-position: right 10px center;
	}
	.blog_side_filter {
		padding: 20px 0;
	}
	.blog_side_filter .blog_side_ttl {
		font-size: 1.8rem;
	}
	.blog_side_filter .blog_side_ttl::after {
		margin: 10px auto 0;
	}
	.blog_side_filter ul {
		margin: 0 6% 27px;
		display: block;
		background: none;
		position: relative;
	}
	.blog_nav {
		margin: 0;
	}
	.blog_nav .pager {
		margin: 0;
	}
	.blog_show {
		margin-bottom: 20px;
		position: relative;
	}
	.blog_sort {
		font-size: 1.5rem;
		margin: 20px 0 40px;
	}
	.blog_sort li a {
		padding-bottom: 10px;
		white-space: nowrap;
		line-height: 1.3;
	}
	.section_block .blog_consultant a:hover,
	.blog_sort li a:hover {
		opacity: 1;
	}
	.blog_sort li a::after {
		height: 3px;
	}
	.blog_sort li.current a::after {
		height: 6px;
	}
	.blog_list {
		margin-left: 0;
	}
	.blog_list li {
		padding-bottom: 30px;
		margin-bottom: 30px;
		display: block;
	}
	.blog_list figure {
		width: 100%;
		margin: 0 0 20px;
	}
	.blog_list figure a:hover img,
	.blog_post ul li figure a:hover img {
		transform: scale(1);
	}
	.blog_list_txt {
		width: 100%;
	}
	.blog_helpful span:first-child {
		font-size: 1.2rem;
	}
	.blog_helpful span:last-child {
		font-size: 1.1rem;
	}
	.blog_ttl {
		font-size: 1.8rem;
		margin: 13px 0 15px;
	}
	.blog_ttl a:hover {
		opacity: 1;
	}
	.blog_helpful a:hover span:first-child {
		background: none;
		color: #121157;
	}
	.section_block .blog_consultant {
		font-size: 1.6rem;
	}
	.section_block .blog_date {
		font-size: 1.2rem;
	}
	.section_block .blog_more a:hover {
		text-decoration: underline;
	}
	.blog .section_block:first-child {
		width: 90%;
	}
	.blog_header {
		padding-top: 0;
		margin-bottom: 10px;
	}
	.blog_header h2 {
		font-size: 2rem;
	}
	.blog_header .blog_category {
		margin: 0 0 10px;
	}
	.section_block .blog_category span,
	.section_block .blog_category a {
		padding: 2px 10px;
	}
	.section_block .blog_category a:hover {
		color: #00A2AC;
		background: none;
	}
	.blog_header .blog_category span {
		padding: 2.5px 20px;
	}
	.blog_btn {
		margin: 10px -2.5px 0;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.section_block .blog_btn p {
		margin: 0 2.5px 10px;
	}
	.blog_btn .blog_helpful span:first-child {
		padding: 1px 4px 0;
	}
	.blog_btn .blog_helpful span:last-child {
		padding: 3px 6px 2px;
	}
	.blog_btn_twitter a {
		background-position: 8px center;
		padding: 4px 8px 3px 33px;
		font-size: 1.1rem;
	}
	.blog_btn_facebook a {
		background-position: 8px center;
		padding: 4px 8px 3px 34px;
		font-size: 1.1rem;
	}
	.blog_btn_twitter a:hover,
	.blog_btn_facebook a:hover,
	.blog_related li a:hover {
		opacity: 1;
	}
	.blog_txt p {
		font-size: 1.5rem;
	}
	.blog_txt p + p {
		margin-top: 20px;
	}
	.blog_txt .ttl_h3 {
		margin: 50px 0 25px;
	}
	.blog_share,
	.blog_login {
		margin: 50px 0;
		padding: 23px 10px 32px;
	}
	.blog_login {
		margin: 30px 0 50px;
		padding: 23px 10px 32px;
	}
	.section_block .blog_share_ttl {
		font-size: 1.6rem;
	}
	.section_block .blog_login_ttl {
		font-size: 2rem;
		line-height: 1.5;
	}
	.section_block .blog_login_ttl::before {
		margin-left: -27px;
	}
	.section_block .blog_share .blog_btn_twitter a,
	.section_block .blog_share .blog_btn_facebook a {
		font-size: 1.3rem;
		width: 145px;
		padding: 12px 10px 12px 40px;
	}
	.section_block .blog_share .blog_btn_twitter a {
		background-size: 25px auto;
		background-position: 14px center;
	}
	.section_block .blog_share .blog_btn_facebook a {
		background-size: 25px auto;
		background-position: 14px center;
		padding-right: 10px;
	}
	.blog_related li:last-child {
		margin-bottom: 0;
	}
	.blog_related li a {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.blog_related li a figure {
		width: 44.378%;
	}
	.blog_related li a .blog_related_txt {
		margin-top: -3px;
		width: calc(55.622% - 20px);
	}
	.blog_related li a .blog_related_txt h3 {
		font-size: 1.5rem;
		line-height: 1.5;
		margin-bottom: 5px;
	}
	.blog_related .blog_consultant {
		font-size: 1.5rem;
	}
	.blog .section_block + .lnav_block {
		margin: 0 5%;
	}
	.blog_pickup {
		margin: 0 0 31px;
		padding: 25px 5%;
	}
	.blog_pickup a:hover {
		opacity: 1;
	}
	.blog_pickup_ttl {
		font-size: 1.8rem;
	}
	.blog_pickup_ttl::after {
		margin: 10px auto 0;
	}
	.blog_trend_ttl {
		font-size: 2rem;
	}
	.blog .section_block:first-child:last-child {
		width: auto;
	}
	.blog_profile {
		padding-top: 0;
		display: block;
		margin-bottom: 40px;
	}
	.blog_profile figure {
		width: 40%;
	}
	.blog_profile_txt {
		width: auto;
		margin-top: 20px;
	}
	.blog_profile_txt h3 {
		font-size: 2rem;
		position: absolute;
		left: 45%;
		bottom: 100%;
		right: 0;
		margin-top: 0;
		margin-bottom: 15px;
	}
	.blog_profile_company {
		font-size: 1.2rem;
		display: block;
		margin-right: 0;
	}
	.blog_profile_txt h3 a {
		margin-left: 0;
		word-break: break-all;
	}
	.blog_profile_txt h3 a:hover {
		text-decoration: underline;
	}
	.blog_profile_txt h3 a::after {
		margin-left: 5px;
	}
	.blog_profile_list {
		columns: 1;
		max-height: none !important;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.blog_profile_list li {
		margin-right: 0;
	}
	.blog_profile_list li h4 {
		width: 100px;
		font-size: 1.2rem;
	}
	.blog_profile_list li p {
		width: calc(100% - 100px);
		padding: 1px 0 0 10px;
		font-size: 1.4rem;
		line-height: 1.8;
	}
	.blog_post ul {
		margin-left: 0;
	}
	.blog_post ul li {
		width: 47.5%;
		margin: 0 0 30px 5%;
	}
	.blog_post ul li:nth-child(2n+1) {
		margin-left: 0;
	}
	.blog_post ul li figure {
		width: auto;
		margin: 0 0 10px;
	}
	.blog_post_txt {
		width: auto;
		margin: 0;
	}
	.blog_post_txt .blog_ttl {
		font-size: 1.5rem;
		margin: 10px 0 2px;
	}
	.blog_post + .pager {
		margin-top: 30px;
	}
}

/* research
----------------------------------------*/
.img_col_block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.img_border img {
	border: 1px solid #ccc;
}
.img_col_block > figure {
	margin-left: 30px;
}
.img_col_block > figure:first-child {
	margin-left: 0;
}
.img_col_block .col_box {
	width: calc(40% - 20px);
	padding-right: 20px;
}
.img_col_block > img {
	width: 60%;
}
.research_detail {
	width: 395px;
	text-align: center;
	padding: 20px 10px;
	border: 1px solid #0064d2;
}
.research_detail p {
	line-height: 1.5;
}
.e-contents-inner .report_block {
	margin-left: 3.264%;
	margin-right: 3.264%;
}
@media only screen and (max-width: 736px) {
	.img_col_block {
		display: block;
	}
	.img_col_block > figure {
		margin-left: 0;
	}
	.img_col_block .col_box {
		width: 100%;
		padding-right: 20px;
	}
	.img_col_block > img {
		width: 100%;
	}
	.research_detail {
		width: 100%;
		margin-top: 20px;
		padding: 20px 5%;
	}
	.img_col_block figure + figure {
		margin-top: 20px;
	}
}