@charset "shift_jis";

/* ======================================================
 * layout_pc.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 751px)
 * - Common
 * - Header
 * - Gnav
 * - Main
 * - Assist
 * - Footer
 * - Other
 * - Clearfix
 * Media Queries
 * Print
====================================================== */

@media print, screen and (min-width: 751px) {
	/* ------------------------------------------------------
	 * Common
	------------------------------------------------------ */
	body{
		position: relative;
		min-width: 1220px;
	}

	/* ----- a ----- */
	a{
		background: transparent;
	}

	/* ----- opacity ----- */

	/* ----- transition ----- */

	/* ----- sprite ----- */

	/* ------------------------------------------------------
	 * Header
	------------------------------------------------------ */
	.Header {
		background-color: #3399cc;
		height: 134px;
		padding: 14px;
	}
	.HeaderBody {
		position: relative;
		width: 1200px;
		margin: 0 auto;
	}

	/* ----- header-identity ----- */
	.header-identity {
	}
	.identity_logo {
		text-align: center;
	}
	.identity_logo > a {
		display: inline-block;
	}
	


	/* ------------------------------------------------------
	 * Gnav
	------------------------------------------------------ */
	.Gnav {
		display: none;
		position: absolute;
		left: 0;
		z-index: 9999;
		width: 100%;
		height: calc(100% - 134px);
		background: rgba(0,0,0,0.2);
		overflow: hidden;
	}
	.GnavBody {
		padding: 40px 0;
		background: #fff;
		box-shadow: 0px 2px 3px rgba(0,0,0,0.2);
	}
	.GnavBody .GnavBody_inner {
		width: 1200px;
		margin: 0 auto;
	}
	
	/* ----- nav-button ----- */
	.nav-button{
		position: absolute;
		top: 23px;
		right: 0;
		width: 60px;
		height: 60px;
		border: 2px solid #fff;
		border-radius: 6px;
		cursor: pointer;
	}
	.GnavBody .nav-button{
		position: relative;
		margin: 27px auto 0 ;
		top: auto;
		border: 2px solid #85c4ec;
	}
	.nav-button > p{
		padding-top: 40px;
		position: relative;
		font-size: 1.2rem;
		line-height: 1;
		color: #fff;
		text-align: center;
	}
	.nav-button > p::before{
		position: absolute;
		content: "";
		width: 36px;
		height: 24px;
		top: 10px;
		left: 10px;
		background: url("../img/header_ic01.png") no-repeat;
		background-position: 0 0;
	}
	.nav-button.open{
		background-color: #fff;
	}
	.nav-button.open > p{
		color: #3399cc;
	}
	.nav-button.open > p::before{
		width: 29px;
		height: 27px;
		top: 8px;
		left: 14px;
		background-position: -36px 0;
	}
	
	/* ----- gnav-list ----- */
	.gnav-list{
		display: -webkit-flex;
		display: flex;
		-webkit-flex-flow: row wrap;
		flex-flow: row wrap;
	}
	.gnav-list > li{
		margin-top: 27px;
		margin-left: 36px;
		width: calc((100% - (36px * 2)) / 3);
	}
	.gnav-list > li:nth-child(3n+1){
		margin-left: 0;
	}
	.gnav-list > li:nth-child(-n+3){
		margin-top: 0;
	}
	.gnav-list > li > a{
		position: relative;
		width: 100%;
		height: calc(100% - 3px);
		display: block;
		margin-bottom: 3px;
		border: 2px solid #85c4ec;
		border-radius: 8px;
		font-size: 1.8rem;
		font-weight: bold;
		color: #333;
		line-height: 1.4;
		text-decoration: none;
		box-shadow: 0px 3px 0px 0px #85c4ec;
	}
	.gnav-list > li > a::before{
		position: absolute;
		content: "";
		top: 50%;
		right: 18px;
		width: 26px;
		height: 26px;
		margin-top: -13px;
		background: url("../img/header_ic01.png") no-repeat;
		background-position: -65px 0;
	}
	.gnav-list > li > a:hover{
		margin-top: 2px;
		margin-bottom: 1px;
		box-shadow: 0px 1px 0px 0px #85c4ec;
	}
	.gnav-list > li > a:active{
		margin-top: 3px;
		margin-bottom: 0;
		box-shadow: 0 0 0 0 #85c4ec;
	}
	.gnav_img{
		width: 106px;
		height: 100%;
		float: left;
		margin-right: 20px;
	}
	.gnav_img > img{
		border-radius: 8px 0 0 8px;
	}
	.gnav_text{
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
		height: 100%;
		overflow: hidden;
		padding-right: 60px;
	}
	[data-browser="ie11"] .gnav-list > li > a > * {
		pointer-events: none;
	}

	/* ------------------------------------------------------
	 * Main
	------------------------------------------------------ */
	.Main {
	}
	.MainBody {
	}

	/* ----- pageGuide ----- */
	.pageGuide {
		font-size: 1.4rem;
		background-color: #ffffcd;
		border-bottom: 2px solid #ffe1b7;
	}
	/* breadcrumbs */
	.breadcrumbs {
		width: 1200px;
		margin: 0 auto;
		padding: 12px 0;
	}
	.container[data-wide="true"] .breadcrumbs {
		width: 100%;
	}
	.breadcrumbs > li {
		position: relative;
		float: left;
		padding: 0 13px 0 20px;
	}
	.breadcrumbs > li::before {
		content: ">";
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		font-weight: normal !important;
		color: #aaa;
	}
	.breadcrumbs > li:first-child {
		padding-left: 0;
	}
	.breadcrumbs > li:first-child::before {
		display: none;
	}
	.breadcrumbs > li:last-child {
		font-weight: bold;
	}
	.breadcrumbs > li > a{
		color: #333;
		text-decoration: none;
	}
	.breadcrumbs > li > a:hover{
		text-decoration: underline;
	}


	/* ----- pageHead ----- */
	.pageHead {
		padding-top: 40px;
	}
	.pageHead .heading-lv1 {
		width: 1200px;
		margin: 0 auto;
	}

	/* ----- container ----- */
	.container {
		width: 1200px;
		margin: 0 auto;
	}
	/* contents */
	.contents {
	}
	.contents > *:first-child,
	.contents > *:first-child > [class*="heading-lv"] {
		margin-top: 0 !important;
	}
	[data-sidebar="true"] .contents {
		overflow: hidden;
		float: left;
		width: 912px;
	}
	/* sidebar */
	.sidebar {
	}
	[data-sidebar="true"] .sidebar {
		float: right;
		width: 240px;
	}

	/* ------------------------------------------------------
	 * Assist
	------------------------------------------------------ */
	.Assist {
	}

	/* ------------------------------------------------------
	 * Footer
	------------------------------------------------------ */
	.Footer{
		margin-top: 120px;
		background-color: #3399cc;
	}
	.FooterBody{
		margin: 0 auto;
		padding: 30px 0 20px;
		width: 1200px;
		font-size: 1.4rem;
	}
	.Footer .footer-guide{
		float: left;
		width: 50%;
	}
	.Footer .guide_links > li{
		margin-right: 30px;
		display: inline-block;
	}
	.Footer .guide_links > li > a{
		padding-left: 14px;
		position: relative;
		color: #fff;
		text-decoration: none;
	}
	.Footer .guide_links > li > a::before{
		position: absolute;
		content: "";
		top: 50%;
		left: 0;
		margin-top: -8px;
		width: 8px;
		height: 15px;
		background: url("../img/footer_ic01.png") no-repeat;
		background-position: 0 0;
	}
	.Footer .footer-copyright{
		float: right;
		width: 50%;
		text-align: right;
		color: #fff;
	}


	/* ----- Pagetop ----- */
	.Pagetop {
	}

	/* ------------------------------------------------------
	 * Other
	------------------------------------------------------ */

	/* ------------------------------------------------------
	 * Clearfix
	------------------------------------------------------ */
	.breadcrumbs::after,
	.container::after,
	.gnav-list::after,
	.FooterBody::after,
	.gnav-list > li > a::after {
		display: block;
		clear: both;
		content: "";
	}
}

/* ======================================================
 * Media Queries
====================================================== */
/***
@media screen and (min-width: 1921px) {
}
@media screen and (min-width: 751px) and (max-width: 1920px) {
}
***/

/* ======================================================
 * Print
====================================================== */
@media print {
	.sp-hidden,
	.Pagetop {display:none!important;}
}