@charset "UTF-8";
/* ========================================
  Strip-unit Function
  @param {Number} $number - Number to remove unit
  @return {Number} - Unitless number
  note: You can use this function in other functions and mixins.
  ex: strip-unit(100px); -> 100
======================================== */
/* ========================================
  Get Em Function
  @param {Number} $font-size - Number to convert px to em
  @param {Number} $root-font-size - Number to divite target value by root's font size
  @return {Number} $em - Number with em unit
  ex: get-em(16px); -> 1em
======================================== */

.header-main_suggest {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 999;
  width: 100%;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, .3);
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  .header-main_suggest {
    left: -40px;
    width: calc(100% + 40px);
  }
}

.header-main_suggest-list:not(:first-child) {
  border-top: 1px solid #d2d1d1;
}

@media screen and (max-width: 767px) {
  .header-main_suggest-list:not(:first-child) {
    border-top: 1px solid #a0a0a0;
  }
}

.header-main_suggest-item-inner {
  display: flex;
}

@media screen and (max-width: 767px) {
  .header-main_suggest-item-inner {
    display: block;
  }
}

.header-main_suggest-item {
  display: flex;
  align-items: center;
  position: relative;
  padding: .5rem;
}

.header-main_suggest-item:hover {
  background-color: rgba(0, 0, 0, .05);
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .header-main_suggest-item {
    min-height: 50px;
    padding: .5rem 1.5rem .5rem 1rem;
  }
  .header-main_suggest-item::after {
    position: absolute;
    top: calc(50% - 3.5px);
    right: calc(1rem - 3.5px);
    transform: rotate(45deg);
    width: 7px;
    height: 7px;
    border-top: 1px solid #a9a8a8;
    border-right: 1px solid #a9a8a8;
    content: "";
  }
  .header-main_suggest-item + .header-main_suggest-item {
    border-top: 1px solid #e8e8e8;
  }
}

.header-main_suggest-text > .header-main_suggest-text {
  margin-left: .5rem;
}

.header-main_suggest-result-status {
  margin-left: auto;
  color: #a9a8a8;
  font-size: 10px;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .header-main_suggest-result-status {
    display: flex;
    align-items: center;
  }
}

.header-main_suggest-category {
  margin-left: .5rem;
  color: #c72937;
}

@media screen and (max-width: 767px) {
  .header-main_suggest-category {
    margin-left: 0;
    font-size: 10px;
  }
}

.header-main_search-history-list:not(:first-child) {
  border-top: 1px solid #d2d1d1;
}

@media screen and (max-width: 767px) {
  .header-main_search-history-list:not(:first-child) {
    border-top: 1px solid #a0a0a0;
  }
}

.header-main_search-history-item {
  display: flex;
  align-items: center;
  position: relative;
}

.header-main_search-history-item:hover {
  background-color: rgba(0, 0, 0, .05);
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .header-main_search-history-item {
    padding: .5rem .5rem .5rem 1.5rem;
  }
  .header-main_search-history-item::before {
    position: absolute;
    top: calc(50% - 3.5px);
    left: .5rem;
    transform: rotate(45deg);
    width: 7px;
    height: 7px;
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
    content: "";
  }
}

@media screen and (max-width: 767px) {
  .header-main_search-history-item {
    min-height: 50px;
    padding: .5rem 1.5rem .5rem 1rem;
  }
  .header-main_search-history-item::after {
    position: absolute;
    top: calc(50% - 3.5px);
    right: calc(1rem - 3.5px);
    transform: rotate(45deg);
    width: 7px;
    height: 7px;
    border-top: 1px solid #a9a8a8;
    border-right: 1px solid #a9a8a8;
    content: "";
  }
  .header-main_search-history-item + .header-main_search-history-item {
    border-top: 1px solid #e8e8e8;
  }
}

.header-main_search-history-button {
  width: 100%;
  padding: .5rem .5rem .5rem 1.5rem;
  background-color: #e8e8e8;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .header-main_search-history-button {
    min-height: 50px;
    padding: .5rem 1.5rem .5rem 1rem;
  }
}

.header-main_category {
  position: relative;
  padding-right: 1.5rem;
  color: #c72937;
}

.header-main_category::after {
  position: absolute;
  top: calc(50% - 3.5px);
  right: 7px;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
  border-top: 1px solid #c72937;
  border-right: 1px solid #c72937;
  content: "";
}

.header-main_category-status {
  margin-left: .25rem;
  color: #a9a8a8;
}

@media screen and (max-width: 767px) {
  .header-main_category-status {
    display: none;
  }
}

.header-main_product {
  display: flex;
  position: relative;
}

.header-main_product-container {
  display: none;
  position: absolute;
  top: 40px;
  right: -303px;
  z-index: 999;
  width: 300px;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, .3);
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  .header-main_product-container {
    display: none !important;
  }
}

.header-main_product-list {
  position: relative;
}

.header-main_product-item {
  padding: 10px;
}

.header-main_product-item:hover {
  background-color: rgba(0, 0, 0, .05);
  cursor: pointer;
}

.header-main_product-item:last-child {
  text-align: right;
}

.header-main_product-thumb {
  width: 70px;
}

.header-main_product-detail {
  margin-left: 10px;
}

.header-main_product-name {
  margin-bottom: .25rem;
}

.header-main_product-price {
  margin-bottom: .5rem;
  font-size: 12px;
}

.header {
  display: block;
  flex: 0 0 auto;
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
}

.header-inner {
  width: 100%;
  padding: 0 20px;
  padding-top: 4px;
}

@media screen and (max-width: 767px) {
  .header-inner.m-simple {
    padding: 0 10px;
  }
  .header-inner:not(.m-simple) {
    padding: 0;
    padding-top: 0;
  }
  .header-inner:not(.m-simple) .header-main {
    flex-direction: column-reverse;
    padding: 0;
  }
}

.header-inner:not(.m-simple) {
  background: #ffffff;
}

.header-content {
  max-width: 1216px;
  margin: 0 auto;
}

.header-advertising {
  text-align: center;
}

.header-advertising img {
  height: 50px;
}

@media screen and (max-width: 767px) {
  .header-advertising img {
    width: 100%;
    height: auto;
  }
}

.header-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 102;
  padding: 5px 0;
}

.header_site {
  font-size: 12px !important;
}

.header-user_info {
  display: flex;
}

.header-user_info:not(:first-child) {
  margin-left: 20px;
}

.header-user_name {
  margin-right: .5rem;
  font-weight: bold;
}

.user-menu {
  display: flex;
  align-items: center;
}

.user-menu_item {
  color: #574a3a;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .user-menu_item {
    display: flex;
  }
}

.user-menu_item:not(:last-child) {
  margin-right: 30px;
}

.user-menu_login {
  padding: .75rem 10px;
  border-bottom: 1px solid #d2d1d1;
  text-align: center;
}

.user-menu_logout {
  padding: .75rem 10px;
  border-top: 1px solid #d2d1d1;
  text-align: center;
}

.user-info_link {
  display: inline-flex;
  color: #574a3a;
}

@media screen and (max-width: 767px) {
  .user-info_link {
    line-height: 1;
  }
}

.header-menu_icon {
  margin-left: 10px;
}

.header-menu-dropdown .dropdown_label {
  align-items: flex-start;
  height: auto;
  padding: 0;
}

.header-mini-icon {
  width: .875rem;
  min-width: .875rem;
  height: .875rem;
  min-height: .875rem;
  margin-top: .13rem;
  margin-right: .25rem !important;
  margin-left: 0 !important;
}

.header-mini-icon svg {
  width: 100%;
  height: 100%;
  fill: #574a3a;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.header-main_brand {
  flex: 0 0 auto;
  margin-right: 20px;
}

.header-main_search {
  display: flex;
  flex: 1 1 auto;
  position: relative;
  width: 100%;
  transition: transform .3s linear;
}

@media screen and (min-width: 768px) {
  .header-main_search {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .header-main_search {
    background: #e8e8e8;
  }
  .c-header-v2 .header-main_search {
    padding: .7142857143em;
  }
}

.c-header-v2 .header-main_search-selected {
  width: auto;
  height: 40px;
  padding-right: 40px;
  padding-left: 20px;
  border: 1px solid #d2d1d1;
  border-radius: 3px 0 0 3px;
}

@media screen and (max-width: 767px) {
  .c-header-v2 .header-main_search-selected {
    display: none;
  }
}

.header-main_search-selected-text {
  font-size: 12px;
  line-height: 40px;
}

.c-header-v2 .header-main_search-select {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .c-header-v2 .header-main_search-select {
    flex: 0 0 auto;
    position: relative;
    z-index: 101;
    width: 2.75rem;
    border-right: none;
    opacity: 1;
  }
  .header-main_search-select::before {
    display: block;
  }
  .header-main_search-select::after {
    top: calc((100% - 1.0605rem) / 2);
    right: calc(.375rem + .5em);
    width: .75rem;
    height: .75rem;
  }
}

.header-main_search-select::before {
  display: none;
  position: absolute;
  top: 1px;
  right: 0;
  z-index: 1;
  width: calc(2.75rem - 1px);
  height: calc(100% - 2px);
  border-radius: 3px;
  background-color: #ffffff;
  content: "";
  pointer-events: none;
}

.header-main_search-select::after {
  z-index: 1;
}

.header-main_search-select select {
  padding-left: 20px;
  border-color: #d2d1d1;
  border-radius: 3px 0 0 3px;
}

@media screen and (max-width: 767px) {
  .header-main_search-select select {
    padding-right: 2.75rem;
    padding-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .header-main_search-select select {
    font-size: 12px;
  }
}

.header-main_search-text-wrapper {
  flex: 1 1 auto;
  position: relative;
}

.c-header-v2 .header-main_search-text-wrapper {
  z-index: 101;
}

.header-main_search-text {
  position: relative;
}

.header-main_search_icon {
  position: absolute;
  top: 50%;
  right: .5em;
  z-index: 1;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .header-main_search_icon {
    right: .5em;
    left: auto;
  }
}

.header-main_search_icon svg {
  width: 16px !important;
  height: 16px !important;
  fill: #555252;
}

.header-main_search_input {
  width: 100%;
  padding-right: 3rem;
  border-left: none;
  border-color: #d2d1d1;
  border-radius: 0 3px 3px 0;
  color: #171717;
}

.header-main_search_input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

@media screen and (max-width: 767px) {
  .header-main_search_input {
    padding-right: 3rem;
    background: #fff;
  }
}

.header-main_tool {
  display: flex;
  flex: 0 0 auto;
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .header-main_tool {
    width: 100%;
  }
  .c-header-v2 .header-main_tool {
    margin-left: 0;
    margin-bottom: 0;
    padding: .7142857143em;
    background-color: #fff;
  }
}

.header-menu-dropdown {
  position: relative;
}

.header-menu-dropdown:hover {
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, .3);
  background-color: #ffffff;
}

.header-menu-dropdown:hover .dropdown_label {
  z-index: 10;
  background-color: #ffffff;
}

.header-menu-dropdown:hover .dropdown-content {
  display: block;
}

.header-menu-dropdown .dropdown_label {
  display: flex;
  position: relative;
  padding: 10px 20px;
  border-radius: 0;
  cursor: pointer;
}

.header-menu-dropdown .dropdown-content {
  padding: 10px 0;
}

.header-menu-dropdown .header-dropdown-content {
  padding: 0;
}

.header-menu-dropdown .dropdown-list_item {
  text-decoration: none;
}

.header-menu-dropdown .dropdown-list_item:hover {
  background: #f6f4f3;
  text-decoration: none;
}

.header-menu-dropdown .dropdown-list_label {
  padding: 10px 20px;
}

.header-menu-dropdown .dropdown-list_label .icon:not(:first-child) {
  margin-left: .25em;
}

.header-menu-dropdown .dropdown-list_label .icon:not(:last-child) {
  margin-right: .25em;
}

.user-menu-dropdown {
  display: inline-flex;
  margin: -5px -20px;
}

.user-menu-dropdown .dropdown_label {
  padding-top: 5px;
  padding-bottom: 5px;
}

.header-dropdown_text {
  padding: .75rem 20px;
  font-weight: bold;
}

.header-dropdown_point {
  padding: .75rem 20px;
  font-size: 16px;
}

.header-dropdown_accent {
  margin-left: .25rem;
  color: #c72937;
}

.header-nav_dropdown_icon {
  margin-left: 1.25rem;
}

.header-main_tool_brand {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .c-header-v2 .header-main_tool_brand {
    position: relative;
  }
}

.header-main_tool_brand .header-brand_logo {
  display: flex;
}

.header-brand_logo_img {
  width: 100%;
}

.header-tools {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 -20px;
}

@media screen and (max-width: 767px) {
  .header-tools {
    justify-content: flex-end;
    margin: 0;
  }
  .c-header-v2 .header-tools {
    position: relative;
    z-index: auto;
  }
}

.header-tool {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.header-tool__search {
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity .3s .1s linear;
}

@media screen and (max-width: 767px) {
  .header-tool {
    padding: 0;
  }
}

.header-tool_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 40px;
  height: auto;
  min-height: 40px;
  margin: 0;
  border: none;
  font-size: 12px;
  cursor: pointer;
  outline: none;
}

@media screen and (max-width: 767px) {
  .c-header-v2 .header-tool_button {
    padding: 0 5px;
  }
}

.header-tool_button:focus,
.header-tool_button:active {
  border: none;
  outline: none;
}

.header-tool_button.m-has-text {
  display: flex;
  flex-flow: column;
  align-items: center;
}

.header-tool_button svg {
  fill: #555252;
}

.header-tool-button_text {
  color: #615e5e;
}

.header-tool-button_text_icon {
  margin-left: .25rem;
}

.header-tool_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  margin: 0 !important;
}

.cart_badge {
  top: 0;
  right: 0;
  transform: translateY(-15%);
}

@media screen and (max-width: 767px) {
  .cart_badge {
    transform: translateX(-5px) translateY(-15%);
  }
}

.header-category-container {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #707070 !important;
  color: #ffffff;
}

.header-nav {
  display: flex;
  position: relative;
  bottom: 0;
  margin: 0 -20px;
}

@media screen and (max-width: 767px) {
  .header-nav {
    margin: 0;
  }
}

.header-category-list {
  display: flex;
  width: 100%;
  margin: 0 -10px;
  color: #ffffff;
}

.header-category-list .link {
  color: #ffffff;
}

.header-category-list .dropdown_label {
  align-items: center;
}

.header-category-list_item {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
}

.header-category-list_item:last-child .dropdown-content {
  right: 0;
  left: auto;
}

.header-category-dropdown {
  background-color: #707070;
}

.header-category-dropdown:hover {
  box-shadow: none;
  background-color: #707070;
}

.header-category-dropdown:hover .dropdown_label {
  background-color: #707070;
}

.header-category-dropdown:hover .dropdown_label::before {
  display: block;
}

.header-category-dropdown .dropdown_label {
  padding: 10px;
  color: #ffffff;
}

.header-category-dropdown .dropdown_label::before {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid #707070;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
}

.header-category-dropdown .dropdown_label svg {
  fill: #ffffff;
}

@media screen and (max-width: 767px) {
  .footer {
    transition: .3s;
  }
}

/* ハンバーガーメニュー開始 */
.drawer-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
}

.drawer-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50px;
  z-index: 2000;
  transform: translateX(100%);
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  padding-bottom: 90px;
  background: #f6f4f3;
  transition: transform .3s 0s ease;
  -webkit-overflow-scrolling: touch;
}

.drawer-nav.m-show {
  transform: translateX(0);
}

.drawer-nav_back {
  font-size: 14px;
}

.drawer-nav-header {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  position: relative;
  min-height: 50px;
  padding: 10px calc(2.5rem + 20px) 10px 10px;
  border-bottom: 1px solid #e8e8e8;
  background-color: #ffffff;
  font-weight: bold;
  font-size: 18px;
}

.hamburger-header_title {
  flex: 1 1 auto;
}

.header-drawer_close {
  flex: 0 0 auto;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  min-width: 40px;
  min-height: 40px;
  border: none;
  border-radius: 999px;
  background-color: transparent;
  cursor: pointer;
  outline: none;
}

.header-drawer_close:hover {
  background-color: #f3f3f3;
}

.header-drawer_close:focus {
  border: none;
  outline: none;
}

.header-drawer_close::before {
  transform: translate(-50%, -50%) rotateZ(45deg);
}

.header-drawer_close::after {
  transform: translate(-50%, -50%) rotateZ(-45deg);
}

.header-drawer_close::before,
.header-drawer_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 66.6666666667%;
  height: 1px;
  background: #707070;
  content: "";
}

.drawer-user {
  padding: 20px;
}

.drawer_user-name {
  font-weight: bold;
  font-size: 16px;
}

.drawer-user-status {
  margin-top: 1rem;
}

.drawer-user-status_row + .drawer-user-status_row {
  margin-top: 1rem;
}

.drawer-user-status_row .icon:not(:last-child) {
  margin-right: 5px;
}

.drawer-user-status-special {
  display: flex;
  flex-wrap: wrap;
  margin-top: .5em;
  margin-left: 1.3em;
  font-weight: bold;
}

.drawer-user-status-special-title {
  margin-left: 1.6em;
  color: #707070;
}

.special-content {
  font-size: 14px;
}

.special-content:not(:last-child) {
  margin-right: 1em;
  padding-bottom: .2em;
}

.special-content.m-accent {
  color: #c72937;
}

.special-link {
  font-weight: normal;
  font-size: 14px;
}

.drawer-user-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.drawer-menu_title {
  padding: .75rem 1rem;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .drawer-menu_title {
    display: flex;
    align-items: center;
    background-color: #f7f5f4;
  }
  .drawer-menu_title .m-size-5 {
    margin-top: -.08rem;
  }
}

.drawer-menu + .drawer-menu_title {
  border-top: 1px solid #e8e8e8;
}

.drawer-menu_item {
  border-top: 1px solid #e8e8e8;
}

.drawer-menu_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem .5rem .75rem 2rem;
  background-color: #ffffff;
}

.drawer-menu_link_mypage {
  padding-left: 1rem;
}

/*ハンバーガーメニュー終了*/
/*
* メニュー固定関連
* 2022/08/30 追加
*/
@media screen and (max-width: 767px) {
  body.is-iPhone .header.c-header-v2 .header-inner:not(.m-simple) {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .header.c-header-v2 {
    position: relative;
    z-index: 1000;
  }
}

.header .header-inner:not(.m-simple) {
  transition: transform .5s .2s ease-out;
}

@media screen and (max-width: 767px) {
  .header.c-header-v2 .header-inner:not(.m-simple) {
    position: relative;
    top: auto;
    left: auto;
    z-index: initial;
  }
}

@media screen and (max-width: 767px) {
  .is-open .nav_sp_wrap {
    display: flex;
  }
  .is-open .nav_sp_wrap:before {
    width: 1px;
    height: calc(100vh + 1px);
    content: "";
  }
  .is-open .header-main_search {
    left: 100%;
    transform: translateX(-100%);
  }
}
/*
スマホ表示　追加ナビ
2024/03/03
*/
@media screen and (max-width: 767px) {
  html.topPage {
    -webkit-overflow-scrolling: touch !important;
    overflow: auto;
    height: 100vh;
  }
}

@media screen and (max-width: 767px) {
  body.is-open {
    position: relative;
    overflow: hidden;
    min-height: 100%;
  }
}

@media screen and (max-width: 767px) {
  body.is-open .header-main {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  body.is-open .header-main_search {
    z-index: 10;
  }
}

@media screen and (max-width: 767px) {
  body.is-open .header-main_search:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
    width: 100%;
    height: 4.2857142857em;
    background-color: #e8e8e8;
    content: "";
  }
}

@media screen and (max-width: 767px) {
  body.is-open .main-contents {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  body.is-open .float-button-container {
    opacity: 0;
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  body.is-open.is-iPhone:not(.is-scroll) .header-main_search {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  body.is-open.is-iPhone:not(.is-scroll).is-focus .header-main_search {
    position: absolute;
  }
}

@media screen and (max-width: 767px) {
  body.is-open.is-iPhone:not(.is-scroll).is-focus .header-main_tool {
    display: flex;
    visibility: hidden;
  }
}

@media screen and (max-width: 767px) {
  body.is-open.is-iPhone:not(.is-scroll).is-focus .c-header__campaign-all {
    display: initial;
    visibility: hidden;
  }
}

@media screen and (max-width: 767px) {
  body.is-open.is-android .header-main_search {
    position: fixed;
    top: 0;
  }
}

@media screen and (max-width: 767px) {
  body.is-open.is-android.is-scroll .header-main_search {
    position: absolute;
  }
}

@media screen and (max-width: 767px) {
  body.is-scroll .header-main_tool {
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: 1px solid #e8e8e8;
  }
}

@media screen and (max-width: 767px) {
  body.is-scroll:not(.is-open) .header-tool__search {
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  body.is-scroll .header-main_search {
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 5;
  }
}

@media screen and (max-width: 767px) {
  body.is-scroll .main-contents {
    margin-top: 4.2857142857em;
  }
}

.p-header {
  position: relative;
  z-index: 10;
}

.nav_sp input[type="checkbox"] {
  display: none;
}

@media screen and (max-width: 767px) {
  .nav_sp input[type="checkbox"]:checked + div {
    transform: translateX(-100%);
  }
}

.nav_sp_wrap {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 100;
  overflow: hidden;
  overflow-y: scroll;
  width: 100vw;
  height: 100vh;
  padding: 0 .7142857143em 1.4285714286em;
  background-color: #e8e8e8;
  transition: transform .3s linear;
  overscroll-behavior: contain;
  touch-action: none;
}

.nav_sp_wrap label {
  cursor: pointer;
}

.nav_sp_wrap a {
  text-decoration: none;
}

.nav_sp_wrap > div {
  width: 100%;
}

.nav_sp_wrap h2,
.nav_sp_wrap h3 {
  margin-left: .8571428571em;
  font-weight: bold;
}

.nav_sp_wrap ul {
  margin-top: .3571428571em;
  background-color: #fff;
}

.nav_sp_wrap .btnBack {
  position: sticky;
  top: 0;
  z-index: 11;
  padding-bottom: 1.4285714286em;
  background-color: #e8e8e8;
  color: #0076ff;
}

.nav_sp_wrap .nav-link > span,
.nav_sp_wrap .nav-link label,
.nav_sp_wrap .nav-link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.1428571429em;
  padding: 0 .8571428571em;
}

.nav_sp_wrap .nav-link > span > span:nth-of-type(1),
.nav_sp_wrap .nav-link label > span:nth-of-type(1),
.nav_sp_wrap .nav-link a > span:nth-of-type(1) {
  max-width: 100%;
}

.nav_sp_wrap .nav-link > span .icon,
.nav_sp_wrap .nav-link label .icon,
.nav_sp_wrap .nav-link a .icon {
  margin-left: 1.038961039em;
}

.nav_sp_wrap .nav-link + .nav-link {
  border-top: 1px solid #d2d1d1;
}

.nav_sp_wrap_01 {
  padding-top: 4.2857142857em;
}

.nav_sp_wrap_01 > div {
  height: calc(100svh - 60px);
}

.nav_sp_wrap_02 {
  top: 0;
  z-index: 106;
}

.nav_sp_wrap_02 > div {
  height: 100vh;
  padding-bottom: 1.4285714286em;
}

.nav_sp_wrap_02 .btnBack {
  padding-top: 1.4285714286em;
  padding-bottom: .7142857143em;
}

.nav_sp_wrap_02 h2 {
  margin-left: auto;
  padding: .625em 0;
  background-color: #e8e8e8;
  font-size: 1.1428571429em;
  text-align: center;
}

.nav_sp_menu {
  overflow: hidden;
  overflow-y: scroll;
  height: calc(100vh - 120px);
  touch-action: manipulation;
}

.nav_sp_list:nth-of-type(n + 2):not(.nav_sp_list-1st) {
  margin-top: 1.2857142857em;
}

.nav_sp_list:nth-last-of-type(1) {
  padding-bottom: 5.7142857143em;
}

@media screen and (max-width: 767px) {
  .c-header-v2 .nav_sp_list.history-list {
    position: initial;
    width: 100%;
    box-shadow: none;
  }
}

@media screen and (max-width: 767px) {
  .c-header-v2 .nav_sp_list.history-list li {
    padding: 0;
    font-size: 1em;
    text-indent: initial;
  }
}

@media screen and (max-width: 767px) {
  .c-header-v2 .nav_sp_list.history-list li:before {
    content: none;
  }
}

@media screen and (max-width: 767px) {
  .c-header-v2 .nav_sp .nav_sp_list .btn-clear {
    display: block;
    margin: .3333333333em 0 0 auto;
    padding: 0;
    background-color: transparent;
    font-size: .8571428571em;
  }
}

.nav_sp .nav_sp_list .btn-clear > span {
  color: #000;
}

.c-header-v2 .history-list:not(.nav_sp_list) {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-header-v2 .history-list:not(.nav_sp_list) {
    display: none !important;
  }
}

.history-list:not(.nav_sp_list) ul li > span > span:nth-of-type(2) {
  display: none;
}

.c-header-v2 .history-list:not(.nav_sp_list) .btn-clear {
  display: block;
}
