@charset "UTF-8";
/* 共通カラー */
/* ブレイクポイント */
/* メディアクエリ */
.header {
  position: fixed;
  width: 100%;
  z-index: 10;
}
.header__inner {
  display: flex;
  justify-content: space-between;
}
.header__logo {
  display: none;
  margin: 0 10px;
  flex: 1;
}
@media screen and (min-width: 760px) {
  .header__logo {
    margin: 0 20px;
  }
}
@media screen and (min-width: 800px) {
  .header__logo {
    margin: 0 20px 0 0;
  }
}
@media screen and (min-width: 960px) {
  .header__logo {
    margin: 0;
  }
}
@media screen and (min-width: 1100px) {
  .header__logo {
    display: block;
    padding: 20px 0 0 20px;
  }
}
@media screen and (min-width: 1300px) {
  .header__logo {
    flex: 1;
  }
}
.header__logo a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-bottom: 25px;
  line-height: 0;
}
.header__logo a:first-of-type {
  display: none !important;
}
@media screen and (min-width: 800px) {
  .header__logo a:first-of-type {
    display: block !important;
  }
}
.header__logo a:nth-child(2) {
  margin-bottom: 15px;
}
.header__logo a img {
  line-height: 0;
}
.header__logo--sp {
  display: none;
  padding: 0;
}
.header__logo--sp a:nth-child(1) {
  display: none;
}
@media screen and (min-width: 760px) {
  .header__logo--sp a:nth-child(1) {
    display: block;
    padding: 0 20px 0 20px;
  }
}
.header__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2rem;
  color: #fff;
  background-color: #FF000F;
  padding: 10px;
}
.header__sp {
  display: flex;
}
@media screen and (min-width: 960px) {
  .header__sp {
    display: none;
  }
}
.header__sp a {
  display: flex;
  align-items: center;
  height: 40px;
}
.header__sp a:nth-child(1) {
  background-color: #fff;
  padding: 10px;
  width: 110px;
}
@media screen and (min-width: 760px) {
  .header__sp a:nth-child(1) {
    width: auto;
  }
}
.header__sp a:nth-child(1) img {
  width: 100%;
  height: 100%;
}
.header__sp a:nth-child(2) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2rem;
  color: #fff;
  background-color: #FF000F;
  padding: 10px;
}
.header__sp a:nth-child(2) span {
  font-size: 1rem;
  letter-spacing: 2px;
}
.header__sp a:hover {
  opacity: 0.6;
}
.header__nav {
  display: flex;
  align-items: center;
  height: 63px;
}

#js-header .header__inner {
  background: #fff;
}
@media screen and (min-width: 1100px) {
  #js-header .header__inner {
    background: none;
  }
}
#js-header .header__logo a {
  margin-bottom: 0;
}
@media screen and (min-width: 1100px) {
  #js-header .header__logo a {
    margin-bottom: 25px;
  }
  #js-header .header__logo a:nth-child(2) {
    margin-bottom: 15px;
  }
}
#js-header .header__logo--sp {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1100px) {
  #js-header .header__logo--sp {
    display: none;
  }
}

#js-header.fixed .header__inner {
  background: #fff;
}
#js-header.fixed .header__logo {
  display: none;
}
#js-header.fixed .header__logo a {
  margin-bottom: 0;
}
#js-header.fixed .header__logo--sp {
  display: flex;
  align-items: center;
}
#js-header.fixed .header__link {
  display: none;
}
#js-header.fixed .header__link--sp {
  display: block;
}
#js-header.fixed .gnav__item a, #js-header.fixed .gnav__item p {
  color: #000;
}