@charset "UTF-8";
/*16*1.75/2*/
/*=========*/
/* ヘッダー */
/*=========*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  border-bottom: 1px solid #FFF;
  background: #FFF;
}
@media (max-width: 767px) {
  header {
    border-bottom: none;
  }
}
header .top-cts {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
}
header .top-cts .h-logo {
  width: 220px;
}
@media (max-width: 767px) {
  header .top-cts .h-logo {
    width: 160px;
  }
}
header .top-cts .contact {
  display: flex;
  align-items: flex-start;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
header .top-cts .contact .ttl {
  display: inline-block;
  margin-right: 1em;
  padding: 6px 8px;
  background: #003774;
  color: #FFF;
  font-size: 16px;
  line-height: 1;
}
header .top-cts .contact .txt .tel {
  position: relative;
  margin-bottom: 4px;
  padding-left: 24px;
  font-size: 21px;
  line-height: 1;
}
header .top-cts .contact .txt .tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(/images/common/header_ic01.svg) no-repeat;
  background-size: 100% auto;
}
header .top-cts .contact .txt .time {
  font-size: 16px;
}
header .top-cts .ham-nav {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 28px;
  height: 20px;
  cursor: pointer;
}
header .top-cts .ham-nav .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
header .top-cts .ham-nav .inner span {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  margin: auto;
  background: #003774;
  transition: 0.5s all;
}
header .top-cts .ham-nav .inner span:first-child {
  top: 0;
}
header .top-cts .ham-nav .inner span:nth-child(2) {
  top: 0;
  bottom: 0;
  background: #EA5514;
}
header .top-cts .ham-nav .inner span:last-child {
  bottom: 0;
}
header .top-cts .ham-nav.open .inner span:first-child {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
header .top-cts .ham-nav.open .inner span:nth-child(2) {
  opacity: 0;
}
header .top-cts .ham-nav.open .inner span:last-child {
  bottom: 50%;
  transform: rotate(-45deg) translateY(50%);
}
header .btm-cts {
  padding: 0 24px;
  background: #003774;
}
@media (min-width: 768px) {
  header .btm-cts {
    display: block !important;
  }
}
@media (max-width: 767px) {
  header .btm-cts {
    overflow: auto;
    position: absolute;
    top: 55px;
    left: 0;
    display: none;
    width: 100%;
    padding: 64px 24px;
    height: calc(100vh - 55px);
    background: #FFF;
  }
}
header .btm-cts .g-nav .menu-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  header .btm-cts .g-nav .menu-nav {
    display: block;
    max-width: 320px;
    margin: 0 auto;
  }
}
header .btm-cts .g-nav .menu-nav > li {
  position: relative;
  width: 200px;
}
@media (max-width: 1024px) {
  header .btm-cts .g-nav .menu-nav > li {
    width: 140px;
  }
}
@media (max-width: 767px) {
  header .btm-cts .g-nav .menu-nav > li {
    width: 100%;
  }
}
header .btm-cts .g-nav .menu-nav > li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 32px);
  background: #FFF;
}
@media (max-width: 767px) {
  header .btm-cts .g-nav .menu-nav > li::before {
    content: none;
  }
}
header .btm-cts .g-nav .menu-nav > li:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 24px);
  background: #FFF;
}
header .btm-cts .g-nav .menu-nav > li > a, header .btm-cts .g-nav .menu-nav > li span {
  display: block;
  padding: 24px 16px;
  color: #FFF;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  transition: 0.5s all;
  cursor: pointer;
}
@media (max-width: 1024px) {
  header .btm-cts .g-nav .menu-nav > li > a, header .btm-cts .g-nav .menu-nav > li span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  header .btm-cts .g-nav .menu-nav > li > a, header .btm-cts .g-nav .menu-nav > li span {
    color: #003774;
    padding: 20px 16px;
    font-size: 18px;
    text-align: left;
  }
}
header .btm-cts .g-nav .menu-nav > li > a:hover, header .btm-cts .g-nav .menu-nav > li span:hover {
  text-decoration: none;
}
header .btm-cts .g-nav .menu-nav > li .sub-menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: -1px;
  width: 350px;
  padding: 40px 24px;
  border: 1px solid #003774;
  border-top: none;
  background: #FFF;
  transition: 0.5s all;
}
@media (max-width: 1024px) {
  header .btm-cts .g-nav .menu-nav > li .sub-menu {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  header .btm-cts .g-nav .menu-nav > li .sub-menu {
    opacity: 1;
    pointer-events: initial;
    position: initial;
    width: 100%;
    margin-bottom: 16px;
    padding: 0 16px;
    border: none;
    text-align: center;
  }
}
header .btm-cts .g-nav .menu-nav > li .sub-menu li {
  display: flex;
  margin-bottom: 28px;
}
header .btm-cts .g-nav .menu-nav > li .sub-menu li:last-child {
  margin-bottom: 0;
}
header .btm-cts .g-nav .menu-nav > li .sub-menu li a {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  color: #003774;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 1024px) {
  header .btm-cts .g-nav .menu-nav > li .sub-menu li a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  header .btm-cts .g-nav .menu-nav > li .sub-menu li a {
    font-size: 18px;
  }
}
header .btm-cts .g-nav .menu-nav > li .sub-menu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: #EA5514;
}
header .btm-cts .g-nav .menu-nav > li .sub-menu li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: #003774;
  transition: 0.5s all;
}
header .btm-cts .g-nav .menu-nav > li .sub-menu li a:hover {
  text-decoration: none;
}
header .btm-cts .g-nav .menu-nav > li .sub-menu li a:hover::after {
  width: 100%;
}
header .btm-cts .g-nav .menu-nav > li:hover .sub-menu {
  opacity: 1;
  pointer-events: all;
}
/*# sourceMappingURL=header.css.map */