@charset "UTF-8";
/* CSS Document */

body {
  /*font-family: 'Cabin', "M PLUS 2", 'Noto Sans JP', sans-serif;*/
	font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #222;
  background-color: #ffffff;
}
a, button, label {
  cursor: pointer !important;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
p {margin-bottom: 15px;
font-weight: 300;}

.bglightBlue{background-color: #f3f7fb;
	padding-bottom: 60px;
}

.bglightBlue2{background-color: #f3f7fb;

}
.brsp {display: none;}

/* header
------------------------------ */
#header {
  width: 100%;
/*font-family: 'Cabin', sans-serif;*/

}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
	background-color: #FFF;
}

main {
  padding-top: 80px;
}

#header .wrapper {
/*	overflow: hidden;　←ドロップダウンのために削除*/
	margin: 0 auto;
  width: 100%;
/*  max-width: 1200px;*/
	display: flex;
/*	align-items: flex-end;*/

}


#header p {
  margin: 22px 0 0 20px;;
  font-size: 1.4rem;
  font-weight: 700;
}

#header p.logo {
width: 450px;
}


#header p.logo img{
width: 100%;
}
#header p.special {
width: 180px;
}

#header p.entry a {
		background-color: #004CA0;	/*background-color: #191970;*/
/*			background-color: #004CA0;*/
	color: #ffffff;
	text-decoration: none;
	padding: 10px;
	margin-right: 20px;
}


#header nav {
  margin-left: auto;
}
/* ナビゲーション全体のレイアウト */
#header ul.nav-list {
	display: flex;
  margin: 45px 20px 0 0;
  font-size: 0.8rem;
	font-weight: bold;
	color: #000000;
}



.nav-item {
  position: relative; /* 子メニューの基準位置にする */
	  margin-right:25px;
}

.nav-link {
  display: block;
  text-decoration: none;
  color: #333;
  background-image: linear-gradient(#1061ad, #1061ad);
  background-size: 0% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}

.nav-link:hover {
  background-size: 100% 2px;
}

/* 子メニュー（ドロップダウン）の初期状態 */
.dropdown {
  position: absolute;
  top: 100%; /* 親の真下に配置 */
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 95px;

  /* 最初は隠しておく設定 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease; /* ふわっと出すためのアニメーション */
	font-weight: 400;
	z-index: 9999; 

}

.dropdown li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown li a:hover {
  background-color: #f3f7fb;
	text-decoration: underline;

}

/* 【重要】親要素にマウスが乗ったら、子メニューを表示する */
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
}



/*ハンバーガー*/
.hamburger{
display:none;
background:none;
border:none;
}


/*ページタイトル*/

.pagetitle{/*background-image: url("../../images/topbg01.png");
	background-position: center;*/
height: 150px;
display: flex;
  align-items: center;      /* 縦中央 */
  justify-content: center;  /* 横中央（不要なら削除） */}

.pagetitle h1 {text-align: center;font-size: 3.8rem;
color: #222;}

.pagetitle h1 span{display: block;
  font-size: 1.0rem; 
  margin-top: 4px;  
	font-weight: 300;
color: #333;}



/*section*/



.wrapper p{font-size: 1.2rem;
}


section .wrapper{ width: 100%;
  max-width: 1200px;
	  margin: 0 auto;

}

footer .wrapper{ width: 100%;
/*  max-width: 1200px;*/
	  margin: 0 auto;

}


/*ぱんくず*/

.breadcrumb {
  font-size: 14px;
  margin: 20px 0;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: ">";
  margin: 0 8px;
  color: #999;
}

.breadcrumb a {
  text-decoration: none;
  color: #333;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

section h2{font-size: 3.0rem;
text-align: center;
margin-bottom: 45px;
	padding-top: 45px;
  letter-spacing: .08em;
}

section h2 span{  display: block;
  font-size: 1.0rem; 
  margin-top: 4px;  
	font-weight: 300;
}


/*エントリー各ページボタンよう*/


a.entryBtn {
	margin: 45px auto;
	font-size: 4.6rem;
	max-width: 350px;
	text-align: center;
	display: block;
		background-color: #004CA0;
	color: #ffffff;
	text-decoration: none;
	padding:15px;
	 transition-duration: .4s;
	font-weight: 500;
/*	font-weight: bold;*/

}
a.entryBtn:hover{    transform: scale(1.1); }


footer {background-color: #004CA0;

color: #ffffff;}

footer .wrapper{display: flex;
	justify-content: space-between;
align-items: flex-end;
padding-bottom: 30px;
padding-top: 30px;}

footer .wrapper p{
	margin-bottom: 0;
	margin-left: 30px;
}

footer ul{display: flex;
	margin-right: 30px;
}

footer ul li{border-right: 2px solid #FFFFFF;

padding: 5px 15px;}

footer ul li a{text-decoration: none;}
footer ul li a:hover{text-decoration: underline;}

/*footer p{padding-bottom: 30px;}*/

/*準備中のページで利用*/

.coming-soon{margin: 100px 0;}

.coming-soon h3{font-size: 3.6rem;text-align: center;}

.coming-soon p{margin: 60px 0; text-align: center;}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none; /* ボタンを隠す */
  }
  .navbar {
    display: block; /* 常に表示 */
  }
  .nav-list {
    display: flex; /* 横並びにする */
    gap: 20px;
  }
	
	}