/* ===========================================
 * header
=========================================== */


header{
    width: 100%;
	height: 80px;
    background: #fff;
	padding: 15px 0;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	z-index: 10;
}
header .content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	align-items: center;
}
header .logo{
    width: 434px;
	display: flex;
    justify-content: space-between;
	align-items: center;
	column-gap: 20px;
}
header .logo img{
    width: 298px;
    height: 42px;
}
header .h_title{
	width: 117px;
	height: 42px;
	border: 1px solid #133B69;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
header .h_title p{
	text-align: center;
	font-size: 10px;
	color: #133B6B;
	font-weight: 900;
	letter-spacing: normal;
	line-height: normal;
	margin: 0;
}
header .h_title p span{
	display: block;
	font-size: 15px;
	color: #133B6B;
	font-weight: 900;
}
header .nav{
}
#nav_toggle{
	display: none;
}
header .nav ul{
    list-style: none;
    text-align: right;
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px;
	align-items: center;
}
header .nav ul li{
    font-size: 15px;
    text-align: center;
}
header .nav ul li a{
    display: block;
    padding: 10px;
    font-weight: 700;
	color: #133B6B;
}
header .nav ul li.job{
	font-size: 17px;
	width: 120px;
	height: 50px;
	background: #175BA3;
	border-radius: 5px;
}
header .nav ul li.job a{
    display: block;
    padding: 10px;
    font-weight: 700;
	color: #fff;
}
header .nav ul li.entry{
	font-size: 17px;
	width: 120px;
	height: 50px;
	background: #133B6B;
	border-radius: 5px;
}
header .nav ul li.entry a{
    display: block;
    padding: 10px;
    font-weight: 700;
	color: #fff;
}
header .nav ul li.sns{
	font-size: 17px;
	width: 50px;
	height: 50px;
	border-radius: 5px;
	
  background:
    radial-gradient(circle at 32% 105%,
      #ffd86f 0%,
      #fc6262 38%,
      #d629a6 58%,
      #962fbf 72%,
      #4f5bd5 100%);
	
}
header .nav ul li.sns a{
    display: block;
    padding: 0;
    font-weight: 700;
	color: #fff;
}
header .nav ul li.sns a i{
	font-size: 33px;
	padding: 8px 10px;
	color: #fff;
}
nav ul li a {
  position: relative;
  text-decoration: none;
}

nav ul li.active a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #175BA3; /* 好きな色 */
}

@media screen and (max-width:640px){
	header{
		width: 100%;
		height: 80px;
		background: #fff;
		padding: 15px 0;
		box-sizing: border-box;
		position: fixed;
	}
	header .content{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	header .logo{
		width: 434px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		column-gap: 20px;
	}
	header .logo img{
		width: 298px;
		height: 42px;
	}
	header .h_title{
		width: 117px;
		height: 42px;
		border: 1px solid #133B69;
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	header .h_title p{
		text-align: center;
		font-size: 10px;
		color: #133B6B;
		font-weight: 900;
		letter-spacing: normal;
		line-height: 15px;
		margin: 0;
	}
	header .h_title p span{
		display: block;
		font-size: 15px;
		color: #133B6B;
		font-weight: 900;
	}
	header .nav{
	}
	/*navi*/
	#nav_toggle{
		display: block;
		width: 50px;
		height: 40px;
		position: absolute;
		top: 50%;
		right: 30px;
		transform: translateY(-50%);
		-webkit- transform: translateY(-50%);
		z-index: 10000;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 2px;
		background: #175BA3;
		position:absolute;
		width: 50px;
		margin: 0 auto;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:19px;
	}
	#nav_toggle span:nth-child(3){
		top:40px;
	}
	/*開閉ボタンopen時*/
	.open #nav_toggle span{
		background: #fff;
	}
	.open #nav_toggle span:nth-child(1) {
		top: 18px;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav_toggle span:nth-child(3) {
		top: 18px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	.fixed{
		position: fixed;
		top: 0;
		z-index: 1000;
	}
	header nav{
		display:none;
		position: fixed;
		top:0;
		width: 100%;
		height: 100vh;
		overflow-y: auto;
		background: #175BA3;
		padding:100px 0;
		left: 0;
		z-index: 1001;
	}
	header .nav ul{
		list-style: none;
		text-align: right;
		display: block;
		flex-wrap: wrap;
		column-gap: 10px;
		align-items: center;
		width: 580px;
		margin: 0 auto;
	}
	header .nav ul li{
		font-size: 20px;
		text-align: center;
	}
	header .nav ul li a{
		display: block;
		padding: 20px 0;
		font-weight: 700;
		color: #fff;
		border-bottom: 1px solid #fff;
	}
	header .nav ul li.job{
		font-size: 25px;
		width: 580px;
		height: 60px;
		margin-bottom: 20px;
		background: #fff;
		border-radius: 5px;
		margin-top: 40px;
	}
	header .nav ul li.job a{
		line-height: 60px;
		display: block;
		font-weight: 700;
		padding: 0;
		color: #175BA3;
		border: 0;
	}
	header .nav ul li.entry{
		font-size: 25px;
		width: 580px;
		height: 60px;
		margin-bottom: 20px;
		background: #133B6B;
		border-radius: 5px;
	}
	header .nav ul li.entry a{
		line-height: 60px;
		display: block;
		padding: 0;
		font-weight: 700;
		color: #fff;
		border: 0;
	}
	header .nav ul li.sns{
		font-size: 17px;
		width: 50px;
		height: 50px;
		margin: 0 auto;
		border-radius: 5px;
		
		
		  background:
    radial-gradient(circle at 32% 105%,
      #ffd86f 0%,
      #fc6262 38%,
      #d629a6 58%,
      #962fbf 72%,
      #4f5bd5 100%);
		
		
		
	}
	header .nav ul li.sns a{
		display: block;
		padding: 0;
		font-weight: 700;
		color: #fff;
	}
	header .nav ul li.sns a i{
		font-size: 33px;
		padding: 8px 10px;
		color: #fff;
	}
	
	
}


/* ===========================================
 * footer
=========================================== */

footer {
	width: 100%;
	background: #175BA3;
}
footer .content{
	padding: 80px 0;
}
footer .block{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer .block .logo_box{
	width: 436px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
footer .block .logo_box img{
	width: 300px;
	height: 42px;
	object-fit: cover;
}
footer .block .logo_box .f_title{
	width: 107px;
	height: 30px;
	border-bottom: 1px solid #fff;
	border-top: 1px solid #fff;
	text-align: center;
}
footer .block .logo_box .f_title p{
	font-size: 14px;
	color: #fff;
	font-weight: 900;
	letter-spacing: normal;
	line-height: 30px;
}
footer .block .logo_box .btn{
	background: #fff;
	border-radius: 5px;
	width: 240px;
	height: 50px;
}
footer .block .logo_box .btn a{
	display: block;
	color: #1F5A9F;
	font-size: 16px;
	line-height: 50px;
	padding: 0 10px;
	position: relative;
}
footer .block .logo_box .btn a::after{
	font-family: "Font Awesome 6 Free";
  	content: "\f061";
	position: absolute;
	font-weight: 900;
	right: 10px;
}
footer .block .nav_box{
	display: flex;
	column-gap: 40px;
}
footer .block .nav_box ul{
	list-style: none;
}
footer .block .nav_box ul li a{
	font-size: 16px;
	padding: 0 0 10px;
	display: block;
	color: #fff;
}
footer .block .nav_box .btn_area{
	width: 180px;
}
footer .block .nav_box .btn_area .btn_job{
	width: 180px;
	height: 55px;
	border-radius: 5px;
	background: #fff;
	margin-bottom: 20px;
}
footer .block .nav_box .btn_area .btn_job a{
	display: block;
	line-height: 55px;
	text-align: center;
	color: #1F5A9F;
	font-size: 16px;
	font-weight: 900;
}
footer .block .nav_box .btn_area .btn_entry{
	width: 180px;
	height: 55px;
	border-radius: 5px;
	background: #133B6B;
	border: 1px solid #fff;
	box-sizing: border-box;
}
footer .block .nav_box .btn_area .btn_entry a{
	display: block;
	line-height: 55px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
}
footer .copy{
	width: 100%;
	text-align: center;
	background: #fff;
	padding: 10px 0;
}
footer .copy p{
	color: #1F5A9F;
	font-size: 12px;
}



@media screen and (max-width:640px){
	
	
	
	footer {
		width: 100%;
		background: #175BA3;
	}
	footer .content{
		padding: 80px 0;
	}
	footer .block{
		display: block;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	footer .block .logo_box{
		width: 500px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		align-items: center;
		margin: 0 auto 40px;
	}
	footer .block .logo_box img{
		width: 300px;
		height: 42px;
		object-fit: cover;
	}
	footer .block .logo_box .f_title{
		width: 140px;
		height: 34px;
		border-bottom: 1px solid #fff;
		border-top: 1px solid #fff;
		text-align: center;
	}
	footer .block .logo_box .f_title p{
		font-size: 20px;
		color: #fff;
		font-weight: 900;
		letter-spacing: normal;
		line-height: 34px;
	}
	footer .block .logo_box .btn{
		background: #fff;
		border-radius: 5px;
		width: 480px;
		height: 60px;
		margin-top: 20px;
	}
	footer .block .logo_box .btn a{
		display: block;
		color: #1F5A9F;
		font-size: 24px;
		line-height: 60px;
		padding: 0 10px;
		position: relative;
	}
	footer .block .logo_box .btn a::after{
		font-family: "Font Awesome 6 Free";
		content: "\f061";
		position: absolute;
		font-weight: 900;
		right: 10px;
	}
	footer .block .nav_box{
		display: flex;
		column-gap: 40px;
	}
	footer .block .nav_box ul{
		list-style: none;
		display: none;
	}
	footer .block .nav_box ul li a{
		font-size: 16px;
		padding: 0 0 10px;
		display: block;
		color: #fff;
	}
	footer .block .nav_box .btn_area{
		width: 580px;
		margin-top: 20px;
	}
	footer .block .nav_box .btn_area .btn_job{
		width: 580px;
		height: 60px;
		border-radius: 5px;
		background: #fff;
		margin-bottom: 20px;
	}
	footer .block .nav_box .btn_area .btn_job a{
		display: block;
		line-height: 60px;
		text-align: center;
		color: #1F5A9F;
		font-size: 24px;
		font-weight: 900;
	}
	footer .block .nav_box .btn_area .btn_entry{
		width: 580px;
		height: 60px;
		border-radius: 5px;
		background: #133B6B;
		border: 1px solid #fff;
		box-sizing: border-box;
	}
	footer .block .nav_box .btn_area .btn_entry a{
		display: block;
		line-height: 60px;
		text-align: center;
		color: #fff;
		font-size: 24px;
		font-weight: 900;
	}
	footer .copy{
		width: 100%;
		text-align: center;
		background: #fff;
		padding: 10px 0;
	}
	footer .copy p{
		color: #1F5A9F;
		font-size: 14px;
	}
	
	
}

/* ===========================================
 * content
=========================================== */
section {
  position: relative;
  z-index: 0;
	overflow: hidden;
}
section.circle {
  position: relative;
  z-index: 0;
  overflow: hidden; /* ←これで完全解決 */
}
section.circle::before,
section.circle::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #80C5E6;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  z-index: -1;
  animation: float 12s ease-in-out infinite alternate;
}

section.circle::before {
  top: 0;
  right: -200px;
}

section.circle::after {
  bottom: 0;
  left: -200px;
	animation-delay: -6s;
}
/* ふわふわアニメーション */
@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(100px, -100px) scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-100px, 100px) scale(0.95);
    opacity: 0.5;
  }
}
.content{
	width: 1100px;
	margin: 0 auto;
}
.marker{
	background: #F0FF00;
	font-weight: 600;
}
.blue{
	background: #DCEBF4;
}
#entry_link{
	padding: 80px 0;
}
#entry_linkInner h3{
	text-align: center;
	font-size: 24px;
	color: #113763;
	margin-bottom: 30px;
}
#entry_linkInner p{
	text-align: center;
}
#entry_linkInner .btn_area{
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
#entry_linkInner .btn_area .btn{
	width: 530px;
	height: 100px;
	border-radius: 10px;
}
#entry_linkInner .btn_area .btn:first-of-type{
	background: #175BA3;
}
#entry_linkInner .btn_area .btn:last-of-type{
	background: #133B6A;
}
#entry_linkInner .btn_area .btn a{
	display: block;
	line-height: 100px;
	text-align: center;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
}
#entry_linkInner .btn_area .btn a img{
	vertical-align: middle;
	margin-left: 10px;
}

@media screen and (max-width:640px){
	
	section {
	  position: relative;
	  z-index: 0;
		overflow: hidden;
	}
	section.circle {
	  position: relative;
	  z-index: 0;
	  overflow: hidden; /* ←これで完全解決 */
	}
	section.circle::before,
	section.circle::after {
	  content: "";
	  position: absolute;
	  width: 400px;
	  height: 400px;
	  background: #80C5E6;
	  border-radius: 50%;
	  filter: blur(100px);
	  opacity: 0.6;
	  z-index: -1;
	}

	section.circle::before {
	  top: 0;
	  right: -200px;
	}

	section.circle::after {
	  bottom: 0;
	  left: -200px;
	}
	.content{
		width: 580px;
		margin: 0 auto;
	}
	.marker{
		background: #F0FF00;
		font-weight: 600;
	}
	.blue{
		background: #DCEBF4;
	}
	#entry_link{
		padding: 80px 0;
	}
	#entry_linkInner h3{
		text-align: center;
		font-size: 30px;
		color: #113763;
		margin-bottom: 30px;
	}
	#entry_linkInner p{
		text-align: center;
	}
	#entry_linkInner .btn_area{
		display: block;
		justify-content: space-between;
		margin-top: 30px;
	}
	#entry_linkInner .btn_area .btn{
		width: 580px;
		height: 100px;
		border-radius: 10px;
	}
	#entry_linkInner .btn_area .btn:first-of-type{
		background: #175BA3;
		margin-bottom: 30px;
	}
	#entry_linkInner .btn_area .btn:last-of-type{
		background: #133B6A;
	}
	#entry_linkInner .btn_area .btn a{
		display: block;
		line-height: 100px;
		text-align: center;
		color: #fff;
		font-size: 32px;
		font-weight: 700;
	}
	#entry_linkInner .btn_area .btn a img{
		vertical-align: middle;
		margin-left: 10px;
	}
	
	
}

/* ===========================================
 * pankuzu
=========================================== */

#breadcrumb {
	padding-top: 20px;
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 20px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

#breadcrumb li{
	display: inline-block;
	font-size: 13px;
	color: #969696;
}

#breadcrumb li a{
	display: block;
	color: #969696;
}

#breadcrumb li a:after{
	content: '　/';
}


@media screen and (max-width:640px){
	
	#breadcrumb {
		display: none;
	}
	
	
}


/* ===========================================
 * sub
=========================================== */
#sub_slider {
	width: 100%;
	height: 400px;
    position: relative;
	background: #E4EBF6;
	overflow: hidden;
	margin-top: 80px;
}
#sub_slider .content{
	width: 1250px;
}
#sub_slider .block{
	position: relative;
}
#sub_slider .block .text_box{
	position: relative;
	width: 1000px;
	margin: 0 auto;
	padding: 40px 0 0;
	z-index: 1;
}
#sub_slider .block .text_box h1{
	font-size: 38px;
	color: #175BA3;
	line-height: normal;
}
#sub_slider .block .text_box h1 span{
	font-size: 12px;
	display: block;
}
#sub_slider .block .text_box p{
	margin: 20px 0;
}
#jobs  #sub_slider .block .text_box p{
	font-size: 15px;
}
#sub_slider .block .text_box .btn{
	font-size: 16px;
}
#sub_slider .block .text_box .btn a{
	font-weight: 700;
	color: #175BA3;
}
#sub_slider .block .text_box .btn img{
	margin-right: 10px;
	vertical-align: middle;
}
#sub_slider .block .img_box{
	position: absolute;
	right: 0;
	top:0;
	z-index: 0;
	height: 400px;
}
#sub_slider .block .img_box img{
	height: 400px;
	object-fit: cover;
}



@media screen and (max-width:640px){
	
	
	#sub_slider {
		width: 100%;
		height: auto;
		position: relative;
		background: #E4EBF6;
		overflow: hidden;
		margin-top: 80px;
	}
	#sub_slider .content{
		width: 580px;
	}
	#sub_slider .block{
		position: relative;
		display: flex;
		flex-wrap: wrap;
	}
	#sub_slider .block .text_box{
		order: 2;
		position: relative;
		width: 580px;
		margin: -130px auto 0;
		padding: 30px 0;
		z-index: 1;
	}
	#sub_slider .block .text_box h1{
		font-size: 38px;
		color: #175BA3;
		line-height: normal;
	}
	#sub_slider .block .text_box h1 span{
		font-size: 18px;
		display: block;
	}
	#sub_slider .block .text_box p{
		margin: 20px 0;
	}
	#jobs  #sub_slider .block .text_box p{
		font-size: 22px;
	}
	#sub_slider .block .text_box .btn{
		font-size: 22px;
	}
	#sub_slider .block .text_box .btn a{
		font-weight: 700;
		color: #175BA3;
	}
	#sub_slider .block .text_box .btn img{
		margin-right: 10px;
		vertical-align: sub;
		width: 27px;
		object-fit: cover;
	}
	#sub_slider .block .img_box{
		order: 1;
		position: relative;
		right: 0;
		top:0;
		z-index: 0;
		height: auto;
		width: 400px;
		margin-left: auto;
	}
	#sub_slider .block .img_box img{
		height: auto;
		width: 400px;
		object-fit: cover;
	}
	
	
	
}


/*PAGER*/
#pagination{
	width: 1000px;
	margin: 100px auto;
}
#pagination table{
	border-collapse:collapse;
	width: 1000px;
}
#pagination table td{
	width: 250px;
	margin: 10px;
}
.prev_btn,
.next_btn{
	width: 260px;
	height: 60px;
	border: 1px solid #707070;
	position: relative;
	margin: 0 auto;
}

.prev_btn a,
.next_btn a{
	display: block;
	text-align: center;
	line-height: 60px;
}

.list_btn{
	width: 260px;
	height: 60px;
	border: 1px solid #707070;
	margin: 0 auto;
}
.list_btn a{
	display: block;
	color: #393939;
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 60px;
}
.list_btn:hover {
	opacity: .7;
}

@media screen and (max-width:640px){

	#pagination{
		width: 580px;
		margin: 100px auto;
	}
	#pagination table{
		border-collapse:collapse;
		width: 580px;
	}
	#pagination table td{
		width: 150px;
		margin: 10px;
	}
	.prev_btn,
	.next_btn{
		width: 160px;
		height: 80px;
		border: 2px solid #707070;
		position: relative;
		margin: 0 auto;
	}

	.prev_btn a,
	.next_btn a{
		display: block;
		text-align: center;
		line-height: 80px;
	}

	.prev_btn a img,
	.next_btn a img{
		width: 50px;
		object-fit: cover;
	}
	.list_btn{
		width: 180px;
		height: 80px;
		border: 2px solid #707070;
		margin: 0 auto;
	}
	.list_btn a{
		display: block;
		color: #393939;
		text-align: center;
		font-weight: 400;
		font-size: 24px;
		line-height: 80px;
	}
	.list_btn:hover {
		opacity: .7;
	}
}
