@charset "UTF-8";
/*------------------------------------------------------------
ナビ
------------------------------------------------------------*/
html {
  overflow-x: hidden;
}
.header__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__box__logo {
  padding: 0 0 0 10px;
}
.header__box__btn {
  display: flex;
  justify-content: space-between
}
@media only screen and (max-width: 599px) {
  .header__box__btn {}
  .header__box__logo img {
    width: 60%;
  }
}
.header__box__btn__item {}
.header__box__btn__item a {
  display: block;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  font-size: 17px;
  padding: 30px 20px;
}
@media only screen and (max-width: 599px) {
  .header__box__btn__item a {
    display: block;
    font-weight: bold;
    text-decoration: none;
    font-size: 13px;
    padding: 15px 10px;
  }
}
.header__box__btn__item:first-child a {
  color: #fff;
  background: #caa911;
}
.header__box__btn__item:last-of-type a {
  color: #fff;
  background: #222;
}
.header__box__btn__item a:hover {
  opacity: 0.7;
}