@charset "UTF-8";
/*16*1.75/2*/
/*========*/
/* header */
/*========*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  line-height: 1;
  background-color: #7CA6D6;
}
header a {
  text-decoration: none;
}
header .contents {
  max-width: 1632px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  header .contents {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  header .contents {
    padding: 0;
  }
}
header .h-logo {
  display: flex;
  align-items: center;
  height: 88px;
}
@media (max-width: 767px) {
  header .h-logo {
    height: 44px;
  }
}
header .h-logo a {
  display: table;
  text-decoration: none;
}
@media (max-width: 767px) {
  header .h-logo a {
    padding: 0 16px;
  }
}
header .h-logo a img {
  width: 300px;
}
@media (max-width: 767px) {
  header .h-logo a img {
    width: 230px;
  }
}

/* ヘッダーカラー切り替え
-----------------------------------*/
@media (max-width: 767px) {
  html.noscroll {
    overflow: hidden;
  }
}
@media (max-width: 1100px) {
  html.noscroll .h-type02 header {
    background-color: #7CA6D6;
    box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 768px) {
  .h-type02 header {
    transition: 0.5s;
  }
}
.h-type02 header:not(.bg-active) {
  background: transparent;
  box-shadow: none;
}
.h-type02 main {
  padding-top: 88px;
  margin-top: -88px;
}
@media (max-width: 767px) {
  .h-type02 main {
    padding-top: 44px;
    margin-top: -44px;
  }
}

/* ハンバーガーメニュー
--------------------------------*/
@media (max-width: 1100px) {
  header .menu {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    height: 88px;
    padding: 0 24px;
    cursor: pointer;
    z-index: 11;
  }
}
@media (max-width: 1100px) and (max-width: 767px) {
  header .menu {
    height: 44px;
  }
}
@media (max-width: 1100px) {
  header .menu .menu-inner {
    position: relative;
    width: 24px;
    height: 16px;
  }
  header .menu .menu-inner span {
    position: absolute;
    right: 0;
    display: block;
    width: 24px;
    height: 2px;
    background: #FFF;
    transition: all 0.5s;
  }
  header .menu .menu-inner span:first-child {
    top: 0;
  }
  header .menu .menu-inner span:nth-child(2) {
    top: 8px;
    right: -6px;
  }
  header .menu .menu-inner span:last-child {
    top: 16px;
  }
}
@media (max-width: 1100px) {
  header .menu.open .menu-inner span:first-child {
    top: 7px;
    transform: rotate(45deg);
  }
  header .menu.open .menu-inner span:last-child {
    top: 7px;
    transform: rotate(-45deg);
  }
  header .menu.open .menu-inner span:nth-child(2) {
    opacity: 0;
  }
}
/*=====*/
/* nav */
/*=====*/
@media (min-width: 1101px) {
  nav {
    display: inherit !important;
  }
}
@media (max-width: 1100px) {
  nav {
    display: none;
    width: 100%;
  }
}
@media (max-width: 767px) {
  nav {
    background: url(/images/common/h_bg01_sp.jpg) no-repeat bottom right;
    background-size: 400px auto;
    padding: 20px 28px 36px;
    height: calc(100vh - 44px);
    height: calc(100dvh - 44px);
    overflow-y: auto;
  }
}
nav .h-nv {
  display: flex;
  align-items: flex-end;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 767px) {
  nav .h-nv {
    display: block;
  }
}
nav .g-nv {
  display: flex;
  color: #FFF;
}
@media (max-width: 767px) {
  nav .g-nv {
    display: block;
  }
}
nav .g-nv li {
  position: relative;
  margin-right: 32px;
}
@media (max-width: 1100px) {
  nav .g-nv li {
    margin-right: 28px;
  }
}
nav .g-nv li:hover a {
  border-bottom-color: #FFF;
}
@media (max-width: 767px) {
  nav .g-nv li {
    margin: 0;
  }
  nav .g-nv li + li {
    margin-top: 16px;
  }
}
nav .g-nv a {
  color: inherit;
  display: block;
  padding-bottom: 27px;
  border-bottom: 2px solid transparent;
}
@media (max-width: 767px) {
  nav .g-nv a {
    position: relative;
    padding: 16px 0;
    border-bottom: 1px solid #FFF;
  }
  nav .g-nv a:after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
    transform: rotate(45deg);
    right: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.4s;
  }
}
nav .bt-contact {
  margin-bottom: 16px;
}
nav .bt-contact a {
  color: #FFF;
  background-color: #0A3977;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 20px;
  border: 2px solid #FFF;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
}
nav .bt-contact a span {
  background: url(/images/common/ic_contact01.svg) no-repeat left center;
  padding-left: 34px;
  position: relative;
  z-index: 1;
}
nav .bt-contact a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.4s ease 0s;
}
nav .bt-contact a:hover:before {
  transform: scale(1, 1);
}
/*# sourceMappingURL=header.css.map */