@charset "UTF-8";

div.wrapper_ {
  padding-bottom: 0;
  overflow: hidden;
}

/** ヘッダー **/

header {
  padding-bottom: 0;
}

header,
header * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

header img {
  display: block;
  max-width: 100%;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 100vw;
  height: 12vw;
  background-color: #fff;
  z-index: 9999;
}

.header-inner.is-float {
  position: fixed;
  top: 0;
  left: 0;
}

.header-inner .header-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28.33vw;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.header-inner .header-logo img {
  width: 100%;
}

.header-menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 10.67vw;
  height: 12vw;
  padding-left: 6.4vw;
}

.header-menu-btn img {
  width: 4.27vw;
}

.header-nav {
  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;
}

.header-nav > div {
  margin-right: 5.33vw;
}

.icon-login img {
  width: 4.27vw;
}

.icon-cart img {
  width: 5.07vw;
}

.icon-favorite img {
  width: 3.73vw;
}

.icon-pin img {
  width: 3.47vw;
}

/** ハンバーガーメニュー **/

.sp-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 9999;
}

.sp-menu,
.sp-menu * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.sp-menu img {
  display: block;
  max-width: 100%;
}

.sp-menu-container {
  background-color: transparent;
}

.sp-menu-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: rgba(51, 51, 51, 0.9);
}

.sp-menu-close-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 10.67vw;
  height: 10.67vw;
}

.sp-menu-close-icon img {
  width: 5.33vw;
}

.sp-menu-body {
  position: relative;
  width: 89.33vw;
  height: 100vh;
  padding-bottom: 30vw;
  background-color: #fff;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

.sp-menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 4.27vw 4.27vw 0;
}

.sp-menu-header-nav {
  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;
}

.sp-menu-header-nav div + div {
  margin-left: 15px;
}

.sp-menu-header .store-search a,
.sp-menu-header-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333333;
  font-size: 12px;
}

.sp-menu-header .store-search a,
.sp-menu-header-nav a,
.sp-menu-header .store-search a:link,
.sp-menu-header-nav a:link,
.sp-menu-header .store-search a:visited,
.sp-menu-header-nav a:visited {
  text-decoration: none;
}

.sp-menu-header .store-search a img,
.sp-menu-header-nav a img {
  position: relative;
  top: -1px;
  margin-right: 5px;
}

.sp-menu-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 4.27vw;
  padding: 0 4.27vw;
}

.sp-menu-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 58.67vw;
  border: 1px solid #CCCCCC;
  border-radius: 1.07vw;
}

.sp-menu-search form input[type='text'] {
  width: 50.4vw;
  border: none;
  font-size: 12px;
}

.sp-menu-search form input[type='text']::-webkit-input-placeholder {
  color: #CCCCCC;
}

.sp-menu-search form input[type='text']:-ms-input-placeholder {
  color: #CCCCCC;
}

.sp-menu-search form input[type='text']::placeholder {
  color: #CCCCCC;
}

.sp-menu-search form button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 8.53vw;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
}

.sp-menu-search form button img {
  width: 4.27vw;
}

.sp-menu-search .search-detail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 19.2vw;
  height: 9.6vw;
  border-radius: 1.07vw;
  background-color: #999999;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

.sp-menu-popular-keyword {
  margin-top: 3.8vw;
  padding: 0 4.27vw;
}

.sp-menu-popular-keyword dt {
  font-size: 14px;
  font-weight: 600;
}

.sp-menu-popular-keyword dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: -.6vw -2.67vw 0 0;
}

.sp-menu-popular-keyword dd p {
  margin: 2.67vw 2.67vw 0 0;
}

.sp-menu-popular-keyword dd a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 8vw;
  padding: 0 4vw;
  border-radius: 8vw;
  background-color: #F4F4F5;
  color: #333333;
  text-decoration: none;
}

.sp-menu-category {
  margin-top: 4.27vw;
}

.sp-menu-category-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sp-menu-category-tab .ttl {
  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;
  position: relative;
  width: calc((100% - 1px) / 2);
  height: 14.93vw;
  padding: 0 4.27vw;
  color: #002A46;
  border: 1px solid #002A46;
}
.sp-menu-category-tab .ttl.is-active {
  color: #fff;
  background-color: #002A46;
}

.sp-menu-category-tab .ttl .icon-switch {
  display: block;
  position: absolute;
  top: 50%;
  right: 4.27vw;
  width: 1.6vw;
  height: 2.93vw;
  color: transparent;
  font-size: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.sp-menu-category-tab .ttl .icon-switch::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5vw;
  height: 1.5vw;
  border-bottom: 1px solid #002A46;
  border-right: 1px solid #002A46;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sp-menu-category-tab .ttl.is-active .icon-switch::before {
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.sp-menu-category-tab .ttl .ttl-en {
  font-size: 16px;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
}

.sp-menu-category-tab .ttl .ttl-ja {
  margin-top: -1.4vw;
  font-size: 1rem;
}

.sp-menu-category-content > div {
  display: none;
}

.sp-menu-category-content .content-men {
  background-color: #002A46;
}

.sp-menu-category-content .content-ladies {
  background-color: #002A46;
}

.nav-2nd-container {
  display: none;
}

.sp-menu-category-img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #fff;
}

.sp-menu-category-img-list li {
  width: 50%;
  border-bottom: 1px solid #CCCCCC;
}

.sp-menu-category-img-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.33vw 0 1.33vw 4.27vw;
  color: #333333;
  font-size: 12px;
  text-decoration: none;
  line-height: 1.4;
}

.sp-menu-category-img-list p {
  width: 23.6vw;
}

.sp-menu-category-img-list .img {
  width: 10.67vw;
}

.sp-menu-category-img-list .img img {
  width: 100%;
}

.sp-menu-history {
  border-top: 1px solid #DDDEDE;
}

.sp-menu-history h3 {
  margin-top: 4.2vw;
  padding: 0 4.27vw;
  font-size: 14px;
  font-weight: 600;
}

.sp-menu-history-list {
  width: 89.33vw;
  margin-top: 4vw;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.sp-menu-history-list .goods_h_ {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sp-menu-history-list .goods_h_ li {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 60px;
}

.sp-menu-history-list .goods_h_ li:first-child {
  margin-left: 4.27vw;
}

.sp-menu-history-list .goods_h_ a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.sp-menu-history-list .goods_h_ img {
  width: 100%;
}

.sp-menu-history-list .goods_h_ .name_ {
  margin-top: 2.4vw;
  color: #666666;
  font-size: 1rem;
  text-align: left;
  line-height: 1.4
}

.sp-menu-new-register {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5.27vw;
  padding: 0 4.27vw;
}

.sp-menu-new-register a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 13.33vw;
  border: 2px solid #002A46;
  background-color: #fff;
  color: #002A46;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.sp-menu-nav {
  margin-top: 5vw;
  padding: 0 4.27vw;
}

.sp-menu-bnr {
  margin-top: 10.67vw;
}

/** フッター **/

footer,
footer * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

footer {
  padding-top: 70px;
}

.footer-menu-nav {
  padding: 0 6.4vw;
}

.footer-menu-nav.footer-site-guide {
  margin-top: 10.67vw;
}

.footer-menu-nav-ttl {
  color: #fff;
  font-size: 1.6rem;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  letter-spacing: .08em;
}

.footer-sns {
  margin-top: 10.67vw;
}

.footer-nav {
  margin-top: 10.67vw;
  padding: 0 6.4vw;
}

.footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-nav ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 41.33vw;
  height: 11.73vw;
  border-bottom: 1px solid #063B5D;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

#change_mode_ {
  display: block;
}

#copyright {
  padding: 10.67vw 0;
  border: none;
  color: #fff;
  font-size: 1rem;
}

footer div.page_top_ {
  display: none;
  position: fixed;
  top: auto;
  right: 0;
  bottom: 15vw;
  width: 11.73vw;
  padding: 0;
  z-index: 999;
}

footer div.page_top_.is-up {
  bottom: 22.67vw;
}

div.page_top_ a {
  display: block;
  width: 11.73vw;
  height: 11.73vw;
  background-image: url(../img/usr/sb_new/common/btn_pagetop.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999px;
}

/** ナビゲーションリスト **/

.nav-list .nav-1st {}

.nav-list.list-white {
  background-color: #fff;
}

.nav-list .nav-2nd {
  display: none;
}

.nav-list.list-white .nav-2nd {
  background-color: #EBEBEB;
}

.nav-list.list-navy .nav-2nd {
  background-color: #032B45;
}

.nav-list .nav-name {
  position: relative;
}

.nav-list.list-white .nav-name {
  border-bottom: 1px solid #CCCCCC;
}

.nav-list.list-navy .nav-name {
  border-bottom: 1px solid #063B5D;
}

.nav-list.list-navy .nav-2nd .nav-name {
  border-bottom: 1px solid #0B3C5D;
}

.nav-list .nav-name a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  min-height: 8vw;
  padding: 3vw 10vw 3vw 4.27vw;
  color: #333333;
  font-size: 1.4rem;
  font-family: futura-pt, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-decoration: none;
}

.nav-list.list-white .nav-name.has-img a {
  padding: 2px 10vw 2px 0;
}

.nav-list.list-navy .nav-name a {
  color: #fff;
}

.nav-list .nav-name a::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 2.67vw;
  width: 1.6vw;
  height: 2.93vw;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.nav-list.list-white .nav-name a::after {
  background: url(../img/usr/sb_new/common/arw_navy.png) center no-repeat;
  background-size: contain;
}

.nav-list.list-navy .nav-name a::after {
  background: url(../img/usr/sb_new/common/arw_white.png) center no-repeat;
  background-size: contain;
}

.nav-list .nav-name a > img {
  width: 43px;
  margin-right: 26px;
}

.nav-list .nav-name a span {
  position: relative;
  font-size: 1.4rem;
}

.nav-list .nav-name .icon-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 0;
  width: 8vw;
  height: 12.8vw;
  color: transparent;
  font-size: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.nav-list.list-white .nav-name .icon-switch {
  background-color: #fff;
}

.nav-list.list-navy .nav-name .icon-switch {
  background-color: #002238;
}

.nav-list .nav-name .icon-switch::before,
.nav-list .nav-name .icon-switch::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.nav-list.list-white .nav-name .icon-switch::before,
.nav-list.list-white .nav-name .icon-switch::after {
  background-color: #002A46;
}

.nav-list.list-navy .nav-name .icon-switch::before,
.nav-list.list-navy .nav-name .icon-switch::after {
  background-color: #fff;
}

.nav-list .nav-name .icon-switch::before {
  width: 3.2vw;
  height: 2px;
}

.nav-list .nav-name .icon-switch::after {
  width: 2px;
  height: 3.2vw;
}

.nav-list .nav-name .icon-switch.is-active::after {
  opacity: 0;
}

.sub-bnr-list {
  padding: 10.67vw 4.27vw;
  background-color: #CCD4DA;
}

.sp-menu-bnr.sub-bnr-list {
  padding: 10.67vw 4.27vw;
}

.page-bottom-bnr.sub-bnr-list {
  padding: 10.67vw 6.4vw;
}

.sp-menu-bnr.sub-bnr-list li + li {
  margin-top: 4.27vw;
}

.sp-menu-brand-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2.67vw;
}

.sp-menu-brand-list li {
  width: 40vw;
}

.sp-menu-brand-list li:not(:nth-child(-n+2)) {
  margin-top: 2.67vw;
}

.sp-menu-note {
  margin-top: 10.67vw;
}

.block-bottom-note {
  padding: 0 10.67vw;
  background-color: #002A46;
  color: #fff;
  text-align: center;
}

.block-bottom-note-list-item {
  padding: 10.67vw 0 9.8vw;
}

.block-bottom-note-list-item + .block-bottom-note-list-item {
  border-top: 1px solid #14496C;
}

.block-bottom-note-list-img img {
  display: block;
  margin: auto;
  height: 10.67vw;
}

.block-bottom-note-list-detail {
  margin-top: 4vw;
}

.block-bottom-note-list-ttl {
  font-size: 1.6rem;
  font-weight: bold;
}

.block-bottom-note-list-comment {
  margin-top: 2vw;
  font-size: 1.4rem;
}

.sp-menu-site-guide {
  margin-top: 10.67vw;
  padding: 0 4.27vw;
}

.sp-menu-sns {
  margin-top: 10.67vw;
}

.page-bottom-bnr.sub-bnr-list li + li {
  margin-top: 6.4vw;
}

.sub-bnr-list a {
  display: block;
  position: relative;
}

.sub-bnr-list .img img {
  width: 100%;
}

.sub-bnr-list .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11.73vw;
  background-color: rgba(0, 42, 70, 0.8);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}


/** TOP **/

.toppage-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.toppage-category,
.toppage-category * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.toppage-category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100vw;
}

.toppage-category li {
  width: 50%;
  background-color: #002A46;
}

.toppage-category li:nth-child(1) {
  border-right: 1px solid #fff;
}

.toppage-category a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  position: relative;
  width: 100%;
  height: 9.33vw;
  padding: 1vw 0 0 4.27vw;
  color: #fff;
  text-decoration: none;
}

.toppage-category a::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 2.67vw;
  width: 1.6vw;
  height: 2.93vw;
  background: url(../img/usr/sb_new/common/arw_white.png) center no-repeat;
  background-size: contain;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.toppage-category .txt-en {
  font-size: 16px;
  font-weight: 600;
}

.toppage-category .txt-ja {
  margin-left: 2.67vw;
  font-size: 10px;
}

/** 商品詳細 **/

.goodsproductdetail_,
.goodsproductdetail_ * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.goodsproductdetail_ img {
  max-width: 100%;
}

.goodsimg_ {
  position: relative;
}

.goodsimg_ .img-main {
  width: 100vw;
}

.goodsimg_ .img-main img {
  width: 100%;
}

.goodsimg_ .img-main .slide-item {
  padding: 0 6.4vw;
}

.goodsimg_ .img-main .slide-item .txt {
  margin-top: 5.8vw;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.goodsimg_ .img-main .slick-prev,
.goodsimg_ .img-main .slick-next {
  width: 4.53vw;
  height: 8.8vw;
  z-index: 9;
}

.goodsimg_ .img-main .slick-prev {
  left: 2.7vw;
}

.goodsimg_ .img-main .slick-next {
  right: 2.7vw;
}

.goodsimg_ .img-main .slick-prev:before,
.goodsimg_ .img-main .slick-next:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 4.53vw;
  height: 8.8vw;
  background: url(../img/usr/sb_new/common/arw_slide_goodsdetail.png) center no-repeat;
  background-size: contain;
  opacity: 1;
}

.goodsimg_ .img-main .slick-next:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}

.pane-goods-left-side .goodsimg_ .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  bottom: 0;
  width: 100vw;
  margin-top: 5.6vw;
  text-align: left;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

.pane-goods-left-side .goodsimg_ .slick-dots li {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 13.33vw;
  height: auto;
  margin: 0 2.13vw 0 0;
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pane-goods-left-side .goodsimg_ .slick-dots li.slick-active {
  border: 1px solid #002A46;
}

.bookmark-btn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}

.bookmark-btn .bookmark_btn_ {
  width: 9.07vw;
  height: 9.07vw;
  margin: 0;
  padding: 0;
  border: none;
  background: url(../img/usr/sb_new/common/icon_favorite_off@2x.png) center no-repeat;
  background-size: contain;
  color: transparent;
  font-size: 0;
}

.cart-modal-bookmark-btn {
  top: 0;
  left: 6.4vw;
}

.cart-modal-bookmark-btn .bookmark_btn_ {
  width: 9.07vw;
  height: 9.07vw;
  margin: 0;
  padding: 0;
  border: none;
  background: url(../img/usr/sb_new/common/icon_favorite_off@2x.png) center no-repeat;
  background-size: contain;
  color: transparent;
  font-size: 0;
}

.js-cart-open.bookmark-btn {
  width: 9.07vw;
  height: 9.07vw;
  margin: 0;
  padding: 0;
  border: none;
  background: url(../img/usr/sb_new/common/icon_favorite_off@2x.png) center no-repeat;
  background-size: contain;
  color: transparent;
  font-size: 0;
}

div.gallerytop_ {
  margin: 6.4vw 0 1.6vw;
  padding: 0 6.4vw;
}

div.gallerytop_ .updated_ {
  padding: 0;
  float: none;
}

div.goodsnote_ .icon2_ {
  margin-bottom: 1.2vw;
}

div.goodsnote_ .icon2_ img {
  height: 4.8vw;
  margin: 0 1.33vw 1.33vw 0;
}

div.goodsnote_ {
  padding: 0 6.4vw;
  text-align: left;
  margin:4vw;
}

div.goodsnote_ .name_ {
  margin: 0;
}

div.goodsnote_ .name_ .name1_ {
  color: #002A46;
  font-size: 20px;
  font-weight: 600;
}

div.goodsnote_ .name_ .name2_ {
  width: 100%;
  margin-top: 2.4vw;
  color: #002A46;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.0;
}

div.goodsnote_ .part_number_ {
  margin-top: 3.2vw;
  color: #999999;
  font-size: 12px;
}

div.goodsnote_ .price_ {
  margin-bottom: 2vw;
  font-size: 20px;
  font-weight: 600;
  text-align: right;
}

div.goodsnote_ .price_ .tax {
  margin-left: 1vw;
  font-size: 12px;
  font-weight: 300;
}
.top_comment_{
  font:120% bold;	
  margin-bottom: 2vw;
}




div.goodsnote_ .price_ {
  margin-bottom: 6vw;
  font-size: 20px;
  font-weight: 600;
  text-align: right;
}

.goodsdetail-detail-tab,
.goodsdetail-detail-slide-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10.67vw;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}

.goodsdetail-detail-tab.tab-sleeve {
  margin-top: 0;
}

.goodsdetail-detail-tab li,
.goodsdetail-detail-slide-tab > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: calc(100% / 3);
  height: 14.93vw;
  color: #999999;
  font-size: 16px;
  font-weight: 600;
}

.goodsdetail-detail-tab li.is-active,
.goodsdetail-detail-slide-tab > div.tab-current {
  color: #002A46;
}

.goodsdetail-detail-tab li::after,
.goodsdetail-detail-slide-tab > div::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 4px;
  background-color: #002A46;
  opacity: 0;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.goodsdetail-detail-tab > li.is-active::after,
.goodsdetail-detail-slide-tab > div.tab-current::after {
  opacity: 1;
}

.goodsdetail-detail-content,
.goodsdetail-detail-slide-content {
  padding-bottom: 10vw;
}

.goodsdetail-detail-content > li {
  display: none;
}

.goodsdetail-detail-content > li.is-active {
  display: block;
}

div.goodscomment1_,
div.goodscomment2_,
div.goodscomment3_,
div.goodscomment4_,
div.goodscomment5_ {
  margin: 0;
  padding: 10px;
}

div.block-rules-comment {
  margin: 0;
  padding: 10px;
}

div.goodsspec_ {
  margin-top: 6.4vw;
  padding: 0 6.4vw;
}

div.goodsspec_ dl {
  border: none;
}

div.goodsspec_ dl + dl {
  margin-top: 1.33vw;
}

div.goodsspec_ dl dt {
  position: relative;
  width: 22vw;
  padding: 0;
  color: #000000;
  font-size: 14px;
  white-space: nowrap;
}

div.goodsspec_ dl dt::after {
  content: ':';
  position: absolute;
  right: 0;
}

div.goodsspec_ dl dd {
  padding: 0 0 0 4vw;
  color: #000000;
  font-size: 14px;
}

.koda_wrap {
  margin: 6vw auto;
}

.size-tbl {
  width: 100vw;
  margin-top: 6.4vw;
}

.size-unit {
  margin-bottom: .8vw;
  padding: 0 6.4vw;
  color: #002A46;
  font-size: 12px;
  font-weight: bold;
}

.size-tbl-inner {
  width: 100%;
  padding: 0 6.4vw 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.size-tbl-left {
  border-right: 2px solid #fff;
}

.size-tbl-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

.size-tbl-left > div,
.size-tbl-item > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 21.33vw;
  height: 8.53vw;
  border: 1px solid #fff;
  background-color: #F7F7F7;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

.size-tbl-left > div {
  border-right: 0;
}

.size-tbl-right > div:first-child > div {
  border-left: 0;
}

.size-tbl .ttl {
  background-color: #EDEDED;
}

.size-tbl table th,
.size-tbl table td {
  width: 21.33vw;
  height: 8.53vw;
  border: 2px solid #fff;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  vertical-align: middle;
}

.size-tbl table th {
  background-color: #EDEDED;
}

.size-tbl table td {
  background-color: #F7F7F7;
}

.size-txt {
  margin-top: 6vw;
  padding: 0 6.4vw;
}

.size-txt + .size-txt {
  margin-top: 8vw;
}

.size-txt .ttl {
  font-size: 18px;
  font-weight: 600;
}

.size-txt .txt {
  margin-top: 1vw;
  font-size: 14px;
}

.size-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3vw;
}

.size-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 53.33vw;
  height: 10.67vw;
  border-radius: 1.07vw;
  background-color: #EDEDED;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.size-howto {
  margin-top: 1vw;
}

.size-howto dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.size-howto dl dt {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 16vw;
  font-size: 14px;
}

.size-howto dl dt::after {
  content: ':';
  position: absolute;
  top: 0;
  right: 0;
}

.size-howto dl dd {
  padding-left: 5vw;
  font-size: 14px;
}

.size-container .disc-list {
  margin-top: 5vw;
  padding: 0 6.4vw;
}

.sleeve {
  margin-top: 6.4vw;
  padding: 0 6.4vw;
}

.sleeve li {
  font-size: 14px;
}

.sleeve li + li {
  margin-top: 1vw;
}

.sleeve-img {
  padding: 5.4vw 6.4vw 6.4vw 6.4vw;
  border: 1px solid #CCCCCC;
}

.sleeve-img .ttl {
  font-size: 18px;
  font-weight: 600;
}

.sleeve-img .comment {
  margin-top: 1vw;
  font-size: 14px;
}

.sleeve-img .img {
  width: 51.73vw;
  margin: 3vw auto 0;
}

.sleeve-img .img img {
  width: 100%;
}

.option_buttons_ {
  margin: 0;
  padding: 0 6.4vw;
}

div.colors_ {
  width: 100%;
  margin: 0;
  padding: 0 6.4vw;
  overflow: hidden;
}

div.colors_ h3 {
  margin: 4vw -6.4vw 4vw;
  padding: 4vw 6.4vw 0;
  border-top: 1px solid #CCCCCC;
  color: #002A46;
  font-size: 16px;
  font-weight: 600;
}

div.colors_ .colors-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1.33vw 8vw 0;
}

div.colors_ div.color_ {
  display: inline-block;
  margin: 2px 5px 2px 5px;
  white-space: nowrap;
  width: 30px;
  height: 30px;
  border-radius: 5px;
}

div.colors_ div.color2_ {
  display: inline-block;
  margin: 0 1.33vw 1.33vw 0;
  white-space: nowrap;
  width: 12.26vw;
  height: 14.93vw;
  overflow: hidden;
  text-align: left;
  background-position: center;
  background-size: auto 100%;
  -webkit-background-size: auto 100%;
}

div.colors_ div.color2_.color_Selected_ {
  border: 1px solid #002A46;
}

.option_buttons_ li.stock_btn_ {
  width: 100%;
  height: 10.13vw;
  position: relative;
  margin: 2.67vw 0 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border: 1px solid #bea885;
  background-color: #ebe4d9;
  color: #A9822E;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 10.13vw;
}

.option_buttons_ li.stock_btn_:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.cart-btn-float {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 2.67vw;
  background-color: #002A46;
  z-index: 999;
}

.cart-open-btn {
  padding: 0 6.4vw;
}

.cart-btn-float .cart-open-btn {
  padding: 0;
}

.cart-open-btn span,
.cart-open-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 14.4vw;
  background-color: #8D2800;
  color: #fff;
  font-size: 4.8vw;
  text-decoration: none;
}

.cart-open-btn span::before,
.cart-open-btn a::before {
  content: '';
  display: inline-block;
  position: relative;
  width: 5.07vw;
  height: 4.53vw;
  margin-right: 1vw;
  background: url(../img/usr/sb_new/common/icon_cart_white.png) center no-repeat;
  background-size: contain;
}

.cart-open-btn span::after,
.cart-open-btn a::after {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 2px solid #ffffff;
}

.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
}

div.cartbox_ {
  margin: 0;
  padding: 0;
}

.cart-top {
  position: relative;
  padding: 14.4vw 5.33vw 6vw;
}

.cart-modal-close {
  position: absolute;
  top: 6.4vw;
  right: 6.4vw;
  width: 5.33vw;
  height: 5.33vw;
}

.cartbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cartbox-item .img {
  width: 16vw;
}

.cartbox-item .img img {
  display: block;
  width: 100%;
  border: 1px solid #707070;
}

.cartbox-item .content {
  width: calc(100% - 16vw);
  padding-left: 2.67vw;
}

.cartbox-item .name1_ {
  margin-top: -.4vw;
  color: #002A46;
  font-size: 16px;
  font-weight: 600;
}

.cartbox-item .name2_ {
  margin-top: -.6vw;
  color: #002A46;
  font-size: 16px;
  font-weight: 600;
}

.cartbox-item .price_ {
  margin-top: .6vw;
  font-size: 20px;
  text-align: right;
}

.cartbox-item .price_ .tax {
  margin-left: 1.33vw;
  font-size: 12px;
  font-weight: 300;
}

div.cartbox_ div.sizes_ dl {
  margin-top: 0;
}

div.cartbox_ div.sizes_ {
  width: 100%;
  height: 40vh;
  margin-bottom: 0;
  padding: 0 5.33vw;
  overflow: scroll;
}

div.cartbox_ div.sizes_ dl.cart-modal-select {
  display: block;
  margin-top: 0;
}

.cart-modal-sleeve-border {
  margin-top: 2.67vw;
  padding: 2vw 2.4vw 1.8vw;
  border: 1px solid #002A46;
}

div.cartbox_ div.sizes_ dl.cart-modal-select dt,
div.cartbox_ div.sizes_ dl.cart-modal-select dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

div.cartbox_ div.sizes_ dl.cart-modal-select.select-size dt {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  color: #002A46;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

div.cartbox_ div.sizes_ dl.cart-modal-select.select-sleeve dt {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  padding-right: 6vw;
  color: #002A46;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

div.cartbox_ div.sizes_ dl.cart-modal-select.select-sleeve dt .icon-switch {
  position: absolute;
  top: 1.8vw;
  right: 0;
  width: 2.67vw;
  height: 2.67vw;
}

div.cartbox_ div.sizes_ dl.cart-modal-select.select-sleeve dt .icon-switch::before,
div.cartbox_ div.sizes_ dl.cart-modal-select.select-sleeve dt .icon-switch::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #002A46;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

div.cartbox_ div.sizes_ dl.cart-modal-select.select-sleeve dt .icon-switch::before {
  width: 100%;
  height: 2px;
}

div.cartbox_ div.sizes_ dl.cart-modal-select.select-sleeve dt .icon-switch::after {
  width: 2px;
  height: 100%;
}

div.cartbox_ div.sizes_ dl.cart-modal-select.select-sleeve dt.is-active .icon-switch::after {
  opacity: 0;
}

div.cartbox_ div.sizes_ dl.cart-modal-select.select-size dd {
  margin-top: 2.67vw;
}

div.cartbox_ div.sizes_ dl.cart-modal-select.select-sleeve dd {
  display: none;
  position: relative;
  margin-top: 7vw;
}

.sleeve-unit {
  position: absolute;
  top: -25px;
  left: 0;
  color: #002A46;
  font-size: 12px;
  font-weight: bold;
}

div.cartbox_ div.sizes_ dl.cart-modal-select dd input {
  display: none;
}

div.cartbox_ div.sizes_ dl.cart-modal-select dd label {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1.33vw 0;
  border: 1px solid #002A46;
}

div.cartbox_ div.sizes_ dl.cart-modal-select dd input:checked + label {
  background-color: #002A46;
  color: #fff;
}

div.cartbox_ div.sizes_ dl.cart-modal-select.select-size dd label {
  width: 16.8vw;
}

div.cartbox_ div.sizes_ dl.cart-modal-select.select-sleeve dd label {
  width: 15.73vw;
}

div.cartbox_ div.sizes_ dl.cart-modal-select dd label:not(:nth-of-type(5n)) {
  margin-right: 1.33vw;
}

div.cartbox_ div.sizes_ dl.cart-modal-select dd label:not(:nth-of-type(-n+5)) {
  margin-top: 1.33vw;
}

div.cartbox_ div.sizes_ dl.cart-modal-select dd label .size {
  font-size: 12px;
  font-weight: 600;
}

div.cartbox_ div.sizes_ dl.cart-modal-select dd label .stock {
  font-size: 14px;
  font-weight: 300;
}

.about-size,
.about-sleeve {
  margin-top: 1.6vw;
  text-align: right;
}

.about-size a,
.about-sleeve a {
  color: #333333;
  font-size: 14px;
}

div.cartbox_ div.sizes_ dl.cart-other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2vw 0;
  border-bottom: 1px solid #002A46;
}

div.cartbox_ div.sizes_ dl.re_hem_.cart-other {
  margin-top: 16px;
  border-top: 1px solid #002A46;
}

div.cartbox_ div.sizes_ dl.cart-other dt,
div.cartbox_ div.sizes_ dl.cart-other dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

div.cartbox_ div.sizes_ dl.cart-other dt {
  width: 45%;
  color: #002A46;
}

div.cartbox_ div.sizes_ dl.cart-other dd {
  width: 75%;
}

.icon-pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 18px;
  margin-left: 1.7vw;
  padding: 0 1vw;
  border-radius: 1.07vw;
  background-color: #002A46;
  color: #fff;
  font-size: 10px;
}

.cartbox_ div.sizes_ .cart-other label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.cartbox_ div.sizes_ .cart-other select {
  width: 25vw;
  height: 6.33vw;
  margin-right: 1.33vw;
  border: 1px solid #CCCCCC;
  border-radius: 1.07vw;
  background-color: #fff;
}

.cartbox_ div.sizes_ .cart-other .txt-small {
  font-size: 10px;
}

div.cartbox_ div.sizes_ dl.cart-repair dd {
  width: 75%;
}

div.cartbox_ div.sizes_ dl.cart-repair {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2vw 0;
  border-bottom: 1px solid #002A46;
}

.cartbox_ div.sizes_ .cart-repair select {
  height: 6.33vw;
  margin-right: 1.33vw;
  border: 1px solid #CCCCCC;
  border-radius: 1.07vw;
  background-color: #fff;
}

.pants_my_size {
  height: 10vw;
}

.pants_my_size select {
  height: 6.33vw;
  margin-right: 1.33vw;
  border: 1px solid #CCCCCC;
  border-radius: 1.07vw;
  background-color: #fff;
}

.repair_radio_area_ {
  height: 15vw;
}

.repair_radio_area_ input[type="radio"] {
  display: none;
}

.repair_radio_area_ label {
  display: inline-block;
  width: 48%;
  color: #000000;
  background-color: #FFFFFF;
  padding: 10px 10px;
  border: 1px solid #000000;
  text-align: center;
  vertical-align: middle;
}

.repair_radio_area_ input[type="radio"]:checked + label {
  color: #FFFFFF;
  background-color: #000000;
}

.cart-bottom {
  position: relative;
  margin: 0;
  padding-top: 6.4vw;
  background-color: #fff;
}

.cart-bottom-size,
.cart-bottom-price,
.block-qty-cart-btn,
#backorder {
  padding: 0 4.27vw;
  background-color: #F3F1ED;
}

.cart-bottom-size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 4.27vw;
  font-size: 12px;
  font-weight: 600;
}

.cart-bottom-size .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cart-bottom-size .content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 5vw;
}

.cart-bottom-size .content dl dd {
  margin-left: 1.6vw;
}

.cart-bottom-size .content dl dd .size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 17.07vw;
  height: 5.33vw;
  background-color: #002A46;
  color: #fff;
}

.cart-bottom-price .price_ {
  padding-top: 2vw;
  font-size: 20px;
  text-align: right;
}

.cart-bottom-price .price_ .num {
  font-size: 20px;
}

.cart-bottom-price .price_ .tax {
  margin-left: 1.33vw;
  font-size: 12px;
  font-weight: 300;
}

.block-qty-cart-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.6vw 4.27vw 4.27vw;
}

.block-qty-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-qty-input > span {
  display: block;
  position: relative;
  width: 6.4vw;
  height: 12.8vw;
  background-color: #CCCCCC;
}

.block-qty-input span.num-minus {
  border-top-left-radius: 1.07vw;
  border-bottom-left-radius: 1.07vw;
}

.block-qty-input span.num-plus {
  border-top-right-radius: 1.07vw;
  border-bottom-right-radius: 1.07vw;
}

.block-qty-input > span::before,
.block-qty-input > span::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

.block-qty-input > span::before {
  width: 2.67vw;
  height: 2px;
}

.block-qty-input > span.num-plus::after {
  width: 2px;
  height: 2.67vw;
}

.block-qty-input input {
  width: 11.2vw;
  height: 12.8vw;
  border: none;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  background-color: #fff;
  font-size: 14px;
  text-align: center;
}

div.cartbox_ div.order_error_ {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  margin: 0;
}

.block-cart-btn button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 64vw;
  height: 14.4vw;
  border: none;
  background-color: #8D2800;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.block-cart-btn button::before {
  content: '';
  display: inline-block;
  position: relative;
  top: -.4vw;
  width: 5.07vw;
  height: 4.53vw;
  margin-right: 2vw;
  background: url(../img/usr/sb_new/common/icon_cart_white.png) center no-repeat;
  background-size: contain;
}

.block-cart-btn button::after {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 2px solid #ffffff;
}

#backorder .large_button_ {
  margin: 0;
}


/* ----商品詳細画面：動画表示---- */

.block-goods--video-thumbnail {
  color: #444;
  position: relative;
}

.block-goods--video-thumbnail-none {
  background-color: #f5f5f5;
  padding: 50%;
}

.block-goods--video-thumbnail::before {
  position: absolute;
  width: 8vw;
  height: 8vw;
  top: 50%;
  left: 50%;
  background-color: #444;
  opacity: 0.7;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
}

.block-goods--video-thumbnail::after {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-width: 1.8vw 0 1.8vw 3vw;
  box-sizing: border-box;
  content: "";
}

.block-goods-detail .swiper-slider-main .hacobune-app-container {
  width: 100%;
  margin : 0 auto;
  padding: 0;
}

.block-goods-detail .swiper-slider-main .hacobune-unit-video-outline {
  display: none;
}

.block-goods-detail .swiper-slider-main .hacobune-vjs-poster {
  display: none;
}

.block-goods-detail .swiper-slider-main .hacobune-vjs-big-play-button {
  display: none;
  position: absolute;
  border: 0;
  width: 18vw;
  height: 18vw;
  top: 50%;
  left: 50%;
  background-color: #444;
  opacity: 0.7;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
}

.block-goods-detail .swiper-slider-main .hacobune-vjs-big-play-button .hacobune-vjs-icon-placeholder::before {
  content: "";
}

.block-goods-detail .swiper-slider-main .hacobune-vjs-big-play-button .hacobune-vjs-icon-placeholder::after {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-width: 3.6vw 0 3.6vw 6vw;
  box-sizing: border-box;
  content: "";
}

/** パンくず **/

.navitopicpath_ {
  margin-top: 40px;
  padding: 0 10px;
}

#bread-crumb-list {
  width: 100%;
  float: none;
}

#bread-crumb-list li,
.navitopicpath_ a {
  color: #002A46;
  font-size: 1.2rem;
}

#bread-crumb-list li {
  margin-left: 0;
  padding-left: 0;
}

#bread-crumb-list li:not(:first-child) {
  margin-left: 2vw;
}

.navitopicpath_ li:not(:first-child) a {
  margin-left: 2vw;
}

.navitopicpath_ li:last-child a:link {
  text-decoration: none;
}

.navitopicpath_ a span {
  font-size: 11px;
}


.navitopicpath_ a span strong {
  color: #002A46;
  font-size: 1.4rem;
  text-decoration: underline;
}

/** カテゴリ **/

#block_of_category {
  margin-top: 10vw;
  padding: 8.6vw 6.4vw 0;
  background-color: #CCD4DA;
}

#block_of_category,
#block_of_category * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.linettl2_ {
  color: #002a46;
  padding: 0;
  margin-bottom: 0;
  background: none;
}

#treemenu.linettl2_ span {
  display: block;
  width: 100%;
  height: auto;
  background: none;
  font-size: 18px;
  text-indent: 0;
}

nav.CategoryStyleG_ {
  margin: 4.4vw 0 0;
}

nav.CategoryStyleG_ ul.layer0_ li p.parent_ {
  width: 11.73vw;
  height: 100%;
  max-height: 16vw;
  background: none !important;
  z-index: 9;
}

nav.CategoryStyleG_ ul.layer1_ li p.parent_ {
  max-height: 12.8vw;
}

nav.CategoryStyleG_ ul.layer0_ li p.parent_::before,
nav.CategoryStyleG_ ul.layer0_ li p.parent_::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #002A46;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

nav.CategoryStyleG_ ul.layer1_ li p.parent_::before,
nav.CategoryStyleG_ ul.layer1_ li p.parent_::after {
  background-color: #002A46;
}

nav.CategoryStyleG_ ul.layer0_ li p.parent_::before {
  width: 3.2vw;
  height: 2px;
}

nav.CategoryStyleG_ ul.layer0_ li p.parent_::after {
  width: 2px;
  height: 3.2vw;
  opacity: 0;
}

nav.CategoryStyleG_ ul.layer0_ li p.parent_.img_hidden_::after {
  opacity: 1;
}

nav.CategoryStyleG_ ul.layer0_ li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  min-height: 16vw;
  padding: 0 4.27vw;
}

nav.CategoryStyleG_ ul.layer0_ li .name_ {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

nav.CategoryStyleG_ ul.layer0_ li .name_ .txt-en {
  font-size: 16px;
  font-weight: 600;
}

nav.CategoryStyleG_ ul.layer0_ li .name_ .txt-ja {
  margin-left: 2.67vw;
  font-size: 12px;
  font-weight: 300;
}

nav.CategoryStyleG_ ul.layer1_ li a,
nav.CategoryStyleG_ ul.layer1_ li span.nolink_ {
  min-height: 12.8vw;
  background-color: #fff;
}

nav.CategoryStyleG_ ul.layer1_ li a,
nav.CategoryStyleG_ ul.layer2_ li a,
nav.CategoryStyleG_ ul.layer3_ li a {
  padding: 2.6vw 10vw 2vw 4.27vw;
}

nav.CategoryStyleG_ ul.layer0_ li#c10 {
  margin-bottom: 1px;
  border: none;
  background-color: #fff;
  color: #fff;
}

nav.CategoryStyleG_ ul.layer0_ li#c10.openbg_ {
  border: none;
}

nav.CategoryStyleG_ ul.layer0_ li#c20 {
  margin-bottom: 1px;
  border: none;
  background-color: #002A46;
  color: #fff;
}

nav.CategoryStyleG_ ul.layer0_ li#c20.openbg_ {
  border: none;
}

nav.CategoryStyleG_ ul.layer0_ li#c30 {
  margin-bottom: 0;
  border: none;
  background-color: #002A46;
  color: #fff;
}

nav.CategoryStyleG_ ul.layer0_ li#c30.openbg_ {
  border: none;
}

nav.CategoryStyleG_ ul.layer0_ li#c10 ul.layer1_ {
  border-bottom: none;
}

nav.CategoryStyleG_ ul.layer0_ li#c20 ul.layer1_ {
  border-bottom: none;
}

nav.CategoryStyleG_ ul.layer0_ li#c30 ul.layer1_ {
  border-bottom: none;
}

nav.CategoryStyleG_ li#c10 ul.layer1_ > li {
  border-bottom: 1px solid #CCD4DA;
}

nav.CategoryStyleG_ li#c10 ul.layer2_ > li:last-child {
  border-bottom: none;
}

nav.CategoryStyleG_ li#c20 ul.layer1_ > li {
  border-bottom: 1px solid #CCD4DA;
}

nav.CategoryStyleG_ li#c20 ul.layer2_ > li:last-child {
  border-bottom: none;
}

nav.CategoryStyleG_ li#c30 ul.layer1_ > li {
  border-bottom: 1px solid #CCD4DA;
}

nav.CategoryStyleG_ li#c30 ul.layer2_ > li:last-child {
  border-bottom: none;
}

nav.CategoryStyleG_ ul.layer0_ li#c10 > p.parent_.img_hidden_,
nav.CategoryStyleG_ ul.layer0_ li#c10 a {
  background: #fff;
}

nav.CategoryStyleG_ ul.layer0_ li#c20 > p.parent_.img_hidden_,
nav.CategoryStyleG_ ul.layer0_ li#c20 a {
  background: #fff;
}

nav.CategoryStyleG_ ul.layer0_ li#c30 > p.parent_.img_hidden_,
nav.CategoryStyleG_ ul.layer0_ li#c30 a {
  background: #fff;
}

nav.CategoryStyleG_ ul.layer0_ li#c10 .name_,
nav.CategoryStyleG_ ul.layer0_ li#c20 .name_,
nav.CategoryStyleG_ ul.layer0_ li#c30 .name_ {
  color: #002A46;
}

nav.CategoryStyleG_ ul.layer0_ li#c10 .layer1_ a,
nav.CategoryStyleG_ ul.layer0_ li#c20 .layer1_ a,
nav.CategoryStyleG_ ul.layer0_ li#c30 .layer1_ a {
  background: #fff;
}

nav.CategoryStyleG_ ul.layer2_ {
  padding: 0;
}

nav.CategoryStyleG_ li#c10 ul.layer2_ {
  border-top: 1px solid #CCD4DA;
  background-color: #002A46;
}

nav.CategoryStyleG_ ul.layer0_ li#c10 .layer2_ a,
nav.CategoryStyleG_ ul.layer0_ li#c20 .layer2_ a,
nav.CategoryStyleG_ ul.layer0_ li#c30 .layer2_ a {
  background-color: #EBEBEB;
}

/** 関連商品 **/

h2.accessorynyfit_ {
  position: relative;
  margin: 0 0 10px;
  background: none;
  text-align: center;
}

h2.accessorynyfit_::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #002A46;
  z-index: 1;
}

h2.accessorynyfit_ span {
  display: inline-block;
  position: relative;
  color: #002A46;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  background-color: #ffffff;
  padding: 0 6.4vw;
  z-index: 9;
}

/** その他 **/

.disc-list > li {
  position: relative;
  padding-left: 1.2em;
  text-indent: -1.2em;
}



/* --------------------------------------------------------------------
	20200603
--------------------------------------------------------------------- */

.block-pagetop-contents,
.block-pagetop-contents::before,
.block-pagetop-contents::after,
.block-pagetop-contents *,
.block-pagetop-contents *::before,
.block-pagetop-contents *::after,
.block-category-contents,
.block-category-contents::before,
.block-category-contents::after,
.block-category-contents *,
.block-category-contents *::before,
.block-category-contents *::after,
.block-item_list-contents,
.block-item_list-contents::before,
.block-item_list-contents::after,
.block-item_list-contents *,
.block-item_list-contents *::before,
.block-item_list-contents *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------
	ユーザー定義　タイトル/ボタン
--------------------------------------------------------------------- */

.block-common-ttl-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 80px 0 22px;
  color: #002A46;
  text-align: center;
}

.block-common-ttl-2 .txt-en {
  font-size: 3rem;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .08em;
}

.block-common-ttl-2 .txt-ja {
  margin-top: 12px;
  font-size: 1.4rem;
  font-weight: normal;
}

.block-common-ttl-2 + .goods_ {
  margin-top: 36px;
}

.block-gender-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.block-gender-ttl > span {
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .08em;
}

.block-gender-ttl + .goods_,
.block-gender-ttl + .block-category-features-list {
  margin-top: 40px;
}

.block-common-more-btn + .block-gender-ttl {
  margin-top: 64px;
}

.block-gender-ttl.ttl-men > span {
  border-bottom: 1px solid #002A46;
  color: #002A46;
}

.block-gender-ttl.ttl-ladies > span {
  border-bottom: 1px solid #002A46;
  color: #002A46;
}

.block-item_list-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 22px;
  padding: 0 10px;
  color: #002A46;
}

.block-item_list-ttl .txt-en {
  font-size: 1.6rem;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

.block-item_list-ttl .txt-ja {
  margin-top: 4px;
  font-size: 2.4rem;
  font-weight: bold;
}

.block-common-more-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}

.block-common-more-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 120px;
  height: 48px;
  border: 1px solid #002A46;
  color: #002A46;
  font-size: 1.6rem;
  font-family: futura-pt, sans-serif!important;
  text-decoration: none;
  letter-spacing: .08em;
}

.link-outer-blue,
.link-outer-white,
  {
  position: relative;
}

.link-outer-blue::after,
.link-outer-white::after {
  content: '';
  display: inline-block;
  position: relative;
  width: 11px;
  height: 11px;
  margin-left: 2.4vw;
}

.link-outer-blue::after {
  background: url(../img/usr/common/icon/icon_blue_outerlink_sp@2x.png) center no-repeat;
  background-size: contain;
}

.link-outer-white::after {
  background: url(../img/usr/common/icon/icon_white_outerlink_sp@2x.png) center no-repeat;
  background-size: contain;
}

/*その他*/

.block-category-switch-btn {
	width: 90%;
	margin: 5% 0 5% 7%;
}
.block-category-switch-btn-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.block-category-switch-btn-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc((100% - 1px) / 2);
  width: 45%;
  height: 35px;
  padding: 0.3em 0 0.3em 0;
  background-color: #FFFFFF;
  border: 1px solid #002A46;
	border-radius: 6px;
	margin-right: 5%;
	text-align: center;
}

.block-category-switch-btn-item.is-active {
  background-color: #002A46;
}

.block-category-switch-btn-item a {
  display: block;
  position: relative;
  width: 100%;
  color: #002A46;
  text-decoration: none;
}

.block-category-switch-btn-item.is-active a {
  color: #fff;
}



.block-category-switch-btn-item .txt-en {
  font-family: futura-pt, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .08em;
}

.block-category-switch-btn-item .txt-ja {
  margin-left: 10px;
  font-size: 1rem;
  font-weight: normal;
}


.block-header-bot img {
  width: 100%;
}

.block-mainframe-keyword_list {
  margin-top: 68px;
}

.block-mainframe-keyword_list-ttl {
  color: #002A46;
  font-size: 2rem;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  text-align: center;
  letter-spacing: .1em;
  line-height: 1.7;
}

.block-keyword_list {
  width: 100%;
  margin-top: 18px;
}

.block-keyword_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.block-keyword_list li {
  padding-left: 10px;
}

.block-keyword_list li:last-of-type {
  padding-right: 10px;
}

.block-keyword_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 30px;
  padding: 0 16px;
  border-radius: 30px;
  background-color: #F4F4F5;
  color: #333;
  font-size: 1.2rem;
  text-decoration: none;
}

.block-keyword_list .slick-prev {
  display: none;
}

.block-keyword_list .slick-next {
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: #002A46;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.block-keyword_list .slick-next::before {
  content: '';
  display: block;
  position: absolute;
  top: 13px;
  left: 12px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.block-category-top-list {
  margin-top: 40px;
  padding: 0 10px;
}

.block-category-top-list-items {
  border-top: 1px solid #DDDEDE;
}

.block-category-top-list-item {
  padding: 22px 10px;
  border-bottom: 1px solid #DDDEDE;
}

.block-category-top-list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.2rem;
  text-decoration: none;
}

.block-category-top-list-img {
  width: 64px;
}

.block-category-top-list-img img {
  width: 100%;
}

.block-category-top-list-detail {
  width: calc(100% - 80px);
}

.block-category-top-list-ttl {
  color: #002A46;
  font-size: 1.6rem;
  font-weight: bold;
}

.block-category-top-list-comment {
  margin-top: 7px;
  color: #333;
  font-size: 1.4rem;
}

.block-category-full-blue-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  padding: 0 10px;
}

.block-category-full-blue-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 64px;
  border: 3px solid #002A46;
  color: #002A46;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
}

.block-category-full-blue-btn a::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  width: 9px;
  height: 9px;
  border-top: 1px solid #002A46;
  border-right: 1px solid #002A46;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
}

.block-category-top-features {
  margin-top: 40px;
  padding: 0 10px;
}

.block-category-features-list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.block-category-features-list-item {
  width: calc((100% - 15px) / 2);
	/* --　追加------- */
	margin-bottom: 5%;
	/* --　追加------- */
}

.block-category-features-list-item:not(:nth-child(-n+2)) {
  margin-top: 5px;
}

.block-category-features-list-item a {
  display: block;
  text-decoration: none;
}

.block-category-features-list-img img {
  width: 100%;
}

.block-category-features-list-detail {
  margin-top: 9px;
}

.block-category-features-list-date_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.block-category-features-list-date {
  margin-right: 10px;
  color: #999;
  font-size: 1.4rem;
  font-family: futura-pt, sans-serif;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: .04em;
}

.block-category-features-list-icon img {
  height: 18px;
  vertical-align: top;
}

.block-category-features-list-comment {
  margin-top: 6px;
  color: #333;

	line-height: 1.6!important;
	font-size: 1.3rem!important;
}



.block-prod-slider-tab {
  background-color: #002A46;
}

.block-prod-slider-tab-item p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 105px;
  height: 44px;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  opacity: .3;
  line-height: 1.2;
}

.block-prod-slider-tab-item.slick-active p {
  opacity: 1;
}

.block-prod-slider-tab .slick-prev,
.block-prod-slider-tab .slick-next {
  top: 0;
  width: 30px;
  height: 44px;
  background-color: #193E58;
  z-index: 9;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.block-prod-slider-tab .slick-prev {
  left: 0;
}

.block-prod-slider-tab .slick-next {
  right: 0;
}

.block-prod-slider-tab .slick-prev::before,
.block-prod-slider-tab .slick-next::before {
  content: '';
  display: block;
  position: absolute;
  top: 19px;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.block-prod-slider-tab .slick-prev::before {
  left: 12px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}

.block-prod-slider-tab .slick-next::before {
  right: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.block-prod-slider-tab-content {
  width: 100vw;
  margin-top: 24px;
}

.block-category-bot-features,
.block-toppage-features-men,
.block-toppage-features-ladies {
  position: relative;
  padding: 0 10px;
}

.block-category-bot-features .block-base-inner,
.block-toppage-features-men .block-base-inner,
.block-toppage-features-ladies .block-base-inner {
  position: relative;
}

.block-category-bot-features-ranking {
  margin-top: 56px;
}

.block-category-bot-features-ranking h3 {
  position: relative;
  margin-bottom: 22px;
  color: #002A46;
  font-size: 2rem;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  letter-spacing: .08em;
  text-align: center;
  line-height: 1.3;
}

.block-category-bot-features-ranking h3 > span {
  display: inline-block;
  position: relative;
  font-size: 2rem;
}

.block-category-bot-features-ranking .block-category-features-list-item {
  width: 100%;
}

.block-category-bot-features-ranking .block-category-features-list-item:not(:nth-child(-n+2)) {
  margin-top: 0;
}

.block-category-bot-features-ranking .block-category-features-list-item + .block-category-features-list-item {
  margin-top: 24px;
}

.block-category-bot-features-ranking .block-category-features-list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.block-category-bot-features-ranking .block-category-features-list-img {
  width: 140px;
  margin-left: 10px;
}

.block-category-bot-features-ranking .block-category-features-list-detail {
  width: calc(100% - 166px);
  margin: 0 0 0 auto;
}

.block-toppage-mid-category {
  margin-top: 80px;
  padding: 0 10px;
}

.block-toppage-mid-category-btn {
  display: flex;
}

.block-toppage-mid-category-btn + .block-toppage-mid-category-btn {
  margin-top: 24px;
}

.block-toppage-mid-category-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 80px;
  font-size: 2rem;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: .1em;
}

.block-toppage-mid-category-btn.btn-men a {
  border: 2px solid #5D859E;
  color: #5D859E;
}

.block-toppage-mid-category-btn.btn-ladies a {
  border: 2px solid #D67B94;
  color: #D67B94;
}

.block-toppage-mid-category-btn a::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  width: 9px;
  height: 9px;
  margin-top: -3px;
  transform: rotate(45deg);
}

.block-toppage-mid-category-btn.btn-men a::after {
  border-top: 1px solid #5D859E;
  border-right: 1px solid #5D859E;
}

.block-toppage-mid-category-btn.btn-ladies a::after {
  border-top: 1px solid #D67B94;
  border-right: 1px solid #D67B94;
}

.block-instagram-thumbs {}

.block-instagram-thumbs-ttl {
  position: relative;
  margin-top: 90px;
  color: #002A46;
  font-size: 3rem;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  text-align: center;
  letter-spacing: .08em;
}

.block-instagram-thumbs-ttl::before {
  content: '';
  display: inline-block;
  position: relative;
  top: 2px;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  background: url(../img/usr/common/icon/icon_blue_instagram_l_sp.png) center no-repeat;
  background-size: contain;
}

.block-instagram-thumbs-list {
  margin-top: 56px;
}

.block-instagram-thumbs-list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -24px;
}

.block-instagram-thumbs-list-item {
  width: 282px;
  margin-right: 24px;
}

.block-instagram-thumbs-list-item img {
  width: 100%;
}

.block-instagram-thumbs-btn {
  margin-top: 36px;
  text-align: center;
}

.block-instagram-thumbs-btn a {
  position: relative;
  padding-bottom: 8px;
  font-size: 1.6rem;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: .08em;
}

.block-instagram-thumbs-btn a::before {
  content: '';
  display: inline-block;
  position: relative;
  top: 3px;
  width: 17px;
  height: 17px;
  margin-right: 10px;
  background: url(../img/usr/common/icon/icon_blue_instagram_s_sp.png) center no-repeat;
  background-size: contain;
}

.block-instagram-thumbs-btn a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 159px;
  height: 1px;
  background: url(../img/usr/common/etc/bdr_blue_dashed_sp.png) center no-repeat;
  background-size: contain;
}

.block-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.block-sns-list li + li {
  margin-left: 10.67vw;
}

.block-sns-list img {
  max-width: 70px !important;
}

.block-bottom-category {
  padding: 40px 10px;
}

.block-bottom-category-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.block-bottom-category-tab > div {
  position: relative;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  font-size: 1.8rem;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
}

.block-bottom-category-tab > div + div {
  margin-left: 10.67vw;
}

.block-bottom-category-tab-men {
  color: #002A46;
}

.block-bottom-category-tab-ladies {
  color: #002A46;
}

.block-bottom-category-tab > div::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  -webkit-transition: .12s ease;
  transition: .12s ease;
}

.block-bottom-category-tab-men.is-active::after {
  background-color: #002A46;
}

.block-bottom-category-tab-ladies.is-active::after {
  background-color: #002A46;
}

.block-bottom-category-target {
  margin-top: 24px;
}

.block-bottom-category-target > div {
  display: none;
}

.block-bottom-category-target > div.is-active {
  display: block;
}

.block-bottom-category-target .nav-list .nav-1st-item > .nav-name a {
  font-weight: bold;
}

.block-search-conditions {
  margin-top: 6px;
  padding: 0 10px;
}

.block-search-conditions ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -16px 0 0;
}

.block-search-conditions li {
  margin: 0 16px 0 0;
  font-size: 1.4rem;
}

.block-item_list-sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-top: 24px;
  padding: 0 10px;
}

.block-item_list-search_detail,
.navisort_ {
  width: calc((100% - 1px) / 2);
  margin: 0;
  padding: 0;
  border: 0;
}

.block-item_list-search_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 44px;
  padding: 0 16px;
  background-color: #002A46;
  color: #fff;
}

.block-item_list-search_detail p {
  font-size: 1.4rem;
}

.block-item_list-search_detail .block-switch {
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 12px;
  height: 12px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.block-item_list-search_detail .block-switch::before,
.block-item_list-search_detail .block-switch::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  -webkit-transition: .12s ease;
  transition: .12s ease;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.block-item_list-search_detail .block-switch::before {
  width: 12px;
  height: 2px;
}

.block-item_list-search_detail .block-switch::after {
  width: 2px;
  height: 12px;
}

.block-item_list-search_detail.is-active .block-switch::after {
  opacity: 0;
}

.navisort_ select {
  width: 100%;
  max-width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 1px solid #002A46;
  background: url(../img/usr/common/icon/arw_selct_sp.png) center right 16px no-repeat;
  background-size: 11px 6px;
  color: #002A46;
  font-size: 1.4rem;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.navisort_ select::-ms-expand {
  display: none;
}


.block-search_detail-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

.block-search_detail-container > form {
  display: block;
}

.block-search_detail-body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 50px;
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.block-search_detail-body.body-hidden {
  left: -100%;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}

.block-search_detail-body.body-hidden.is-active {
  left: 0;
}

.block-search_detail-body-inner {
  overflow-y: auto;
}

.block-search_detail-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 64px;
}

.block-search_detail-ttl h2 {
  font-size: 1.8rem;
  color: #002A46;
}

.block-search_detail-back {
  position: absolute;
  top: 50%;
  left: 20px;
  color: #002A46;
  font-size: 1.4rem;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.block-search_detail-back::before {
  content: '';
  display: inline-block;
  position: relative;
  top: 1px;
  width: 6px;
  height: 11px;
  margin-right: 10px;
  background: url(../img/usr/common/icon/arw_navy_search_detail.png) center no-repeat;
  background-size: contain;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.block-search_detail-content {
  width: 100%;
  margin-top: 16px;
  padding: 0 10px;
}

.block-search_detail-mysize p {
  font-size: 1.4rem;
}

.block-search_detail-mysize select {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 40px;
  margin: 3px 0 0;
  padding: 0 20px 0 10px;
  border: 1px solid #DDDEDE;
  border-radius: 4px;
  background: url(../img/usr/common/icon/arw_select_black.png) center right 16px no-repeat;
  background-size: 7px 6px;
  color: #333;
  font-size: 1.4rem;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.navisort_ select::-ms-expand {
  display: none;
}

.block-search_detail-list {
  margin-top: 24px;
}

.block-search_detail-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: 48px;
  padding: 10px 44px 10px 16px;
  border-bottom: 1px solid #DDDEDE;
}

.block-search_detail-list-item.item-price {
  padding-right: 0;
}

.block-search_detail-list-item:not(.item-price)::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 6px;
  height: 11px;
  background: url(../img/usr/common/icon/arw_navy_search_detail.png) center no-repeat;
  background-size: contain;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.block-search_detail-list-ttl {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 85px;
  font-size: 1.6rem;
  font-weight: bold;
}

.block-search_detail-list-condition {
  width: calc(100% - 100px);
  color: #999999;
  font-size: 1.4rem;
  font-family: futura-pt, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.block-search_detail-list-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 234px;
  font-size: 1.4rem;
}

.block-search_detail-list-price input[type='text'] {
  width: 100px;
  height: 40px;
  margin: 0;
  padding: 0 10px;
  border: 1px solid #DDDEDE;
  border-radius: 4px;
  font-size: 1.4rem;
  font-family: futura-pt, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.block-search_detail-regist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  text-align: center;
}

.block-search_detail-regist input {
  display: none;
}

.block-search_detail-regist label {
  display: block;
  position: relative;
  padding-left: 34px;
  font-size: 1.4rem;
}

.block-search_detail-regist label::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #E5E9EC;
  border-radius: 2px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.block-search_detail-regist label::after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 7px;
  width: 10px;
  height: 16px;
  border-right: 3px solid #333;
  border-bottom: 3px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: .1s ease;
  transition: .1s ease;
}

.block-search_detail-regist input:checked + label::after {
  opacity: 1;
}

.block-search_detail-btns {
  margin-top: 16px;
}

.block-search_detail-btns > div + div {
  margin-top: 24px;
}

.block-search_detail-submit > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #002A46;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}

.block-search_detail-clear > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #333;
  font-size: 1.4rem;
  text-align: center;
}

.block-search_detail-clear > button::before {
  content: '';
  display: inline-block;
  position: relative;
  top: 0;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background: url(../img/usr/common/icon/icon_blue_close_sp.png) center no-repeat;
  background-size: contain;
}

.block-search_detail-text-list-items,
.block-search_detail-img-list-items,
.block-search_detail-color-list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.block-search_detail-color-list-items {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.block-search_detail-text-list-item,
.block-search_detail-img-list-item {
  width: calc((100% - 8px) / 3);
}

.block-search_detail-color-list-item {
  width: calc((100% - 4px) / 2);
}

.block-search_detail-text-list-item:not(:nth-child(3n)),
.block-search_detail-img-list-item:not(:nth-child(3n)) {
  margin-right: 4px;
}

.block-search_detail-text-list-item:not(:nth-child(-n+3)),
.block-search_detail-img-list-item:not(:nth-child(-n+3)) {
  margin-top: 4px;
}

.block-search_detail-color-list-item:not(:nth-child(-n+2)) {
  margin-top: 4px;
}

.block-search_detail-text-list-item > input,
.block-search_detail-img-list-item > input,
.block-search_detail-color-list-item > input {
  display: none;
}

.block-search_detail-text-list-item > label,
.block-search_detail-img-list-item > label {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 32px;
  color: #002A46;
  font-size: 1.2rem;
  font-family: futura-pt, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.block-search_detail-img-list-item > label {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 150px;
  padding: 10px 10px 0;
}

.block-search_detail-color-list-item > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 10px;
}

.block-search_detail-text-list-item > label::before,
.block-search_detail-img-list-item > label::before,
.block-search_detail-color-list-item > label::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #DDDEDE;
  -webkit-transition: .1s ease;
  transition: .1s ease;
}

.block-search_detail-text-list-item > input:checked + label::before,
.block-search_detail-img-list-item > input:checked + label::before,
.block-search_detail-color-list-item > input:checked + label::before {
  border: 2px solid #002A46;
}

.block-search_detail-img-list-item .list-img img {
  width: 100%;
}

.block-search_detail-img-list-item .list-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 38px;
  text-align: center;
  line-height: 1.4;
}

.block-search_detail-color-list-item .list-img {
  width: 30px;
}

.block-search_detail-color-list-item .list-img img {
  width: 30px;
  height: 30px;
}

.block-search_detail-color-list-item .list-txt {
  width: calc(100% - 30px);
  padding-left: 10px;
  color: #002A46;
  font-size: 1.2rem;
}

.block-search_detail-annotation {
  margin-top: 20px;
  font-size: 1.2rem;
}

.block-search_detail-vert-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}

.block-search_detail-img-list + .block-search_detail-vert-btns,
.block-search_detail-color-list + .block-search_detail-vert-btns {
  margin-top: 40px;
}

.block-search_detail-vert-clear > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 110px;
  height: 56px;
  border: 1px solid #002A46;
  background-color: #fff;
  color: #002A46;
  font-size: 1.8rem;
  font-weight: bold;
}

.block-search_detail-vert-select {
  width: calc(100% - 125px);
}

.block-search_detail-vert-select > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border: 0;
  background-color: #002A46;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}

.block-search_detail-img-list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.block-item_list-other-category {
  padding: 0 10px;
}

.block-item_list-other-category-item {
  margin-top: 36px;
}

.block-item_list-other-category-item-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 16px;
  background-color: #002A46;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

/* --　スクロールバー------- */

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 8px;
  margin: 7px 0;
  border-radius: 8px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #889DAB;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  height: 8px;
  border-radius: 8px;
}

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #F0F1F2;
}

/******************** スマホ版グローバルメニュー - 画像付きレイアウト251126_ *******************************/

/* 親カテゴリの基本レイアウト */
.nav-1st-item .nav-name {
  display: flex;
  align-items: center;
  padding: 1vw 0.5vw 1vw 3.5vw;
  min-height: 60px;
}

/* 画像のスタイル */
.nav-1st-item .nav-name img {
  width: 10%!important;
  height: 100%!important;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  margin-right: 12px;
}

/* リンクテキストのスタイル */
.nav-1st-item .nav-name a {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #333;
  text-decoration: none;
}

/* 展開アイコンの配置調整 */
.nav-1st-item .nav-name .icon-switch {
  margin-left: auto;
  padding-left: 10px;
  flex-shrink: 0;
}

/* 画像がある項目の調整 */
.nav-1st-item .nav-name.js-nav-switch-parent {
  display: flex;
  align-items: center;
  position: relative;
}

/* 見出し項目（画像なし）の調整 */
.nav-1st-item .nav-name[style*="font-weight: bold"] {
  display: block;
  padding: 1vw 10vw 1vw 4.27vw;
}

/* ホバー・タップ時のエフェクト */
.nav-1st-item .nav-name:active {
  background-color: #f5f5f5;
}

/* 子カテゴリのスタイル（画像なし） */
.nav-2nd {
  background-color: #fafafa;
}
.nav-2nd-item .nav-name {
  padding: 0.5vw 4.27vw 0.5vw 7vw; /* 上下のpaddingを1vwから0.5vwに削減 */
  display: block;
  min-height: 40px; /* 最小高さを設定してタップしやすさを確保 */
  display: flex;
  align-items: center; /* 縦方向の中央揃え */
}
.nav-2nd-item .nav-name a {
  font-size: 1.4rem;
  color: #666;
  text-decoration: none;
  display: block;
  line-height: 1.3; /* 行間を調整 */
}

/* レスポンシブ調整（大きめのスマホ） */
@media screen and (min-width: 375px) {
  .nav-1st-item .nav-name img {
    width: 55px;
    height: 55px;
  }
  
  .nav-1st-item .nav-name a {
    font-size: 1.65rem;
  }
}

/* レスポンシブ調整（小さめのスマホ） */
@media screen and (max-width: 360px) {
  .nav-1st-item .nav-name img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
  
  .nav-1st-item .nav-name a {
    font-size: 1.5rem;
  }
}