@charset "UTF-8";

#wrapper {
  overflow: visible;
  width: 100%;
  margin: 0;
}

/*非レスポンシブ、ページ幅固定なので、スクロールつける*/
body {
  overflow: auto;
  min-width: 980px;
}

/*元のWEB本店独自ページにあった中央揃えが反映されなかったため*/
.contentsColumn * {
  margin: 0 auto;
}

.unique-page-header-wrapper {
  width: 100%;
  height: 80px;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}

.unique-page-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.unique-page-header *,
.unique-page-header *:before,
.unique-page-header *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.unique-page-header__logo {
  margin-left: 10px;
}

.unique-page-header__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 53px;
}

.unique-page-header__link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 1rem;
}

.unique-page-header__link-list li {
  font-size: 16px;
}

.unique-page-header__link-list li:first-of-type::after {
  content: "|";
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
}

/*# sourceMappingURL=unique-page-header.css.map */