@charset "UTF-8";
/* Breakpoint
------------------------------------- */
/* Mobile First */
/* Desktop First */
/* Text Style
------------------------------------- */
/* Font Family */
/* Font Size for Paragraph (Area Text) */
/* Font Size for Title and Word (Point Text) */
/* Line Height */
/* Color Palette
------------------------------------- */
/* Spacing
------------------------------------- */
.p_header {
  background-color: #ffffff;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  z-index: 9999;
  overflow: initial;
  overflow: visible;
  min-height: 160px;
  padding: 25px 16px 0;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}

.p_header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p_header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.p_header__total {
  line-height: 1.5;
  font-size: 10px;
  font-weight: 500;
  margin-left: 24px;
}

.p_header__total-amount {
  font-size: 16px;
}

/*----------------------------------------------
    Header Logo
---------------------------------------------*/
.p_header__logo a {
  position: relative;
}

.p_header__logo img {
  width: 100%;
  max-width: 267px;
}

.p_header__logo.sp-only {
  display: none;
}

/*----------------------------------------------
    Top Navigation
---------------------------------------------*/
.p_header__nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 20px;
}

nav.p_header__nav__list {
  width: 100%;
  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;
}

nav.p_header__nav__list ul.menu {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav.p_header__nav__list ul.menu > li {
  font-weight: 700;
  position: relative;
}

nav.p_header__nav__list ul.menu > li:before {
  content: "";
  background: #DBDBDB;
  width: 1px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}

nav.p_header__nav__list ul.menu > li > a {
  color: #000000;
  line-height: 1;
  text-align: center;
  padding: 0 1.4em;
  font-size: 13px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

nav.p_header__nav__list ul.menu li.current > a:after {
  opacity: 1;
  width: 100%;
}

.cfix {
  clear: both;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

/*----------------------------------------------
    nav.p_header__nav__list ul.searchby
---------------------------------------------*/
nav.p_header__nav__list ul.searchby {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #E5E8F0;
  border-radius: 10px 10px 0 0;
  border-bottom: 0;
  position: relative;
}

nav.p_header__nav__list ul.searchby li a {
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  color: #0F2D76;
  position: relative;
  display: inline-block;
  text-align: center;
  width: 230px;
  padding: 24px 0 16px;
  border-bottom: 4px solid #0F2D76;
}

nav.p_header__nav__list ul.searchby li a:before {
  content: "";
  background-repeat: no-repeat;
  background-position: center top;
  width: 20px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}

nav.p_header__nav__list ul.searchby li {
  position: relative;
}

nav.p_header__nav__list ul.searchby li:nth-child(2):before {
  content: "";
  background: #DBDBDB;
  width: 1px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

nav.p_header__nav__list ul.searchby li:nth-child(2) a:before {
  background-image: url(../../images/common/icon-heart.svg);
}

nav.p_header__nav__list ul.searchby li:nth-child(3) a {
  border-bottom-color: #C0504D;
  color: #C0504D;
}

nav.p_header__nav__list ul.searchby li:nth-child(3) a:before {
  background-image: url(../../images/common/icon-search-red.svg);
}

nav.p_header__nav__list ul.searchby .ttl {
  font-size: 12px;
  background-color: #ffffff;
  width: 180px;
  text-align: center;
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  nav.p_header__nav__list ul.searchby {
    display: none;
  }
}
/*----------------------------------------------
    Header Buttons
---------------------------------------------*/
.p_header__btn {
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  border-radius: 60px;
  color: #000000;
  background-color: #EEEEEE;
  max-width: 100%;
  min-width: 117px;
  padding: 8px 17px;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-right: 15px;
}

.p_header__btn.is_login::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "";
  color: #000000;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  margin-right: 5px;
}

.p_header__btn.is_logout::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "";
  color: #000000;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  margin-right: 5px;
}

.p_header__btn.is_newmem {
  background-color: #0F2D76;
  color: #ffffff;
}

.p_header__btn.is_newmem::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "";
  color: #ffffff;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  margin-right: 5px;
}

.p_header__btn.is_cart {
  padding: 0;
  min-width: 0;
  background: none;
}

.p_header__btn.is_cart::after {
  content: "";
  background: url(../../images/common/icon-cart.svg) no-repeat center top;
  width: 33px;
  height: 29px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
}

.p_header__btn.is_name {
  font-size: 10px;
  font-weight: 500;
  color: #000000;
  line-height: 1;
  background: none;
  padding: 0;
  border-radius: 0;
  min-width: 0;
}

/*----------------------------------------------
    Menu Toggle
---------------------------------------------*/
.p_header__menu-toggle {
  display: none;
  color: #F8F8F8;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 6px 0 0 0;
  padding-top: 15px;
  margin-left: 10px;
  margin-top: 5px;
  z-index: 9999;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  width: 26px;
  text-align: center;
}

.p_header__menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 26px;
  border-radius: 5px;
  background: #000000;
  opacity: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p_header__menu-toggle.navSpClose span {
  background: #000000;
}

.p_header__menu-toggle span:nth-child(1) {
  top: 0;
}

.p_header__menu-toggle span:nth-child(2) {
  top: 6px;
}

.p_header__menu-toggle span:nth-child(3) {
  top: 12px;
}

.p_header__menu-toggle small.op {
  color: #000000;
  font-size: 10px;
  line-height: 1.2;
}

.p_header__menu-toggle.navSpClose span:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.p_header__menu-toggle.navSpClose span:nth-child(2) {
  top: 6px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.navSpOpen.active {
  display: none;
}

.navSpClose {
  display: none;
}

/*----------------------------------------------
    Menu Icons
---------------------------------------------*/
.p_header__menu {
  vertical-align: top;
  font-size: 14px;
  line-height: 1.2;
  color: #0F2D76;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.p_header__menu:hover {
  opacity: 0.7;
  text-decoration: none;
}

.p_header__menu i {
  font-size: 16px;
  color: #000000;
}

.p_header__menu svg {
  width: 28px;
}

/*----------------------------------------------
    Header login sp
---------------------------------------------*/
.p_header__login--sp {
  font-size: 10px;
  font-weight: 500;
  color: #000000;
  position: relative;
}

.p_header__login--sp:before {
  font-family: "Font Awesome 5 Pro";
  content: "";
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  text-align: center;
  display: block;
  margin-bottom: -10px;
}

.p_header__login--sp:hover {
  opacity: 0.7;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  /* 991px */
  .p_header .l_wrapper {
    max-width: 100%;
  }

  .p_header {
    background-color: white !important;
    height: 76px;
    padding: 0;
    min-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .p_header__logo {
    padding: 0;
    max-width: 137px;
    width: 100%;
  }

  .p_header__logo.sp-only {
    display: block;
  }

  .p_header__btn {
    width: 84px;
    font-size: 10px;
    height: 22px;
    padding: 0px;
    line-height: 20px;
  }

  .p_header__btn.pc-only {
    display: none !important;
  }

  .p_header__btn.is_logname {
    padding: 0;
  }

  .p_header__btn.is_mypage, .p_header__btn.is_user {
    font-size: 10px;
  }

  .p_header__menu-toggle {
    position: absolute;
    top: 30px;
    right: 15px;
  }

  .p_header__menu-toggle:hover {
    opacity: 0.7;
  }

  .p_header .container {
    position: initial;
  }

  .navSpOpen {
    display: block;
  }

  .p_header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3px 7px 0;
  }

  .p_header__nav {
    margin-top: 0;
  }

  nav.p_header__nav__list {
    display: block;
    padding: 0;
    overflow-y: scroll;
    position: fixed;
    top: 76px;
    right: -100%;
    background: #0F2D76;
    width: 100%;
    height: 100%;
    z-index: 9998;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
  }

  nav.p_header__nav__list.open:before {
    z-index: 5;
    width: 100%;
  }

  nav.p_header__nav__list ul.menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 30px;
    text-align: left;
    z-index: 4;
    position: relative;
  }

  nav.p_header__nav__list ul.menu > li:before {
    display: none;
  }

  nav.p_header__nav__list ul.menu > li {
    width: 100%;
    display: block;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    position: relative;
    margin-bottom: 5px;
    overflow: hidden;
    border-radius: 2vw;
  }

  nav.p_header__nav__list ul.menu > li .sp-only {
    display: block;
  }

  nav.p_header__nav__list ul.menu > li > a {
    font-size: 14px;
    line-height: 1.8;
    padding-bottom: 0;
    display: block;
    text-align: left;
    color: #000000;
    background: #ffffff;
    padding: 3vw;
    padding-right: 7vw;
    opacity: 1;
  }

  nav.p_header__nav__list ul.menu > li > a:hover {
    opacity: 0.6;
  }

  nav.p_header__nav__list ul.menu > li > a:after {
    display: none;
  }

  nav.p_header__nav__list ul.menu > li > a.open {
    opacity: 0.6;
  }

  .navSpClose.active {
    opacity: 1;
    display: block;
    padding-top: 17px;
  }

  nav.open {
    right: 0;
  }

  .p_header-main {
    padding: 30px 60px 11px 16px;
  }

  .p_header__total {
    background-color: #0F2D76;
    height: 16px;
    width: 100%;
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 0;
    padding: 0 15px;
  }

  .p_header__total-amount {
    font-size: 11px;
    margin-left: 12px;
  }

  .p_header-left {
    width: calc(100% - 125px);
    display: block;
  }

  .p_header-sp-right ul li {
    display: inline-block;
    vertical-align: top;
    margin-left: 5px;
  }

  .p_header-sp-right ul li a {
    font-size: 10px;
    font-weight: 500;
    color: #000000;
    line-height: 1;
  }

  .p_header-sp-right ul li.is_search a {
    font-weight: 700;
    color: #C0504D;
    position: relative;
    display: block;
    text-align: center;
  }

  .p_header-sp-right ul li.is_search a:before {
    content: "";
    background: url(../../images/common/icon-search-red.svg) no-repeat center top;
    width: 20px;
    height: 20px;
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .p_header__fund {
    padding-left: 0;
  }

  .p_header__menu {
    padding: 3px 3px 0;
    font-size: 6px;
  }

  .p_header__menu svg {
    width: 25px;
  }
}
/*----------------------------------------------
    Header SP Fixed buttons
---------------------------------------------*/
.p_header-fixedbtns {
  display: none;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9997;
  background-color: #ffffff;
  -webkit-box-shadow: 0 -1px 8px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 -1px 8px 0 rgba(0, 0, 0, 0.1);
}

.p_header-fixedbtns li {
  width: calc(100% /3);
  border-right: 1px solid #CCCCCC;
}

.p_header-fixedbtns li:last-child {
  border: 0;
}

.p_header-fixedbtns li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000000;
  background-color: #ffffff;
  text-align: center;
  min-height: 60px;
  position: relative;
  line-height: 1;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 10px;
}

.p_header-fixedbtns li a:before {
  content: "";
  display: block;
  margin-bottom: 5px;
}

.p_header-fixedbtns li.is_cart a:before {
  background: url(../../images/common/icon-cart-blue.svg) no-repeat center top/contain;
  height: 22px;
}

.p_header-fixedbtns li.is_login a:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  line-height: 1;
  content: "";
  color: #0F2D76;
  font-size: 22px;
}

.p_header-fixedbtns li.is_logout a:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  line-height: 1;
  content: "";
  color: #0F2D76;
  font-size: 22px;
}

.p_header-fixedbtns li.is_newmem a:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  line-height: 1;
  content: "";
  color: #0F2D76;
  font-size: 22px;
}

.p_header__btn-num {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: #ffffff;
  background-color: #E9001D;
  min-width: 10px;
  height: 13px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  padding: 2px 5px;
  top: -6px;
  right: -6px;
}

.p_header-fixedbtns .p_header__btn-num {
  top: 2px;
  right: calc(50% - 20px);
}

@media screen and (max-width: 991px) {
  .p_header-fixedbtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*# sourceMappingURL=common_header.css.map */