@charset "UTF-8";
/* ---------------------------------------------
@mixin
--------------------------------------------- */
/* ------------------------------------------ File Information
 Author:         mak-sato
 Style Info: header
 ----------------------------------------------------------- */
.l-header {
  background-color: #ffffff;
  width: 100%;
  position: fixed;
  top: 0;
  height: 70px;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  .l-header {
    height: 60px;
  }
}
.l-header__nav {
  width: 100%;
  height: 70px;
  position: relative;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .l-header__nav {
    height: 60px;
  }
}
.l-header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 70px;
  padding: 0 0 0 16px;
}
@media only screen and (max-width: 767px) {
  .l-header__inner {
    height: 60px;
  }
}
.l-header__logo {
  max-width: 180px;
  margin: 0 0 0 0;
  display: block;
  z-index: 999;
}
.l-header__logo a {
  width: 100%;
  display: block;
}
.l-header__logo a img {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .l-header__logo {
    margin: 0 0 0 0;
  }
}
.l-header__toggle {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .l-header__toggle {
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 3;
    right: 8px;
    top: 8px;
  }
  .l-header__toggle span {
    display: block;
    position: absolute;
    width: 32px;
    border-bottom: solid 4px #000000;
    transition: 0.35s ease-in-out;
  }
    .js-toggle.active {color:#000000;}

  .l-header__toggle span:nth-child(1) {
    top: 5px;
  }
  .l-header__toggle span:nth-child(2) {
    top: 18px;
  }
  .l-header__toggle span:nth-child(3) {
    top: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__toggle {
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 3;
    right: 8px;
    top: 8px;
  }
  .l-header__toggle span {
    display: block;
    position: absolute;
    width: 32px;
    border-bottom: solid 4px #000000;
    transition: 0.35s ease-in-out;
  }
  .l-header__toggle span:nth-child(1) {
    top: 5px;
  }
  .l-header__toggle span:nth-child(2) {
    top: 18px;
  }
  .l-header__toggle span:nth-child(3) {
    top: 32px;
  }
  .js-toggle.active {color:#000000;}
}
.l-header__btn {
  font-weight: bold;
  text-align: center;
  display: block;
  max-width: 170px;
  width: 100%;
  margin: 8px 0 8px 0;
  cursor: pointer;
}
.l-header__btn a {
    font-size: 16px;
    color: #ffffff;
    background-color: #247ab6;
    display: block;
    font-weight: bold;
    padding: 10px 20px;
    /* height: 68px; */
    /* line-height: 68px; */
    border-radius: 25px;
}
.l-header__btn a:hover {
  background-color: #ffffff;
  color: #247ab6;
  transition: 0.8s;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .l-header__btn {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__btn {
    display: none;
  }
}
.l-header__wrap {
  width: 100%;
  background-color: transparent;
  margin: 0 10px;
  transform: translateX(0);
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .l-header__wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    background-color: #ffffff;
    transition: all 0.5s;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    background-color: #ffffff;
    transition: all 0.5s;
    margin: 0;
  }
}
.l-header__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .l-header__menu {
    padding: 240px 10px 0;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__menu {
    padding: 160px 24px 0 24px;
    display: block;
  }
}
.l-header__col {
  position: relative;
      list-style-type: none;
}
.l-header__col span {
  display: inline-block;
}
.l-header__col span a {
  padding: 0 1em;
  border-bottom: none;
  color: #000000;
  font-size: 16px;
}
@media screen and (min-width: 1200px) and (max-width: 1799px) {
  .l-header__col span a {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .l-header__col span:before {
    background: #000000;
    content: "";
    height: 2px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: rotate(90deg);
    transition: transform 0.3s ease-in-out;
    width: 15px;
  }
  .l-header__col span:after {
    background: #000000;
    content: "";
    height: 2px;
    position: absolute;
    right: 16px;
    top: 50%;
    transition: opacity 0.3s ease-in-out;
    width: 15px;
  }
  .l-header__col span a {
    font-size: 16px;
    box-sizing: border-box;
    color: #000000;
    text-align: center;
    text-decoration: none;
    padding: 16px;
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__col span:before {
    background: #000000;
    content: "";
    height: 2px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: rotate(90deg);
    transition: transform 0.3s ease-in-out;
    width: 15px;
  }
  .l-header__col span:after {
    background: #000000;
    content: "";
    height: 2px;
    position: absolute;
    right: 16px;
    top: 50%;
    transition: opacity 0.3s ease-in-out;
    width: 15px;
  }
  .l-header__col span a {
    display: block;
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
    color: #000000;
    text-align: center;
    text-decoration: none;
    padding: 16px;
    position: relative;
  }
}
.l-header__child {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  top: 35px;
  left: 0;
}
.l-header__child a {
  color: #015fa3;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  min-width: 280px;
}
.l-header__child li {
  min-width: 160px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .l-header__child {
    background-color: transparent;
    box-shadow: none;
    z-index: 0;
    position: inherit;
    margin: 0;
    padding: 8px;
  }
  .l-header__child a {
    color: #000000;
    padding: 6px;
    text-decoration: none;
    display: block;
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__child {
    background-color: transparent;
    box-shadow: none;
    z-index: 0;
    position: inherit;
    margin: 0;
    padding: 8px;
  }
  .l-header__child a {
    color: #000000;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
  }
}
.l-header__spBook {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .l-header__spBook {
   display: block;
        background: #247ab6;
        margin-top: 20px;
        padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__spBook {
    display: block;
        background: #247ab6;
        margin-top: 20px;
        padding: 10px;
  }
}

.l-header__child a:hover {
  background-color: #f1f1f1;
}

/* ホバー時にドロップダウンメニューを表示する */
.l-header__col:hover .l-header__child {
  display: block;
}

.l-header__toggle.active span:nth-child(1) {
  top: 18px;
  transform: rotate(-45deg);
}

.l-header__toggle.active span:nth-child(2),
.l-header__toggle.active span:nth-child(3) {
  top: 18px;
  transform: rotate(45deg);
}

.l-header__wrap.open {
  left: 0%;
}/*# sourceMappingURL=header-styles.css.map */