/******************************
ヘッダー
******************************/
#header {
  position: fixed;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  filter: alpha(opacity=50);
  height: 70px;
  transition: all 1s ease-in-out;
  font-weight: normal;
  box-shadow: 33px 3px 7px rgb(218 210 254);
  top: 0;
}
#header .inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
#header .logo {
  position: absolute;
  width: 50px;
  top: 10px;
}
#header .logo a {
  height: 70px;
  display: inline-block;
  width: 50px;
}
#header .logo img {
  width: 50px;
}
@media screen and (max-width:1024px) {
  #header {
    height: 50px;
  }
  #header .logo {
    top: 0;
  }
}
@media screen and (max-width:798px) {
  #header .inner {
    width: 100%;
  }
}
/******************************
PCナビ
******************************/
/*#header .sp-nav {
    display: none;
}*/
#header nav {
  width: 100%;
}
#header nav a {
  display: inline-block;
  margin: 0 auto 5px;
  color: #203789;
}
#header nav .main-nav {
  display: flex;
  display: flex;
  top: 6px;
  position: absolute;
  right: 0;
}
#header .main-nav li {
  margin: 15px;
}
@media screen and (max-width:1024px) {
  #header .pc-nav {
    display: none;
  }
  #header .sp-nav {
    display: block;
  }
}
/******************************
SPナビ
******************************/
.menu-btn {
  width: 50px;
  height: 50px;
  background: #1f3789;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
  cursor: pointer;
  border-radius: 50%;
}
.menu-btn span {
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: all .4s;
  position: absolute;
  left: 12px;
}
.menu-btn span:nth-of-type(1) {
  top: 16px;
}
.menu-btn span:nth-of-type(2) {
  top: 24px;
}
.menu-btn span:nth-of-type(3) {
  top: 32px;
}
.open .menu-btn span:nth-of-type(1) {
  width: 27px;
  -webkit-transform: translateY(8px) rotate(-315deg);
  transform: translateY(8px) rotate(-315deg);
}
.open .menu-btn span:nth-of-type(2) {
  opacity: 0;
}
.open .menu-btn span:nth-of-type(3) {
  width: 27px;
  -webkit-transform: translateY(-8px) rotate(315deg);
  transform: translateY(-8px) rotate(315deg);
}
.menu-area {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  color: #FFF;
  background: rgba(0, 0, 0, 0.9);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  z-index: 999;
  display: none;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-image: url("../img/nav.webp");
  top: 0;
}
.menu-area .inner {
  margin: 50px auto 0;
  height: calc(100vh - 50px);
  display: table;
  width: 90%;
}
.sp-logo {
  width: 200px;
  margin-top: 10px;
  position: absolute;
  left: 30px;
}
.menu-area .list-wrap {
  display: table-cell;
  vertical-align: middle;
}
.menu-area a {
  color: #fff;
  display: block;
  font-size: 16px;
  /*text-shadow: 1px 1px 2px #1f3789;*/
}
.menu-area dl {
  margin: 0 auto;
}
.menu-area dl ul {
  margin: 0 auto;
}
.menu-area dl li {
  padding: 14px 10px 0 10px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
.menu-area .item-list {
  border-bottom: 1px solid #fff;
  font-size: 30px;
  line-height: 36px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  font-family: 游明朝, 'Yu Mincho', YuMincho, 'Noto Serif JP', serif, '游ゴシック', YuGothic, 'Meiryo', 'メイリオ';
}
.menu-area .item-list small {
  font-size: 16px;
}
.menu-area .list-wrap img {
  width: 25px;
}
@media screen and (max-width:1024px) {
  .menu-btn {
    top: 0;
    right: 0;
    background-color: #fff;
  }
  .menu-btn span {
    background-color: #1f3789;
  }
}
@media screen and (max-width:798px) {
  #header .menu-area .inner {
    width: 90%;
  }
}
@media screen and (min-width:560px) {
  .menu-area dl ul {
    margin-bottom: 50px;
  }
}