@charset "euc-jp";
:root {
    --color-pink01: #EB6EA5;
    --color-pink02: #FFE1EE;
}

body {
  background-color: #FFFFFF;
  background-image: url(https://img.shop-pro.jp/tmpl_img/73/bg.gif);
  color: #000000;
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0.01em;
}
.main {
    background: #F5F5F5;
    margin-top: 170px;
}
.container-1200 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.container-1100 {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
.container-1000 {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
    opacity: 0.8;
    color: inherit;
    text-decoration: none;
}
a:focus {
    opacity: 0.8;
    color: inherit;
}
button:hover {
  opacity: 0.8;
}
.font-family-en {
  font-family: "Lato";
  font-weight: 700;
}
ul{
    padding-left:0;
    margin: 0;
}

li{
    list-style:none;
}

/*
 * header
 */
.header {
    position: fixed;
    z-index: 1000;
    background: #fff;
    top: 0;
    width: 100%;
}
.header__top {
    background: var(--color-pink02);
    height: 70px;
    padding-right: 3vw;
    padding-left: 3vw;
}
.header__top-inner {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    height: 100%;
}
.header__info-text {
    margin-bottom: 0;
    font-size: 11px;
    max-width: calc(100% - 560px);
}
.header__top-link {
    background: var(--color-pink01);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    padding-left: min(4vw, 40px);
    padding-right: min(4vw, 40px);
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header__top-link:hover {
  color: #fff;
}
.header__bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 23px;
    padding-bottom: 24px;
    position: relative;
}
.header__bottom-right {
    display: flex;
    gap: 21px;
    align-items: center;
}
.header__logo {
    width: 209px;
    height: 53px;
}
.header__search {
    position: relative;

}
.header__search form {
    margin-bottom: 0;
}
.header__search input[type="text"] {
    border: none;
    border-radius: 0;
    border-bottom: 0.5px solid black;
    width: 211px;
    padding: 9px 0 14px;
}
.header__search input[type="text"]::placeholder {
    color: #B5B5B5;
}

.header__search-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
    height: 29px;
}
.header__cart-icon {
    width: 29px;
    height: 29px;
}
.header__category-toggle {
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header__category-toggle-icon {
    background: var(--color-pink01);
    width: 24px;
    height: 24px;
    display: block;
    border-radius: 9999px;
    position: relative;
}
.header__category-toggle-icon::before {
    content: "";
    margin: auto;
    position: absolute;
    left: 50%;
    top: 9px;
    width: 3px;
    height: 3px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateX(-50%) rotate(135deg);
}
.header__category {
    display: none;
    background: #fff;
    width: 100%;
}
.header__category.active {
    display: block;
    opacity: 1;
    visibility: visible;
}
.header__category h2 {
    text-align: center;
    margin-bottom: 45px;
    font-weight: 500;
    margin-top: 0;
}
.header__category a {
    color: #000;
}
.header__category-inner {
    width: 100%;
    max-width: 783px;
    margin: 35px auto 108px;
}


/*
 * component
 */
.category-list {
   display: flex;
}
.category-list.category-list--pc {
    flex-wrap: wrap;
    gap: 50px 3%;
}
.category-list.category-list--sp {
  flex-wrap: wrap;
  gap: 15px;
}
.category-list li {
  text-align: center;
}
.category-list.category-list--pc li {
    width: calc(85% / 6);
}
.category-list.category-list--sp li {
  width: 54px;
}
.category-list__img-wrap {
    border-radius: 9999px;
    background: #DBDBDB;
    overflow: hidden;
}
.category-list__img-wrap--pc {
  width: 104px;
  height: 104px;
  margin-bottom: 30px;
}
.category-list__img-wrap--sp {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
}
.category-list__img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section__title {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 50px;
  text-align: center;
  margin-top: 0;
}
.card-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 33px 3%;
  margin-bottom: 65px;
}
.card-list .card-list__item {
  width: 22.75%;
}
.card-list .card-list__img {
  aspect-ratio: 250 / 250;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #FFFFFF;
}
.card-list .card-list__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card-list .card-list__price-wrap {
  font-size: 17px;
  flex-grow: 1; 
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.card-list__sold-out {
  margin-bottom: 0;
  color: var(--color-pink01);
  border: 1px solid var(--color-pink01);
  width: 100%;
  text-align: center;
}
.card-list .tax-included {
  color: #939393;
  font-size: 11px;
  display: inline-block;
  margin-left: 5px;
  line-height: 20.7px;
}
.card-list__text {
  background: #fff;
  padding: 20px 11px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.card-list__tag {
  margin-bottom: 16px;
}
.card-list__tag .tag-enabled {
  background: #1FBB00;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: bold;
  padding: 8px 11px;
  border-radius: 2px;
  display: inline-block;
}
.card-list__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
/*
* card-list--small
*/
.card-list.card-list--small {
  flex-wrap: inherit;
  justify-content: inherit;
  gap: 12px;
  margin-bottom: 0;
}
.card-list.card-list--small .card-list__item {
  width: 19.2%;
  margin-right: 0!important;
}
.card-list.card-list--small .card-list__img {
  aspect-ratio: 209 / 209;
}
.card-list.card-list--small .card-list__price-wrap {
  font-size: 17px;
  flex-grow: 1; 
}
.card-list.card-list--small .tax-included {
  font-size: 10px;
}
.card-list.card-list--small .card-list__text {
  background: #fff;
  padding: 15px 9px;
}
.card-list.card-list--small .card-list__tag {
  margin-bottom: 8px;
}
.card-list.card-list--small .card-list__tag .tag-enabled {
  font-size: 10px;
  padding: 5px 6.5px;
}

.more-button {
  text-align: center;
}
.more-button__text {
  color: var(--color-pink01);
  background-color: #FFFFFF;
  border: solid 2px var(--color-pink01);
  padding: 22px 69px;
  border-radius: 50px;
  font-weight: bold;
  position: relative;
}
.more-button__text:hover{
  color: var(--color-pink01);
}
.more-button__text:after {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--color-pink01);
  content: '';
  top: 50%;
  right: 33px;
  transform: translateY(-50%);
}

.product-list {
  padding-top: 130px;
}
.product-list__sort {
  color: var(--color-pink01)
}
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pagination-container .pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 352px;
}
.pagination .bx-next,
.pagination .bx-prev {
    background: none;
    position: relative;
    width: 36px;
    height: 36px;
    display: inline-block;
}
.pagination .bx-next::before,
.pagination .bx-next::after,
.pagination .bx-prev::before,
.pagination .bx-prev::after {
  position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.pagination .bx-next::before,
.pagination .bx-prev::before {
    box-sizing: border-box;
	width: 36px;
	height: 36px;
	border: 1px solid var(--color-pink01);
	-webkit-border-radius: 50%;
	border-radius: 50%;
    background: #fff;
}
.pagination .bx-next::after,
.pagination .bx-prev::after {
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--color-pink01);
	border-right: 2px solid var(--color-pink01);
}
.pagination .bx-prev::after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    left: 42%;
    top: 5%;
}
.pagination .bx-next::after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  left: 36%;
  top: 5%;
}
.pagination .bx-next {
    right: 0;
}
.pagination .bx-prev {
    left: 0;
}
.pagination .bx-next.disabled,
.pagination .bx-next.disabled {
    opacity: .5;
}
.pagination .bx-prev.disabled,
.pagination .bx-prev.disabled {
    opacity: .5;
}

.history .bx-wrapper {
  max-width: 1200px!important;
  margin-bottom: 0;
}
.history .bx-wrapper .bx-viewport {
  border: none;
  background: none;
  box-shadow: inherit;
  max-width: 1100px!important;
  margin: 0 auto;
  left: 0;
  height: fit-content!important;
  overflow-y: visible!important;
  width: 92% !important;
}
.history .bx-pager.bx-default-pager {
  display: none;
}

/* ここからテスト用 */
.history .bx-controls.bx-has-pager.bx-has-controls-direction {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.history .bx-controls-direction {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bx-wrapper .bx-next,
.bx-wrapper .bx-prev {
  background: none!important;
  position: relative;
  width: 36px!important;
  height: 36px!important;
  display: inline-block;
  z-index: 999!important;
}
.bx-wrapper .bx-next::before,
.bx-wrapper .bx-next::after,
.bx-wrapper .bx-prev::before,
.bx-wrapper .bx-prev::after {
  position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.bx-wrapper .bx-next::before,
.bx-wrapper .bx-prev::before {
  box-sizing: border-box;
	width: 36px;
	height: 36px;
	border: 1px solid var(--color-pink01);
	-webkit-border-radius: 50%;
	border-radius: 50%;
  background: #fff;
}
.bx-wrapper .bx-next::after,
.bx-wrapper .bx-prev::after { 
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--color-pink01);
	border-right: 2px solid var(--color-pink01);
}
.bx-wrapper .bx-prev::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  left: 43%;
  top: 4%;
}
.bx-wrapper .bx-next::after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  left: 34%;
  top: 3%;
}
.history .bx-wrapper .bx-next {
  right: 0;
}
.history .bx-wrapper .bx-prev {
  left: 0;
}


.footer {
  background-color: #FFFFFF;
  padding-top: 60px;
  padding-bottom: 30px;
}
.footer__logo {
  width: 209px;
  height: 53px;
}
.footer__logo-sp {
  display: none;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}
.footer__top-list {
  display: flex;
}
.footer__top-list li img {
  width: 20px;
  height: 20px;
}
.footer__top-list li:not(:last-child) {
  margin-right: 45px;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 10px;
}
.footer__bottom-list {
  display: flex;
  font-weight: bold;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px 0;
}
.footer__bottom-list .vertical-bar {
  margin: 0 6px;
}
.footer__bottom-copyright {
  font-weight: 500;
}
.category-list.category-list--sp {
  overflow-x: scroll;
  flex-wrap: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-left: 15px;
  padding-right: 15px;
}
.category-list.category-list--sp::-webkit-scrollbar {
  display: none;
}
.category-list.category-list--sp li {
  font-size: 10px;
  font-weight: 400;
}
.top-category {
  display: none;
}

/*
 * レスポンシブ
 */
.header__logo-sp,
.header__search-toggle-icon-sp,
.header__search-sp,
.hamburger-menu__button,
.hamburger-menu {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header__top-inner {
    justify-content: flex-start;
}
  .header__info-text {
      max-width: calc(100% - 280px);
  }
}
@media screen and (max-width: 767px) {
  .main {
    margin-top: 114px;
  }
  .header__top {
    padding: 11px 18px;
    height: inherit;
  }
  .header__info-text {
    max-width: 100%;
  }
  .header__logo-link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header__logo-sp {
    width: 78px;
    display: block;
  }
  .header__search-toggle-icon-sp {
    width: 29px;
    display: block;
  }
  .header__search-sp {
    position: absolute;
    background: #FFFFFF;
    text-align: center;
    top: 114px;
    width: 100%;
    z-index: 9999;
    transition: all 0.5s;
    opacity: 0;
    display: block;
  }
  .header__search-sp.is-show {
    opacity: 1;
  }
  .header__search-sp form {
    margin: 0;
    padding: 10px;
    position: relative;
  }
  .header__search-sp input[type="text"] {
    border: none;
    border-radius: 0;
    border-bottom: 0.5px solid black;
    width: 100%;
    padding: 9px 0 12px;
  }
  .header__search-sp input[type="text"]::placeholder {
    color: #B5B5B5;
  }
  .header__search-icon-sp {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
    height: 29px;
  }
  .header__bottom {
    border-bottom: 1px solid #EBEBEB;
    padding-top: 12px;
    padding-bottom: 13px;
  }
  .header__bottom-right {
    gap: 5px;
    padding-right: 20px;
  }
  .header__logo,
  .header__search,
  .header__myaccount,
  .header__top-link,
  .header__category-toggle {
    display: none;
  }
  .hamburger-menu__button {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
  }
  .hamburger-menu__bar {
    display: inline-block;
    height: 1px;
    background: #414141;
    position: absolute;
    transform: translateX(-50%);
    transition: .5s;
  }
  .hamburger-menu__bar:first-child {
    top: 16px;
    left: 23px;
    width: 11px;
  }
  .hamburger-menu__bar:nth-child(2) {
    top: 24px;
    left: 25px;
    width: 16px;
  }
  .hamburger-menu__bar:last-child {
    top: 32px;
    left: 28px;
    width: 23px;
  }
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateY(4px);
    top: 20px;
    left: 18px;
    width: 16px;
  }
  .hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateY(-4px);
    top: 28px;
    left: 18px;
    width: 16px;
  }
  .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }
  .hamburger-menu {
    display: none;
    background: #FFFFFF;
    position: absolute;
    top: 130px;
    width: 100%;
    z-index: 9999;
    max-height: calc(100vh - 168px);
    max-height: calc(100dvh - 168px);
    overflow-y: scroll;
  }
  .hamburger-menu__list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .hamburger-menu__list-item,
  .hamburger-menu__sublist-item {
    border-bottom: solid 1px #EBEBEB;
  }
  .hamburger-menu__list-item:first-child,
  .hamburger-menu__sublist-item:first-child {
    border-top: solid 1px #EBEBEB;
  }
  .hamburger-menu__list-item:last-child {
    background-color: #FFE1EE;
  }
  .hamburger-menu__list-item.auth-button {
    background-color: #F5F5F5;
  }
  .hamburger-menu__list-item.auth-button > a {
    padding: 25px 48px;
    width: 225px;
    display: block;
    margin: 26px auto;
    background-color: #EB6EA5;
    color: #FFFFFF;
    border-radius: 50px;
  }
  .hamburger-menu__list-item.auth-button > a.logout {
    background-color: #808080;
  }
  .hamburger-menu__link,
  .hamburger-menu__link:hover {
    color: #EA93D3;
    font-weight: 700;
    text-decoration: none;
    display: block;
    padding: 24px 0;
  }
  .hamburger-menu__sublist-wrap {
    display: none;
  }
  .hamburger-menu__sublist {
    background-color: #F5F5F5;
    list-style: none;
    text-align: left;
  }
  .hamburger-menu__sublist-item > a {
    color: #EB6EA5;
    display: block;
    padding-left: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  #js-hamburger-menu-category::after{
    content: '';
    display: block;
    border-right: 2px solid #EA93D3;
    border-top: 2px solid #EA93D3;
    position: absolute;
    top: 50%;
    right: 27px;
    transform: translate(0, -50%) rotate(135deg);
    transition: .3s .3s;
    width: 8px;
    height: 8px;
  }
  .hamburger-menu__list-item #js-hamburger-menu-category,
  .hamburger-menu__sublist-item {
    position: relative;
  }
  #js-hamburger-menu-category.is-open::after {
    transform: translate(0,-50%) rotate(-45deg);
  }
  .hamburger-menu__sublist-item > a::after {
    content: '';
    display: block;
    border-right: 2px solid #EA93D3;
    border-top: 2px solid #EA93D3;
    position: absolute;
    top: 50%;
    right: 27px;
    transform: translate(0, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
  }
  .section {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .section.history {
    padding-top: 70px;
  }
  .product-list {
    padding-top: 50px;
  }
  .top-category {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .top-category.underpage {
    padding-top: 70px;
    padding-bottom: 30px;
  }
  .section__title {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1;
  }
  .top-category .section__title {
    margin-bottom: 20px;
  }
  .card-list {
    gap: 0;
    margin-bottom: 30px;
  }
  .card-list .card-list__item {
    width: 50%;
  }
  .card-list .card-list__img {
    aspect-ratio: 188 / 205;
    width: 100%;
  }
  .card-list .card-list__price-wrap {
    font-size: 14px;
    flex-grow: 1; 
  }
  .card-list .tax-included {
    font-size: 8px;
  }
  .card-list__text {
    padding: 16px 8px 24px;
  }
  .card-list__tag {
    margin-bottom: 12px;
  }
  .card-list__tag .tag-enabled {
    font-size: 10px;
    padding: 4px 6px 3px;
  }
  .more-button__text {
    font-size: 14px;
    display: inline-block;
  }
  .card-list.card-list--small {
    gap: 8px;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-left: 8px;
  }
  .card-list.card-list--small::-webkit-scrollbar {
    display: none;
  }
  .card-list.card-list--small .card-list__item {
    min-width: 155px;
  }
  .card-list.card-list--small .card-list__img {
    aspect-ratio: 155 / 155;
  }
  .card-list.card-list--small .card-list__text {
    display: none;
  }
  .footer {
    padding-bottom: 14px;
  }
  .footer__logo {
    display: none;
  }
  .footer__logo-sp {
    display: block;
    width: 78px;
    height: 50px;
  }
  .footer__top {
    justify-content: center;
    flex-direction: column;
    gap: 20px 0;
    margin-bottom: 25px;
  }
  .footer__top-list {
    gap: 15px;
  }
  .footer__top-list li:not(:last-child) {
    margin-right: 0;
  }
  .footer__top-list li a {
    background: #F5F5F5;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50px;
  }
  .footer__bottom {
    font-size: 8px;
  }
  .footer__bottom-list {
    width: 70%;
    gap: 10px 0;
    margin-bottom: 52px;
  }
  .pagination-container .pagination {
    width: 288px;
  }
}



/*
 * 以下テンプレートデフォルトCSS
 */
/*
 * layout
 */

/*
 * contents
 */

#contents {
  float: right;
  padding-left: 30px;
}

#contents .topicpath-nav {
  margin-bottom: 5px;
}
  #contents .topicpath-nav li {
    padding: 0;
  }
  #contents .topicpath-nav a {
    margin-left: 5px;
  }

/*
 * side
 */

#side .unstyled img {
  display: block;
  margin-bottom: 5px;
}

/*
 * temp
 */

/* font */
.txt_l { text-align: left; }
.txt_c { text-align: center; }
.txt_r { text-align: right; }
.txt_fwn { font-weight: normal; }
.txt_fwb { font-weight: bold; }
.txt_10 { font-size: 10px; }
.txt_12 { font-size: 12px; }
.txt_14 { font-size: 14px; }
.txt_16 { font-size: 16px; }
.txt_18 { font-size: 18px; }
.txt_20 { font-size: 20px; }
.txt_24 { font-size: 24px; }
.txt_28 { font-size: 28px; }
.txt_c_333 {color: #333;}

/* background */
.bgc_gray {
  background-color: #f1f1f1;
}
.bgc_white {
  background-color: #FFFFFF;
}

/* margin */
.mar_auto { margin: 0 auto; }
.mar_0 { margin: 0; }
.mar_t_0 { margin-top: 0; }
.mar_r_0 { margin-right: 0; }
.mar_b_0 { margin-bottom: 0; }
.mar_l_0 { margin-left: 0; }
.mar_5 { margin: 5px; }
.mar_t_5 { margin-top: 5px; }
.mar_r_5 { margin-right: 5px; }
.mar_b_5 { margin-bottom: 5px; }
.mar_l_5 { margin-left: 5px; }
.mar_t_10 { margin-top: 10px; }
.mar_r_10 { margin-right: 10px; }
.mar_b_10 { margin-bottom: 10px; }
.mar_l_10 { margin-left: 10px; }
.mar_t_20 { margin-top: 20px; }
.mar_r_20 { margin-right: 20px; }
.mar_b_20 { margin-bottom: 20px; }
.mar_l_20 { margin-left: 20px; }
.mar_t_30 { margin-top: 30px; }
.mar_r_30 { margin-right: 30px; }
.mar_b_30 { margin-bottom: 30px; }
.mar_l_30 { margin-left: 30px; }
.mar_t_50 { margin-top: 50px; }
.mar_r_50 { margin-right: 50px; }
.mar_b_50 { margin-bottom: 50px; }
.mar_l_50 { margin-left: 50px; }
.mar_b_90 { margin-bottom: 90px; }

/* padding */
.pad_v_10 { padding: 10px 0; }
.pad_v_20 { padding: 20px 0; }
.pad_v_30 { padding: 30px 0; }
.pad_0 { padding: 0; }
.pad_t_0 { padding-top: 0; }
.pad_r_0 { padding-right: 0; }
.pad_b_0 { padding-bottom: 0; }
.pad_l_0 { padding-left: 0; }
.pad_5 { padding: 5px; }
.pad_t_5 { padding-top: 5px; }
.pad_r_5 { padding-right: 5px; }
.pad_b_5 { padding-bottom: 5px; }
.pad_l_5 { padding-left: 5px; }
.pad_10 { padding: 10px; }
.pad_t_10 { padding-top: 10px; }
.pad_r_10 { padding-right: 10px; }
.pad_b_10 { padding-bottom: 10px; }
.pad_l_10 { padding-left: 10px; }
.pad_20 { padding: 20px; }
.pad_t_20 { padding-top: 20px; }
.pad_r_20 { padding-right: 20px; }
.pad_b_20 { padding-bottom: 20px; }
.pad_l_20 { padding-left: 20px; }
.pad_30 { padding: 30px}
.pad_t_30 { padding-top: 30px; }
.pad_r_30 { padding-right: 30px; }
.pad_b_30 { padding-bottom: 30px; }
.pad_l_30 { padding-left: 30px; }

/* border */
.bor_t_1 { border-top: 1px solid #eee; }
.bor_r_1 { border-right: 1px solid #eee; }
.bor_b_1 { border-bottom: 1px solid #eee; }
.bor_l_1 { border-left: 1px solid #eee; }

/* vertical align */
.va-10 { vertical-align: -10%; }
.va-20 { vertical-align: -20%; }
.va-30 { vertical-align: -30%; }
.va-35 { vertical-align: -35%; }
.va-40 { vertical-align: -40%; }

@media (max-width: 980px) {
  /* ~980px */
  #base_gmoWrapp,
  #gmo_CMSPbar {
    overflow: hidden;
    min-width: 100% !important;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  /* ~768px */
  #contents {
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  /* ~480px */
}

/*
 * icons
 */
.icon-user { background-position: -208px 0px; }
.icon-lg-b.icon-user { background-position: -312px 0px; }
.icon-adduser { background-position: -240px 0px; }
.icon-lg-b.icon-adduser { background-position: -360px 0px; }
.icon-login { background-position: -48px -80px; }
.icon-lg-b.icon-login { background-position: -72px -120px; }
.icon-logout { background-position: -32px -80px; }
.icon-lg-b.icon-logout { background-position: -48px -120px; }
.icon-home { background-position: -176px -16px; }
.icon-lg-b.icon-home { background-position: -264px -24px; }
.icon-mail { background-position: -64px 0px; }
.icon-lg-b.icon-mail { background-position: -96px 0px; }
.icon-pencil { background-position: -96px 0px; }
.icon-lg-b.icon-pencil { background-position: -144px 0px; }
.icon-help { background-position: -272px -80px; }
.icon-lg-b.icon-help { background-position: -408px -120px; }
.icon-cart { background-position: -176px -64px; }
.icon-lg-b.icon-cart { background-position: -264px -96px; }
.icon-search { background-position: -208px -16px; }
.icon-lg-b.icon-search { background-position: -312px -24px; }
.icon-chevron_up { background-position: -0px -144px; }
.icon-lg-b.icon-chevron_up { background-position: -0px -216px; }
.icon-chevron_down { background-position: -352px -128px; }
.icon-lg-b.icon-chevron_down { background-position: -528px -192px; }
.icon-twitter { background-position: -96px -176px; }
.icon-lg-b.icon-twitter { background-position: -144px -264px; }
.icon-instagram { background-position: -112px -192px; }
.icon-lg-b.icon-instagram { background-position: -168px -288px; }
.icon-facebook { background-position: -128px -176px; }
.icon-lg-b.icon-facebook {background-position: -192px -264px; }
.icon-youtube { background-position: -128px -160px; }
.icon-lg-b.icon-youtube { background-position: -191px -240px; }

.icon-b,
.icon-w {
  width: 16px;
  height: 16px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.icon-lg-b,
.icon-lg-w {
  width: 24px;
  height: 24px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

.icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_b.png); }
.icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_w.png); }
.icon-lg-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_b.png); }
.icon-lg-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_w.png); }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .icon-b,
  .icon-w {
    -webkit-background-size: 368px 320px;
    background-size: 368px 320px;
  }

  .icon-lg-b,
  .icon-lg-w {
    -webkit-background-size: 552px 480px;
    background-size: 552px 480px;
  }

  .icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_2x_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_2x_w.png); }
  .icon-lg-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png); }
  .icon-lg-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_w.png); }
}
@media (max-width: 768px) {
  .icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_w.png); }
}
@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min--moz-device-pixel-ratio: 2), only screen and (max-width: 768px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (max-width: 768px) and (min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min-resolution: 192dpi), only screen and (max-width: 768px) and (min-resolution: 2dppx) {
  .icon-b { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_b.png); }
  .icon-w { background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_2x_w.png); }
}
