@charset "euc-jp";
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*image-rendering: -webkit-crisp-edges;*/
}

body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "ＭＳ 明朝", "MS Mincho", "HGS明朝E", "メイリオ", serif;
  background-color: #fff;
  color: #000;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}

a {
  color: #000;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:focus {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #960014;
  text-decoration: none;
}

.btn {
  border-radius: 0;
}

ul, ol, form, p {
  margin: 0;
}

sub, sup {
  font-size: 60%;
}

sup {
  top: -0.3em;
}

/*
 * layout
 */
.container {
  width: 94.66%;
  max-width: 1200px;
  margin: 0 auto;
}

/* header */
.promo {
  background: #1a1a43;
}
.promo__seciton {
  background-color: #1a1a43;
  width: 100%;
  min-height: 49px;
}
.promo__text {
  color: #fff;
  text-align: center;
  padding: 14px 0;
  letter-spacing: 1px;
  font-weight: bold;
  background: #1a1a43;
}

#header {
  position: relative;
}

.js-fixed-header {
  position: absolute !important;
  z-index: 1000;
  top: 0;
  width: 100%;
  transition: transform .2s;
  transform: translateY(0%);
}
.js-fixed-header.is-fixed {
  position: fixed !important;
  -ms-filter: "alpha(opacity=90)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  background-color: white;
  background: rgba(255, 255, 255, 0.9);
  zoom: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.js-fixed-header.is-hidden {
  transform: translateY(-100%);
}
.js-fixed-header.is-top {
  position: absolute;
  box-shadow: none;
}

.header__section {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.header__logo {
  margin: 0;
}
.header__logo-img {
  margin: 0;
}

.header-navs {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
}

.header-gnavi {
  list-style-type: none;
  position: static;
}
.header-gnavi__unit {
  display: inline-block;
  position: static;
}
.header-gnavi__link {
  padding: 20px 10px;
  position: relative;
  font-size: 14px;
}
.header-gnavi__link i.icon {
  width: 1.28571429em;
  text-align: center;
  font-size: 14px;
  line-height: .75em;
  vertical-align: -10%;
  margin-left: 5px;
}
.header-gnavi__link::after {
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -25px;
  content: '';
/*  transition: .2s;*/
  opacity: 0;
  border-width: 12px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.5);
  transition: opacity .05s linear 0s, margin-bottom .2s linear 0s;
  /*transition: opacity .3s linear .05s;*/
  margin-bottom: 4px;
}
.header-gnavi__link.header-gnavi__link--menu::after {
  opacity: 1;
  margin-bottom: 0;
}
.header-gnavi__unit--menu .mega-navi {
  -moz-animation: show 0.2s linear 0s;
  -webkit-animation: show 0.2s linear 0s;
  animation: show 0.2s linear 0s;
  height: auto;
  opacity: 1;
  margin-top: -46px;
}
.header-gnavi__link--menu {
  color: #960014;
}

@keyframes show {
  from {
    opacity: 0;
    height: 0;
    margin-top: -50px;
  }
  to {
    opacity: 1;
    height: auto;
    margin-top: -46px;
  }
}
.mega-navi {
  display: none;
  position: absolute;
  z-index: 50;
  right: 0;
  left: 0;
  top: 100%;
  overflow: hidden;
  width: 100%;
  height: 0;
  margin: -50px 0 0;
  -ms-filter: "alpha(opacity=50)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  background-color: black;
  background: rgba(0, 0, 0, 0.5);
  zoom: 1;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.28em;
}
.mega-navi__inner {
  list-style-type: none;
  width: 1200px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  z-index: 51;
  text-align: left;
  padding: 20px 0 20px;
  color: #fff;
}
.mega-navi__unit {
  padding: 10px;
  text-align: left;
  width: 31%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.mega-navi__link {
  display: block;
  width: 100%;
  color: #fff;
  font-weight: bold;
}
.mega-navi__link img {
  display: inline-block;
  vertical-align: middle;
  max-width: 32px;
}

.header-search {
  position: relative;
  float: left;
  margin-top: 20px;
  width: 310px;
}
.header-search i {
  position: absolute;
  top: 16px;
  left: 15px;
}
.header-search__box {
  min-width: 240px;
  padding: 15px 11px 17px 51px;
  background: none;
  border: none;
  border-radius: 3px;
  color: #333;
}
.header-search__box:focus {
  padding: 14px 10px 16px 50px;
  background: #fff;
  border: 1px solid #e5e5e5;
}

.c-overlay {
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
}
.c-overlay__icon {
  position: fixed;
  z-index: 2001;
  top: 30px;
  right: 10%;
  width: 20px;
  height: 20px;
  transform: translateX(50%);
  fill: #fff;
  color: #fff;
}
.c-overlay__icon.fa {
  font-size: 20px;
}

.state-search-form {
  display: none;
}
.state-search-form:checked ~ .close-search-form {
  z-index: 2000;
  visibility: visible;
  opacity: 1;
}

.state-drawer-nav {
  display: none;
}
.state-drawer-nav:checked ~ .close-drawer-nav {
  z-index: 2000;
  visibility: visible;
  opacity: 1;
}

.open-search-form {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
}
.open-search-form:hover i {
  color: #960014;
}

.p-search-form {
  position: fixed;
  z-index: -1;
  top: 50px;
  width: 100%;
  transition: .2s;
  transform: translateY(-200px);
  opacity: 0;
}
.p-search-form__body {
  width: 90%;
  margin: 30px auto 0;
}
.state-search-form:checked ~ .wrapper + .p-search-form {
  z-index: 10000;
  transform: none;
  opacity: 1;
}
.p-search-form__body {
  position: relative;
  display: table;
  padding-left: .5em;
  border-bottom: 2px solid #fff;
}
.p-search-form__keyword-cell {
  display: table-cell;
  width: auto;
}
.p-search-form__button-cell {
  display: table-cell;
  width: 40px;
}
.p-search-form__keyword {
  font-size: 16px;
  line-height: 40px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-search-form__keyword:placeholder-shown, .p-search-form__keyword::-webkit-input-placeholder {
  color: #fff;
}
.p-search-form__keyword::-moz-placeholder {
  opacity: 1;
  color: #fff;
}
.p-search-form__keyword:-ms-input-placeholder {
  color: #fff;
}
.p-search-form__keyword:focus {
  outline: none;
}
.p-search-form__keyword:focus:placeholder-shown, .p-search-form__keyword:focus::-webkit-input-placeholder {
  color: #666;
}
.p-search-form__keyword:focus::-moz-placeholder {
  opacity: 1;
  color: #666;
}
.p-search-form__keyword:focus:-ms-input-placeholder {
  color: #666;
}
.p-search-form__button {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #fff;
  border: 0;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-search-form__button:hover, .p-search-form__button:active {
  cursor: pointer;
  opacity: .66;
}
.p-search-form__icon {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  fill: currentColor;
}

.header-tools {
  text-align: right;
  border-left: 1px solid currentColor;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: 8px;
}
.header-tools__unit {
  display: inline;
  line-height: 1.0;
}
.header-tools__unit a, .header-tools__unit label {
  color: #1a1a43;
}
.header-tools__unit a:hover, .header-tools__unit label:hover {
  color: #960014;
}
.header-tools__unit i {
  font-size: 24px;
  width: 1.28571429em;
  text-align: center;
}
.header-tools__unit-cart {
  margin-left: 21px;
}
.header-tools__btn {
  position: relative;
  padding: 7px 15px 7px 34px;
  font-size: 12px;
}
.header-tools__btn i {
  position: absolute;
  top: 9px;
  left: 6px;
  font-size: 24px;
}
.header-tools__count {
  padding: 0 2px;
  font-size: 24px;
}

@media screen and (min-width: 600px) {
  .p-search-form__body {
    max-width: 600px;
  }
}
/* sp global navi */
.sp-global-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  display: table;
  width: 100%;
  transition: transform .2s;
  transform: translateY(0%);
  background: #1a1a43;
}
.sp-global-header.is-fixed {
  position: fixed;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.sp-global-header.is-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}
.sp-global-header__unit {
  display: table-cell;
  width: 33.33333%;
  height: 50px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #fff;
}
.sp-global-header__unit:active {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.sp-global-header .p-global-header__icon {
  font-size: 26px;
}
.sp-global-header__cart {
  position: relative;
}
.sp-global-header__cart--has-item::after {
  position: absolute;
  top: -5px;
  left: 14px;
  width: 8px;
  height: 8px;
  content: '';
  border: 2px solid #fff;
  border-radius: 14px;
  background: #fd7f23;
}

.state-drawer-nav {
  display: none;
}
.state-drawer-nav:checked ~ .close-drawer-nav {
  z-index: 2000;
  visibility: visible;
  opacity: 1;
}

.open-drawer-nav {
  cursor: pointer;
}

.p-drawer-nav {
  position: fixed;
  z-index: -1;
  top: 0;
  left: -80%;
  overflow-y: scroll;
  width: 80%;
  height: 100%;
  transition: .2s;
  opacity: 0;
  background: #fff;
  padding: 10px;
  font-size: 16px;
}
.p-drawer-nav > .p-drawer__list:first-child {
  border-top: 1px solid #ccc;
}

.state-drawer-nav:checked ~ .wrapper .p-drawer-nav {
  z-index: 10000;
  left: 0;
  opacity: 1;
  box-shadow: 1px 0 5px rgba(0, 0, 0, 0.3);
}

.c-sp-list {
  border-bottom: 1px solid #ccc;
}

.p-drawer__heading {
  padding: 12px 10px;
  color: #fff;
  background: #333;
}

.p-drawer__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  background: #fff;
}
.p-drawer__list a {
  color: #333;
  display: block;
  padding: 10px 10px;
}

.p-drawer__list--freepage {
  border-bottom: 2px solid #eaeaea;
}

.js-drawer-pulldown {
  padding: 10px 10px;
  position: relative;
  font-weight: normal;
}
.js-drawer-pulldown:after {
  font-family: "entypo";
  content: '\E764';
  position: absolute;
  width: 1em;
  height: 1em;
  line-height: 1.0;
  top: 50%;
  margin-top: -0.5em;
  right: 10px;
}

.p-drawer__pulldown {
  overflow: hidden;
  box-sizing: border-box;
  height: 0;
  margin: 0;
  transition: .2s;
  opacity: 0;
  background: #f8f8f8;
}
.p-drawer__pulldown.is-opened {
  height: auto;
  opacity: 1;
}
.p-drawer__pulldown .p-drawer__list {
  background: transparent;
}

.p-global-header__icon {
  width: 28px;
  height: 28px;
  vertical-align: -.1em;
  fill: currentColor;
  font-size: 28px;
  transition: .2s;
}
.p-global-header__icon:hover {
  color: #395aa7;
}

.p-global-header__cart-icon {
  position: relative;
}

.p-global-header__cart-icon--has-item::after {
  position: absolute;
  top: -5px;
  left: 14px;
  width: 8px;
  height: 8px;
  content: '';
  border: 2px solid #fff;
  border-radius: 14px;
  background: #fd7f23;
}

@media screen and (min-width: 769px) {
  .sp-global-header, .p-drawer-nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .js-fixed-header,
  .js-fixed-height {
    display: none;
  }
  #wrapper {
    padding-top: 50px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait){
  .sp-global-header, .p-drawer-nav {
    display: table;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait){
  .js-fixed-header,
  .js-fixed-height {
    display: none;
  }
  #wrapper {
    padding-top: 50px;
  }
}
/* slider */
.slider {
  margin: 0 auto 10px;
  width: 100%;
}
.slider .bx-wrapper {
  z-index: 0;
  margin-bottom: 0;
}
.slider .bx-wrapper .bx-viewport {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  left: 0 !important;
  border: none !important;
  height: 100vh !important;
}
.slider .bx-wrapper .bx-caption {
  background: #000;
  background: rgba(0, 0, 0, 0.6);
}
.slider .bx-wrapper .bx-caption span {
  font-size: 18px;
  padding: 30px;
}
.slider .bx-wrapper .bx-pager {
  padding-top: 20px !important;
  bottom: 20px !important;
}

@media (max-width: 768px) {
  .slider .bx-wrapper .bx-pager {
    padding-top: 10px !important;
    bottom: 10px !important;
  }
}
/* main */
.main__section {
  overflow: hidden;
}
.main__section--product {
  padding: 0 0 60px;
}

.main__title {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #1a1a43;
  height: 31.25vw;
  max-height: 400px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.25em;
  position: relative;
}
.main__title--inner {
  position: absolute;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
/*
.main__title--h2 {
  font-family: "Hannari", serif;
  font-size: 3.21em;
}
*/
.main__title--h2 {
  font-family: serif;
  font-size: 3.21em;
}
.main__title--summary {
  font-size: 1.28em;
}
.free1 .main__title {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/free/main_free1.jpg);
}
.free2 .main__title {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/free/main_free2.jpg);
}
.free3 .main__title {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/free/main_free3.jpg);
}
.free4 .main__title {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/free/main_free3.jpg);
}
.free5 .main__title {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/free/main_free5.jpg);
}
.free6 .main__title {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/free/main_free6.jpg);
}
.product_list .main__title.cbid-hamachidori {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/item/main_bid.jpg);
}
.product_list .main__title.cbid-yumehonami {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/item/main_yumehonami.jpg);
}
.product_list .main__title.cbid-senninkyo {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/item/main_sennin.jpg);
}
.product_list .main__title.cbid-tomozuna {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/item/main_tomoduna.jpg);
}
.product_list .main__title.cbid-umeshu {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/item/main_umesyu.jpg);
}
.product_list .main__title.cbid-2908569,
.product_list .main__title.cbid-gensui {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/item/main_gensui.jpg);
}
.main__title2 {
  position: relative;
  background: #1a1a43;
  color: #fff;
  letter-spacing: 0.25em;
}
.main__title2 .main__title--inner {
  position: relative;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
  top: inherit;
  left: inherit;
  text-align: center;
  max-width: 1200px;
  margin: auto;
  padding: 1em;
}
.main__title2 .main__title--h2 {
  padding: 0.81em;
  margin: 0;
}

@media (max-width: 480px) {
  .main__section--product {
    padding: 0;
  }

  .main__title {
    height: 66.66vw;
    max-height: 250px;
  }
  .main__title--inner {
    width: fit-content;
  }
  .main__title--h2 {
    font-size: 2.14em;
    line-height: 1.1;
  }
  .main__title--summary {
    font-size: 1em;
  }
}
/* breadcrumb.sort */
.breadcrumb__section {
  padding-bottom: 60px;
  background: #efefef;
  padding: 11px 0;
}

.breadcrumb-list {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
}
.breadcrumb-list.inline {
  margin-left: auto;
}
.breadcrumb-list.inline li {
  padding-left: 0;
  padding-right: 0;
}
.breadcrumb-list__unit {
  background: url(https://img.shop-pro.jp/tmpl_img/81/spacer.png) no-repeat;
  margin-right: -2px;
}
.breadcrumb-list i {
  font-size: 1.16em;
  margin-right: 3px;
}

@media (max-width: 980px) {
  .breadcrumb__section {
    padding-bottom: 30px;
    padding: 15px 0;
  }

  .breadcrumb-list {
    padding-left: 0;
    padding-right: 0;
  }
  .breadcrumb-list.txt--md {
    font-size: 14px;
  }
}
.sort__section {
  text-align: right;
  margin-bottom: 50px;
}

.sort--sub-layer {
  min-width: 200px;
  width: auto;
  display: inline-block;
  border-color: #000;
  color: #000;
}

/* contents */
.info__section, .recommend__section, .seller__section, .together__section, .product-list__section, .free-space__section, .product__image, .delivery__section, .payment__section, .cancel__section {
  margin-bottom: 60px;
}

.product-list__section {
  position: relative;
}

.free-space__section {
  background: url(https://img.shop-pro.jp/tmpl_img/81/spacer.png) no-repeat;
}

.recommend-list, .seller-list, .together-list {
  margin-top: 40px;
}

/* sub list */
.sub-list {
  margin: 50px auto;
  position: relative;
  text-align: center;
  list-style-type: none;
  font-size: 1.28em;
  letter-spacing: 0.05em;
}
.sub-list__unit {
  display: inline-block;
  border-right: 1px solid #000;
  margin-right: -3px;
  padding-left: 1em;
  padding-right: 1em;
}
.sub-list__unit:first-of-type {
  border-left: 1px solid #000;
}
.sub-list__unit a.current {
  color: #960014;
}
.sub-list__img {
  padding-bottom: 10px;
}
.sub-list__link, .sub-list__name {
  display: block;
}

@media (max-width: 480px) {
  .sub-list {
    text-align: left;
    margin: 0 auto 40px;
    font-size: 1.21em;
    line-height: 2.0;
  }
  .sub-list__unit {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
.product-list__freespace-top {
  padding: 60px 0 74px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  font-feature-settings: normal;
}
.section__block > .product-list__freespace-top {
  margin-top: -25px;
}
#cbid-gift .product-list__freespace-top {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/item/gift_prof.png);
}
#cbid-hamachidori .product-list__freespace-top {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/item/hamachidori_prof.png);
}
#cbid-yumehonami .product-list__freespace-top {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/item/yumehonami_prof.png);
}
#cbid-senninkyo .product-list__freespace-top {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/item/senninkyo_prof.png);
}
#cbid-tomozuna .product-list__freespace-top {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/item/tomozuna_prof.png);
}
#cbid-umeshu .product-list__freespace-top {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/item/umeshu_prof.png);
}
#cbid-2908569 .product-list__freespace-top,
#cbid-gensui .product-list__freespace-top {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/item/gensui_prof.png);
}
.product-list__freespace-bottom {
  padding-top: 60px;
  background: url(https://img.shop-pro.jp/tmpl_img/81/spacer.png) no-repeat;
}

@media (max-width: 480px) {
  .product-list__freespace-top {
    padding: 0;
  }
  .section__block > .product-list__freespace-top {
    margin-top: 0;
  }
}
/* information */
.info {
  margin-top: 40px;
}

.info-list {
  list-style-type: none;
}

.info-list__unit {
  padding-bottom: 30px;
}

.info-list__date {
  display: block;
  padding-bottom: 10px;
}

/* history */
div.history__section {
  clear: both;
  padding-top: 100px;
}

@media (max-width: 980px) {
  div.history__section {
    padding-top: 5%;
  }
}
@media (max-width: 768px) {
  .history__section .product-list {
    display: -webkit-flex;
    display: flex;
  }
  .history__section .product-list__unit {
    width: 25%;
    min-height: inherit;
    padding-left: 0;
  }
  .history__section .product-list__link {
    width: 100%;
    height: auto;
    padding-top: 0;
    position: relative;
  }
  .history__section .product-list__image-unit {
    position: relative;
  }
}
/* footer */
.footer__section {
  background: #efefef;
  padding: 80px 0 50px;
  text-align: center;
  position: relative;
}

.footer__guide {
  padding-bottom: 30px;
  margin-bottom: 60px;
  border-bottom: 1px solid #666;
}

.guide__col {
  display: inline-block;
  margin: 0 10px;
  vertical-align: top;
}
.guide__col--one-third {
  width: 410px;
}
.guide__col--half {
  width: 625px;
}
.guide__h2 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #666;
  font-size: 16px;
}
.guide__list {
  margin: 0;
}
.guide__name {
  padding-bottom: 15px;
}
.guide__other {
  margin: 0;
  padding-bottom: 30px;
  color: #efefef;
}

.footer__navi {
  margin-bottom: 6.6%;
  text-align: center;
  list-style-type: none;
}
.footer__navi li {
  display: inline-block;
  padding: 0 1em;
}
.footer__navi__col {
  list-style-type: none;
  line-height: 2.2;
}

@media (max-width: 980px) {
  .footer__inner {
    padding-left: 0;
    padding-right: 0;
  }

  .footer__navi {
    border-bottom: 1px solid #000;
    margin-bottom: 40px;
  }
  .footer__navi li {
    display: block;
    border-top: 1px solid #000;
    text-align: left;
    padding: 0;
  }
  .footer__navi .footer_nav_list_link {
    display: block;
    padding: 15px 10px;
    position: relative;
  }
  .footer__navi .footer_nav_list_link:after {
    font-family: "entypo";
    content: "\E762";
    position: absolute;
    width: 1em;
    height: 1em;
    line-height: 1.0;
    top: 50%;
    margin-top: -0.5em;
    right: 10px;
  }
}
.shop-owner {
  overflow: hidden;
}
.shop-owner__img {
  float: left;
  width: 200px;
  margin-right: 20px;
}
.shop-owner__info {
  float: left;
  width: 290px;
}
.shop-owner__name {
  margin-bottom: 16px;
  font-weight: bold;
}
.shop-owner__memo {
  line-height: 1.8;
}

.footer__logo {
  max-width: 120px;
  display: block;
  margin: 0 auto;
}

.footer__shopinfo {
  margin-top: 26px;
  margin-bottom: 2.5%;
}
.footer__shopinfo dt {
  font-size: 1.428em;
  margin-bottom: 20px;
  font-weight: normal;
}
.footer__shopinfo dd {
  margin-top: 14px;
}
.footer__shopinfo dd.footer-tel {
  font-size: 1.428em;
}
.footer__shopinfo dd.footer-fax {
  margin-top: 10px;
}
.footer__shopinfo dd.footer-open {
  font-size: 0.857em;
}

.sns-list {
  list-style-type: none;
  padding-bottom: 4.16%;
  font-size: 24px;
}
.sns-list__unit {
  display: inline-block;
  padding-right: 10px;
  padding-left: 10px;
}
.sns-list a {
  color: #999;
}
.sns-list a:hover {
  color: #960014;
}

.photo-credit,
.annotation__section {
  font-size: 0.785em;
  color: #333;
}

.pagetop__btn {
  position: absolute;
  right: 20px;
  bottom: 10px;
  display: block;
  padding: 0;
  width: 55px;
  height: 60px;
  background: transparent url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/common/footer_to_top.png) 0 0 no-repeat;
  background-size: 100% auto;
  text-indent: -9999px;
  overflow: hidden;
}
.pagetop__btn:hover {
  background-image: url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/common/footer_to_top_on.png);
}

/* copyright */
.copyright {
  margin: 0;
  font-size: 11px;
  color: #333;
}
.copyright__section {
  padding: 4.16% 0;
}
.copyright__img {
  width: 200px;
  height: 18px;
  margin: 0 0 5px 5px;
}

@media (max-width: 980px) {
  .footer__section {
    padding: 6.25% 0 3.9%;
  }

  .footer__shopinfo dd.footer-fax {
    margin-top: 14px;
  }
  .footer__shopinfo dd.footer-open {
    font-size: 1em;
  }

  .sns-list {
    font-size: 35px;
  }

  .photo-credit,
  .annotation__section {
    font-size: 12px;
    line-height: 2.0;
  }

  .annotation__section {
    line-height: 1.5;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .copyright__section {
    padding: 50px 0;
  }

  #pagetop {
    position: relative;
  }

  .pagetop__btn {
    top: 0;
    right: 10px;
    width: 40px;
    height: 44px;
  }
}
/* menu-list */
.menu-list {
  margin: 10px 0 0;
  list-style-type: none;
}

.menu-list--more-prd {
  margin: 10px 0 20px;
}

.menu-list__link {
  display: table;
  padding: 10px 0;
  width: 100%;
}

.menu-list__text {
  display: table-cell;
  padding-right: 20px;
  vertical-align: middle;
  width: 90%;
}

.menu-list__icon {
  display: table-cell;
  vertical-align: middle;
  width: 10%;
  text-align: right;
}

.category-list__unit {
  position: relative;
}

/* product-list */
.product-list {
  list-style-type: none;
  font-size: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.product-list.row {
  margin-left: -1%;
  margin-right: -1%;
}
.product-list__unit {
  font-size: 15px;
  vertical-align: top;
  position: relative;
  text-align: center;
/*  width: 19.98%;*/
  width: 19.96%;
  margin-bottom: 50px;
}
.product-list__unit-sm {
  width: 110px;
}
.product-list__unit-md {
  width: 141px;
}
.product-list__unit-lg {
  width: 303px;
}
.product-list__unit--sidebar {
  display: block;
  margin: 0 0 20px;
}
.product-list__image-unit {
  display: block;
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-list__image-unit img {
  width: 100%;
  display: block;
}
.product-list__link {
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  padding-top: 100%;
}
.product-list__link .product-list__image-txt, .product-list__link:after {
  display: block;
  position: absolute;
  left: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.product-list__link .product-list__image-txt {
  font-size: 0.93em;
  letter-spacing: .1em;
  color: #fff;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 51;
}
.product-list__link .product-list__image-txt i {
  margin-left: 0.5em;
  position: relative;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 0;
}
.product-list__link:after {
  content: "";
  background: #1a1a43;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 50;
}
.product-list__link:hover .product-list__image-unit {
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.product-list__link:hover .product-list__image-txt {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.product-list__link:hover .product-list__image-txt i {
  left: 10px;
}
.product-list__link:hover:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.product-list__image--sm {
  max-width: 110px;
}
.product-list__text {
  display: block;
}
.product-list__name {
  font-weight: normal;
  margin-top: 30px;
  text-align: left;
  line-height: 1.5;
}
.product-list__name + .product-list__info {
  border-top: 1px solid #000;
  margin-top: 10px;
}
.product-list__name--sidebar {
  margin-top: 0;
  margin-left: 10px;
}
.product-list__info {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding-top: 10px;
}
.product-list__expl {
  margin-top: 20px;
  text-align: left;
}
.product-list__prices {
  text-align: left;
}
.product-list__prices--sidebar {
  margin-left: 10px;
}
.product-list__price-regular {
  text-decoration: line-through;
}
.product-list__price-soldout, .product-list__discount-rate {
  color: #960014;
}
.product-list__btn {
  border: 1px solid #666;
  font-size: 0.86em;
  padding: 3px 10px;
}
.product-list__btn:hover {
  background: #960014;
  border-color: #960014;
  color: #fff;
}

.rank-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.rank-box--sidebar {
  top: 10px;
}

.rank-number {
  padding: 0;
  background: #06174a;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  width: 32px;
  height: 32px;
  line-height: 32px;
  display: block;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.rank-number--sidebar {
  padding: 4px 0 0;
  width: 22px;
  height: 18px;
}

.rank-number-color--1 {
  background: #bb8f20;
}

.rank-number-color--2 {
  background: #9fa7aa;
}

.rank-number-color--3 {
  background: #8c5b3c;
}

@media (max-width: 768px) {
  .product-list__info {
    display: block;
  }
  .product-list__btn {
    margin-top: 10px;
    width: 100%;
    display: block;
  }
}
@media (max-width: 480px) {
  .product-list {
    display: block;
    width: 100%;
  }
  .product-list.row {
    margin-left: 0;
    margin-right: 0;
  }
  .product-list__unit {
    display: block;
    margin-bottom: 10px;
    padding: 0 0 0 160px;
    width: 100%;
    min-height: 150px;
  }
  .product-list__link {
    width: 150px;
    padding-top: 150px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .product-list__name {
    font-size: 1.06em;
  }
  .product-list__info {
    display: block;
  }
  .product-list__prices {
    line-height: 1.26;
  }
  .product-list__btn {
    display: none;
  }
}
/* pagination */
.pagination {
  position: relative;
  text-align: center;
  margin: 50px auto;
}
.pagination a {
  text-decoration: underline;
  padding: 5px;
  margin: 5px;
  display: inline-block;
}
.pagination .disabled {
  color: #ccc;
  display: inline-block;
}
.pagination-pos {
  line-height: 0.8;
}
.pagination-pos__number {
  margin: 0 5px;
  font-size: 22px;
}
.pagination__current {
  font-weight: bold;
  padding: 5px;
  margin: 5px;
  display: inline-block;
}

.note_box {
  background: #f6f7f9;
  padding: 25px 30px;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  margin: 50px 0;
}
.note_box dt {
  font-weight: bold;
  font-size: 1.28em;
  color: #1a1a43;
  line-height: 1.22;
  margin-bottom: 15px;
}
.note_box dd {
  line-height: 1.57;
  text-align: left;
  /*text-align: justify;*/
  margin-left: 0;
}
.note_box dd + dt {
  margin-top: 30px;
}

@media (max-width: 480px) {
  .note_box {
    padding: 25px 15px;
    margin: 25px 0;
  }
  .note_box dt {
    font-size: 1.14em;
  }
  .note_box dd + dt {
    margin-top: 15px;
  }
}
/* privacy.shopkeeper */
.shop-info__lead {
  margin: 40px 0 30px;
  line-height: 2.28;
  letter-spacing: 0.05em;
}

.shop-info-list__title {
  padding: 20px 0 5px;
}
.shop-info-list__title:first-child {
  padding: 0 0 5px;
}

.shop-info-list__title {
  font-size: 1.14em;
  font-weight: bold;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #1a1a43;
  padding: 0;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.shop-info-list__note {
  margin-left: 0;
  line-height: 2.28;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

/*
 * Module
 */
.section__title-h2 {
  margin: 0 0 50px;
  text-align: center;
  font-size: 26px;
  letter-spacing: .1em;
  font-weight: normal;
}
.section__title--main {
  position: relative;
  margin-bottom: 13px;
  color: #000;
  display: block;
}
.section__title--sub {
  font-size: .5em;
  color: #000;
  display: block;
}
.section__title-h2.title-border .section__title--main::after {
  position: absolute;
  bottom: .3em;
  display: block;
  width: 100%;
  height: 1px;
  content: '';
  background: #000;
}
.section__title-h2.title-border .section__title--main span {
  line-height: 1.3;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 1em;
  margin-left: 1em;
  margin-right: 1em;
  background: #fff;
}
.section__title-h3 {
  font-size: 24px;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #1a1a43;
  font-weight: bold;
  padding-bottom: 30px;
  line-height: 1.0;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}

.section__block {
  max-width: 1200px;
  width: 94.66%;
  margin: 0 auto;
  padding: 50px 0;
  overflow: hidden;
}
.section__block.container {
  overflow: hidden;
}

.section__outline {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.14em;
  line-height: 2.0;
  letter-spacing: 0.1em;
  text-align: justify;
}

@media (max-width: 768px) {
  .section__title-h2 {
    margin-bottom: 25px;
    font-size: 23px;
  }
  .section__title--main {
    margin-bottom: 5px;
  }
  .section__title--sub {
    font-size: 12px;
  }
  .section__title-h2.title-border .section__title--main:after {
    bottom: .4em;
  }
  .section__title-h2.title-border .section__title--main span {
    padding: 0 10px;
  }
  .section__title-h3 {
    font-size: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    margin-top: 0;
  }

  .section__block {
    padding: 25px 0;
  }

  .section__outline {
    margin-bottom: 25px;
    font-size: 1em;
    line-height: 1.5;
    /*text-align: justify;*/
  }
}
/* bg block */
.bg__block {
  background: #efefef url(https://lolipop-dp58234726.ssl-lolipop.jp/ast/img/common/bg_gray.png);
  background-size: 315px auto;
  padding: 50px 0;
  margin-top: 50px;
}
.bg__block .section__block {
  background-color: #fff;
  padding: 60px 65px;
}

@media (max-width: 980px) {
  .bg__block {
    padding: 15px;
    margin-top: 15px;
  }
  .bg__block .section__block {
    width: 100%;
    padding: 30px;
  }
}
/* button */
.btn-wrap {
  text-align: center;
}

.btn-primary {
  background: transparent;
  border: 1px solid #666;
  color: #000;
  letter-spacing: .1em;
  text-align: center;
  padding: 15px 50px;
  position: relative;
  line-height: 1.3;
  min-width: 320px;
}
.btn-primary i {
  font-size: 18px;
  top: .01em;
  position: relative;
}
.btn-primary:after {
  font-family: entypo;
  content: "\E762";
  position: absolute;
  width: 1em;
  height: 1em;
  line-height: 1.0;
  top: 50%;
  margin-top: -0.5em;
  right: 30px;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #960014;
  border-color: #960014;
  color: #fff;
  zoom: 1;
}
.btn-primary:hover:after {
  color: #fff;
  right: 20px;
}

.btn-secondary {
  background: #1a1a43;
  border: 0 none;
  color: #fff;
  letter-spacing: .1em;
  text-align: center;
  padding: 15px 50px;
  position: relative;
  line-height: 1.3;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-secondary i {
  font-size: 18px;
  top: .01em;
  position: relative;
}
.btn-secondary:after {
  font-family: entypo;
  content: "\E762";
  position: absolute;
  width: 1em;
  height: 1em;
  line-height: 1.0;
  top: 50%;
  margin-top: -0.5em;
  right: 30px;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-secondary:hover {
  background: #960014;
  color: #fff;
  zoom: 1;
}
.btn-secondary:hover:after {
  right: 20px;
}

.btn-tertiary {
  background: #efefef;
  border: 1px solid #efefef;
  color: #666;
}
.btn-tertiary:hover {
  background: #efefef;
  color: #666;
  opacity: 0.8;
  -moz-opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=80)";
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
  zoom: 1;
}

.btn__addcart, .btn__quick, .btn__soldout {
  padding: 15px 50px;
}

.btn__addcart i, .btn__quick i, .btn__soldout i {
  margin-right: 10px;
}

.btn__addcart span, .btn__quick span {
  vertical-align: middle;
}

.btn__soldout span {
  vertical-align: middle;
}
.btn__soldout.disabled, .btn__soldout[disabled] {
  background-color: #efefef;
  color: #666;
}

@media (max-width: 480px) {
  .btn-primary {
    padding: 10px 40px;
    min-width: 260px;
  }
  .btn-primary:after {
    right: 20px;
  }
}
/* text style */
.txt--sm {
  font-size: 10px;
}

.txt--md {
  font-size: 12px;
}

.txt--lg {
  font-size: 16px;
}

.txt--c {
  text-align: center;
}

.txt--r {
  text-align: right;
}

.txt--red {
  color: #ff0000;
}

.txt--gray {
  color: #999;
}

.border--none {
  border: none;
}

.mar-t--20 {
  margin-top: 20px;
}

.mar-b--20 {
  margin-bottom: 20px;
}

.mar-b--60 {
  margin-bottom: 60px;
}

.width--110 {
  width: 110px;
}

.width--160 {
  width: 160px;
}

.hide {
  display: none;
}

.br {
  display: inline-block;
}

/* textarea input */
textarea {
  outline: none;
}

input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
  outline: none;
}

.uneditable-input {
  outline: none;
}

.table {
  border-bottom: 1px solid #000;
  margin-bottom: 5%;
}
.table caption {
  font-size: 1.428em;
  text-align: left;
  padding: 5px 0;
  border-bottom: 1px solid #000;
}
.table caption .cap-s {
  font-size: 0.7em;
}
.table th, .table td {
  border-top-color: #000;
  padding: 5px 5px;
}
.table thead th, .table thead td {
  background: #efefef;
}
.table thead th {
  letter-spacing: 0.1em;
}
.table tbody th, .table tbody td {
  padding-top: 14px;
  padding-bottom: 14px;
  vertical-align: top;
}
.table tbody th {
  font-size: 1.14em;
}

.square-list {
  list-style-type: none;
  letter-spacing: 0.05em;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
}
.square-list li {
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 0.5em;
}
.square-list li:before {
  content: "■";
}
