﻿@charset "UTF-8";

/* -------------------------
  HEADER
-------------------------  */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFF;
  z-index: 11;
  transition: top 0.3s ease, opacity 0.3s ease;
}
.block-header-logo {
  line-height: 0;
  padding: 25px;
  width: 370px;
}
body.page-top #header:not(.fixed) .block-header-logo {
  margin: 0 auto;
}
.block-header-cart {
  position: absolute;
  top: 28px;
  right: 40px;
}
.block-header-cart a {
  position: relative;
  display: block;
  padding: 10px;
}
.block-header-cart img {
  width: 30px;
}
.block-header-cart--qty {
  display: none;
  position: absolute;
  top: -12px;
  right: -12px;
  width: 24px;
  height: 24px;
  background: #000;
  color: #FFF;
  font-size: 13px;
  text-align: center;
  border-radius: 50%;
  padding: 2px 0;
}
.block-header-cart--qty.show {
  display: block;
}
.block-header-search {
  position: absolute;
  top: 20px;
  right: 120px;
  width: 450px;
}
input.block-header-search--keyword {
  display: block;
  width: 100%;
  background: url(../../img/usr/common/icon_search.png) no-repeat right 18px center / 20px;
  padding: 10px 130px 10px 18px;
}
.block-header-search--btn {
  position: absolute;
  top: 10px;
  right: 55px;
  border: 0;
  color: #FFF;
  font-size: 12px;
  background: #000;
  width: 64px;
  text-align: center;
  padding: 5px 0;
  -webkit-appearance: none;
}
.block-header-navi {
  background: #F7F7F7;
}
.block-header-navi--items {
  display: flex;
  justify-content: center;
  gap: 100px;
  min-width: 1300px;
}
.block-header-navi--item {
  position: relative;
  min-width: 130px;
}
.block-header-navi--item > a {
  display: block;
  font-weight: bold;
  padding: 14px 0 16px;
}
.block-header-navi--item a.block-header-navi--item-history {
  padding-left: 34px;
  background: url(../../img/usr/common/icon_history.png) no-repeat left center / 22px;
}
.block-header-navi--item a.block-header-navi--item-bookmark {
  padding-left: 32px;
  background: url(../../img/usr/common/icon_bookmark.png) no-repeat left center / 21px;
}
.block-header-navi--item a.block-header-navi--item-mypage {
  padding-left: 30px;
  background: url(../../img/usr/common/icon_customer.png) no-repeat left center / 19px;
}
.block-header-navi--item a.block-header-navi--item-guide {
  padding-left: 36px;
  background: url(../../img/usr/common/icon_guide.png) no-repeat left center / 24px;
}
.block-header-navi--item a.block-header-navi--item-search {
  padding-left: 36px;
  background: url(../../img/usr/common/icon_search.png) no-repeat left 5px center / 20px;
}
.block-header-navi--item a:hover {
  text-decoration: none;
}
.block-header-navi--item-head {
  position: relative;
  font-weight: bold;
  padding: 14px 0 16px 30px;
  background: url(../../img/usr/common/icon_menu_search.png) no-repeat left center / 25px;
  cursor: pointer;
}
.block-header-navi--item-head:after {
  content: '';
  position: absolute;
  top: 20px;
  right: 2px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}
.block-header-navi--item-head.show:after {
  top: 24px;
  transform: rotate(-135deg);
}
.block-header-navi--item-body {
  display: none;
  position: absolute;
  top: 54px;
  left: 0;
  width: 220px;
  background: rgba(0, 0, 0, .8);
  padding: 16px 28px;
}
.block-header-navi--item-body a {
  display: block;
  color: #FFF;
  padding: 8px 0;
}
body.page-method .block-header-search,
body.page-method .block-header-cart,
body.page-method .block-header-navi {
  display: none;
}

/* FIXED */
#header.fixed {  
  top: -100px;
  display: flex;
  justify-content: space-between;
  padding: 18px 30px;
  border-bottom: 1px solid #BFBFBF;
  min-width: 1330px;
  opacity: 0;
}
body.page-top #header.fixed {
  min-width: 1300px;
}
#header.fixed.show {
  position: fixed;
  top: 0;
  align-items: center;
  opacity: 1;
}
#header.fixed .block-header-logo {
  order: 1;
  padding: 0;
  width: 350px;
}
#header.fixed .block-header-navi {
  order: 2;
  background: none;
}
#header.fixed .block-header-navi--items {
  max-width: 930px;
  min-width: 780px;
  justify-content: space-between;
  gap: 20px;
}
#header.fixed .block-header-navi--item {
  min-width: 120px;
}
#header.fixed .block-header-cart {
  order: 3;
  position: static;
}
#header.fixed .block-header-search {
  display: none;
}

/* -------------------------
  FOOTER
-------------------------  */
#footer {
  margin: 70px 0 0;
  padding: 30px 0;
  background: #404040;
}
.block-footer-link {
  display: flex;
  align-items: center;
  gap: 120px;
  width: 1200px;
  margin: 0 auto 25px;
}
.block-footer-logo {
  line-height: 0;
}
.block-footer-logo img {
  width: 196px;
}
.block-footer-link--items {
  display: flex;
  gap: 80px;
}
.block-footer-link--item a {
  color: #FFF;
  font-size: 15px;
}
.block-footer-copy {
  color: #FFF;
  font-size: 14px;
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 1.3px;
}

/* -------------------------
  LEFT MENU
-------------------------  */
.block-leftmenu-bnr {
  margin: 0 0 40px;
}
.block-leftmenu-bnr li:not(:last-child) {
  margin: 0 0 10px;
}
.block-leftmenu-calendar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.block-leftmenu-calendar--title {
  font-size: 20px;
  font-weight: bold;
}
.block-leftmenu-calendar--note {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}
.block-leftmenu-calendar--note:before {
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #E9E9E9;
}
.block-leftmenu-calendar--list {
  margin: 20px 0 0;
}
.block-leftmenu-calendar--list li:not(:last-child) {
  margin: 0 0 25px;
}

/* -------------------------
  TOP
-------------------------  */
body.page-top .wrapper_ {
  padding-top: 40px;
}
.block-top-mv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  text-align: center;
  height: 450px;
  margin: 0 0 60px;
  background: url(../../img/usr/top/mv.jpg) no-repeat center / cover;
}
.block-top-mv--message {
  color: #FFF;
  font-size: 22px;
  letter-spacing: 1.5px;
  line-height: 2.2;
}
.block-top-mv--message span {
  font-size: 30px;
  padding: 0 5px;
}
.block-top-mv-search {
  position: relative;
  width: 650px;
  margin: 0 auto;
}
input.block-top-mv-search--keyword {
  width: 100%;
  border: 1px solid #BFBFBF;
  border-radius: 0;
  padding: 17px 18px;
}
.block-top-mv-search--btn {
  position: absolute;
  top: 21px;
  right: 20px;
  background: none;
  border: 0;
  border-radius: 0;
  width: 18px;
  padding: 0;
}
body.page-top .topiclist_head_ {
  background: none;
  padding: 0;
  margin: 0 0 5px;
}
body.page-top .topiclist_head_ h2 {
  font-size: 26px;
}
body.page-top .topiclist_head_ h2:before {
  display: none;
}
.block-top-search {
  margin: 0 0 70px;
}
.block-top-search h2 {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 20px;
}
.block-top-search--items {
  display: flex;
  gap: 20px;
}
.block-top-search--items li {
  width: 293px;
}
.block-top-search--items li a {
  display: block;
  border: 1px solid #000;
  text-align: center;
  padding: 25px 0;
}
.block-top-search--items li a:hover {
  text-decoration: none;
  opacity: .8;
}
.block-top-search--items li span {
  font-size: 18px;
  font-weight: bold;
  padding: 3px 0 3px 28px;
}
.block-top-search--items li.history span {
  background: url(../../img/usr/common/icon_history.png) no-repeat left center / 23px;
}
.block-top-search--items li.bookmark span {
  background: url(../../img/usr/common/icon_bookmark.png) no-repeat left center / 20px;
}
.block-top-search--items li.item-code span {
  background: url(../../img/usr/common/icon_list.png) no-repeat left center / 20px;
}
.category_list_title_ {
  margin: 0 0 20px;
}
.category_list_title_ h2 {
  font-size: 26px;
  font-weight: bold;
}
body.page-top .event_ {
  margin: 70px 0;
  overflow: visible;
}
body.page-top .event_title_ {
  margin: 0 0 25px;
  padding: 0;
}
body.page-top .event_title_:before {
  display: none;
}
body.page-top .event_title_ a {
  pointer-events: none;
}
.goods_:has(.swiper) {
  position: relative;
}
.goods_ .swiper {
  position: static;
}
.block-top-bnr {
  margin: 0 0 70px;
}
.block-top-bnr--items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.block-top-bnr--item {
  width: 450px;
}

/* -------------------------
  SLIDER
-------------------------  */
.swiper:not(.swiper-initialized) .swiper-button-prev,
.swiper:not(.swiper-initialized) .swiper-button-next {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
  top: 110px;
  left: -15px;
  width: 31px;
  height: 31px;
  background: #535353;
}
.swiper-button-next {
  left: auto;
  right: -15px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: '';
  position: absolute;
  top: 11px;
  left: 13px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(135deg);
}
.swiper-button-next:after {
  left: 9px;
  transform: rotate(-45deg);
}
.swiper-button-disabled {
  display: none;
}

/* -------------------------
  LOGIN
-------------------------  */
body:has(.block-login-head) .wrapper_wrapper_ {
  padding: 0;
}
body:has(.block-login-head) #header {
  display: none;
}
body:has(.block-login-head) #footer {
  margin: 0;
}
body:has(.block-login-head) .wrapper_ {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 267px);
  padding: 0 0 125px;
  overflow: hidden;
}
body:has(.block-login-head) .wrapper_:before {
  content: '';
  position: absolute;
  top: 0;
  left: -260px;
  border-style: solid;
  border-width: 630px 260px 0 260px;
  border-color: #F9F9F9 transparent transparent transparent;
}
body:has(.block-login-head) .wrapper_:after {
  content: '';
  position: absolute;
  right: -260px;
  bottom: 0;
  border-style: solid;
  border-width: 0 260px 630px 260px;
  border-color: transparent transparent #F9F9F9 transparent;
}
body:has(.block-login-head) .login_ > .loginform_:not(:has(form)),
body:has(.block-login-head) .loginform_ h2,
body:has(.block-login-head) .loginform_ .form_text_ {
  display: none;
}
.block-login-head {
  padding: 110px 0 30px;
  text-align: center;
}
.block-login-head--logo {
  margin: 0 0 35px;
}
.block-login-head--message {
  font-size: 15px;
  line-height: 2.27;
}

/* -------------------------
  商品詳細
-------------------------  */
body.page-goods .goods_name2_ {
  font-size: 12px;
}
body.page-goods .icon_ {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
body.page-goods .icon_ img {
  height: 21px;
}
body.page-goods .goods_code_,
body.page-goods .goods_code2_ {
  display: flex;
}
body.page-goods .goods_code_ dt,
body.page-goods .goods_code2_ dt {
  position: relative;
  width: 100px;
}
body.page-goods .goods_code_ dt:after,
body.page-goods .goods_code2_ dt:after {
  content: ':';
  position: absolute;
  top: -1px;
  right: 8px;
}
body.page-goods .price_area_ {
  margin: 25px 0 0;
}
body.page-goods .price_area_ dl {
  display: flex;
}
body.page-goods .price_area_ dt {
  width: 110px;
}
body.page-goods .price_area_ dl.maker_price_ dd {
  font-size: 18px;
}
body.page-goods .price_area_ dd span {
  font-size: 12px;
  font-weight: normal;
}
body.page-goods .price_area_ dl#spec_price dt {
  font-size: 18px;
  font-weight: bold;
}
body.page-goods .price_area_ dl#spec_price dd {
  font-size: 26px;
  font-weight: bold;
}
body.page-goods .price_area_ .default_price_ {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
}
body.page-goods .price_area_ .default_price_:before {
  content: '';
  position: absolute;
  top: 13px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
}
body.page-goods .price_area_ .default_price_ + .price_ {
  color: #C90000;
}
body.page-goods .variationlist_ {
  margin: 7px 0 0;
}
body.page-goods .variation_section_ {
  display: flex;
  flex-wrap: wrap;
  padding: 18px 0;
  border-bottom: 1px solid #BFBFBF;
}
body.page-goods .variation_section_ .title_ {
  width: 100px;
}
body.page-goods .variation_section_ .tags_ {
  display: flex;
  flex-wrap: wrap;
  width: 195px;
}
body.page-goods .variation_section_ .tags_:has(li[filter="color"]) {
  gap: 5px;
}
body.page-goods .variation_section_ .tags_ li:not(.tag_Selected_),
body.page-goods .variation_section_ .tags_ li:not(.tag_Selected_NoStock_) {
  cursor: pointer;
}
body.page-goods .variation_section_ .tags_ li[filter="color"] {
  position: relative;
  width: 28px;
}
body.page-goods .variation_section_ .tags_ li[filter="color"].tag_Selected_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"].tag_Selected_NoStock_:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../img/usr/common/check.png) no-repeat center / 9px;
}
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="black"].tag_Selected_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="brown"].tag_Selected_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="green"].tag_Selected_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="grey"].tag_Selected_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="skelton"].tag_Selected_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="purple"].tag_Selected_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="red"].tag_Selected_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="blue"].tag_Selected_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="black"].tag_Selected_NoStock_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="brown"].tag_Selected_NoStock_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="green"].tag_Selected_NoStock_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="grey"].tag_Selected_NoStock_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="skelton"].tag_Selected_NoStock_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="purple"].tag_Selected_NoStock_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="red"].tag_Selected_NoStock_:before,
body.page-goods .variation_section_ .tags_ li[filter="color"][selection="blue"].tag_Selected_NoStock_:before {
  background-image: url(../../img/usr/common/check_w.png);
}
body.page-goods .variation_section_ .tags_:has(li:not([filter="color"])) {
  gap: 10px 35px;
}
body.page-goods .variation_section_ .tags_ li:not([filter="color"]) {
  position: relative;
  display: flex;
  align-items: baseline;
  padding: 0 0 0 25px;
}
body.page-goods .variation_section_ .tags_ li:not([filter="color"]):before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #BFBFBF;
  border-radius: 50%;
}
body.page-goods .variation_section_ .tags_ li:not([filter="color"]).tag_Selected_:before,
body.page-goods .variation_section_ .tags_ li:not([filter="color"]).tag_Selected_NoStock_:before {
  background: url(../../img/usr/common/check.png) no-repeat center / 9px;
}
body.page-goods .variation_section_ .tags_ li[filter="sizemm"]:after {
  content: 'mm';
  display: inline-block;
}
body.page-goods .variation_section_ .selected_ {
  width: 100%;
  padding: 0 0 0 100px;
}
body.page-goods .variation_section_:has(li[filter="color"]) .selected_ {
  margin: 12px 0 0;
  font-size: 12px;
}
body.page-goods .variation_section_:has(li:not([filter="color"])) .selected_ {
  display: none;
}
body.page-goods .top_comment_ {
  display: flex;
  align-items: center;
  margin: 20px 0 0;
}
body.page-goods .top_comment_ dt,
body.page-goods .goods_stock_ dt {
  position: relative;
  width: 100px;
}
body.page-goods .top_comment_ dt:after,
body.page-goods .goods_stock_ dt:after {
  content: ':';
  position: absolute;
  top: -1px;
  right: 10px;
}
body.page-goods .goods_stock_ {
  display: flex;
  align-items: center;
  margin: 20px 0 0;
  font-weight: bold;
}
body.page-goods .top_comment_ + .goods_stock_ {
  margin: 10px 0 0;
}
body.page-goods .goods_info_tab_ {
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px;
}
body.page-goods .goods_info_tab_item_ {
  flex: 1;
  color: #BFBFBF;
  font-size: 22px;
  font-weight: bold;
  border-bottom: 1px solid #BFBFBF;
  padding: 0 2px 10px;
  cursor: pointer;
}
body.page-goods .goods_info_tab_item_.active_ {
  color: #000;
  border-color: #000;
  pointer-events: none;
}
body.page-goods .goods_spec_list_ {
  border: 1px solid #BFBFBF;
  margin: 0 0 20px;
}
body.page-goods .goods_spec_list_ dl {
  display: flex;
  border-bottom: 1px solid #BFBFBF;
}
body.page-goods .goods_spec_list_ dl:last-child {
  border-bottom: 0;
}
body.page-goods .goods_spec_list_ dt {
  font-weight: bold;
  background: #F7F7F7;
  border-right: 1px solid #BFBFBF;
  padding: 15px 20px;
  width: 256px;
}
body.page-goods .goods_spec_list_ dd {
  padding: 15px 20px;
  flex: 1;
}
body.page-goods .goods_detail_,
body.page-goods .goods_support_ {
  display: none;
}
body.page-goods .goods_info_item_:not(:last-child),
body.page-goods .goods_support_item_:not(:last-child) {
  margin: 0 0 50px;
}
body.page-goods .goods_info_item_:has(>.inner_),
body.page-goods .goods_info_item_ .body_:has(>.img_) {
  display: flex;
  align-items: flex-start;
  gap: 36px;
}
body.page-goods .goods_info_item_ .inner_ {
  flex: 1;
}
body.page-goods .goods_info_item_ .title_,
body.page-goods .goods_support_item_ .title_ {
  font-size: 20px;
  font-weight: bold;
  background: #F2F2F2;
  padding: 8px 20px;
  margin: 0 0 20px;
}
body.page-goods .goods_info_item_ .title_:not(:first-child) {
  margin-top: 40px;
}
body.page-goods .goods_info_item_ .text_ {
  letter-spacing: 1px;
}
body.page-goods .goods_info_item_ .note_ {
  font-size: 13px;
  margin: 12px 0 0;
}
body.page-goods .goods_info_item_ .movie_ {
  border-radius: 6px;
  overflow: hidden;
}
body.page-goods .goods_info_item_ .movie_ iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
body.page-goods .goods_support_item_ .caution_ {
  margin: 0 0 20px;
}
body.page-goods .goods_support_item_ .caution_ .head_ {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: bold;
  padding: 0 27px 0 0;
  cursor: pointer;
}
body.page-goods .goods_support_item_ .caution_ .head_:before,
body.page-goods .goods_support_item_ .caution_ .head_:after {
  content: '';
  position: absolute;
  top: 13px;
  right: 0;
  width: 12px;
  height: 1px;
  background: #000;
}
body.page-goods .goods_support_item_ .caution_ .head_:not(.open_):after {
  transform: rotate(90deg);
}
body.page-goods .goods_support_item_ .caution_ .text_ {
  display: none;
  font-size: 14px;
  margin: 12px 0 0;
}
body.page-goods .goods_support_item_ .caution_ .head_ span {
  color: #FFF;
  font-size: 14px;
  background: #000;
  padding: 3px 8px;
}
body.page-goods .goods_support_item_ ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
body.page-goods .goods_support_item_ li {
  width: 293px;
}
body.page-goods .goods_support_item_ li a {
  display: block;
  border: 1px solid #000;
  font-size: 14px;
  text-align: center;
  padding: 14px 10px;
}
body.page-goods .goods_support_item_ li a:hover {
  opacity: .8;
  text-decoration: none;
}
body.page-goods .accessory_list_ .common_headline2_ {
  color: #000;
  font-size: 26px;
  font-weight: bold;
  padding: 0;
  margin: 100px 0 20px;
  background: none;
}

/* -------------------------
  カテゴリ
-------------------------  */
.category_head_ {
  margin: 0 0 50px;
}
.category_img_ {
  margin: 0 0 35px;
}
.category_img_ img {
  width: 100%;
}
.category_head_ .category_title_en_ {
  display: none;
}
.category_head_ .category_comment_ {
  font-size: 16px;
}

/* -------------------------
  ジャンル
-------------------------  */
.genre_head_ {
  margin: 0 0 50px;
}
.genre_img_ {
  margin: 0 0 35px;
}
.genre_img_ img {
  width: 100%;
}
body.page-genre .GenreStyle_ {
  margin: 50px 0 0;
}

/* -------------------------
  トピック詳細
-------------------------  */
body.page-topic h1 {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 35px;
}
body.page-topic .topic_title_ .topic_icon_ img {
  margin: 0 0 5px;
}
body.page-topic .topic_title_ .topic_icon_ img {
  height: 14px;
}
body.page-topic .article_ a {
  text-decoration: underline;
}
body.page-topic .article_ a:hover {
  text-decoration: none;
  opacity: 1;
}

/* -------------------------
  ログアウト
-------------------------  */
body.page-logout .logout_text_ a {
  text-decoration: underline;
}
body.page-logout .logout_text_ a:hover {
  text-decoration: none;
  opacity: 1;
}

/* -------------------------
  パスワード再設定
-------------------------  */
body.page-forgotpass .formdetail_.forgotpass_ {
  border-right: 1px solid #BFBFBF;
  border-left: 1px solid #BFBFBF;
}
body.page-forgotpass .formdetail_.forgotpass_ th {
  border-right: 1px solid #BFBFBF;
}
body.page-forgotpass .formdetail_.forgotpass_ td {
  text-align: left;
}

/* -------------------------
  アンケート
-------------------------  */
body.page-form .customer_status_,
body:has(.questionnaire_complete_) .customer_status_ {
  display: none;
}
body.page-form .questionnaire_title_ {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 25px;
}
body.page-form .formdetail_ th {
  border: 0;
}
body.page-form .formdetail_ td {
  border: 0;
  padding: 20px 0 40px;
}
body.page-form .formdetail_ tr:has(+tr) td.sub_description_,
body.page-form .formdetail_ tr:has(.typeCust input[id^="mail"]) td {
  padding-bottom: 0;
}
body.page-form .formdetail_ br:has(+h3) {
  display: none;
}

/* -------------------------
  クーポン一覧
-------------------------  */
body.page-coupon .customer_status_ + .message_ {
  display: none;
}

/* -------------------------
  会員情報変更
-------------------------  */
body.page-customer .customer_status_ + .message_ {
  margin: 30px 0 10px;
}
body.page-customer .formdetail_.customer_ th,
body.page-customer .formdetail_.customer_ td {
  padding: 12px 20px;
}
body.page-customer .message_ a {
  text-decoration: underline;
}
body.page-customer .message_ a:hover {
  text-decoration: none;
  opacity: 1;
}

/* -------------------------
  配送先一覧
-------------------------  */
body.page-order_address .address_box_2_ .common_headline2_ {
  display: none;
}
body.page-order_address .address_box_2_ .top_box_ {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: 10px 0;
}
body.page-order_address .address_box_2_ .top_box_ .move_button_ {
  color: #FFF;
  background: #000;
}
body.page-order_address .address_box_2_ .address_select_ {
  text-align: right;
}

/* -------------------------
  会員配送先
-------------------------  */
body.page-custdestlist .top_box_ .move_button_ {
  color: #FFF;
  background: #000;
}

/* -------------------------
  カートリスト
-------------------------  */
body.page-precart .precart_btn_ {
  display: flex;
  gap: 5px;
  margin: 5px 0 0;
}
body.page-precart .precart_rgdt_ > a {
  text-decoration: underline;
}
body.page-precart .precart_rgdt_ > a:hover {
  opacity: 1;
  text-decoration: none;
}
body.page-precart .precart_btn_ .btn-small {
  margin: 0;
  height: auto;
}
body.page-precart .precart_detail_ .head_ {
  font-weight: bold;
}
body.page-precart .precart_detail_item_ {
  border: 0;
  padding: 20px 0 0;
}
body.page-precart .precart_detail_ .memo_ > a {
  text-decoration: underline;
}
body.page-precart .precart_detail_ .memo_ > a:hover {
  text-decoration: none;
  opacity: 1;
}
body.page-precart .precart_detail_ .updt_ {
  font-size: 12px;
  text-align: right;
}
body.page-precart .memo_label_ {
  background: #F7F7F7;
  padding: 10px;
}
body.page-precart .memo_label_:empty {
  display: none !important;
}

/* -------------------------
  カートリスト詳細
-------------------------  */
body.page-precartdetail .btn_wrap_ {
  display: flex;
  justify-content: center;
  gap: 25px;
}
body.page-precartdetail .btn_cart_.cart_button_slender_ {
  font-size: 16px;
  width: 260px;
  text-align: center;
  padding: 13px;
}
body.page-precartdetail .btn_wrap_ .btn-secondary {
  font-size: 16px;
  padding: 13px;
  height: auto;
  margin: 0;
  width: 260px;
}
body.page-precartdetail .memo_ a {
  text-decoration: underline;
}
body.page-precartdetail .memo_ a:hover {
  text-decoration: none;
  opacity: 1;
}
body.page-precartdetail .updt_ {
  font-size: 12px;
}
body.page-precartdetail div[id^="memo_label_"] {
  background: #F7F7F7;
  padding: 10px;
  margin: 0 0 10px;
}
body.page-precartdetail div[id^="memo_label_"]:empty {
  display: none !important;
}

/* -------------------------
  お気に入り
-------------------------  */
body.page-bookmark .bookmark_item_ .spec_ .price_ {
  font-weight: normal;
}
body.page-bookmark .bookmark_item_ .spec_ .updt_ {
  font-size: 12px;
  margin: 10px 0 0;
}
body.page-bookmark .bookmark_item_ .comment_ .edit_ a {
  text-decoration: underline;
}
body.page-bookmark .bookmark_item_ .comment_ .edit_ a:hover {
  text-decoration: none;
  opacity: 1;
}
body.page-bookmark .bookmark_item_ .comment_ textarea {
  width: 100% !important;
  margin: 10px 0;
}
body.page-bookmark .bookmark_buy_ .make-group-checked {
  border: 1px solid #000;
  background: #FFF;
  padding: 13px 15px;
  -webkit-appearance: none;
}
body.page-bookmark .bookmark_item_ .comment_ div[id^="comment_label"] {
  margin: 10px 0 0;
  background: #F7F7F7;
  padding: 10px;
  font-size: 14px;
}
body.page-bookmark .bookmark_item_ .comment_ div[id^="comment_label"]:empty {
  display: none !important;
}

/* -------------------------
  お気に入りグループ
-------------------------  */
body.page-bookmarkgroup .btn_bookmarkgroup_create_ {
  display: inline-block;
  color: #FFF;
  background: #000;
  padding: 8px 15px;
  margin: 10px 0 0;
}
body.page-bookmarkgroup .btn_bookmarkgroup_create_:hover {
  text-decoration: none;
  opacity: .8;
}
body.page-bookmarkgroup .formlist_.bookmark_ {
  margin: 20px 0 0;
}
body.page-bookmarkgroup .comment_ a {
  text-decoration: underline;
}
body.page-bookmarkgroup .comment_ a:hover {
  text-decoration: none;
}

/* -------------------------
  得意先会員
-------------------------  */
body.page-bizuserlist .formlist_.bizuserlist_ a {
  text-decoration: underline;
}
body.page-bizuserlist .formlist_.bizuserlist_ a:hover {
  text-decoration: none;
  opacity: 1;
}

/* -------------------------
  得意先会員本登録
-------------------------  */
body.page-bizusersetpass .navigation_ {
  font-size: 16px;
  margin: 0 0 10px;
}
body.page-bizusersetpass .passchange_ a {
  display: block;
  width: 260px;
  border: 1px solid #000;
  margin: 0 auto;
  font-weight: normal;
  text-decoration: none;
  text-align: center;
  padding: 13px 4px;
}
body.page-bizusersetpass .passchange_ a:hover {
  opacity: .8;
}

/* -------------------------
  よく使う支払方法設定
-------------------------  */
body.page-defaultmethod .message_ {
  font-weight: normal;
  margin: 20px 0;
}
body.page-defaultmethod .formlist_.defaultmethodlist_ th,
body.page-defaultmethod .formlist_.defaultmethodlist_ td {
  padding: 12px 20px;
}
body.page-defaultmethod .formlist_.defaultmethodlist_ td.default_method_ input[type="radio"] {
  transform: translateY(-2px);
}

/* -------------------------
  よく使う配送先設定
-------------------------  */
body.page-defaultdest .message_ {
  font-weight: normal;
  margin: 20px 0;
}
body.page-defaultdest .formlist_.defaultdestlist_ tr:has(input[name="dest_id"]:checked) td {
  background: transparent !important;
}
body.page-defaultdest .formlist_.defaultdestlist_ tr:has(input[name="dest_id"]:checked) td.nickname_ {
  font-weight: bold;
}

/* -------------------------
  メールアドレス変更
-------------------------  */
body.page-mailchangeonetimepasswordcertify .form_text_ {
  margin: 0 0 15px;
}
body.page-mailchangeonetimepasswordcertify .mailchange_.result_ a {
  text-decoration: underline;
}
body.page-mailchangeonetimepasswordcertify .mailchange_.result_ a:hover {
  text-decoration: none;
  opacity: 1;
}

/* -------------------------
  退会
-------------------------  */
body.page-withdrawal .message_ {
  font-weight: normal;
  margin: 20px 0 15px;
}
body.page-withdrawal .formdetail_.withdrawal_ th {
  width: 310px;
}

/* -------------------------
  お問い合わせ
-------------------------  */
body.page-contactthanks .message_ {
  font-weight: normal;
  margin: 0 0 40px;
}

/* -------------------------
  カート
-------------------------  */
body.page-order_cart .order_cart_sublist_single_ .move_button_orange_ {
  color: #FFF;
  background: #000;
}

/* -------------------------
  パスワード再設定
-------------------------  */
body.page-resetpass .navigation_ {
  font-size: 16px;
  margin: 0 0 10px;
}
body.page-resetpass .formdetail_.passchange_ th {
  width: 300px;
  padding: 12px 20px;
}
body.page-resetpass .formdetail_.passchange_ td {
  padding: 12px 20px;
}
body.page-resetpass .formdetail_.passchange_ .small_ {
  display: block;
}

/* -------------------------
  CSV一括カート投入
-------------------------  */
body.page-imp_cart .formlist_.import_ {
  margin: 20px 0;
}
body.page-imp_cart .formlist_.import_ th {
  width: 240px;
  padding: 12px 20px;
}
body.page-imp_cart .formlist_.import_ td {
  padding: 12px 20px;
}

/* -------------------------
  ご利用ガイド
-------------------------  */
.block-guide {
  width: 1200px;
  margin: 0 auto;
}
.block-guide-section:not(:last-child) {
  margin: 0 0 40px;
}
.block-guide h1.common_headline1_ {
  font-size: 26px;
  margin-bottom: 35px;
}
.block-guide h2.common_headline3_ {
  font-size: 18px;
  background: #F7F7F7;
  padding: 10px;
  border: 0;
  margin: 0 0 15px;
}
.block-guide h3.common_headline3_ {
  border: 0;
  font-size: 16px;
  margin: 0;
}
.block-guide .block-guide-intro--text {
  margin: 0 0 20px;
}
.block-guide .block-guide-intro--nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}
.block-guide .block-guide-intro--nav li {
  width: 24%;
  box-sizing: border-box;
}
.block-guide .guide-button {
  display: block;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #000;
}
.block-guide .guide-button:hover {
  opacity: .8;
}
.block-guide .block-guide-section--box {
  margin: 0 0 20px;
}

/* -------------------------
  カテゴリ一覧
-------------------------  */
body.page-category .btn-event-link {
  display: block;
  width: 260px;
  margin: 0 auto;
  padding: 13px 4px;
  border: 1px solid #000;
  font-size: 15px;
  text-align: center;
}
body.page-category .btn-event-link:hover {
  opacity: .8;
  text-decoration: none;
}

/* -------------------------
  見積一覧
-------------------------  */
body.page-history .formlist_.bizsearch_ input[type="date"],
body.page-estimatelist .formlist_.bizsearch_ input[type="date"],
body.page-bizhistory .formlist_.bizsearch_ input[type="date"],
body.page-bizestimatelist .formlist_.bizsearch_ input[type="date"] {
  width: 200px;
}

/* -------------------------
 swiper最新化対応デザイン調整
-------------------------  */
.swiper-button-next, .swiper-button-prev {
    svg {
        display: none;
    }
}