@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*,
::after,
::before {
	box-sizing: border-box;
}

:root {
  --blue-color: #303ec8;
  --purple-color: #979ee3;
  --green-color: #07913a;
  --lightblue-color: #00a0e9;
  --grey-color: #4b4b4b;
  --yellow-collor:#fff100;
}
html{
	overflow-x: hidden;
}
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: "Yu Gothic",YuGothic,"游ゴシック","游ゴシック体","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
    line-height: 1.4;
	color: #222222;
}

a {
	color: #222222;
	text-decoration: none;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;    
}

a:hover{
	opacity: 0.7;
}

img {
	display: block;
	max-width: 100%;
}

figure{
	display: block;
	margin: 0;
}


@media screen and (min-width: 768px){
	.zoomable{
		display: block;
		overflow: hidden;
	}
		.zoomable img{
			width: 100%;
			transition: 0.3s all ease-out;
		}
		.zoomable:hover{
			opacity: 1;
		}
			.zoomable:hover img{
				transform: scale(1.1);
			}
}

h1,
h2,
h3,
p,
ul {
	margin: 0;
	padding: 0;
}

/* レスポンス処理 start */
.u-inner {
	width: 1249px;
	margin: auto;
}
@media screen and (max-width: 1250px) {
	.u-inner {
		width: 94vw;
		margin: 0 auto;
	}
}

.sp_show {
	display: none !important;
}
.sp_none {
	display: block !important;
}
.pc_flex {
	display: flex !important;
}
.pc_none {
	display: none !important;
}
@media screen and (max-width: 768px) {
	.sp_show {
		display: block !important;
	}
	.sp_none {
		display: none !important;
	}
	.pc_flex {
		display: none !important;
	}
	.pc_none {
		display: flex !important;
	}
}
/* レスポンス処理 end */

/* ヘッダー部分 start */
#topbar{
	position: relative;
	margin: 0 auto;
}
	.header-fix #topbar {
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 100;
		animation: slide_down_menu 0.5s ease;;
		-webkit-animation: slide_down_menu 0.5s ease;
		box-shadow: -1px 4px 12px 2px rgba(0,0,0,0.5);
		-webkit-box-shadow: -1px 4px 12px 2px rgba(0,0,0,0.5);
		-moz-box-shadow: -1px 4px 12px 2px rgba(0,0,0,0.5);
	}
	@-webkit-keyframes slide_down_menu {
		0% { top:-60px; }
		100% { top:0px; }
	}
	@keyframes slide_down_menu {
		0% { top:-60px; }
		100% { top:0px; }
	}
	.header-fix #topbar .logo_panel{
		height: 60px;
	}
		.header-fix #topbar .logo_panel .logo{
			height: 35px;
		}
	.header-fix #topbar .menu_panel{
		display: none;
	}
	.header-fix #topbar .logo_panel .more_constrol_panel .menu-item{
		font-size: 12px;
	}

.sp-menu {
	display: flex;
    position: relative;
    height: 96px;
    align-items: center;
    justify-content: flex-end;
}
.sp-menu-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1221;
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
}
	/* .sp-menu-btn.active{
		position: fixed;
		right: 25px;
	} */
	.sp-menu-btn span{
		display: block;
		width: 20px;
		height: 2px;
		margin-bottom: 4px;
		position: relative;
		background: #000;
		border-radius: 3px;
		z-index: 1;
		transform-origin: 4px 0px;
	}
	.sp-menu-btn span{
		display: none;
	}
	.sp-menu-btn span:first-child{
		transform-origin: 0% 0%;
	}
	.sp-menu-btn span:nth-last-child(2){
		transform-origin: 0% 100%;
	}
	.sp-menu-btn span:last-child{
		margin-bottom: 0;
	}
	.sp-menu-btn.active span{
		opacity: 1;
		transform: rotate(45deg) translate(0, 0);
		background: #fff;
	}
	.sp-menu-btn.active span:nth-child(2){
		opacity: 0;
		transform: rotate(0deg) scale(0.2, 0.2);
	}
	.sp-menu-btn.active span:nth-child(3){
		transform: rotate(-45deg) translate(-1px, -2px);
	}
	.sp-menu .sp-menu-btn:hover {
		opacity: 0.7;
	}

.sp-menu-content {
	visibility: hidden;
	transform: translateY(-100%);
	border-radius: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 96px;
	right: 60px;
	z-index: 80;
	width: auto;
	min-width: 220px;
	height: auto;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.9);
	transition: visibility .3s ease-in-out, transform .3s ease-in-out;
	padding: 5px 27px 40px 20px;
	border-bottom-left-radius: 18px;
	border-bottom-right-radius: 18px;
}
	.sp-menu-content.show {
		visibility: visible;
		transform: translateY(0);
	}


.sp-menu-header {
	display: flex;
	align-items: center;
}

.sp-menu-close {
	margin-right: 20px;
	cursor: pointer;
}

.sp-menu-list {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sp-menu-list .column:nth-child(2n+1){
	margin-right: 60px;
}

.sp-menu-item {
	padding-bottom: 9px;
	padding-top: 8px;
	width: 100%;
}
	.sp-menu-item > a{
		font-size: 15px;
		color: var(--blue-color);
		display:block;
		text-align: right;
		position: relative;
	}
	.sp-menu-item > a:hover{
		font-weight: 700;
		color: var(--green-color);
	}
		
	.header-fix #topbar {
		animation: slide_down_menu 1s ease; animation: slide_down_menu 1s ease;
		-webkit-animation: slide_down_menu 1s ease; animation: slide_down_menu 1s ease;
	}
	
	.sp-menu-socials{
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		margin-top: 40px;
	}
	.sp-menu-socials a{
		display: block;
		margin: 0 10px;
	}
			
body.sp-menu-content-active {
	overflow: hidden;
}

.screen-darken {
	height: 100%;
	width: 0%;
	z-index: 30;
	position: fixed;
	top: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	/* background-color: rgba(34, 34, 34, 0.6); */
	transition: opacity .2s linear, visibility 0.2s, width 2s ease-in;
}
	.screen-darken.active {
		z-index: 10;
		transition: opacity .3s ease, width 0s;
		opacity: 1;
		width: 100%;
		visibility: visible;
	}

main{
	padding-top: 96px;
}
@media screen and (max-width: 768px) {
	main{
		padding-top: 56px;
	}
}
header .logo_panel{
	width: 100%;
	height: auto;
	padding-left: 60px;
	padding-right: 60px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #fff;
	transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}
@media screen and (max-width: 768px) {
	header .logo_panel{
		height: 50px;
	}
}
header .logo_panel.is-hide {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
	@media screen and (max-width: 1026px) {
		header .logo_panel{
			padding-left: 20px;
			padding-right: 20px;
		}
	}
	@media screen and (max-width: 768px) {
		header .logo_panel{
			padding-left: 3vw;
			padding-right: 3vw;
		}
	}

	header .logo_panel .logo{
		display: flex;
		flex-direction: row;
		align-items: center;
	}
	header .logo_panel .logo p{
		margin: 0 0 0 14px;
		font-size: 14px;
	}
	@media screen and (max-width: 1000px) {
		header .logo_panel .logo p{
			display: none;
		}
	}
	@media screen and (max-width: 768px) {
		header .logo_panel .logo p{
			display: block;
			font-size: 13px;
		}
	}


/* ヘッダー部分 end */


/* フッター部分 start */
#totop {
    position: fixed;
    bottom: 35px;
    right: 30px;
    z-index: 15;
    line-height: 0;
    margin: 0;
}
#totop a{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-family: "Nunito", sans-serif;
	font-size: 18px;
	color: #fff;
}
#totop a img{
	margin-left: 15px;
}
/* フッター部分 end */

/* Show Animation */
 /* .fadeInAnim {
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: opacity .8s ease-out, transform 1.2s ease-out .2s;
	transition: opacity .8s ease-out, transform 0.8s ease-out;
  }
  
  .fadeInAnim.visible {
	opacity: 1;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
  } */

.fadeInAnim {
	opacity: 0;
}
	.fadeInAnim.visible {
		animation: fadeIn 1s ease-out 0.5s forwards;
	}
	.fadeInAnim.second.visible {
		animation: fadeIn 1s ease-out 1s forwards;
	}
	.fadeInAnim.third.visible {
		animation: fadeIn 1s ease-out 1.5s forwards;
	}
	@keyframes fadeIn {
		0% {
		opacity: 0; 
		}
		100% {
		opacity: 1; 
		} 
	}

.sect_title{
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
	.sect_title{
		font-size: 24px;
	}
}


.sp-menu-btn .text{
	font-family: "Nunito", sans-serif;
	font-weight: bold;
	color: var(--blue-color);
	font-size: 20px;
}
.sp-menu-btn .icon{
	margin-right: 10px;
	margin-left: 13px;
}
header .logo_panel .logo .logo_text{
	margin-left: 18px;
}
header .logo_panel .logo .logo_img{
	transform: translateY(33px);
}
.logo_panel_container{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	width: 100%;
	height: 96px;
	z-index: 100;
}
@media screen and (max-width: 1026px) {
	header .logo_panel .logo .logo_img{
		width: 100px;
		height: auto;
	}
	.sp-menu-content{
		right: 20px;
	}
}
@media screen and (max-width: 768px) {
	.logo_panel_container{
		height: 50px;
	}
	header .logo_panel .logo .logo_img{
		width: 50px;
		height: auto;
		transform: translateY(15px);
	}
	header .logo_panel .logo .logo_text{
		width: 150px;
		height: auto;
		margin-left: 5px;
	}
	.sp-menu{
		height: 50px;
	}
	.sp-menu-btn .text{
		font-size: 13px;
	}
	.sp-menu-btn .icon{
		width: 30px;
		margin-right: 0;
		margin-left: 5px;
	}
	.sp-menu-content{
		top:50px;
		right: 3vw;
		min-width: 150px;
		padding: 5px 15px 25px 15px;
	}
	.sp-menu-item {
    	padding-bottom: 5px;
		padding-top: 5px;
		width: 100%;
	}
	.sp-menu-item > a {
		font-size: 12px;
	}
}

footer{
	background-color: var(--blue-color);
	padding: 30px 0;
}
.footer_list01{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.footer_list01 li{
	list-style: none;
	padding: 0 24px;
	line-height: 1;
	border-right: solid 1px #fff;
}
.footer_list01 li:first-child{
	border-left: solid 1px #fff;
}
.footer_list01 .footer_link01{
	font-size: 15px;
	color: #fff;
	line-height: 1;
}
.footer_logo{
	display: block;
	margin: 65px auto 27px auto;
}
.footer_text01{
	font-size: 15px;
	color: #fff;
	line-height: 1.33;
	text-align: left;
	width: 416px;
	max-width: 100%;
	margin: 0 auto 45px auto;
}
.footer_text02{
	font-size: 15px;
	color: #fff;
	text-align: left;
	width: 416px;
	max-width: 100%;
	margin: 0 auto;
}
@media screen and (max-width: 1024px) {
	.footer_list01 {
		flex-wrap: wrap;
	}
	.footer_list01 li{
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 768px) {
	.footer_list01{
		flex-direction: column;
	}
	.footer_list01 li{
		border-right:none;
		margin-bottom: 5px;
	}
	.footer_list01 li:first-child{
		border-left:none;
	}
	.footer_list01 .footer_link01{
		font-size: 12px;
	}
	.footer_logo{
		max-width: 80%;
		margin: 30px auto;
	}
	.footer_text01{
		font-size: 12px;
	}
	.footer_text02{
		font-size: 11px;
		text-align: center;
	}
	#totop{
		right: 10px;
	}
	#totop a{
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	#totop a span{
		font-size: 14px;
		order: 2;
		margin-top: 10px;
		text-align: center;
	}
	#totop a img{
		order: 1;
		margin-left: 0;
	}

}

.pagination{
	padding-top: 45px;
	padding-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.nav-links{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.nav-links .page-numbers{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: solid 1px #d5d5d6;
	border-radius: 20px;
	margin: 0 4px;
	color: #000;
	font-size: 14px;
	background: #fff;
}
.nav-links .page-numbers.current{
	background-color: #303ec8;
	color: #fff;
}
@media screen and (max-width: 768px) {
	.pagination{
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.nav-links .page-numbers{
		width: 26px;
		height: 26px;
		font-size: 12px;
		margin: 0 3px;
	}
}

.breadcrumbs{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	margin: 30px 0 20px 0;
}
.breadcrumbs li{
	list-style: none;
	font-size: 18px;
}
.breadcrumbs li::after{
	content: '/';
	padding: 0 15px;
}
.breadcrumbs li:last-child::after{
	display: none;
}
.breadcrumbs li a{
	color: #666666;
}
.breadcrumbs li.current{
	color: var(--blue-color);
}
@media screen and (max-width: 768px) {
	.breadcrumbs li{
		list-style: none;
		font-size: 12px;
	}
}


.sect_page {
    background: url(../img/information/information-bg.jpg);
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat;
    padding-bottom: 37vw;
    min-height: 100vh;
}
.sect_page p{
	margin-bottom: 1rem;
}
.sect_page_layout01{
  height: 470px;
  position: relative;
}
.sect_page_layout01.about{
  height: 550px;
}
.sect_page_text01{
  font-size: 75px;
  font-weight: 600;
  color: var(--blue-color);
  padding-top: 115px;
}
.sect_page_text02{
  font-size: 30px;
  font-weight: 600;
  color: var(--blue-color);
  margin-top: 7px;
}
.sect_page_layout02{
  border-top: solid 1px var(--blue-color);
  border-bottom: solid 1px var(--blue-color);
  padding: 42px 0;
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
}
.sect_page_layout02 p{
  margin-bottom: 1rem;
}
.about_bg {
    position: absolute;
    bottom: 0;
    right: 0;
}
.sect_page_layout03{
	padding-top: 20px;
	padding-bottom: 90px;
	font-size: 18px;
	line-height: 1.6;
}
.sect_page_layout03 a{
	color: var(--blue-color);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.sect_page_layout04{
	padding-top: 50px;
	padding-bottom: 70px;
	border-top: solid 1px var(--blue-color);
	font-size: 18px;
	line-height: 1.6;
}
.sect_page_layout04 h1{
	font-size: 30px;
	color: var(--blue-color);
	font-weight: 600;
	margin-bottom: 20px;
}
.sect_page_layout04 h2{
	font-size: 22px;
	color: var(--blue-color);
	font-weight: 600;
	margin-bottom: 15px;
}


@media screen and (max-width: 1024px) {
  .sect_page_layout01{
    height: 37vw;
  }
  .sect_page_layout01.about{
    height: 37vw;
  }
  .sect_page_text01{
    font-size: 60px;
    padding-top: 10vw;
  }
  .sect_page_text02{
    font-size: 24px;
  }


}
@media screen and (max-width: 768px) {
  .sect_page_layout01{
    height: auto;
  }	
  .sect_page_layout01.about{
    height: auto;
  }	
  .sect_page_text01{
    font-size: 30px;
    text-align: center;
  }
  .sect_page_text02{
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
  }
  .sect_page_layout02{
    padding: 20px 0;
    font-size: 12px;
  }
  .about_bg{
	position: relative;
	max-width: 70vw;
	display: block;
	margin: 5px 0 5px auto;
  }
  .sect_page_layout03 {
    padding-top: 10px;
    padding-bottom: 50px;
    font-size: 12px;
  }
  .sect_page_layout04 {
    padding-top: 20px;
    padding-bottom: 50px;
    font-size: 12px;
  }
  .sect_page_layout04 h1 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .sect_page_layout04 h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.contact_link{
	position: absolute;
	right: 0;
	top: 0;
	width: 60px;
	height: 111px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-bottom-left-radius: 14px;
	background-color: var(--blue-color);
	line-height: 1;
	z-index: 150;
	color: #fff;
}
@media screen and (max-width: 1026px) {
	.contact_link{
		display: none;
	}
}
.contact_form{
	width: 600px;
	max-width: 100%;
	display: block;
	margin: 0 auto;
}
.contact_form input[type=text],
.contact_form input[type=email]{
	padding: 10px;
	line-height: 1.3;
	font-size: 14px;
	border: solid 1px var(--grey-color);
	border-radius: 3px;
}
.contact_form textarea{
	padding: 10px;
	line-height: 1.3;
	font-size: 14px;
	border: solid 1px var(--grey-color);
	border-radius: 3px;
	width: 100%;
}
.contact_form input[type=submit]{
	width: 200px;
	height: 50px;
	font-size: 18px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--blue-color);
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}