@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
}

/* 共通 */
#header {
  width: 100%;
  padding-top: 6px;
}
#headerContent {
  margin: 0 auto;
}
#headerMenu {
  width: 100%;
}
/* 画面サイズ(1025px以上) */
@media screen and (min-width:1025px) {
#headerContent {
  width: 980px;
  height: 110px;
}
}
/* 画面サイズ(768~1024px) */
@media screen and (min-width:768px) and (max-width:1024px) {
#headerContent {
  width: 100%;
  height: 110px;
}
.left {
  margin-left: 10px;
}
.right {
  margin-right: 10px;
}
}
/* 画面サイズ(768px以上) */
@media screen and (min-width:768px) {
#headerMenu h2 {
	display: none;
}
#headerMenuBtn {
	display: none;
}
#headerMenu {
  display: flex;
  justify-content: space-between;
}
/* ナビバー左側 */
.left {
  margin-top: 17px; 
}
/* ナビバー右側 */
.right {
  margin-top: 17px;
}
/* ナビバー */
.utility {
  display: flex;
  list-style: none;
}  
.utility li {
  font-size: 13px;
  line-height: 1;
}
.utility li:nth-child(1) {
  padding-right: 12px;
}
.utility li:nth-child(2) {
  padding: 0 12px; 
  border-left: 1px solid #e1e1e1;
}
.utility li:nth-child(3) {
  padding-left: 12px; 
  border-left: 1px solid #e1e1e1;
}
.utility li a {
  color: #434343;
}
.utility li a:hover {
  text-decoration: none;
}
}
/* 画面サイズ（767px以下）（ハンバーガーメニュー） */
@media screen and (max-width:767px) {
#headerContent {
  width: 100%;
}
#sp_headerContent {
  position: relative;
  width: 100%; 
  height: 45px; 
}
#headerMenuBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 30px;
}
#headerMenuBtn img {
  width: 100%;
}
#headerMenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.open #headerMenu {
  right: 0;
}
#headerMenu h2 {
	position: relative;
  background-color: #f1f4ff;
  font: inherit;
  font-size: 18px;
  padding: 10px;
} 
/* ハンバーガーメニューを閉じるボタン */
#headerMenu h2 .close {
	position: absolute;
	top: 50%;
  transform: translateY(-50%);
	right: 10px;
	width: 22px;
}
.utility {
  list-style: none;
}
.utility li a {
  display: block;
	color: #245dc1;
  padding: 10px 0px 10px 10px;
	font-size: 15px;
  border-bottom: 1px solid #ccc;
}
.utility li a:hover {
  text-decoration: none;
}
}