@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
/*--京base.css--*/
html {}

body {
	width: 100%;
	height: 100%;
	color: #000;
	font-family: 'Noto Sans JP', "メイリオ", Meiryo,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	/*font-family: "メイリオ", Meiryo,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif ;*/
	background-color: #fff;
	font-size:3.6vw;
	line-height: 1.0;
	overflow-x: hidden;
}

img{
	vertical-align:bottom;
}

p{
	line-height: 1.7em;
}

#container{
	width: 100%;
}

.img_responsive{
	max-width: 100%;
	height: auto;
}

/*----------header----------*/
header{
	width: 100%;
	background: #ffffff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	height: 15vw;
	box-shadow: 0 5px 5px -3px rgba(0,0,0,0.15);
}

	header .box_header{
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 3vw;
		width: 100%;
		height: 100%;
		padding: 0 3vw;
	}

		header .box_header img{
			max-width: 100%;
			height: auto;
		}

		header .box_header a{
			transition: .3s all ease;
		}

		header .box_header a:hover{
			opacity: 0.8;
		}

		.ku_logo_lbl_kumayaku{

		}

		.ku_logo_lbl_kumayaku a{
			display: flex;			
		}

		header .box_header .ku_logo{
			width: 18vw;
		}

		header .box_header .lbl_kumayaku{
			display: none;
		}

		header .box_header .site_title{
			width: 70vw;
		}

.contents{
	padding-top: 15vw;
	padding-bottom: 4em;
	position: relative;
	z-index: 1;
}


footer{
	width: 100%;
	height:76vw;
	background-image: url(../shared/bg_footer.jpg);
	background-repeat: no-repeat;
	background-size: auto 100%;
}

	footer .box_inner{
		padding: 6vw 6vw 0 6vw;
	}

		footer .box_inner .copyright{
			line-height: 1.4;
			font-size: 0.8em;
		}

.nav_oc {
	padding: 1vw;
	position: fixed;
	top: 2vw;
	right: 2vw;
	z-index: 10;
	display: none;/*TOPページが準備中なので隠しておく*/
}

	.menu-trigger{
		width: 40px;
		height: 40px;
		padding: 0;
		border: none;
		background: rgba(255,255,255,0);
		cursor: pointer;
		outline: none;
		position: relative;
		transition: .3s all ease;
	}

	.menu-trigger:hover{
		background: rgba(255,255,255,0.1);
	}

		.menu-trigger span {
			display: inline-block;
			transition: all .4s;
			box-sizing: border-box;
			width: 70%;
			height: 2px;
			background-color: #333;
			position: absolute;
			left: 15%;
		}

		.menu-trigger.active span {
		}

		.menu-trigger span:nth-of-type(1) {
			top: 9px;
		}

		.menu-trigger span:nth-of-type(2) {
			top: 19px;
		}
		.menu-trigger span:nth-of-type(3) {
			bottom: 9px;
		}

		.menu-trigger.active span:nth-of-type(1) {
			-webkit-transform: translateY(10px) rotate(-315deg);
			transform: translateY(10px) rotate(-315deg);
		}
		.menu-trigger.active span:nth-of-type(2) {
			opacity: 0;
		}
		.menu-trigger.active span:nth-of-type(3) {
			-webkit-transform: translateY(-11px) rotate(315deg);
			transform: translateY(-11px) rotate(315deg);
		}

.side_nav{
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	width: 100%;
	height: 100%;
	transition: .3s all ease;
	background: rgba(255,255,255,0);
	display: flex;
	justify-content: center;
    align-items: center;
}

.side_nav.active{
	z-index: 9;
	opacity: 1;
	background: rgba(255,255,255,0.95);
}
	
.side_nav > .box_inner{
			width:600px;
		}
		
		.side_global_nav ul{
			display:flex;
			flex-wrap:wrap;
		}
			
			.side_global_nav ul > li{
				width:calc(100% - 20px);
				margin: 0 10px 20px 10px;
			}

				.side_global_nav ul > li a{
					box-sizing:border-box;
					display:block;
					width:100%;
					height:100%;
					border:1px solid #73769f;
					background:rgba(255,255,255,1);
					font-size: 1.3em;
					color:#222;
					padding:1em 1em 0.9em 1em;
					text-decoration:none;
					position:relative;
					box-shadow:2px 2px 0 0 rgba(0,0,0,0.1);
					transition:.3s all ease;
				}
				
				.side_global_nav ul > li a:hover{
					background:#1946ab;
					color:#fff;
				}
				
					.side_global_nav ul > li a:after{
						display:inline-block;
						height:1em;
						font-family: FontAwesome;
						content:"\f105";
						position:absolute;
						right:0.5em;
						transition:.3s all ease;
					}

/*ページトップ*/
.pagetop{
	width:60px;
	height:60px;
	position:fixed;
	bottom:30px;
	right:15px;
	z-index:10;
	transform:translateY(100px);
	transition:.3s all ease;
	opacity:0;
}

.pagetop.show{
	transform:translateY(0);
	opacity:1;
}

	.pagetop a{
		box-sizing: border-box;
		display:flex;
		justify-content: center;
		align-items: center;
		transition:.5s all ease;
		width:100%;
		height:100%;
		border-radius: 50%;
		padding-bottom: 0.1em;
		text-decoration:none;
		background: rgba(5,90,180,0.8);
		box-shadow: 0 0 3px 3px rgba(255,255,255,0.3);
	}
	
	.pagetop a:hover{
		transform:translateY(-5px);
	}

		.pagetop a:before{
			font-family: FontAwesome;
			content:"\f106";
			font-size: 2.6em;
			color: #fff;
		}

/*改行のPC,SPでの表示切替*/
br.pc,
img.pc,
span.pc{
	display:inline;
}

br.sp,
img.sp,
span.sp{
	display:none;
}

.ta_center{
	text-align:center;
}

/*ipad*/
@media screen and (min-width:768px){
/*#####start#####*/
body {
	font-size:16px;
}
	
header{
	height: 80px;
}

	header .box_header{
		padding: 0 3vw;
		position: relative;
		justify-content: space-between;
	}

		header .box_header a{
			gap: 1rem;
			align-items: center;
		}

		header .box_header .ku_logo{
			width: 14vw;
		}

		header .box_header .lbl_kumayaku{
			display: block;
			width: 26vw;
		}

		header .box_header .site_title{
			width: 50vw;
		}

.contents{
	padding-top: 80px;
	padding-bottom: 5em;
}


footer{
	height:400px;
	background-size: cover;
	background-position: center bottom;
}

	footer .box_inner{
		padding: 20px 0 0 20px;
	}
	
	footer .box_inner .copyright{
		font-size: 0.7em;
	}

		footer .box_inner .copyright br{
			display: none;
		}
/*#####end#####*/
}


/*PC*/
@media screen and (min-width:1024px), print{
/*#####start#####*/
header{
	height: 95px;
}
	
	header .box_header{
		width: 1050px;
		margin: 0 auto;
		padding: 20px 0;
	}

		header .box_header a{
			gap: 1.5rem;
		}
	
		header .box_header .ku_logo{
			width: 140px;
		}

		header .box_header .lbl_kumayaku{
			width: 240px;
			margin-top: 5px;
		}

		header .box_header .site_title{
			width: 416px;
		}
	
.contents {
    padding-top: 95px;
}
	
.nav_oc{
	width: 90px;
	height: 90px;
	padding: 0;
	position: fixed;
	top: 5px;
	right: 0;
	z-index: 10;
	/*display: none;*/
}

	.menu-trigger{
		width: 100%;
		height: 100%;
		padding: 0;
		border: none;
		background: rgba(255,255,255,0);
		cursor: pointer;
		outline: none;
		position: relative;
		transition: .3s all ease;
	}

	.menu-trigger:hover{
		background: rgba(255,255,255,0.1);
	}

		.menu-trigger span {
			display: inline-block;
			transition: all .4s;
			box-sizing: border-box;
			width: 30px;
			height: 2px;
			background-color: #333;
			position: absolute;
			left: 30px;
		}

		.menu-trigger.active span {
		}

		.menu-trigger span:nth-of-type(1) {
			top: 33px;
		}

		.menu-trigger span:nth-of-type(2) {
			top: 44px;
		}
		.menu-trigger span:nth-of-type(3) {
			bottom: 33px;
		}

		.menu-trigger.active span:nth-of-type(1) {
			-webkit-transform: translateY(10px) rotate(-315deg);
			transform: translateY(10px) rotate(-315deg);
		}
		.menu-trigger.active span:nth-of-type(2) {
			opacity: 0;
		}
		.menu-trigger.active span:nth-of-type(3) {
			-webkit-transform: translateY(-11px) rotate(315deg);
			transform: translateY(-11px) rotate(315deg);
		}	
	
	footer {
		height: 560px;
		background-size: 100% auto;
		background-position: center top 85%;
	}
	
	
		footer .box_inner{
			padding: 2em 0 0 0;
			text-align: center;
		}

			.side_global_nav ul > li{
				width:calc((100% - 20px) / 2);
				margin: 0 20px 20px 0;
			}
			
			.side_global_nav ul > li:nth-child(even){
				margin: 0 0 20px 0;
			}
	
	
}

/* ##########印刷用########## */
@media print{
	html, body{
		font-size: 16px;
	}
	
	header{
		position: relative;
	}
	
		header .box_header{
			justify-content: center;
			position: relative;
		}
	
			header .box_header .ku_logo {
				width: 140px;
				position: absolute;
				top: 24px;
				left: 20px;
			}
	
	.contents{
		padding-top: 0;
	}
	
	footer{
		height: auto;
		background: none;
	}
	
		footer .box_inner{
			padding: 2em 0;
		}
	
		footer .box_inner .copyright br {
			display: none;
		}
	
	.pagetop{
		display: none;
	}
}