/**
 * window size:
 * SMP: ~736px
 * Tablet/PC: 736px~
 * contents size max 1000px
 * contents size max contain padding 1100px
 * contents size max contain padding and scroll 1120px
**/

/**
 * base style
**/

.wrapper {
	width: 1000px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

@media (max-width: 1050px) {
	.wrapper {
		width: 100%;
	}
}

@media (max-width: 736px) {
	.wrapper {
		padding: 0 1.5rem;
	}
}



/**
 * .global-header
**/

.global-header {
	clear: both;
	overflow: hidden;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 1;
}

.global-header-logo {
	position: absolute;
	padding: 2.8rem 0 0;
	line-height: 1;
}

.global-header-logo img {
	width: 15.7rem;
	height: auto;
}

.global-header-nav-hamburger {
	display: none;
}

.global-header-menu {
	float: right;
}

.global-header-search {
	margin: 2.8rem 0 1.7rem;
	text-align: right;
}

.global-header-search input[type="text"] {
	width: 25rem;
	margin: 0 1rem 0 0;
	padding: 0.5rem 1rem;
	border: solid 1px #f3f3f3;
	background: #f3f3f3;
	font-size: 1.4rem;
	vertical-align: middle;
}

.global-header-search input[type="text"]:focus {
	background: #fff;
}

.global-header-search input[type="text"]:placeholder-shown {
	font-size: 1.4rem;
	font-weight: 600;
	opacity: 0.4;
}

.global-header-search input[type="submit"] {
	display: inline-block;
	width: 2.9rem;
	height: 2.9rem;
	margin: 0 3rem 0 0;
	padding: 0.3rem;
	background: #1d74a3 url("../images/ico_search.png") no-repeat center center;
	background-size: 1.6rem 2.2rem;
	vertical-align: middle;
	text-indent: -9999px;
	cursor: pointer;
}

.global-header-search input[type="submit"]:hover {
	background-color: #00baff;
}

.global-header-logout a {
	color: #333;
	font-size: 1.4rem;
	font-weight: 800;
	text-decoration: none;
}

.global-header-logout a:hover {
	color: #00baff;
}

.global-header-nav {
	clear: both;
	overflow: hidden;
	list-style: none;
	margin: 0 0 2rem;
	padding: 1.5rem 0 0;
}

.global-header-nav li {
	float: left;
	padding-right: 4rem;
}

.global-header-nav li:last-child {
	padding-right: 0;
}

.global-header-nav li a {
	color: #333;
	font-size: 1.4rem;
	text-decoration: none;
}

.global-header-nav li a.active {
	color: #1d74a3;
	text-decoration: underline;
}

.global-header-nav li a:hover {
	color: #00baff;
}

.global-header-nav-new {
	position: relative;
}

.global-header-nav-new:before {
	position: absolute;
	top: -1.5em;
	left: calc(50% - 1.5em);
	content: "NEW";
	display: inline-block;
	padding: 0 0.4rem;
	background: #f89671;
	color: #fff;
	font-size: 1rem;
}

@media (max-width: 1050px) {
	.global-header {
		padding: 0 2rem;
	}
}

@media (max-width: 736px) {
	.global-header {
		padding: 0;
		overflow: visible;
	}
	
	.global-header-logo {
		position: relative;
		padding: 2rem 0;
	}

	.global-header-logo img {
		width: 7.85rem;
		width: 8rem;
		height: auto;
	}
	
	.global-header-nav-hamburger {
		display: block;
		position: absolute;
		top: 1rem;
		right: 1rem;
		width: 4rem;
		padding: 1rem 0.8rem;
		cursor: pointer;
	}
	
	.global-header-nav-hamburger img {
		width: 100%;
		height: auto;
		vertical-align: top;
	}
	
	.global-header-menu {
		float: none;
		position: absolute;
		left: 0;
		width: 100%;
		padding: 0;
		background: #fff;
		z-index: 100;
		max-height: 0;
		transition: all 0.5s;
		overflow: hidden;
	}
	
	.global-header-menu.open {
		max-height: 100vh;
		box-shadow: 0 1.2rem 1rem -0.6rem rgba(0, 0, 0, 0.2);
		transition: all 0.5s;
	}
	
	.global-header-search {
		margin: 0;
		text-align: center;
	}

	.global-header-search input[type="text"] {
		width: calc(100% - 5rem);
		margin: 0 1rem 0 0;
		padding: 0.5em 0.5em;
		background: #f6f6f6;
	}
	
	.global-header-search input[type="submit"] {
		width: 3.3rem;
		height: 3.3rem;
		margin: 0;
	}
	
	.global-header-logout {
		display: block;
		margin: 2rem 0 0;
		border-top: solid 1px #999;
		border-bottom: solid 1px #999;
	}
	
	.global-header-logout a {
		display: block;
		padding: 1.2rem 1.5rem;
		font-size: 1.4rem;
		text-align: center;
		background: #999;
		color: #fff;
	}
	
	.global-header-nav {
		margin: 0;
		padding: 0;
	}
	
	.global-header-nav li {
		float: none;
		padding: 0;
		border-bottom: solid 1px #999;
	}

	.global-header-nav li a {
		display: block;
		padding: 1.2rem 1.5rem;
		font-size: 1.4rem;
		text-decoration: none;
	}
	
	.global-header-nav-new:before {
		position: absolute;
		top: calc(50% - 0.7em);
		left: auto;
		right: 1.5rem;
		padding: 0 0.5rem;
		font-size: 1.2rem;
	}
}



/**
 * .global-footer
**/

.global-footer-menu {
	clear: both;
	overflow: hidden;
	padding: 7rem 0 0;
}

.global-footer-ttl {
	float: left;
	font-size: 3rem;
	line-height: 1.4;
}

.global-footer-nav {
	float: right;
	padding-bottom: 3rem;
	list-style: none;
	font-size: 1.5rem;
}

.global-footer-nav > li {
	float: left;
	margin-left: 4.5rem;
}

.global-footer-nav > li > a {
	color: #333;
	font-weight: 600;
	text-decoration: none;
}

.global-footer-nav > li > a:hover {
	color: #00baff;
}

.global-footer-nav ul {
	list-style: none;
	font-size: 1.3rem;
}

.global-footer-nav ul > li {
	margin: 2rem 0;
}

.global-footer-nav ul > li a {
	color: #666;
	text-decoration: none;
}

.global-footer-nav ul > li a:hover {
	color: #00baff;
}

.global-footer-contact {
	clear: both;
	overflow: hidden;
	padding: 4rem 0;
	border-top: solid 1px #c8c8c8;
	font-size: 1.3rem;
}

.global-footer-contact-nav {
	float: right;
	list-style: none;
}

.global-footer-contact-nav li {
	float: left;
}

.global-footer-contact-nav li a {
	color: #666;
	text-decoration: none;
}

.global-footer-contact-nav li a:hover {
	color: #00baff;
}

.global-footer-contact-txt {
	line-height: 2;
}

.global-footer-contact-txt a {
	text-decoration: none;
}

.global-footer-menu2 {
	clear: both;
	overflow: hidden;
	padding: 5rem 0 7rem;
	background: #f3f3f3;
	font-size: 1.3rem;
}

.global-footer-nav2 {
	float: left;
	list-style: none;
}

.global-footer-nav2 li {
	float: left;
	margin-right: 3rem;
	list-style: none;
}

.global-footer-nav2 li a {
	text-decoration: none;
}

.global-footer-nav2 li a.blank:after {
	content: "";
	display: inline-block;
	width: 1.4rem;
	height: 1.1rem;
	background: url("../images/ico_blank.png") no-repeat;
	background-size: 100% auto;
	margin: 0 0 0 0.8rem;
}

.global-footer-nav2 li a:hover.blank:after {
	background-image: url("../images/ico_blank_on.png");
}

.global-footer-copyright {
	color: #999;
	text-align: right;
}

@media (max-width: 1050px) {
	.global-footer-menu {
		padding: 7rem 2rem 0;
	}
	
	.global-footer-menu2 {
		padding: 5rem 2rem 7rem;
	}
}

@media (max-width: 940px) {
	.global-footer-nav {
		float: none;
		clear: both;
		overflow: hidden;
		padding-top: 3rem;
	}
}

@media (max-width: 736px) {
	.global-footer-menu {
		padding: 4rem 0 0;
	}
	
	.global-footer-ttl {
		font-size: 2rem;
	}

	.global-footer-nav {
		padding: 0;
		font-size: 1.3rem;
	}

	.global-footer-nav > li {
		float: left;
		width: 33%;
		margin: 2rem 0 0 0;
	}

	.global-footer-nav > li:nth-child(4n) {
		width: 40%;
	}

	.global-footer-nav ul {
		font-size: 1.1rem;
	}

	.global-footer-nav ul > li {
		margin: 1rem 0;
	}
	
	.global-footer-contact {
		margin: 2rem 0 0;
		padding: 2rem 0;
		font-size: 1.1rem;
	}

	.global-footer-contact-nav {
		padding-bottom: 1rem;
	}

	.global-footer-contact-nav li {
		float: left;
	}
	
	.global-footer-contact-txt {
		clear: both;
		margin: 1rem 0 0;
		line-height: 1.5;
	}
	
	.global-footer-menu2 {
		padding: 2rem 0 3rem;
		font-size: 1.1rem;
	}
	
	.global-footer-nav2 {
		float: none;
	}
	
	.global-footer-nav2 li {
		float: none;
		margin: 0 0 1rem;
	}
}



/**
 * .toPageTopFixed
**/

.toPageTopFixed {
	opacity: 0;
	float: right;
	transition: all 300ms;
}

.toPageTopFixed.show {
	opacity: 0.8;
	transition: all 300ms;
}

.toPageTopFixed a {
	position: fixed;
	bottom: 2rem;
	margin-left: -4.6rem;
}

@media (max-width: 1050px) {
	.toPageTopFixed a {
		margin-left: -6.6rem;
	}
}

@media (max-width: 736px) {
	.toPageTopFixed a {
		margin-left: -4.6rem;
	}
}



/**
 * .top-contents
**/

.top-contents {
	height: 53.6rem;
	background: #f3f3f3 url("../images/img_top.png") top center no-repeat;
	position: relative;
}

.top-contents h1 {
	position: absolute;
	top: 6.3rem;
	left: 4rem;
	font-size: 4rem;
	font-weight: 200;
}

.top-contents h1 span {
	display: block;
	margin: 1.1rem 0 0;
	font-size: 1.4rem;
	font-weight: 200;
	line-height: 1.8;
}

.top-contents-help {
	position: absolute;
	top: 32rem;
	right: 0;
	width: 47rem;
}

.top-contents-help a {
	display: block;
	height: 10rem;
	background: #a2cc72 url("../images/bg_top_help.png") no-repeat center center;
	color: #fff;
	text-decoration: none;
}

.top-contents-help a:hover {
	background: #aaf257 url("../images/bg_top_help_on.png") no-repeat center center;
}

.top-contents-help-txt {
	display: block;
	padding: 2rem 0 0;
	text-align: center;
	font-size: 1.4rem;
}

.top-contents-help-ttl {
	display: block;
	text-align: center;
	font-size: 2.4rem;
	line-height: 1.7;
	text-decoration: underline;
}

.top-contents-help-ttl:after {
	content: "\03e";
	display: inline-block;
	margin-left: 1rem;
}

.top-contents-information {
	position: absolute;
	top: 4rem;
	right: 0;
	width: 47rem;
	height: 25rem;
	padding: 3.5rem 9.5rem 0;
	background: #1d74a3;
	color: #fff;
}

.top-contents-information:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	right: 0;
	top: 0;
	border-top: solid 2rem #fff;
	border-right: solid 2rem #fff;
	border-left: solid 2rem #146192;
	border-bottom: solid 2rem #146192;
}

.top-contents-information-date {
	display: block;
	font-size: 1.3rem;
}

.top-contents-information-ttl {
	display: block;
	margin: 1.8rem 0 0;
	font-size: 1.6rem;
}

.top-contents-information a {
	color: #fff;
	text-decoration: underline;
}

.top-contents-information a:hover {
	color: #00baff;
}

.flexslider {
	margin: 0;
	border: none;
	background: transparent;
}

.flexslider .slides > li {
}

.flex-control-paging {
	position: absolute;
	top: 17rem;
}

.flex-control-paging li a {
    background: #fff;
}

.flex-control-paging li a:hover {
    background: #fff;
}

.flex-control-paging li a.flex-active {
    background: #00baff;
}

.flex-direction-nav a {
    display: block;
    width: 3rem;
    height: 3rem;
    margin: -1.5rem 0 0;
    top: 10rem;
    color: #fff;
    transition: none;
    text-decoration: none;
}

.flex-direction-nav a.flex-prev:before {
    display: inline-block;
	width: 0;
	height: 0;
	content: "";
	border-top: transparent solid 0.8rem;
	border-bottom: transparent solid 0.8rem;
	border-left: transparent solid 1.5rem;
	border-right: #fff solid 1.5rem;
}

.flex-direction-nav a.flex-next:before {
    display: inline-block;
	width: 0;
	height: 0;
	content: "";
	border-top: transparent solid 0.8rem;
	border-bottom: transparent solid 0.8rem;
	border-left: #fff solid 1.5rem;
	border-right: transparent solid 1.5rem;
}

.flex-direction-nav a.flex-prev, 
.flexslider:hover .flex-direction-nav a.flex-prev {
    left: -7rem;
	opacity: 1;
}

.flex-direction-nav a.flex-next, 
.flexslider:hover .flex-direction-nav a.flex-next {
    right: -7rem;
	opacity: 1;
}

.flex-direction-nav a.flex-prev:hover:before {
	border-right: #00baff solid 1.5rem;
}

.flex-direction-nav a.flex-next:hover:before {
	border-left: #00baff solid 1.5rem;
}

@media (max-width: 1050px) {
	.top-contents-information {
		right: 1rem;
	}
	
	.top-contents-help {
		right: 1rem;
	}
}

@media (max-width: 820px) {
	.top-contents-help {
		width: 40rem;
	}
	
	.top-contents-information {
		width: 40rem;
		padding: 3.5rem 7.5rem 0;
	}
	
	.top-contents-information-date {
		font-size: 1.2rem;
	}
	
	.top-contents-information-ttl {
		margin: 1.5rem 0 0;
		font-size: 1.4rem;
	}
}

@media (max-width: 736px) {
	.top-contents {
		height: auto;
		background: #f3f3f3 url("../images/img_top.png") center top no-repeat;
		background-size: auto 22rem;
		position: relative;
	}

	.top-contents h1 {
		position: relative;
		height: 22rem;
		top: 0;
		left: 0;
		padding: 1.5rem 1rem;
		font-size: 2.4rem;
		font-weight: 200;
	}

	.top-contents h1 span {
		display: block;
		margin: 0.5rem 0 0;
		font-size: 1.3rem;
		font-weight: 200;
		line-height: 1.8;
		text-shadow: 1px 1px 1px #fff;
	}
	
	.top-contents-help {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
	}
	
	.top-contents-help a {
		height: auto;
		background-size: 100% auto;
	}
	
	.top-contents-help a:hover {
		background-size: 100% auto;
	}
	
	.top-contents-help-txt {
		padding: 2rem 0 0;
		font-size: 1.3rem;
	}
	
	.top-contents-help-ttl {
		padding: 0 0 2rem;
		font-size: 2rem;
	}
	
	.top-contents-information {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		margin: 1rem 0 0;
		padding: 2rem 2rem 1rem;
	}
	
	.top-contents-information:after {
		border-top: solid 2rem #f3f3f3;
		border-right: solid 2rem #f3f3f3;
	}
	
	.flex-control-paging {
		position: relative;
		top: 0;
		margin: 2rem 0 0;
	}
	
	.flex-direction-nav {
		display: none;
	}
}



/**
 * .ttl-content
**/

.ttl-content {
	padding: 3rem 0 2rem;
}

.ttl-content-ttl {
	margin: 2.5rem 4rem;
	font-size: 3.6rem;
	font-weight: 200;
}

.ttl-content-nav {
	clear: both;
	overflow: hidden;
	margin: 2rem 4rem 0;
	padding: 1.5rem 0;
	border-top: solid 1px #c8c8c8;
	list-style: none;
	font-size: 1.3rem;
}

.ttl-content-nav li {
	margin: 0 4rem 0 0;
	padding: 1rem 0;
	float: left;
}

.ttl-content-nav li a {
	color: #333;
	text-decoration: none;
}

.ttl-content-nav li a.active {
	color: #1d74a3;
	text-decoration: underline;
}

.ttl-content-nav li a:hover {
	color: #00baff;
}

@media (max-width: 736px) {
	.ttl-content {
		padding: 0;
	}
	
	.ttl-content-ttl {
		margin: 2rem 0;
		font-size: 2rem;
	}
	
	.ttl-content-nav {
		margin: 2rem 0 0.5rem;
		padding: 1.5rem 0;
		list-style: none;
		font-size: 1.1rem;
	}

	.ttl-content-nav li {
		margin: 0 4rem 0 0;
		padding: 1rem 0;
		float: left;
	}
}

.ttl-content.help {
	background: #a2cc72;
}

.help .ttl-content-ttl {
	margin: 2.5rem 4rem;
	color: #fff;
}

.ttl-content-ttl span {
	margin-left: 2rem;
	font-size: 1.4rem;
	font-weight: 400;
}

@media (max-width: 736px) {
	.help .ttl-content-ttl {
		margin: 0;
		padding: 2rem 0;
		font-size: 2rem;
	}
	
	.ttl-content-ttl span {
		display: block;
		margin-left: 0;
		font-size: 1.2rem;
	}
}



/**
 * .index-items
**/

.index-content {
	background: #f3f3f3;
}

.index-items {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: space-between;
	padding: 6rem 0;
	list-style: none;
}

.index-items li {
	display: flex;
	width: calc(50% - 0.5rem);
	height: 240px;
	overflow: hidden;
}

.index-items li:nth-child(n + 3) {
	margin-top: 1rem;
}

.index-items li a {
	text-decoration: none;
}

.index-item {
	display: table;
	width: 100%;
}

.index-item > span {
	display: table-cell;
	height: 240px;
	overflow: hidden;
}

.index-item > span:first-child {
	width: 43%;
	padding: 1.2rem 0;
	background: #fff;
	text-align: center;
	vertical-align: middle;
}

.index-item > span:last-child {
	width: 57%;
	padding: 2.2rem 3.6rem 2rem 0;
}

.index-item img {
	width: 64%;
	border: solid 1px #f3f3f3;
}

.index-date {
	display: block;
	font-size: 1.2rem;
	font-weight: 300;
}

.index-date-new {
	display: inline-block;
	margin-right: 0.5rem;
	padding: 0 0.5rem;
	background: #f89671;
	color: #fff;
	font-size: 1.1rem;
}

.index-ttl {
	display: block;
	margin-top: 1.5rem;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.8;
}

.index-items li .index-item > span:last-child {
	background: #fff;
	position: relative;
}

.index-items li:nth-child(4n + 3) .index-item > span:last-child, 
.index-items li:nth-child(4n + 4) .index-item > span:last-child {
	background: #fff;
}

.index-items li .index-item > span:last-child:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	right: 0;
	top: 0;
	border-top: solid 10px #f3f3f3;
	border-right: solid 10px #f3f3f3;
	border-left: solid 10px #146192;
	border-bottom: solid 10px #146192;
}

.index-items li:nth-child(4n + 3) .index-item > span:last-child:after, 
.index-items li:nth-child(4n + 4) .index-item > span:last-child:after {
	border-left: solid 10px #3f90b6;
	border-bottom: solid 10px #3f90b6;
}

.index-items li a.index-item > span:last-child {
	color: #333;
}

.index-items li a.index-item:hover > span:last-child {
	color: #00baff;
}

.index-content-nodata {
	padding: 5rem;
	font-size: 1.3rem;
}

@media (max-width: 1050px) {
	.index-items {
		margin: 0 1rem;
	}
}

@media (max-width: 736px) {
	.index-items {
		margin: 0;
		padding: 1rem 0;
	}
	
	.index-items li {
		display: block;
		width: 100%;
		height: auto;
	}

	.index-items li:nth-child(n + 2) {
		margin-top: 1rem;
	}
	
	.index-item > span {
		height: auto;
	}
	
	.index-item > span:first-child {
		width: 45%;
		vertical-align: top;
	}
	
	.index-item > span:last-child {
		width: 55%;
		padding: 1.2rem 3.6rem 1.2rem 0;
	}
	
	.index-item img {
		width: 70%;
	}
	
	.index-ttl {
		margin-top: 1rem;
		line-height: 1.5;
	}
	
	.index-items li .index-item > span:last-child:after, 
	.index-items li:nth-child(4n + 3) .index-item > span:last-child:after, 
	.index-items li:nth-child(4n + 4) .index-item > span:last-child:after {
		border-left: solid 10px #146192;
		border-bottom: solid 10px #146192;
	}
	
	.index-items li:nth-child(2n) .index-item > span:last-child:after {
		border-left: solid 10px #3f90b6;
		border-bottom: solid 10px #3f90b6;
	}
}



/**
 * .index-items option
**/

.index-more {
	padding: 0 0 6rem;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 600;
}

.index-years {
	padding: 1rem 0;
	text-align: center;
}

.index-years li {
	display: inline-block;
	font-size: 1.2rem;
}

.index-years li a {
	display: block;
	margin: 0.5rem 0.8rem;
	padding: 0.2em 1em 0.3em;
	background: #fff;
	color: #333;
	text-decoration: none;
}

.index-years li a.active {
	background: #1d74a3;
	color: #fff;
}

.index-years li a:hover {
	background: #00baff;
	color: #fff;
}

.index-search-posts {
	padding: 1rem 0;
	text-align: center;
	font-size: 1.3rem;
}

@media (max-width: 736px) {
	.index-more {
		padding: 1rem 0 2rem;
	}
	
	.index-years {
		text-align: left;
	}
}



/**
 * .index-top-special
**/

.index-top-special {
	padding: 6rem 0 2rem;
}

.index-top-special p a {
	display: block;
	padding: 3rem;
	border: solid 1px #f89671;
	background: #fff;
	font-size: 1.3rem;
	text-align: center;
	position: relative;
	text-decoration: none;
	color: #333;
}

.index-top-special p a:hover {
	color: #00baff;
}

.index-top-special p a:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	right: -1px;
	top: -1px;
	border-top: solid 10px #f3f3f3;
	border-right: solid 10px #f3f3f3;
	border-left: solid 10px #f89671;
	border-bottom: solid 10px #f89671;
}

@media (max-width: 1050px) {
	.index-top-special {
		padding: 6rem 1rem 2rem;
	}
}

@media (max-width: 736px) {
	.index-top-special {
		padding: 2.5rem 0 0;
	}

	.index-top-special p a {
		padding: 1.5rem;
	}
}



/**
 * .index-top .index-items
**/

.index-top {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: space-between;
	padding: 6rem 0 2rem;
}

.index-top > div {
	width: 47%;
	position: relative;
}

.index-top-ttl {
	margin: 0 0 3rem;
	font-size: 2rem;
	font-weight: 400;
}

.index-top-more {
	position: absolute;
	top: 0.5em;
	right: 0;
	font-size: 1.4rem;
	font-weight: 600;
}

.index-top .index-items {
	margin-bottom: 6rem;
}

.index-top .index-items li {
	display: block;
	width: 100%;
	height: 250px;
}

.index-top .index-items li:nth-child(n + 2) {
	margin-top: 1rem;
}

.index-top .index-item > span {
	height: 250px;
	overflow: hidden;
}

.index-top .index-items li .index-item > span:last-child:after, 
.index-top .index-items li:nth-child(4n + 3) .index-item > span:last-child:after, 
.index-top .index-items li:nth-child(4n + 4) .index-item > span:last-child:after {
	border-left: solid 10px #146192;
	border-bottom: solid 10px #146192;
}

.index-top .index-items li:nth-child(2n) .index-item > span:last-child:after {
	border-left: solid 10px #3f90b6;
	border-bottom: solid 10px #3f90b6;
}

.no-articles {
	background: #fff;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 60px 0 60px;
	display: flex;
	align-items: center;
	padding: 0 9rem;
}

.no-articles-bg {
	background-image:
		url("../images/no_article_bg_bottom.png"),
		url("../images/no_article_bg_top.png");
	background-size: contain;
	background-repeat:
		no-repeat,
		no-repeat;
	background-position:
		bottom,
		top;
}

.no-articles-bg-bottom {
	background-image: url("../images/no_article_bg_bottom.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom;
}

.no-articles div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 250px;
	margin: 0 auto;
}

.no-articles div p:first-child {
	width: 23%;
}

.no-articles div p:last-child {
	width: 65%;
	font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.8;
}

.no-articles div p:last-child span {
    font-weight: 300;
	display: inline-block;
	margin-top: 1rem;
}

.index-top .no-articles:after {
	content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    top: 0;
    border-top: solid 10px #f3f3f3;
    border-right: solid 10px #f3f3f3;
	border-left: solid 10px #146192;
    border-bottom: solid 10px #146192;
}


@media (max-width: 1050px) {
	.index-top > div {
		width: 49%;
	}
	
	.index-top-ttl {
		margin: 0 1rem 3rem;
	}

	.index-top-more {
		right: 1rem;
	}
}

@media (max-width: 736px) {
	.index-top {
		display: block;
		padding: 0.1rem 0 1rem;
	}

	.index-top > div {
		width: 100%;
	}

	.index-top-ttl {
		margin: 2.5rem 0 1rem;
		font-size: 1.8rem;
	}

	.index-top-more {
		position: absolute;
		top: 0.5em;
		right: 0;
		font-size: 1.2rem;
	}
	
	.index-top .index-items {
		margin: 0;
	}
	
	.index-top .index-items li {
		display: block;
		width: 100%;
		height: auto;
	}

	.index-top .index-items li:nth-child(n + 2) {
		margin-top: 1rem;
	}
	
	.index-top .index-item > span {
		height: auto;
	}
	
	.index-top .index-item > span:first-child {
		width: 45%;
	}
	
	.index-top .index-item > span:last-child {
		width: 55%;
	}
	
	.index-top .index-item img {
		width: 70%;
	}
	
	.index-top .index-ttl {
		margin-top: 1rem;
	}
	
	.index-top .index-items li .index-item > span:last-child:after, 
	.index-top .index-items li:nth-child(4n + 3) .index-item > span:last-child:after, 
	.index-top .index-items li:nth-child(4n + 4) .index-item > span:last-child:after {
		border-left: solid 10px #146192;
		border-bottom: solid 10px #146192;
	}
	
	.index-top .index-items li:nth-child(2n) .index-item > span:last-child:after {
		border-left: solid 10px #3f90b6;
		border-bottom: solid 10px #3f90b6;
	}
	
	.no-articles {
		position: inherit;
		margin: 0;
		padding: 1.2rem 3rem;
	}
	
	.no-articles div {
		height: auto;
	}
	
	.no-articles div p:first-child {
		width: 20%;
	}
	
	.no-articles div p:last-child {
    width: 70%;
	}
}



/**
 * .asaco
**/

.asaco {
	line-height: 0;
}

.asaco iframe {
	width: 100%;
	height: 68rem;
}

@media (max-width: 736px) {
	.asaco iframe {
		height: 40rem;
	}
}



/**
 * .faq-content
**/

.faq-content {
	padding: 6rem 0 0;
}

.faq-content .wrapper {
	padding: 0 4rem 6rem;
	border-bottom: solid 1px #c8c8c8;
}

.faq-content-ttl {
	margin: 0 0 4rem;
	padding: 0 0 2.5rem;
	border-bottom: solid 1px #c8c8c8;
	font-size: 3.6rem;
	font-weight: 200;
}

.faq-content-ttl span {
	margin-left: 2rem;
	font-size: 1.4rem;
	font-weight: 400;
}

.faq-content-tab {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: space-between;
	margin: 3rem 0;
	list-style: none;
	position: relative;
}

.faq-content-tab:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	border-bottom: solid 1px #c8c8c8;
	z-index: -1;
}

.faq-content-tab li {
	width: 32%;
	padding: 1em;
	border: solid 1px #c8c8c8;
	text-align: center;
	cursor: pointer;
}

.faq-content-tab li.active {
	border-bottom: solid 1px #fff;
	color: #1d74a3
}

.faq-content-tab li:hover {
	border: solid 1px #00baff;
	border-bottom: none;
	color: #00baff;
}

.faq-content-tab li.active:hover {
	border-bottom: solid 1px #fff;
}

.faq-content-question, 
.faq-content-answer {
	padding: 1em 2rem 1.1em 7.5rem;
	font-size: 1.4rem;
	font-weight: 400;
	position: relative;
}

.faq-content-question {
	background: #1d74a3;
	color: #fff;
}

.faq-content-answer {
	padding-bottom: 2em;
	line-height: 1.8;
}

.faq-content-question:before, 
.faq-content-answer:before {
	display: inline-block;
	width: 5rem;
	position: absolute;
	top: 0.4rem;
	left: 2.5rem;
	text-align: center;
	font-size: 2.4rem;
}

.faq-content-question:before {
	content: "Q";
}

.faq-content-answer:before {
	content: "A";
	color: #1d74a3;
}

.faq-content-wrap {
	display: none;
}

@media (max-width: 1050px) {
	.faq-content .wrapper {
		width: auto;
		margin: 0 2rem;
		padding: 0 0 6rem;
	}
}

@media (max-width: 736px) {
	.faq-content {
		padding: 2rem 0 0;
	}

	.faq-content .wrapper {
		margin: 0 1.5rem;
		padding: 0 0 3rem;
	}
	
	.faq-content-ttl {
		margin: 0;
		padding: 2rem 0 1.5rem;
		font-size: 2.2rem;
		font-weight: 400;
	}
	
	.faq-content-ttl span {
		display: block;
		margin: 0.5rem 0 0;
		font-size: 1.2rem;
	}

	.faq-content-tab {
		margin: 1.5rem 0;
	}

	.faq-content-tab li {
		padding: 1.5em 0;
		font-size: 1.2rem;
	}

	.faq-content-question, 
	.faq-content-answer {
		padding: 1em 1.5rem 1.1em 3.5rem;
		font-size: 1.4rem;
	}
	
	.faq-content-answer {
		padding: 1em 0 2em 3.5rem;
	}

	.faq-content-question:before, 
	.faq-content-answer:before {
		width: 3.5rem;
		left: 0;
		font-size: 2.2rem;
	}
}



/**
 * .terms-content
**/

.terms-content {
	background: #f3f3f3;
	font-size: 1.4rem;
	line-height: 1.8;
}

.terms-content .wrapper {
	padding: 4rem;
}

.terms-content-body {
	padding: 1.5rem 4rem;
	background: #fff;
}

.terms-content h2 {
	margin: 5rem 0 1.5rem;
	font-size: 2rem;
	font-weight: 400;
}

.terms-content p, 
.terms-content ol, 
.terms-content ul {
	margin: 2rem 0;
}

.terms-content ol, 
.terms-content ul {
	margin-left: 1em;
}

@media (max-width: 736px) {
	.terms-content {
		font-size: 1.3rem;
	}

	.terms-content .wrapper {
		padding: 2rem;
	}

	.terms-content-body {
		padding: 1rem 2rem;
	}

	.terms-content h2 {
		margin: 2.5rem 0 1rem;
		font-size: 1.6rem;
	}

	.terms-content p, 
	.terms-content ol, 
	.terms-content ul {
		margin: 1rem 0;
	}
	
	.terms-content ol, 
	.terms-content ul {
		margin-left: 1em;
	}
}



/**
 * .single-content
**/

.single-content {
	background: #f3f3f3;
	font-size: 1.4rem;
	line-height: 1.8;
}

.single-content .wrapper {
	padding: 6rem 4rem;
}

.single-content-body {
	padding: 7rem 8rem;
	background: #fff;
	position: relative;
}

.single-content-body:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	right: 0;
	top: 0;
	border-top: solid 20px #f3f3f3;
	border-right: solid 20px #f3f3f3;
	border-left: solid 20px #146192;
	border-bottom: solid 20px #146192;
}

.single-content h1 {
	margin: 0 0 4rem;
	color: #1d74a3;
	font-size: 2.4rem;
	font-weight: 400;
}

.single-content h2 {
	margin: 5rem 0 2.5rem;
	padding: 0 0 2rem;
	border-bottom: solid 1px #c8c8c8;
	font-size: 1.6rem;
	font-weight: 700;
}

.single-content h3 {
	margin: 3rem 0 2rem;
	color: #1d74a3;
	font-size: 1.4rem;
	font-weight: 700;
}

.single-content p, 
.single-content ol, 
.single-content ul {
	margin: 2rem 0;
}

.single-content ol, 
.single-content ul {
	margin-left: 1em;
}

.single-content table {
	width: 100%;
	margin: 2rem 0;
	border-collapse: collapse;
	border-spacing: 0;
	border: solid 1px #c8c8c8;
}

.single-content table th, 
.single-content table td {
	padding: 1.5rem;
	border: solid 1px #c8c8c8;
}

.single-content table thead th, 
.single-content table thead td {
	background: #1d74a3;
	color: #fff;
}

.single-content .wp-caption {
	width: 100%!important;
	margin: 2.5rem 0;
}

.single-content .wp-caption-text {
	margin: 0.5rem 0 0;
	font-size: 1.2rem;
}

@media (max-width: 736px) {
	.single-content {
		font-size: 1.3rem;
		line-height: 1.5;
	}

	.single-content .wrapper {
		padding: 2rem;
	}

	.single-content-body {
		padding: 3rem 2rem 2rem;
	}
	
	.single-content-body:after {
		border-top: solid 15px #f3f3f3;
		border-right: solid 15px #f3f3f3;
		border-left: solid 15px #146192;
		border-bottom: solid 15px #146192;
	}

	.single-content h1 {
		margin: 0 0 2.5rem;
		font-size: 1.8rem;
	}

	.single-content h2 {
		margin: 2.5rem 0 1.5rem;
		padding: 0 0 0.5rem;
		font-size: 1.6rem;
	}

	.single-content p, 
	.single-content ol, 
	.single-content ul {
		margin: 1rem 0;
	}
	
	.single-content ol, 
	.single-content ul {
		margin-left: 1em;
	}
	
	.single-content table {
		margin: 1rem 0;
	}

	.single-content table th, 
	.single-content table td {
		padding: 1rem;
	}
}























