@charset "UTF-8";
/* ヘッダー */
header {
  padding: 10px 0;
}

header h2 {
  margin: 0;
  font-size: 12px;
  display: flex;
  align-items: center;
}

header h2 span {
  font-weight: bold;
}

header h2 a {
  font-weight: bold;
}

header .inner {
  width: 1000px;
  display: flex;
  margin: auto;
}

header .links {
  display: none;
}

header .gnav {
  display: flex;
  justify-content: flex-end;
}

header .gnav li {
  display: block;
}

header .other li {
  display: none;
}

header .btncon {
  display: none;
}

header .btnopen {
  display: none;
}

header .btnclose {
  display: none;
}

header .btns {
  display: none;
}

header .boxbtn {
  display: none;
}

header img {
  vertical-align: middle;
}

header a {
  color: var(--black);
  text-decoration: none;
}

header.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.7);
}

header.header-type {
  position: relative;
  z-index: 1;
}

header.header-type .inner {
  justify-content: space-between;
}

header.header-type h2 span {
  font-size: 18px;
  display: block;
  width: 140px;
  line-height: 140px;
  background:var(--main-color);
  color: var(--white);
  text-align: center;
  margin-bottom: -75px;
}

header.header-type h2 span.img-logo {
  background-color: inherit;
}

header.header-type .nav {
  display: flex;
  flex-flow: column;
  flex-direction: column-reverse;
}

header.header-type .other {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 27px;
  padding-left: 0;
  margin: 0;
}

header.header-type .other li {
  font-size: 13px;
  margin-right: 15px;
  display: block;
}

header.header-type .other li.phone {
  display: none;
}

header.header-type .other li::before {
  content: "|";
  margin-right: 15px;
}

header.header-type .other li:first-child::before {
  content: none;
}

header.header-type .gnav {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

header.header-type .gnav li {
  font-size: 13px;
  display: block;
  border-right: 1px solid var(--light-gray);
}

header.header-type .gnav li:last-child {
  border: none;
}

header.header-type .gnav li a {
  display: block;
  padding: 0 25px;
  position: relative;
}

header.header-type .gnav li a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: var(--main-color);
  opacity: 0;
  transition: .3s;
}

header.header-type .gnav li a:hover::after {
  bottom: -7px;
  opacity: 1;
}

body {
  margin-top: 0 !important;
}
