@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@600&family=Noto+Sans+JP:wght@400;700;900&display=swap');
/*--京base.css--*/
html {
	font-size: 16px;
}

body {
	width: 100%;
	height: 100%;
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	background-color: #fff;
	line-height: 1.0;
}

img{
	vertical-align:bottom;
}

#container{
	width: 100%;
	position: relative;
	overflow-x: hidden;
}

/*----------header----------*/
header{
	width: 100%;
	box-sizing: border-box;
	position:fixed;
	z-index: 3;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.95);
	transition: .5s all ease;
}

.small_header header{
	box-shadow: 0 5px 5px -5px rgba(0,0,0,0.2);
}

	header > .box_inner{
		box-sizing: border-box;
		display: flex;
		height: 90px;
		padding-left: 30px;
		transition: .3s all ease;
	}

		header > .box_inner .site_title{}

			header > .box_inner .site_title h1{
				height: 100%;
			}

				header > .box_inner .site_title h1 a{
					display: flex;
					align-items: center;
					height: 100%;
					transition: .3s all ease;
				}

				header > .box_inner .site_title h1 a:hover{
					opacity: 0.8;
				}

					header > .box_inner .site_title h1 a img{
						max-width: 100%;
						height: auto;
					}

					header > .box_inner .site_title h1 a .fig{
						width:3.875rem;
						margin-right: 1.625rem;
					}

					header > .box_inner .site_title h1 a .lbl{
						width:27.5rem;
					}


/*----------contents----------*/
.contents{
	position:relative;
	top:0;
	left:0;
	z-index:0;
	padding-top: 90px;
	padding-bottom: 4em;
}

/*-----footer-----*/
footer{
	position:relative;
	z-index:0;
}


	footer > .box_inner{
	}

		.fig_logo_contact_wrapper{
			display: flex;
			justify-content: center;
			align-items: center;
			padding: 3em 0;
		}

			.fig_logo_contact_wrapper .fig_logo{
				width: 62px;
			}

				.fig_logo_contact_wrapper .fig_logo img{
					max-width: 100%;
					height: auto;
				}

			.fig_logo_contact_wrapper .contact_info_box{
				padding-left: 2em;
			}

				.fig_logo_contact_wrapper .contact_info_box > dl{}

					.fig_logo_contact_wrapper .contact_info_box > dl > dt{
						font-size: 0.8em;
						margin-bottom: 0.5em;
					}

					.fig_logo_contact_wrapper .contact_info_box > dl > dd{
						line-height: 1.4;
					}

						.fig_logo_contact_wrapper .contact_info_box > dl > dd p{}

						.fig_logo_contact_wrapper .contact_info_box > dl > dd dl{
							display: flex;
						}

							.fig_logo_contact_wrapper .contact_info_box > dl > dd dl dt{
							}

							.fig_logo_contact_wrapper .contact_info_box > dl > dd dl dt:after{
								content: ":";
								margin: 0 0.4em 0 0.2em;
							}

						.fig_logo_contact_wrapper .contact_info_box > dl > dd dl.tel_fax dd{
							margin-right: 2em;
						}

						.fig_logo_contact_wrapper .contact_info_box > dl > dd dl.tel_fax dd:last-child{
							margin-right: 0;
						}



	footer > .box_footer{
		background: rgba(0,160,201,1);
		height: 60px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

		footer > .box_footer .copyright{
			color: #fff;
			font-size: 0.9em;
		}

.nav_oc{
	width: 90px;
	height: 90px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
}

	.menu-trigger{
		width: 100%;
		height: 100%;
		padding: 0;
		border: none;
		background: rgba(0,160,201,1);
		cursor: pointer;
		outline: none;
		position: relative;
		transition: .3s all ease;
	}

	.menu-trigger:hover{
		background: rgba(0,160,201,0.9);
	}

		.menu-trigger span {
			display: inline-block;
			transition: all .4s;
			box-sizing: border-box;
			width: 30px;
			height: 2px;
			background-color: #fff;
			position: absolute;
			left: 30px;
		}

		.menu-trigger.active span {
			
		}

		.menu-trigger span:nth-of-type(1) {
			top: 30px;
		}

		.menu-trigger span:nth-of-type(2) {
			top: 44px;
		}
		.menu-trigger span:nth-of-type(3) {
			bottom: 30px;
		}

		.menu-trigger.active span:nth-of-type(1) {
			-webkit-transform: translateY(13px) rotate(-315deg);
			transform: translateY(13px) rotate(-315deg);
		}
		.menu-trigger.active span:nth-of-type(2) {
			opacity: 0;
		}
		.menu-trigger.active span:nth-of-type(3) {
			-webkit-transform: translateY(-14px) rotate(315deg);
			transform: translateY(-14px) rotate(315deg);
		}

.side_nav{
	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;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.side_nav.active{
	z-index: 9;
	opacity: 1;
	background: rgba(204,236,244,0.95);
}

	.side_nav .side_global_nav{
		display: flex;
		justify-content: center;
	}

		.side_nav .side_global_nav a{
			text-decoration: none;
		}

		.side_nav .side_global_nav > ul{
			width: 400px;
		}

		.side_nav .side_global_nav > ul > li{
			margin-bottom: 0.8em;
		}

			.side_nav .side_global_nav > ul > li > a{
				box-sizing: border-box;
				color: #000;
				width: 100%;
				height: 3em;
				font-weight: bold;
				display: flex;
				align-items: center;
				padding: 0 0 0 0.8em;
				position: relative;
				z-index: 1;
				font-size: 1.1em;
				background: rgba(255,255,255,0.98);
				box-shadow: 0 3px 5px -3px rgba(0,0,0,0.8);
				border-radius: 3px;
				overflow: hidden;
			}
				
				.side_nav .side_global_nav > ul > li > a:before{
					content: "";
					display: block;
					width: 100%;
					height: 100%;
					background: rgba(255,217,0,0.2);
					position: absolute;
					bottom: 0;
					left: 0;
					z-index: -1;
					transition: .3s all ease;
					transform-origin: left bottom;
					transform: scaleX(0);
				}

				.side_nav .side_global_nav > ul > li > a:hover:before{
					transform: scaleX(1);
				}

			.side_nav .side_global_nav > ul > li > .nolink{
				box-sizing: border-box;
				color: #000;
				width: 100%;
				height: 2em;
				font-weight: bold;
				display: flex;
				align-items: center;
				padding: 0 0 0 0.8em;
				position: relative;
				z-index: 1;
				font-size: 1em;
				background: rgba(255,255,255,0.7);
			}

			.side_nav .side_global_nav > ul > li > .nolink:before{
				font-family: FontAwesome;
				content:"\f0d7";
				font-weight: normal;
				margin-right: 0.3em;
				color: rgba(1,164,117,1)
			}
				
					
			.side_nav .side_global_nav > ul > li > ul{
				font-size: 0.9em;
				margin: 1em 0 1em 1em;
			}

				.side_nav .side_global_nav > ul > li > ul > li{
					margin-bottom: 0.4em;
				}

					.side_nav .side_global_nav > ul > li > ul > li > a{
						color: #fff;
						display: block;
						padding: 0.5em;
						transition: .5s all ease;
					}

					.side_nav .side_global_nav > ul > li > ul > li > a:hover{
						background: rgba(255,255,255,0.1);
					}

	.side_nav .side_lang_nav{
		display: none;
	}
	
/*ページトップ*/
.pagetop{
	width:80px;
	height:80px;
	position:fixed;
	bottom:60px;
	right:60px;
	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%;
		text-decoration:none;
		background: rgba(0,160,201,1);
		border-radius: 50%;
		padding-top: 10px;
	}
	
	.pagetop a:hover{
		transform:translateY(-5px);
		box-shadow: 0 0 5px 5px rgba(0,0,0,0.05);
	}

		.pagetop a:before{
			content: "";
			display: inline-block;
			width: 18px;
			height: 18px;
			border-left: 2px solid #fff;
			border-top: 2px solid #fff;
			transform-origin: center center;
			transform: rotate(45deg) skewX(8deg);
		}

		.pagetop a:hover:before{
		}

.btn_goto_entry{
	position: fixed;
	z-index: 9;
	top: 50vh;
	right: calc(50% - 650px);
}

	.btn_goto_entry a{
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 160px;
		height: 160px;
		border-radius: 80px;
		text-decoration: none;
		background: #ffd900;
		border: 3px solid #fff;
		box-shadow: 0 0 5px 1px rgba(0,0,0,0.2);
		text-shadow: 0 0 10px #fff, 0 0 5px #fff;
		transition: .3s all ease;
	}

	.btn_goto_entry a:hover{
		transform: scale(1.1);
		filter: brightness(1.05);
	}

		.btn_goto_entry a .lbl1{
			font-size: 1.6rem;
			font-weight: 900;
			color: #ea6189;
			letter-spacing: 0.1em;
			padding-left: 0.1em;
            text-align: center;
            line-height: 1.3;
		}

		.btn_goto_entry a .lbl2{
			font-weight: bold;
			margin-top: 0.5em;
			color: #333;
		}

/*ヘッダ固定によるアンカーずれ対応*/
*[id^="anc_"]{
	padding-top: 210px;
	margin-top:-210px;
}


/*改行のPC,SPでの表示切替*/
br.pc,
img.pc,
span.pc{
	display:inline;
}

br.sp,
img.sp,
span.sp{
	display:none;
}

.ta_center{
	text-align:center;
}

@media screen and (min-width:1px) and (max-width:1400px){
	.btn_goto_entry{
		right: 2vw;
	}
}

/*1200px以下*/
@media screen and (min-width:1px) and (max-width:1200px){}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){

}

/* ##########印刷用########## */
@media print{
	header{
		position:relative;
	}
	
	.pagetop{
		display: none;
	}
	
	.grecaptcha-badge{
		display: none !important;
	}
}