@charset "UTF-8";
/*===============================
共通要素
================================*/
/*===============================
	Base
================================*/
html,
body {
  font-size: 62.5%;
}

body {
  color: #232a31;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
	/*font-family: "Hiragino Kaku Gothic Pro", "HiraKakuPro-W6", "Hiragino Sans", Meiryo, sans-serif;*/
  font-family: "Hiragino Sans", Meiryo, sans-serif;
  -webkit-font-feature-settings: "kern";
          font-feature-settings: "kern";
}

body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #232a31;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

svg {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

input,
textarea,
select {
  outline: 0;
  padding: 0.5rem 1rem;
  border: #ddd solid 1px;
}

input[type="image"] {
  border: none;
}

button {
  outline: 0;
  border: none;
  background-color: transparent;
}

input[type="text"]:-moz-placeholder-shown,
input[type="email"]:-moz-placeholder-shown,
input[type="tel"]:-moz-placeholder-shown,
input[type="url"]:-moz-placeholder-shown,
input[type="password"]:-moz-placeholder-shown,
textarea:-moz-placeholder-shown,
select:-moz-placeholder-shown {
  color: #bab8b6;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, helvetica, sans-serif;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #bab8b6;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, helvetica, sans-serif;
}

input[type="text"]:placeholder-shown,
input[type="email"]:placeholder-shown,
input[type="tel"]:placeholder-shown,
input[type="url"]:placeholder-shown,
input[type="password"]:placeholder-shown,
textarea:placeholder-shown,
select:placeholder-shown {
  color: #bab8b6;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, helvetica, sans-serif;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #bab8b6;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, helvetica, sans-serif;
}

input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  color: #bab8b6;
  opacity: 1;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, helvetica, sans-serif;
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: #bab8b6;
  opacity: 1;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, helvetica, sans-serif;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #bab8b6;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, helvetica, sans-serif;
}

p,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

hr {
  border: none;
}

select {
  background-color: transparent;
}

select::-ms-expand {
  display: none;
}

/*===============================
カスタマイズ用CSS
================================*/
body {
  background-color: #fff;
  padding-top: 100px;
}

@media screen and (max-width: 1100px) {
  body {
    padding-top: 60px;
  }
}

/*===============================
レスポンシブ表示--汎用クラス
================================*/
.sp {
  display: none;
}

@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.ec-layoutRole {
  background-color: transparent;
}

.-has-side-column .ec-layoutRole__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 1130px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding-top: 60px;
}

@media (max-width: 767px) {
  .-has-side-column .ec-layoutRole__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 30px;
  }
}

.-has-side-column .ec-layoutRole__left {
  width: 240px;
}

@media (max-width: 767px) {
  .-has-side-column .ec-layoutRole__left {
    display: block;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 46px;
  }
}

.-has-side-column .ec-layoutRole__mainWithColumn {
  width: calc(100% - 240px);
  padding-left: 32px;
}

@media (max-width: 767px) {
  .-has-side-column .ec-layoutRole__mainWithColumn {
    width: 100%;
    padding-left: 0;
  }
}

.ec-role {
  width: calc(100% - 32px);
  max-width: 1130px;
  font-size: 1.5rem;
  line-height: 1.6;
  padding-left: 0;
  padding-right: 0;
}

.ec-role .-pager {
  padding-left: 16px;
  padding-right: 16px;
}

.ec-contactRole {
  padding-left: 16px;
  padding-right: 16px;
}

.ec-companyRole {
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #232a31;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 1130px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .ec-companyRole {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.ec-registerRole {
  padding-left: 16px;
  padding-right: 16px;
}

.ec-registerCompleteRole {
  padding-left: 16px;
  padding-right: 16px;
}

@media (max-width: 767px) {
  .ec-orderRole,
  .ec-registerCompleteRole {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.reset .ec-layoutRole,
.front_page .ec-layoutRole__contents,
.guide .ec-layoutRole__contents,
.product_review_confirm .ec-layoutRole__contents,
.product_review .ec-layoutRole__contents,
.recruit .ec-layoutRole__contents,
.newlist .ec-layoutRole__contents,
.shopping_complete .ec-layoutRole__contents,
.shopping_confirm .ec-layoutRole__contents,
.page_forgot_complete .ec-layoutRole__contents,
.forgot .ec-layoutRole__contents,
.privacy .ec-layoutRole__contents,
.shopping_index .ec-layoutRole__contents,
.shipping_multiple_edit .ec-layoutRole__contents,
.shipping_multiple .ec-layoutRole__contents,
.shipping .ec-layoutRole__contents,
.cart_page .ec-layoutRole__contents,
.help_tradelaw .ec-layoutRole__contents,
.agreement .ec-layoutRole__contents,
.confirm .ec-layoutRole__contents,
.complete .ec-layoutRole__contents,
.contact .ec-layoutRole__contents,
.about .ec-layoutRole__contents,
.product_page .ec-layoutRole__contents,
.registration_page .ec-layoutRole__contents,
.mypage .ec-layoutRole__contents {
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .reset .ec-layoutRole,
  .front_page .ec-layoutRole__contents,
  .guide .ec-layoutRole__contents,
  .product_review_confirm .ec-layoutRole__contents,
  .product_review .ec-layoutRole__contents,
  .recruit .ec-layoutRole__contents,
  .newlist .ec-layoutRole__contents,
  .shopping_complete .ec-layoutRole__contents,
  .shopping_confirm .ec-layoutRole__contents,
  .page_forgot_complete .ec-layoutRole__contents,
  .forgot .ec-layoutRole__contents,
  .privacy .ec-layoutRole__contents,
  .shopping_index .ec-layoutRole__contents,
  .shipping_multiple_edit .ec-layoutRole__contents,
  .shipping_multiple .ec-layoutRole__contents,
  .shipping .ec-layoutRole__contents,
  .cart_page .ec-layoutRole__contents,
  .help_tradelaw .ec-layoutRole__contents,
  .agreement .ec-layoutRole__contents,
  .confirm .ec-layoutRole__contents,
  .complete .ec-layoutRole__contents,
  .contact .ec-layoutRole__contents,
  .about .ec-layoutRole__contents,
  .product_page .ec-layoutRole__contents,
  .registration_page .ec-layoutRole__contents,
  .mypage .ec-layoutRole__contents {
    padding-bottom: 50px;
  }
}

.ec-layoutRole__contents {
  min-height: calc(100vh - 113px);
}

@media (max-width: 767px) {
  .ec-layoutRole__contents {
    min-height: calc(100vh - 56px);
  }
}

.ec-layoutRole .ec-layoutRole__contents {
  max-width: 1200px;
}

.creditRole,
#page_forgot_reset .ec-off1Grid,
.ec-forgetCompleteRole .ec-off1Grid,
.ec-forgotRole,
.ec-favoriteRole__detail,
.bgc-w-box,
.ec-editRole,
.ec-guest,
.ec-login,
.ec-grid3__cell__inner,
#page_help_about .ec-role,
#page_product_review_index .ec-off1Grid,
#page_shopping_shipping_multiple_edit .ec-off1Grid,
#page_mypage_delivery .ec-off1Grid,
.cart_page .ec-off1Grid,
.product_review .ec-off1Grid,
.cart_page #form_cart.ec-cartRole {
  border-radius: 8px;
  border: 1px solid #ececec;
  padding: 56px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
  background-color: #fff;
}

@media (max-width: 767px) {
  .creditRole,
  #page_forgot_reset .ec-off1Grid,
  .ec-forgetCompleteRole .ec-off1Grid,
  .ec-forgotRole,
  .ec-favoriteRole__detail,
  .bgc-w-box,
  .ec-editRole,
  .ec-guest,
  .ec-login,
  .ec-grid3__cell__inner,
  #page_help_about .ec-role,
  #page_product_review_index .ec-off1Grid,
  #page_shopping_shipping_multiple_edit .ec-off1Grid,
  #page_mypage_delivery .ec-off1Grid,
  .cart_page .ec-off1Grid,
  .product_review .ec-off1Grid,
  .cart_page #form_cart.ec-cartRole {
    padding: 16px;
  }
}

@media (max-width: 767px) {
  #page_shopping_shipping_multiple .ec-AddAddress .ec-AddAddress__selectAddress select {
    width: 100%;
  }
}

.ec-grid2__cell.-flex-align {
  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;
}

.w-medium {
  max-width: 83.3333%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .w-medium {
    max-width: none;
  }
}

.c-colored {
  color: #81191e;
}

.c-wbg {
  background-color: #fff;
}

.other_page.reset,
.shipping_multiple_edit,
.shipping_multiple,
.shipping,
.newlist,
.cart_page,
.mypage,
.other_page.shopping_index,
.other_page.shopping_confirm,
.product_review,
.product_review_confirm,
.product_review_complete,
.forgot,
.page_forgot_complete {
  background-color: #f8f7f5;
}

.c-sbt {
  font-size: 2.8rem;
  font-weight: 700;
  font-style: normal;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 1em;
  color: #232a31;
}

@media (max-width: 767px) {
  .c-sbt {
    font-size: 2.4rem;
  }
}

.ec-ttl {
  margin-bottom: 40px;
  width: 100%;
}

@media (max-width: 767px) {
  .ec-ttl {
    margin-bottom: 30px;
  }
}

.ec-ttl__tex {
  width: 100%;
  font-family: "Hiragino Kaku Gothic Pro";
  font-weight: normal;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.238;
  text-align: left;
  color: #232a31;
}

@media (max-width: 767px) {
  .ec-ttl__tex {
    font-size: 1.8rem;
  }
}

.ec-pageHeader h1 {
  font-size: 3rem;
  font-weight: bold;
  padding: 0;
  margin: 0;
  border: none;
  letter-spacing: 0.2em;
}

@media (max-width: 767px) {
  .ec-pageHeader h1 {
    font-size: 2rem;
  }
}

.ec-pageHeader,
.mypage .ec-pageHeader,
.product_page .ec-pageHeader,
.other_page .ec-pageHeader {
  height: 177px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .ec-pageHeader,
  .mypage .ec-pageHeader,
  .product_page .ec-pageHeader,
  .other_page .ec-pageHeader {
    height: 96px;
  }
}

.product_page .ec-pageHeader {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .product_page .ec-pageHeader {
    margin-bottom: 16px;
  }
}

.ec-mypageRole .ec-pageHeader h1 {
  margin: 0;
  padding: 0;
}

.ec-rectHeading h1,
.ec-rectHeading h2,
.ec-rectHeading h3,
.ec-rectHeading h4,
.ec-rectHeading h5,
.ec-rectHeading h6 {
  padding-left: 0;
  background-color: transparent;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.ec-ttl-side__tex {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  border-bottom: 1px solid #232a31;
  padding-bottom: 4px;
}

.ec-para-nomal {
  padding-bottom: 24px;
  font-size: 1.5rem;
  line-height: 1.6;
}

.ec-font-size-1 {
  font-size: 1.1rem;
  font-weight: normal;
}

.ec-welcomeMsg {
  border-radius: 8px;
  border: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  margin: 16px 0;
}

@media (max-width: 767px) {
  .ec-welcomeMsg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.ec-welcomeMsg p:not(:last-child) {
  padding: 0 8px 0 0;
}

ul.ec-desc-tex {
  padding-top: 8px;
  padding-bottom: 8px;
}

ul.ec-desc-tex li {
  padding-left: 1em;
  text-indent: -1em;
}

ul.ec-desc-tex li::before {
  content: "・";
  display: inline;
  font-size: 1em;
  font-weight: 600;
}

.c-text-link {
  color: #2d4585;
  text-decoration: underline;
}

.ec-link {
  color: #2d4585;
}

@media (max-width: 767px) {
  .ec-link {
    margin: 0 auto;
    text-align: center;
  }
}

.c-asta {
  padding: 16px 0;
}

.c-asita-list li {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.875;
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
  text-align: justify;
}

@media (max-width: 767px) {
  .c-asita-list li {
    font-size: 1.3rem;
  }
}

.c-alert {
  border: 1px solid #de5d50;
  max-width: 600px;
  width: 100%;
  padding: 24px;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: justify-content;
  margin: 0 auto 50px auto;
}

@media (max-width: 767px) {
  .c-alert {
    padding: 16px;
    font-size: 1.4rem;
    margin: 0 auto 50px auto;
  }
}

.alert__ttl {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 4px;
}

.c-alert.-alert-warning {
  color: #de5d50;
}

.ec-alert-warning {
  background-color: #de5d50;
  border-radius: 4px;
}

.ec-alert-warning .ec-alert-warning__text {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.ic-blank {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: cover;
  background-position: center;
  background-image: url("/html/user_data/assets/img/common/ic-launch.svg");
  margin-left: 4px;
  position: relative;
  top: 3px;
}

.ic-amazon:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  line-height: 1;
  font-weight: lighter;
  margin-left: 8px;
  position: relative;
  top: 3px;
  background-image: url("/html/user_data/assets/img/common/ic-amazon.svg");
  background-size: cover;
}

.icon-arrow,
.icon-arrow--bottom,
.icon-arrow--top,
.icon-arrow--white,
.icon-arrow--white--bottom {
  display: inline-block;
  position: relative;
  width: 15px;
  height: 6px;
}

.icon-arrow:before,
.icon-arrow--bottom:before,
.icon-arrow--top:before,
.icon-arrow--white:before,
.icon-arrow--white--bottom:before {
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  z-index: 2;
  display: block;
  right: 0;
  top: -17px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #282828;
  border-right: 1px solid #282828;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.12s ease-in 0s;
  transition: all 0.12s ease-in 0s;
}

@media (max-width: 767px) {
  .icon-arrow:before,
  .icon-arrow--bottom:before,
  .icon-arrow--top:before,
  .icon-arrow--white:before,
  .icon-arrow--white--bottom:before {
    width: 9px;
    height: 9px;
  }
}

.icon-arrow--bottom:before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.icon-arrow--top:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.icon-arrow--white:before {
  top: -2px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.icon-arrow--white--bottom:before {
  top: 0;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.icon-search {
  width: 22px;
  height: 22px;
}

.icon-account {
  width: 21px;
  height: 24px;
}

.icon-cart {
  width: 24px;
  height: 22px;
}

.icon-insta,
.icon-twitter,
.icon-fb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 31px;
  height: 31px;
  background-color: #fff;
  border-radius: 31px;
}

.icon-insta img {
  width: 19px;
  height: 19px;
}

.icon-twitter img {
  width: 17px;
  height: 13px;
}

.icon-fb img {
  position: relative;
  width: 13px;
  height: 25px;
  left: -2px;
  bottom: -4px;
}

.icon-insta-white {
  width: 16px;
  height: 16px;
}

.icon-twitter-white {
  width: 14px;
  height: 11px;
}

.icon-fb-white {
  position: relative;
  width: 11px;
  height: 20px;
  left: -1px;
  bottom: -3px;
}

.icon-voice {
  width: 25px;
  height: 22px;
}

.ic-cart {
  background-image: url("/html/user_data/assets/img/common/ic-cart.svg");
  background-position: 2px 8px;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 36px;
  height: 36px;
  display: block;
  margin-right: 0;
}

.ic-cart.-bg-pos-center {
  background-position: 8px 4px;
}

.ic-cart.-ic-wh {
  background-image: url("/html/user_data/assets/img/common/ic-cart-wh.svg");
}

.ic-user {
  background-image: url("/html/user_data/assets/img/common/ic-user.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 36px;
  height: 36px;
  display: block;
}

.ic-user.-ic-wh {
  background-image: url("/html/user_data/assets/img/common/ic-user-wh.svg");
}

.ic-hart-line {
  background-image: url("/html/user_data/assets/img/common/ic-hart-line.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 36px;
  height: 36px;
  display: block;
}

.ic-hart-line.-ic-wh {
  background-image: url("/html/user_data/assets/img/common/ic-hart-line-wh.svg");
}

.ic-lock {
  background-image: url("/html/user_data/assets/img/common/ic-lock.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 36px;
  height: 36px;
  display: block;
}

.ic-lock.-ic-wh {
  background-image: url("/html/user_data/assets/img/common/ic-lock-wh.svg");
}

.ic-logout {
  background-image: url("/html/user_data/assets/img/common/ic-logout.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px;
  width: 36px;
  height: 36px;
  display: block;
}

.ic-logout.-ic-wh {
  background-image: url("/html/user_data/assets/img/common/ic-logout-wh.svg");
}

/*===============================
	Button
================================*/
.btn {
  overflow: hidden;
}

.btn.active,
.btn:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn__inner {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.btn input[type="submit"] {
  cursor: pointer;
  background: #fff;
  line-height: 2;
  letter-spacing: 1px;
}

.btn input[type="submit"],
.btn a {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1.4rem 2rem;
  min-width: 200px;
  color: #fff;
  background: #232a31;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 960px) {
  .btn input[type="submit"],
  .btn a {
    font-size: 1.3rem;
    min-width: auto;
    padding: 1rem 1.5rem 1rem 1rem;
  }
}

@media (max-width: 767px) {
  .btn input[type="submit"],
  .btn a {
    display: block;
    padding: 1rem 3rem;
  }
}

@media screen and (min-width: 961px) {
  .btn input[type="submit"]:hover,
  .btn a:hover {
    opacity: 0.75;
  }
}

.ec-inlineBtn:hover,
.ec-inlineBtn:active:hover,
.ec-inlineBtn:active:focus,
.ec-inlineBtn:active.focus,
.ec-inlineBtn.active:hover,
.ec-inlineBtn.active:focus,
.ec-inlineBtn.active.focus,
.open > .ec-inlineBtn.dropdown-toggle:hover,
.open > .ec-inlineBtn.dropdown-toggle:focus,
.open > .ec-inlineBtn.dropdown-toggle.focus {
  border-color: #d1d5db;
  background-color: #f9fafb;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ec-inlineBtn--action:active:hover,
.ec-inlineBtn--action:active:focus,
.ec-inlineBtn--action:active.focus,
.ec-inlineBtn--action.active:hover,
.ec-inlineBtn--action.active:focus,
.ec-inlineBtn--action.active.focus,
.open > .ec-inlineBtn--action.dropdown-toggle:hover,
.open > .ec-inlineBtn--action.dropdown-toggle:focus,
.open > .ec-inlineBtn--action.dropdown-toggle.focus {
  opacity: 0.75;
  background-color: #232a31;
}

.ec-btn-row {
  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;
}

.ec-btn-row .ec-inlineBtn--cancel.-md1 {
  background-color: #81191e;
  border-color: #81191e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  padding: 0;
  font-weight: normal;
  max-width: 320px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  transition: all 0.3s ease;
  color: #fff;
  position: relative;
}

.ec-btn-row .ec-inlineBtn--cancel.-md1:hover {
  opacity: 0.75;
}

.ec-btn-row .ec-inlineBtn--cancel.-md1::after {
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  z-index: 2;
  display: block;
  right: 12px;
  top: 24px;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(48deg);
  -webkit-transition: all 0.12s ease-in 0s;
  transition: all 0.12s ease-in 0s;
}

.ec-blockBtn--action {
  background-color: #232a31;
  border-color: #232a31;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 60px;
  line-height: 60px;
  border-radius: 0;
  font-weight: normal;
}

@media (max-width: 767px) {
  .ec-blockBtn--action {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

button[disabled],
html input[disabled],
.ec-blockBtn--action:hover,
.ec-blockBtn--action:focus,
.ec-blockBtn--action.focus,
.ec-blockBtn--action:active,
.ec-blockBtn--action.active,
.ec-blockBtn--action:active:hover,
.ec-blockBtn--action:active:focus,
.ec-blockBtn--action:active.focus,
.ec-blockBtn--action.active:hover,
.ec-blockBtn--action.active:focus,
.ec-blockBtn--action.active.focus,
.open > .ec-blockBtn--action.dropdown-toggle,
.open > .ec-blockBtn--action.dropdown-toggle:hover,
.open > .ec-blockBtn--action.dropdown-toggle:focus,
.open > .ec-blockBtn--action.dropdown-toggle.focus {
  background-color: #232a31;
  border-color: #232a31 !important;
  opacity: 0.75;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.ec-blockBtn--action.add-cart {
  max-width: auto;
  height: 60px;
  line-height: 60px;
  border-radius: 0;
  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;
  background-color: #232a31 !important;
}

.ec-blockBtn--action.add-cart:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  line-height: 24px;
  font-weight: lighter;
  margin-right: 4px;
  position: relative;
  top: -1px;
  background-image: url("/html/user_data/assets/img/common/ic-cart-wh.svg");
  background-size: cover;
  margin-right: 4px;
}

.ec-blockBtn--cancel.-favorite {
  font-size: 1.5rem;
  color: #232a31;
  -webkit-text-size-adjust: 100%;
}

.ec-blockBtn--action:focus, .ec-blockBtn--action.focus, .ec-blockBtn--action:active:focus, .ec-blockBtn--action:active.focus, .ec-blockBtn--action.active:focus, .ec-blockBtn--action.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.ec-input input,
.ec-halfInput input,
.ec-numberInput input,
.ec-zipInput input,
.ec-telInput input,
.ec-select input,
.ec-birth input {
  border: 1px solid #232a31;
}

.favo-text-btn__text {
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.favo-text-btn__text[disabled] {
  opacity: 0.5;
}

.favo-text-btn__text:hover,
.favo-text-btn__text:active {
  opacity: 0.75;
}

.favo-text-btn__text[disabled] {
  background-color: transparent;
}

.favo-text-btn__text .tex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 24px;
}

.favo-text-btn__text .tex:before {
  content: "";
  width: 18px;
  height: 18px;
  line-height: 24px;
  font-weight: lighter;
  margin-right: 4px;
  position: relative;
  top: -1px;
  background-image: url("/html/user_data/assets/img/common/ic-hart-line.svg");
  background-size: cover;
}

.favo-text-btn__text.-is-disabled .tex:before {
  content: "\e87d";
}

.ec-blockBtn {
  background-color: #fff;
  border-color: #232a31;
  color: #232a31;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 60px;
  line-height: 60px;
  border-radius: 0;
  font-weight: normal;
}

.ec-inlineBtn--cancel,
.ec-blockBtn--cancel,
.ec-cartNavi--cancel {
  border: 1px solid #232a31;
  background-color: #fff;
  border-radius: 0;
  color: #232a31;
  font-weight: normal;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ec-inlineBtn--cancel:hover,
.ec-inlineBtn--cancel:focus,
.ec-inlineBtn--cancel.focus {
  background-color: #232a31;
}

.ec-modal-box .ec-inlineBtn--action {
  background-color: #232a31;
  border-color: #232a31;
}

.ec-blockBtn:hover,
.ec-blockBtn:focus,
.ec-blockBtn.focus {
  color: #fff;
  background-color: #232a31;
  border-color: #232a31;
}

.ec-blockBtn--cancel:hover,
.ec-blockBtn--cancel:focus,
.ec-blockBtn--cancel.focus {
  background-color: #232a31;
}

.ec-productRole__SNS_Share {
  display: block;
  margin-bottom: 24px;
}

.ec-productRole__SNS_Share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ec-productRole__SNS_Share .sns-share-button {
  cursor: pointer;
}

.ec-productRole__SNS_Share li {
  list-style: none;
  margin: 0 3px;
}

.ec-productRole__SNS_Share li:first-child {
  margin-left: 0;
}

.ec-productRole__SNS_Share li span {
  display: block;
  font-size: 1.3rem;
  line-height: 20px;
}

.ec-productRole__SNS_Share li img,
.ec-productRole__SNS_Share li svg {
  height: 20px;
  width: 20px;
  line-height: 20px;
}

.ec-productRole__SNS_Share svg {
  background-color: #fff;
}

#sns-share-email svg path {
  fill: #000;
}

#sns-share-facebook svg path {
  fill: #1777f2;
}

#sns-share-twitter svg path {
  fill: #1a95e0;
}

#sns-share-line svg path {
  fill: #00b901;
}

#sns-share-gplus svg path {
  fill: #db4e41;
}

#sns-share-weibo svg path {
  fill: #e0142c;
}

#sns-share-reddit svg path {
  fill: #fe4400;
}

#sns-share-pinterest svg path {
  fill: #ca1f26;
}

.ec-inlineBtn--cancel.-company.-ic-blank {
  background-color: #232a31;
  color: #fff;
  line-height: 60px;
  height: 60px;
  padding: 0 20px;
}

.ec-inlineBtn--cancel.-company.-ic-blank:hover, .ec-inlineBtn--cancel.-company.-ic-blank:active {
  opacity: 0.75;
}

.ec-inlineBtn--cancel.-company.-ic-blank .ic-blank-wh {
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
  top: 4px;
  margin-left: 2px;
  background-size: cover;
  background-position: center;
  background-image: url("/html/user_data/assets/img/common/ic-launch-wh.svg");
}

.ec-totalBox .ec-totalBox__btn .ec-blockBtn--cancel {
  color: #232a31;
}

.ec-totalBox .ec-totalBox__btn .ec-blockBtn--cancel:hover,
.ec-blockBtn--cancel:active,
.ec-blockBtn--cancel.active,
.open > .ec-blockBtn--cancel.dropdown-toggle {
  color: #fff;
}

.ec-blockBtn--cancel {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 60px;
  line-height: 60px;
  border-radius: 0;
  color: #232a31;
}

@media (max-width: 767px) {
  .ec-blockBtn--cancel {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

#news_readmore.ec-inlineBtn--top {
  background-color: #fff;
  border-color: transparent;
  color: #ababab;
  height: 60px;
  line-height: 60px;
  border-radius: 0;
  font-weight: normal;
  padding: 0;
  display: none;
}

.ec-pager .ec-pager__item:hover {
  background-color: transparent;
}

.ec-pager .ec-pager__item a {
  -webkit-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  border: 1px solid #e5e7eb;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.ec-pager .ec-pager__item a:hover {
  background-color: #f9fafb;
}

.ec-pager .ec-pager__item--active {
  background-color: transparent;
}

.ec-pager .ec-pager__item--active a {
  -webkit-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  border-radius: 4px;
}

.ec-role.-pager {
  padding-left: 16px;
  padding-right: 16px;
}

@media (max-width: 767px) {
  .ec-role.-pager {
    padding-left: 0;
    padding-right: 0;
  }
}

.ec-blockTopBtn {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid #232a31;
  font-size: 0;
  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;
}

.ec-blockTopBtn::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(/html/user_data/assets/img/common/ic-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  border: 0;
}

.c-table {
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  border-top: 1px solid #232a31;
  border-bottom: 1px solid #232a31;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .c-table {
    font-size: 1.4rem;
    display: block;
  }
  .c-table thead,
  .c-table tbody,
  .c-table tr {
    width: 100%;
    display: block;
  }
}

.c-table th {
  padding: 16px;
  text-align: center;
  font-weight: normal;
  background-color: #f8f7f5;
  border-bottom: 1px dotted rgba(35, 42, 49, 0.2);
}

@media (max-width: 767px) {
  .c-table th {
    display: block;
    text-align: left;
    padding: 8px 16px;
  }
}

.c-table td {
  padding: 16px 50px;
  border-bottom: 1px dotted rgba(35, 42, 49, 0.2);
}

@media (max-width: 767px) {
  .c-table td {
    display: block;
    text-align: left;
    padding: 8px 16px;
  }
}

@media (max-width: 767px) {
  .c-tb-scr {
    width: 100%;
    overflow: scroll;
    position: relative;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
  }
  .c-tb-scr::-webkit-scrollbar {
    /* Chrome, Safari 対応 */
    display: none;
  }
  .c-tb-scr::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 64px;
    height: 100%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
    /* IE6-9 */
  }
  .c-tb-scr .c-tb.-mc,
  .c-tb-scr .c-tb.-mc.-tv,
  .c-tb-scr .c-tb.-mc.-papers {
    width: 760px;
  }
}

.c-tb {
  width: 100%;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .c-tb {
    margin-bottom: 48px;
  }
}

.c-tb thead tr th {
  background-color: #f8f7f5;
  font-size: 1.3rem;
  padding: 4px 8px;
}

.c-tb tbody tr {
  border-bottom: 1px solid #ececec;
}

.c-tb tbody tr td {
  padding: 8px 0;
  font-size: 1.3rem;
}

.c-tb tbody tr td:not(:first-child) {
  padding-left: 8px;
  padding-right: 8px;
}

.c-tb.-mc tr td:nth-child(2) {
  width: 50%;
}

.c-tb.-mc a.ic-blank-inline:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: cover;
  background-position: center;
  background-image: url("/html/user_data/assets/img/common/ic-launch.svg");
  margin-left: 4px;
  position: relative;
  top: 3px;
}

.c-tb.-mc a.ic-amazon:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  line-height: 1;
  font-weight: lighter;
  margin-left: 8px;
  position: relative;
  top: 3px;
  background-image: url("/html/user_data/assets/img/common/ic-amazon.svg");
  background-size: cover;
}

.c-tb.-mc tr {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-tb.-mc tr:hover, .c-tb.-mc tr:active {
  background-color: #f8f7f5;
}

.c-tb.-mc td:nth-child(1) {
  padding-left: 8px;
}

.c-tb.-mc td:nth-child(1) a {
  width: 64px;
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.c-tb.-mc td:nth-child(1) a img {
  width: 100%;
}

.c-tb.-mc td:nth-child(1) a:hover, .c-tb.-mc td:nth-child(1) a:active {
  opacity: 0.8;
}

.c-tb.-mc td:nth-child(3) {
  width: 30%;
}

.c-tb.-mc td:nth-child(4) {
  width: 20%;
}

.c-tb.-mc.-papers td:nth-child(1),
.c-tb.-mc.-tv td:nth-child(1) {
  width: 50%;
}

.c-tb.-mc.-papers td:nth-child(2),
.c-tb.-mc.-tv td:nth-child(2) {
  width: 30%;
}

.c-tb.-mc.-papers td:nth-child(3),
.c-tb.-mc.-tv td:nth-child(3) {
  width: 20%;
}

.ec-checkbox label {
  font-size: 1.5rem;
}

.ec-shelfGrid a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ec-shelfGrid a:hover,
.ec-shelfGrid a:active {
  opacity: 0.75;
}

.ec-select.ec-select_search {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ec-select.ec-select_search:hover,
.ec-select.ec-select_search:active {
  opacity: 0.75;
}

/* ボーダーカラー上書き */
.ec-input textarea,
.ec-halfInput textarea,
.ec-numberInput textarea,
.ec-zipInput textarea,
.ec-telInput textarea,
.ec-select textarea,
.ec-birth textarea {
  border-color: #232a31;
  resize: none;
}

.ec-input.error textarea {
  border-color: #81191e;
  background-color: #FDF1F0;
}

/* テキストカラー上書き */
.ec-withdrawRole,
.ec-orderRole,
.ec-cartRole,
.ec-role {
  color: #232a31;
}

@media (max-width: 767px) {
  .ec-cartCompleteRole,
  .ec-cartRole {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.ec-orderRole {
  padding-left: 16px;
  padding-right: 16px;
}

#login_mypage,
.ec-login {
  height: 100%;
}

.ec-grid3__cell__ttl {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-bottom: 1em;
  text-align: center;
}

.ec-grid3__cell__text {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: justify;
}

.ec-grid3__cell__inner .text-link {
  color: #2d4585;
  padding-top: 1em;
  font-size: 1.4rem;
  line-height: 1.7;
  display: block;
  text-align: left;
}

#credit_change_card_exp_year,
#credit_change_card_exp_month,
#shopping_order_pay_way,
#shopping_order_card_exp_year,
#shopping_order_card_exp_month,
.ec-input select,
.ec-halfInput select,
.ec-numberInput select,
.ec-zipInput select,
.ec-telInput select,
.ec-select select,
.ec-birth select,
.ec-inlineBtn {
  background-color: #fff;
  border: 1px solid #232a31;
}

.ec-select {
  margin-bottom: 4px;
}

.ec-select select {
  height: 40px;
}

/*===============================
郵便番号自動入力
================================*/
.ec-zipInputHelp {
  line-height: 18px;
  position: relative;
  top: 3px;
}

.ec-zipInputHelp .ec-zipInputHelp__icon {
  background: #2d4585;
  width: 18px;
  height: 18px;
}

.ec-zipInputHelp .ec-zipInputHelp__icon .ec-icon img {
  width: 10px;
  height: 10px;
  position: relative;
  left: 4px;
  top: 0;
}

.ec-zipInputHelp span {
  color: #2d4585;
  font-size: 1.4rem;
  line-height: 18px;
  margin-left: 3px;
}

#credit_change_card_owner,
#credit_change_card_no,
#shopping_order_security_code,
#shopping_order_card_no,
#shopping_order_card_owner {
  border-color: #232a31;
  padding: 6px 12px;
  line-height: 1.42857;
  background-color: #fff;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  border-radius: 3px;
  margin-bottom: 8px;
}

#yamato_payment4_cvs .ec-radio div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#yamato_payment4_cvs label span {
  width: 116px;
  display: block;
  margin-right: 8px;
}

#yamato_payment4_cvs img {
  margin-bottom: 8px;
}

#credit_change_security_code + p,
#credit_change_card_owner + p,
#credit_change_card_no + p,
#shopping_order_card_owner + p,
#shopping_order_security_code + p {
  font-size: 1.4rem;
}

.shopping-note-asta-list {
  padding-bottom: 20px;
}

.shopping-note-asta-list .asta {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

.ec-borderedDefs dl#detail_box__card_name {
  border-bottom: 0;
}

#creditForm .form-group {
  margin-bottom: 0;
}

.ec-fm-md1 {
  margin-bottom: 30px;
}

.ec-fm-md1 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .ec-fm-md1 dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.ec-fm-md1 dl:not(:last-child) {
  margin-bottom: 4px;
}

.ec-fm-md1 dl dt {
  font-size: 1.5rem;
  line-height: 1.6;
  padding-top: 0;
  width: 35%;
  background-color: #f8f7f5;
  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;
  padding: 15px;
  font-weight: bold;
}

.mypage .ec-fm-md1 dl dt{
  padding: 15px 5px;
  width: 290px;
}

@media (max-width: 767px) {
  .mypage .ec-fm-md1 dl dt,
  .ec-fm-md1 dl dt {
    width: 100%;
    padding: 2px 12px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.ec-fm-md1 dl dt .ec-label {
  font-weight: normal;
  margin-bottom: 0;
}

.ec-fm-md1 dl dd {
  width: 65%;
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 15px 15px 11px 15px;
  word-break: break-all;
}

.mypage .ec-fm-md1 dl dd{
  width: calc(100% - 290px);
}

@media (max-width: 767px) {
  .mypage .ec-fm-md1 dl dd,
  .ec-fm-md1 dl dd {
    width: 100%;
    padding: 10px 0;
  }
}

.ec-fm-md1 dl dd .ec-input input,
.ec-fm-md1 dl dd .ec-halfInput input,
.ec-fm-md1 dl dd .ec-numberInput input,
.ec-fm-md1 dl dd .ec-zipInput input,
.ec-fm-md1 dl dd .ec-telInput input,
.ec-fm-md1 dl dd .ec-select input,
.ec-fm-md1 dl dd .ec-birth input {
  margin-bottom: 4px;
}

.ec-required {
  border: 1px solid #DE5D50;
  font-size: 10px;
  line-height: 10px;
  padding: 2px 4px;
  width: 30px;
}

.product_page .ec-drawerRole .ec-headerSearch {
  padding: 8px;
  margin-bottom: 0;
}

.ec-drawerRole .ec-headerLinkArea .ec-headerLink__list {
  border-top: 0;
}

.ec-drawerRole .ec-headerLinkArea {
  background-color: #232a31;
}

.ec-drawerRole .ec-headerLinkArea .ec-headerLink__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ec-drawerRole .ec-headerLinkArea .ec-headerLink__item:hover,
.ec-drawerRole .ec-headerLinkArea .ec-headerLink__item:active {
  text-decoration: none;
  opacity: 0.8;
}

.ec-drawerRole .ec-headerLinkArea .ec-headerLink__item span {
  font-size: 1.4rem;
  margin-left: 8px;
  line-height: 1.5rem;
}

.ec-itemNav {
  background-color: #f8f7f5;
}

.ec-itemNav__nav li a {
  background-color: transparent;
}

.ec-progress .ec-progress__number {
  background-color: #232a31;
}

.ec-progress .ec-progress__item:after {
  background: #232a31;
}

@media (max-width: 767px) {
  .ec-progress .ec-progress__label {
    font-size: 1rem;
  }
}

.ec-progress .is-complete .ec-progress__number {
  background-color: #de5d50;
}

.ec-progress .is-complete .ec-progress__label {
  color: #de5d50;
}

.c-hd-mv {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .c-hd-mv {
    margin-bottom: 50px;
  }
}

.c-hd-mv img {
  width: 100%;
  height: auto;
}

.ec-cartTable {
  border-top: 1px solid #ececec;
}

.ec-cartRow .ec-cartRow__delColumn,
.ec-cartRow .ec-cartRow__contentColumn,
.ec-cartRow .ec-cartRow__amountColumn,
.ec-cartRow .ec-cartRow__subtotalColumn {
  border-bottom: 1px solid #ececec;
}

@media (max-width: 767px) {
  .ec-cartRow .ec-cartRow__amountColumn .ec-cartRow__amountSP {
    font-size: 1.4rem;
  }
  .ec-cartRow__unitPrice {
    font-size: 1.4rem;
  }
  .ec-cartRow .ec-cartRow__summary .ec-cartRow__sutbtotalSP {
    font-size: 1.4rem;
  }
  .ec-cartRow .ec-cartRow__summary .ec-cartRow__name {
    font-size: 1.2rem;
  }
  .ec-cartRow .ec-cartRow__delColumn {
    width: 10%;
  }
  .ec-cartRow .ec-cartRow__img {
    width: 20%;
  }
}

.ec-cartRow .ec-cartRow__img a {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
  display: block;
}

.ec-cartRow .ec-cartRow__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

.ec-cartRow__name {
  font-size: 14px;
  font-weight: normal;
}

.ec-cartRow__name a {
  font-weight: bold;
  font-size: 15px;
}

@media (max-width: 767px) {
  .ec-cartRow__name a {
    font-size: 13px;
  }
}

.ec-cartRole .ec-cartRole__totalText {
  padding-bottom: 16px;
}

.ec-cartRole .ec-cartRole__actions {
  margin-right: 0;
}

.ec-cartNavi {
  height: auto;
  min-width: 0;
  padding: 0;
}

.ec-cartNaviIsset {
  border-radius: 6px;
  padding: 16px;
  background-color: #fff;
  -webkit-box-shadow: white 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  box-shadow: white 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.ec-cartNaviIsset {
  right: -15px;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cart {
  margin-bottom: 8px;
  padding-bottom: 8px;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cartImage {
  width: 30%;
  padding-bottom: 30%;
  position: relative;
  overflow: hidden;
  height: auto;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cartImage img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cartContent {
  width: 70%;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cartContentTax {
  font-size: 1.1rem;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cartContentNumber {
  font-size: 1.3rem;
  padding-top: 4px;
}

.ec-cartNaviIsset__cartContentTitle {
  font-size: 1.3rem;
  font-weight: bold;
}

.ec-cartNaviIsset__cartContentPrice {
  font-size: 1.3rem;
}

.ec-cartNaviNull {
  border-radius: 6px;
  padding: 8px;
  background-color: #fff;
  -webkit-box-shadow: white 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  box-shadow: white 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.ec-cartNaviNull::before {
  display: none;
}

.ec-cartNaviNull .ec-cartNaviNull__message {
  background-color: #ffebee;
  color: #de5d50;
  font-size: 1.2rem;
  border: 1px solid #ecd8db;
  border-radius: 4px;
  padding: 16px 8px;
}

@media (max-width: 767px) {
  .ec-orderRole .ec-borderedList {
    border-top: 0;
  }
}

.ec-cartNavi .ec-cartNavi__badge {
  left: 16px;
  font-style: normal;
  text-align: center;
}

.ec-borderedDefs {
  border-top: 1px solid #ececec;
}

.ec-borderedDefs dl {
  border-bottom: 1px solid #ececec;
  padding: 15px 4px;
}

.ec-borderedDefs dt,
.ec-borderedDefs dd {
  font-size: 1.5rem;
  line-height: 1.6;
  padding-top: 0;
}

@media (max-width: 767px) {
  .ec-borderedDefs dt,
  .ec-borderedDefs dd {
    font-size: 1.4rem;
  }
}

.ec-borderedDefs dd {
  overflow: hidden;
  word-break: break-all;
}

.slider {
  opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.slider.slick-initialized {
  opacity: 1;
}

/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical
> .swiper-pagination-bullets
.swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal
> .swiper-pagination-bullets
.swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl
> .swiper-pagination-bullets-dynamic
.swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl
.swiper-pagination-progressbar
.swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal
> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white
.swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black
.swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.sns-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .sns-section {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.sns-section__ttl {
  background: #f8f5ec;
  height: 68px;
  max-width: 458px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 68px;
  padding-right: 68px;
  position: relative;
  margin-bottom: 26px;
}

.sns-section__ttl:after {
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(0, 153, 255, 0);
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 11px;
  border-right-width: 11px;
  margin-left: -11px;
  border-top-color: #f8f5ec;
  top: 100%;
  left: 50%;
}

.sns-section__ttl__deco1 {
  width: 80px;
  position: absolute;
  left: -50px;
  top: -30px;
}

@media (max-width: 767px) {
  .sns-section__ttl__deco1 {
    width: 56px;
    left: -25px;
    top: -15px;
  }
}

.sns-section__ttl__deco2 {
  width: 80px;
  position: absolute;
  right: -50px;
  bottom: -30px;
}

@media (max-width: 767px) {
  .sns-section__ttl__deco2 {
    width: 56px;
    right: -25px;
    bottom: -15px;
  }
}

.sns-section__ttl__text {
  font-family: "HiraKakuPro-W6";
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
  color: #310519;
}

@media (max-width: 767px) {
  .sns-section__ttl__text {
    font-size: 1.6rem;
  }
}

.sns-section__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sns-section__nav__list__item {
  width: 48px;
}

.sns-section__nav__list__item:not(:last-child) {
  margin-right: 16px;
}

/*===============================
グローバルナビ
================================*/
.gnav__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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
}

.gnav__list__item {
  padding-left: 16px;
  padding-right: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gnav__list__item:hover,
.gnav__list__item:active {
  opacity: 0.75;
}

.gnav__list__item__inner {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #232a31;
}

.gnav__list__item a:hover,
.gnav__list__item a:active {
  text-decoration: none;
  color: #232a31;
}

.gnav__list__item__inner .ic {
  width: 36px;
  height: 36px;
}

.gnav__list__item__inner .text {
  font-size: 1rem;
}

/*===============================
ヘッダー
================================*/
.ec-layoutRole__header {
  background-color: #fff;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 99;
  border-bottom: #ececec solid 1px;
  height: 100px;
}

@media screen and (max-width: 1100px) {
  .header {
    background: transparent;
    border: none;
    padding: 0;
    height: 60px;
  }
}

.header a {
  text-decoration: none;
  color: #232a31;
  display: block;
}

/*===============================
画面上部に固定レイアウト
================================*/
@media screen and (min-width: 641px) {
  .header.is-slim {
    position: fixed;
    top: 0;
  }
}

.header.is-slim .header__logo-min {
  display: block;
}

/*===============================
ヘッダー インナー
================================*/
.header__nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 1100px) {
  .header__nav {
    display: none;
  }
}

/*===============================
ヘッダー ロゴ
================================*/
.header__nav__logo {
  text-align: center;
  padding: 36px 0;
  width: 100%;
}

.header__nav__logo p {
  margin: 0 0 8px;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.header__logo {
  width: 222px;
  height: 63px;
  line-height: 1;
  margin: 0 auto;
}

@media screen and (max-width: 1100px) {
  .header__logo {
    width: 150px;
    height: 25px;
  }
}

.header__logo-min {
  width: 350px;
}

@media (max-width: 1340px) {
  .header__logo-min {
    width: 240px;
  }
}

/*===============================
ヘッダー グローバルメニュー
================================*/
.header__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
}

.header__nav__list::after {
  content: "";
  width: 1px;
  height: 20px;
  background: #232a31;
  display: inline-block;
  margin-left: 48px;
  margin-right: 48px;
  margin-top: 20px;
}

@media (max-width: 1340px) {
  .header__nav__list::after {
    margin-left: 16px;
    margin-right: 16px;
  }
}

.header__nav__list__item {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 2rem;
}

@media (max-width: 1340px) {
  .header__nav__list__item {
    font-size: 1.3rem;
    margin-left: 8px;
  }
}

.header__nav__list__item .header__nav__list__item__row {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 32px;
}

.header__nav__list__item .header__nav__list__item__deco {
  height: 24px;
}

@media (max-width: 1340px) {
  .header__nav__list__item .header__nav__list__item__deco {
    height: 20px;
  }
}

.header__nav__list__item .header__nav__list__item__deco img {
  height: 100%;
  width: auto;
}

.header__nav__list__item .header__nav__list__item__deco.-ic-carrot {
  height: 32px;
}

.header__nav__list__item__text {
  font-family: "HiraKakuPro-W6";
  font-weight: normal;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
  position: relative;
  top: 2px;
  padding-left: 12px;
  font-weight: bold;
}

@media (max-width: 1340px) {
  .header__nav__list__item__text {
    font-size: 1.3rem;
    padding-left: 6px;
  }
}

.header__nav__list__item[data-hassubnav]:hover .header__nav__subnav {
  opacity: 1;
  pointer-events: auto;
}

.header__nav__list__item[data-hassubnav]:hover .header__nav__subnav__inner {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.header__nav__list__item.separate {
  position: relative;
  padding-left: 2rem;
}

.header__nav__list__item.separate:before {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 10px);
  left: 0;
  height: 20px;
  width: 1px;
  background: #000;
}

.header__nav__list__item .link_inner,
.header__nav__list__item a {
  display: block;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 1.5rem 1rem;
}

@media screen and (min-width: 961px) {
  .header__nav__list__item .link_inner:hover,
  .header__nav__list__item a:hover {
    opacity: 0.75;
    color: #232a31;
  }
}

@media screen and (max-width: 1100px) {
  .header__nav__list__item .link_inner,
  .header__nav__list__item a {
    padding: 1.5rem 0.5vw;
  }
}

.header__nav__list__item.current a {
  color: #00aad9;
}

/*===============================
ヘッダー メガメニュー
================================*/
.header__nav__subnav {
  position: absolute;
  width: 100%;
  left: 0;
  padding-bottom: 30px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
}

.header__nav__subnav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 4rem 0;
  background: #f8f7f5;
  -webkit-box-shadow: 0 15px 15px rgba(87, 87, 87, 0.08);
  box-shadow: 0 15px 15px rgba(87, 87, 87, 0.08);
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__nav__subnav__inner[data-subnav="center"] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header__nav__subnav__inner[data-subnav="left"] {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.header__nav__subnav__inner[data-subnav="left"] .header__nav__subnav__list {
  margin-left: 2rem;
}

.header__nav__subnav__inner .btn {
  text-align: center;
}

.header__nav__subnav__inner .btn a {
  font-weight: normal;
  max-width: 280px;
  color: #fff;
}

.header__nav__subnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
}

.header__nav__subnav__list li {
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 0;
  margin: 0 1.5rem;
}

.header__nav__subnav__list a {
  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;
  padding: 0;
}

.header__nav__subnav__list span {
  padding: 0.5rem 0;
}

.header__nav__subnav__list--products img {
  width: 80px;
  height: 80px;
}

.header__nav__subnav__list--company img {
  width: 150px;
  height: 94px;
}

.header__nav__subnav__txtlist {
  font-size: 1.3rem;
  font-weight: normal;
  border-left: #000 solid 1px;
  margin: 0 0 0 3rem;
  padding: 0 0 0 4rem;
}

.header__nav__subnav__txtlist li {
  margin-bottom: 0.5rem;
}

.header__nav__subnav__txtlist li a {
  text-align: left;
  padding: 0;
  line-height: 2;
}

.header__nav__subnav .btn {
  text-align: center;
  margin: 2rem 0 0;
  font-size: 1.4rem;
  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;
}

/*===============================
ヘッダー ユーティリティメニュー
================================*/
.header__nav__utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 1100px) {
  .header__nav__utility {
    position: absolute;
    top: 1vw;
    right: 0;
    padding: 0 1vw 0 0;
  }
}

.header__nav__utility__item {
  margin: 0 0.5rem;
}

.header__nav__utility__item a {
  cursor: pointer;
  display: block;
  padding: 1.5rem 1rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.header__nav__utility__item a:hover, .header__nav__utility__item a:active {
  color: #232a31;
  opacity: 0.75;
}

/*===============================
ヘッダー 検索メニュー
================================*/
.header__nav__utility__item--form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.header__nav__utility__item--form.active .header__nav__utility__form {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 2;
}

.header__nav__utility__item .btn-search {
  cursor: pointer;
  display: block;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 1;
}

.header__nav__utility__item .header__nav__utility__form {
  position: absolute;
  right: 0;
  top: 10px;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__nav__utility__item .header__nav__utility__form__icon-search {
  position: absolute;
}

.ec-headerSearch .ec-headerSearch__category {
  width: 50%;
}

.ec-headerSearch .ec-headerSearch__category .ec-select select {
  padding-left: 14px;
  max-width: 320px;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 1100px) {
  .ec-headerSearch .ec-headerSearch__category .ec-select.ec-select_search {
    background-color: #232a31;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
  }
}

.ec-headerSearch .ec-headerSearch__category .ec-select.ec-select_search::before {
  position: absolute;
  right: 10px;
  top: 11px;
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("/html/user_data/assets/img/common/ic-arrow-wh.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: block;
  border: 0;
}

.ec-headerSearch .ec-headerSearch__keyword {
  border-color: #232a31;
  background-color: #fff;
  width: 50%;
  overflow: hidden;
}

@media screen and (max-width: 1100px) {
  .ec-headerSearch .ec-headerSearch__keyword {
    border-radius: 0 0 3px 3px;
    overflow: hidden;
  }
}

.ec-headerSearch .ec-headerSearch__keyword input[type="search"] {
  color: #2d4585;
  font-size: 1.4rem;
  line-height: 1.5;
}

.ec-headerSearch .ec-headerSearch__keyword .ec-icon.-ic-search {
  width: 16px;
  height: 16px;
  padding-left: 0;
  padding-right: 0;
}

.ec-headerSearch .ec-headerSearch__keyword .ec-icon.-ic-search img {
  width: auto;
  height: 100%;
}

.ec-headerSearch .ec-headerSearch__keywordBtn {
  -webkit-transform: none;
          transform: none;
  top: -2px;
  right: 16px;
  padding-left: 0;
  padding-right: 0;
  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: 16px;
  height: 100%;
}

@media screen and (max-width: 1100px) {
  .ec-headerSearch .ec-headerSearch__keywordBtn {
    right: 9px;
  }
}

/*===============================
ヘッダー スマホメニュー
================================*/
.header-mobile {
  position: fixed;
  z-index: 99;
  width: 100%;
}

.header-mobile__logo {
  margin: 0 auto;
  padding-top: 9px;
  height: 42px;
  width: 142px;
}

.header-mobile__logo a {
  display: block;
  width: 142px;
  height: 42px;
}

.header-mobile__logo a img {
  width: 142px;
  height: 42px;
  display: block;
}

.header-mobile__nav {
  display: none;
  opacity: 0;
  height: 0;
}

@media screen and (max-width: 1100px) {
  .header-mobile__nav {
    display: block;
    opacity: 1;
  }
}

.header-mobile__nav__inner {
  position: relative;
  height: 60px;
  z-index: 98;
  background: #fff;
}

.header-mobile__btn {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

@media screen and (max-width: 1100px) {
  .header-mobile__btn {
    display: block;
  }
}

.header-mobile__btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background: #232a31;
  transition: -webkit-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header-mobile__btn__line {
  position: absolute;
  width: 23px;
  height: 2px;
  background: #000;
  top: 25px;
  left: 17px;
  transition: top 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  -webkit-transition: top 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, top 0.3s, background-color 0.3s;
  transition: transform 0.3s, top 0.3s, background-color 0.3s, -webkit-transform 0.3s;
}

.header-mobile__btn__line:nth-child(2) {
  top: 32px;
}

.header-mobile__form__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: #ececec solid 1px;
  border-radius: 1px;
}

.header-mobile__form__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 5px 15px !important;
  line-height: 30px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.header-mobile__form__icon-search {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url("../img/common/icon_search.svg") center center no-repeat !important;
  background-size: 20px 20px !important;
  opacity: 1 !important;
  border: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.header-mobile__form .ui-btn {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  padding: none;
  border: 0;
}

.header-mobile__menu {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #fff;
  z-index: 97;
}

.header-mobile__menu__inner {
  width: 100%;
  margin: 0 auto;
  padding: 16px;
}

.header-mobile__menu__inner .header-mobile__form {
  margin-bottom: 8px;
}

.header-mobile__menu__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header-mobile__menu__products li {
  width: 50%;
  font-size: 1.3rem;
}

.header-mobile__menu__products li a {
  display: block;
}

.header-mobile__menu__product__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header-mobile__menu__product__deco {
  width: 48px;
  height: 48px;
  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;
}

.header-mobile__menu__product__deco img {
  width: 36px;
  height: auto;
}

.header-mobile__menu__products li:nth-child(2) .header-mobile__menu__product__deco img {
  width: 26px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  position: relative;
  right: -5px;
}

.header-mobile__menu__product__item__text {
  width: calc(100% - 48px);
  padding-left: 8px;
  font-weight: bold;
}

.header-mobile__menu__list {
  background: #f8f7f5;
}

.header-mobile__menu__list li {
  border-bottom: #cdccca solid 1px;
}

.header-mobile__menu__list li:last-child {
  border: none;
}

.header-mobile__menu__list li [data-acc-tab],
.header-mobile__menu__list li a {
  display: block;
  position: relative;
  padding: 8px 16px;
  font-size: 1.3rem;
  line-height: 1.71428;
  letter-spacing: 0.08em;
}

.header-mobile__menu__list li .icon-arrow,
.header-mobile__menu__list li .icon-arrow--bottom,
.header-mobile__menu__list li .icon-arrow--top,
.header-mobile__menu__list li .icon-arrow--white,
.header-mobile__menu__list li .icon-arrow--white--bottom {
  position: absolute;
  top: 31px;
  right: 20px;
}

.header-mobile__menu__sublist {
  border-top: #cdccca solid 1px;
  background: #e9e8e5;
  display: none;
}

.header-mobile__menu__sublist.active {
  display: block;
}

.header-mobile__menu__sublist li a {
  padding-left: 3.2rem;
}

.header-mobile__menu__member {
  background: #232a31;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 16px;
}

.header-mobile__menu__member li {
  width: calc(50% - 8px);
  margin: 0;
  text-align: center;
}

.header-mobile__menu__member li:nth-child(even) {
  margin-left: auto;
}

.header-mobile__menu__member a {
  display: block;
  color: #fff;
  padding: 0.5rem;
  border: #fff solid 1px;
  font-size: 1.3rem;
}

.mobile-nav-open {
  overflow: hidden;
}

.mobile-nav-open .header-mobile__menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.3s 0.2s;
  transition: all 0.3s 0.2s;
}

.mobile-nav-open .header-mobile__btn::before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.mobile-nav-open .header-mobile__btn__line {
  background: #ffffff;
}

.mobile-nav-open .header-mobile__btn__line:nth-child(1) {
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
  top: 30px;
}

.mobile-nav-open .header-mobile__btn__line:nth-child(2) {
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
  top: 30px;
}

.header__nav__list__item .icon-arrow--bottom:before {
  top: -6px;
}

.header-mobile__nav__utility {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  top: 0;
  right: 0;
  margin-right: 4px;
}

.header-mobile__nav__utility__item {
  margin: 0 6px;
}

.header-mobile__nav__utility__item:last-child {
  margin-right: 0;
}

.header-mobile__menu__teiki {
  padding: 0 16px 16px 16px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header-mobile__menu__teiki__col {
  width: calc(50% - 8px);
}

.header-mobile__menu__teiki__col:nth-child(even) {
  margin-left: auto;
}

.header__nav__utility__form.-hd-search .ec-headerSearch {
  width: 490px;
  z-index: 2;
}

.header-mobile__menu__search {
  margin-bottom: 16px;
}

.header-mobile__menu__search .ec-headerSearch {
  width: 100%;
  max-width: 100%;
}

.header-mobile__menu__search .ec-headerSearch .ec-headerSearch__category,
.header-mobile__menu__search .ec-headerSearch .ec-headerSearch__keyword {
  width: 100%;
  max-width: 100%;
}

.ec-headerSearch .ec-headerSearch__category .ec-select select {
  max-width: 100%;
}

.head_cart-buy {
  display: inline-block;
  border-radius: 99999px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px;
  height: 17px;
  font-size: 10px;
  line-height: 0.7;
  vertical-align: top;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #81191e;
  min-width: 17px;
  -webkit-transform: translate(-5px, 0);
          transform: translate(-5px, 0);
}

/*===============================
フッター
================================*/
.page-top {
  position: absolute;
  top: -70px;
  right: 20px;
  width: 50px;
  height: 50px;
}

.page-top a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: #fff;
  border: #111 solid 1px;
}

.page-top .icon-arrow--top {
  top: 26px;
  left: 12px;
}

@media (max-width: 767px) {
  .page-top .icon-arrow--top {
    left: 14px;
  }
}

.footer {
  color: #fff;
  font-size: 1.2rem;
  padding: 50px 0 6rem;
  position: relative;
  min-height: 420px;
  background: #232a31 url("/html/user_data/assets/img/common/footer_bg.png") no-repeat center bottom;
  background-size: cover;
}

@media screen and (max-width: 1600px) {
  .footer {
    padding: 6rem 0 5rem;
  }
}

@media screen and (max-width: 960px) {
  .footer {
    padding: 4rem 0 5rem;
  }
}

@media (max-width: 767px) {
  .footer {
    margin: 0;
    padding: 0 0 27vw;
  }
}

.footer a {
  color: #fff;
}

.footer__inner {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 960px) {
  .footer__inner {
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .footer__inner {
    display: none;
  }
}

.footer__info {
  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;
}

@media screen and (max-width: 960px) {
  .footer__info {
    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;
  }
}

.footer__logo {
  width: 116px;
  height: 116px;
  margin-bottom: 0;
}

.footer__content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1130px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer__content {
  width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (max-width: 960px) {
  .footer__content {
    width: 50%;
  }
}

.footer__content__title {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
  border-bottom: #fff solid 1px;
  padding-bottom: 10px;
}

.footer__content__nav li {
  margin-bottom: 10px;
}

.footer__content__nav a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  display: block;
  text-decoration: none !important;
}

.footer__content__nav a:hover,
.footer__content__nav a:active {
  opacity: 0.75;
}

.footer__subnav {
  margin: 1rem 0;
  overflow: hidden;
}

.footer__subnav > li {
  font-size: 1.4rem;
  font-weight: bold;
  float: left;
  width: 50%;
  padding-right: 5%;
}

@media screen and (max-width: 960px) {
  .footer__subnav > li {
    width: 100%;
    padding-right: 0;
  }
}

.footer__subnav__list > li {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 0.9rem;
}

.footer__mobile {
  display: none;
}

@media (max-width: 767px) {
  .footer__mobile {
    display: block;
  }
}

@media (max-width: 767px) {
  .footer__mobile__title {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    padding: 16px 20px;
  }
}

.footer__mobile [data-footer-sns] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5vw 0;
}

.footer__mobile__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 5% 0 0;
}

.footer__mobile__sns li {
  margin: 0 3vw;
}

.footer__mobile__nav {
  border-bottom: rgba(255, 255, 255, 0.25) solid 1px;
}

.footer__mobile__nav [data-acc-tab] {
  position: relative;
}

.footer__mobile__nav [data-acc-tab] .icon-arrow,
.footer__mobile__nav [data-acc-tab] .icon-arrow--bottom,
.footer__mobile__nav [data-acc-tab] .icon-arrow--top,
.footer__mobile__nav [data-acc-tab] .icon-arrow--white,
.footer__mobile__nav [data-acc-tab] .icon-arrow--white--bottom {
  position: absolute;
  display: block;
  right: 20px;
  top: 18px;
}

.footer__mobile__nav [data-acc-tab].active .icon-arrow,
.footer__mobile__nav [data-acc-tab].active .icon-arrow--bottom,
.footer__mobile__nav [data-acc-tab].active .icon-arrow--top,
.footer__mobile__nav [data-acc-tab].active .icon-arrow--white,
.footer__mobile__nav [data-acc-tab].active .icon-arrow--white--bottom {
  top: 22px;
  right: 14px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.footer__mobile__nav [data-acc-content] {
  display: none;
}

.footer__mobile__nav [data-acc-content].active {
  display: block;
}

.footer__mobile__nav__list {
  margin: 0 0 5vw;
  padding: 0 5%;
}

.footer__mobile__nav__list li {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.footer__mobile__nav__list li a {
  display: inline-block;
  padding: 8px 0;
  display: block;
}

.footer__mobile__info {
  text-align: center;
  padding: 10vw 0 2vw;
}

.footer__mobile__info p {
  font-size: 1.2rem;
}

.footer__mobile__info__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5vw 0 0;
}

.footer__mobile__info__nav li {
  font-size: 1.3rem;
  padding: 4px;
  line-height: 2;
}

@media (max-width: 767px) {
  .footer__mobile__info__nav li {
    width: 50%;
  }
}

.footer__mobile__info__nav li:last-child {
  border: none;
}

.footer__mobile__logo {
  width: 134px;
  height: auto;
  margin: 0 auto;
}

.footer .copy {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  text-align: center;
  color: #9ca3ab;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .footer .copy {
    font-size: 1rem;
    bottom: 16px;
  }
}

.footer__nav__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .footer__nav__sns {
    padding-top: 20px;
  }
}

.footer__nav__sns__item {
  width: 38px;
}

.footer__nav__sns__item:not(:last-child) {
  margin-right: 16px;
}

.footer__nav__sns__item a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer__nav__sns__item a:hover, .footer__nav__sns__item a:active {
  opacity: .75;
}

/*===============================
TOPページ　
================================*/
.swiper-container {
  margin: 0 0 2rem;
}

@media screen and (max-width: 960px) {
  .swiper-container {
    margin: 0 0 1rem;
  }
}

.swiper-wrapper {
  height: auto;
  padding: 0 0 40px;
}

.swiper-slide {
  width: 1060px;
  z-index: 99;
}

@media screen and (max-width: 960px) {
  .swiper-slide {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .swiper-slide {
    width: 100%;
  }
}

.swiper-slide a {
  display: block;
}

.hero-button {
  position: absolute;
  top: 245px;
  z-index: 99;
  width: 1060px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .hero-button {
    display: none;
  }
}

.hero-button-prev,
.hero-button-next {
  position: absolute;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  cursor: pointer;
  outline: none;
}

.hero-button-prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  left: -22px;
}

.hero-button-prev .icon-arrow,
.hero-button-prev .icon-arrow--bottom,
.hero-button-prev .icon-arrow--top,
.hero-button-prev .icon-arrow--white,
.hero-button-prev .icon-arrow--white--bottom {
  top: 20px;
  left: 7px;
}

.hero-button-next {
  right: -22px;
}

.hero-button-next .icon-arrow,
.hero-button-next .icon-arrow--bottom,
.hero-button-next .icon-arrow--top,
.hero-button-next .icon-arrow--white,
.hero-button-next .icon-arrow--white--bottom {
  top: 20px;
  left: 7px;
}

.swiper-container-horizontal
> .swiper-pagination-bullets
.swiper-pagination-bullet {
  margin: 0 6px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  opacity: 1;
  border: #232a31 solid 1px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #232a31;
  background-color: #2f0515;
  border: #2f0515 solid 1px;
}

.hero-slide .swiper-pagination {
  position: relative;
}

.hero-slide .swiper-pagination:after {
  content: "";
  width: 100%;
  height: 50px;
  -webkit-box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: -80px;
}

.hero-slide .swiper-slide.-commingsoon {
  position: relative;
}

.hero-slide .swiper-slide.-commingsoon::after {
  content: "CommingSoon";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.4rem;
  letter-spacing: .08em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}

@media (max-width: 767px) {
  .hero-slide .swiper-slide.-commingsoon::after {
    font-size: 1.3rem;
  }
}

/*===============================
おすすめ商品プラグイン
================================*/
.ec-newItemRole {
  padding-top: 0;
  position: relative;
}

.recommend-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 3rem 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 15px;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .recommend-box {
    margin-left: 0;
    margin-right: 0;
  }
}

.recommend-box__item {
  width: 25%;
}

@media (max-width: 767px) {
  .recommend-box__item {
    width: 40%;
  }
}

.recommend-box__item a {
  text-decoration: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 0 4px;
}

.recommend-box__item a:hover,
.recommend-box__item a:active {
  opacity: 0.75;
  color: #232a31;
}

.recommend-box__item__image {
  text-align: center;
  margin: 0;
}

.recommend-box__item__desc {
  padding: 24px 0;
}

@media (max-width: 767px) {
  .recommend-box__item__desc {
    padding: 12px 8px;
  }
}

.recommend-box__item__desc .product-name {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.recommend-box__item__name {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .recommend-box__item__name {
    font-size: 1.3rem;
  }
}

.recommend-box__item__price {
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .recommend-box__item__price {
    font-size: 1.5rem;
  }
}

.recommend-box__item__price span {
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .recommend-box__item__price span {
    font-size: 1.1rem;
  }
}

.ec-newItemRole .ec-newItemRole__list {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  margin-bottom: 30px;
}

.ec-newItemRole .ec-newItemRole__listItem {
  margin-bottom: 5%;
}

@media only screen and (min-width: 768px) {
  .ec-newItemRole .ec-newItemRole__listItem {
    width: 23% !important;
    margin-bottom: 30px;
    margin-right: 2.6%;
  }
  .ec-newItemRole .ec-newItemRole__listItem:nth-child(odd),
  .ec-newItemRole .ec-newItemRole__listItem:not(:last-of-type) {
    margin-right: 2.6%;
  }
  .ec-newItemRole .ec-newItemRole__listItem:nth-of-type(4n) {
    margin-right: 0;
  }
}

.ec-newItemRole .ec-newItemRole__listItem a {
  color: black;
}

.ec-newItemRole .ec-newItemRole__listItemTitle {
  margin: 10px 0;
}

.ec-newItemRole .ec-newItemRole__listItemPrice {
  margin-top: 10px;
  font-weight: bold;
}

.ec-price .ec-price__price {
  font-size: 14px;
}

.ec-newItemRole__listItemTag {
  border-top: 1px dotted #ccc;
  margin-top: 10px;
}

.ec-newItemRole__listItemTag ul {
  padding: 0;
  margin-top: 10px;
  margin-bottom: 0;
  display: inline-block;
}

.ec-newItemRole__tag {
  display: inline-block;
  padding: 2px 5px;
  margin-bottom: 1%;
  list-style: none;
  font-size: 12px;
  color: #525263;
  border: solid 1px #D7DADD;
  border-radius: 3px;
  background-color: #F5F7F8;
}

.hover_none {
  display: inline-block;
}

.ec-newItemRole .ec-newItemRole__list .ec-newItemRole__listItem a:hover .hover_none {
  text-decoration: none !important;
  color: #232a31;
}

.ec-newItemRole .ec-newItemRole__list .ec-newItemRole__listItem a:hover .ec-price__price {
  text-decoration: underline;
  color: #232a31;
}

.ec-newItemRole__listItemBrand,
.ec-newItemRole__listItemStock,
.ec-newItemRole__listItemCode {
  font-size: 12px;
  margin-top: 10px;
}

.ec-newItemRole__listItemCategory {
  font-size: 12px;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px dotted #ccc;
}

.ec-newItemRole__listItemCategory ul {
  text-decoration: none;
  display: block;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.ec-newItemRole__listItemDescription {
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px dotted #ccc;
}

.ec-blockBtn--top {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .ec-layoutRole__left .ec-newItemRole .l-side__hide,
  .ec-layoutRole__right .ec-newItemRole .l-side__hide {
    display: none;
  }
  .ec-layoutRole__left .ec-newItemRole .ec-secHeading__ja,
  .ec-layoutRole__right .ec-newItemRole .ec-secHeading__ja {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .2em;
  }
  .ec-layoutRole__left .ec-secHeading,
  .ec-layoutRole__right .ec-secHeading {
    background: #F8F8F8;
    padding: 8px;
  }
  .ec-layoutRole__left .ec-newItemRole,
  .ec-layoutRole__right .ec-newItemRole {
    padding-top: 0;
  }
  .ec-layoutRole__left .ec-newItemRole .ec-newItemRole__listItem,
  .ec-layoutRole__right .ec-newItemRole .ec-newItemRole__listItem {
    width: 100% !important;
    margin-right: 0 !important;
  }
}

.recommend-box__item__image {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
}

.recommend-box__item__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

.swiper-pagination-recommend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-button-prev.-recommend,
.swiper-button-next.-recommend {
  background-image: none;
}

.swiper-button-prev.-recommend {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #282828;
  border-right: 2px solid #282828;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition: all 0.12s ease-in 0s;
  transition: all 0.12s ease-in 0s;
  left: 0;
}

@media (max-width: 767px) {
  .swiper-button-prev.-recommend {
    display: none;
  }
}

.swiper-button-next.-recommend {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #282828;
  border-right: 2px solid #282828;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.12s ease-in 0s;
  transition: all 0.12s ease-in 0s;
  right: 0;
}

@media (max-width: 767px) {
  .swiper-button-next.-recommend {
    display: none;
  }
}

/*===============================
TOPバナー
================================*/
.bnr-box li {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .bnr-box li {
    margin-bottom: 2rem;
  }
}

.bnr-box li:last-child {
  margin-bottom: 0;
}

.bnr-box__item a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: block;
}

.bnr-box__item a:hover, .bnr-box__item a:active {
  opacity: 0.75;
}

.bnr-box__item.layout {
  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: 3rem 0 0;
  margin: 3rem 0 0;
  border-top: 1px solid #232a31;
}

@media (max-width: 767px) {
  .bnr-box__item.layout {
    padding: 16px 0 0;
    margin: 16px 0 0;
  }
}

.bnr-box__item__card {
  width: 32%;
}

.bnr-box__item__card a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: block;
}

.bnr-box__item__card a:hover, .bnr-box__item__card a:active {
  opacity: 0.75;
}

@media (max-width: 767px) {
  .bnr-box__item__card {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.ftbnr-box {
  background: #ddd2bd;
  margin: 3rem 0;
  padding: 32px 24px 24px 24px;
}

@media (max-width: 767px) {
  .ftbnr-box {
    padding: 16px 8px;
  }
}

.ftbnr-box__title {
  text-align: center;
}

@media (max-width: 767px) {
  .ftbnr-box__title {
    font-size: 1.7rem;
    line-height: 1.6;
  }
}

.ftbnr-box__item.layout {
  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: 2rem 0 0;
}

@media (max-width: 767px) {
  .ftbnr-box__item.layout {
    padding: 4px 0 0;
  }
}

.ftbnr-box__item__card {
  width: 33.33333%;
  padding: 8px;
}

@media (max-width: 767px) {
  .ftbnr-box__item__card {
    width: 100%;
    margin-bottom: 0;
  }
}

.ftbnr-box__item__card.-choice .ftbnr-box__item__card__txt {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  padding: 15px;
}

.ftbnr-box__item__card.-choice .ftbnr-box__item__card__txt {
  background: #ad0003;
}

.ftbnr-box__item__card.-sato .ftbnr-box__item__card__txt {
  background: #9a5a29;
}

.ftbnr-box__item__card.-rakuten .ftbnr-box__item__card__txt {
  background: #ce0100;
}

.ftbnr-box__item__card a {
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.ftbnr-box__item__card a:hover {
  opacity: 0.75;
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
  text-decoration: none;
}

.ftbnr-box__item__card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 15px;
}

.ftbnr-box__item__card__header__meta {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.ftbnr-box__item__card__txt {
  position: relative;
  color: #fff;
  background: #333;
  padding: 15px;
}

.ftbnr-box__item__card__txt p {
  font-size: 1.4rem;
  line-height: 1.5;
}

.ftbnr-box__title {
  font-size: 120%;
}

.ftbnr-box__item__card__header__img {
  width: 40%;
}

.ec-newsRole {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .ec-newsRole {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.ec-newsRole .ec-ttl {
  margin-bottom: 0;
}

.ec-newsRole__ttl__tex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: 40px;
}

.ec-newsRole__ttl__tex__en {
  font-family: "HiraKakuPro-W6";
  font-weight: bold;
  font-size: 4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #310519;
}

.ec-newsRole__ttl__tex__ja {
  font-family: "HiraKakuPro-W6";
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #310519;
}

.ec-newsRole .ec-newsRole__news {
  margin-bottom: 50px;
  border: none;
  padding: 0;
  border-top: 1px solid #232a31;
  border-bottom: 1px solid #232a31;
}

.ec-newsRole .ec-newsRole__newsItem {
  /*padding: 15px 0;*/
	padding: 2em 0;
}

@media (max-width: 767px) {
  .ec-newsRole .ec-newsRole__newsItem {
    padding: 4px 0;
  }
}

.ec-newsRole .ec-newsRole__newsItem:not(:last-of-type) {
  border-bottom: 1px solid #232a31;
}

.ec-newsRole .ec-newsRole__newsItem.is_active .ec-newsRole__newsCloseBtn i:after {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

.ec-newsRole .ec-newsRole__newsHeading {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ec-newsRole .ec-newsRole__newsTitle {
  /*font-weight: normal;*/
  /*font-size: 1.5rem;*/
	font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.2em;
  color: #232a31;
  vertical-align: baseline;
}

.ec-newsRole .ec-newsRole__newsDate {
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.7142;
  letter-spacing: 0.2em;
  color: #232a31;
  vertical-align: baseline;
}

.ec-newsRole .ec-newsRole__newsDescription {
  font-size: 1.4rem;
}

.ec-newsRole .ec-newsRole__newsDescription a {
  color: #2d4585;
  text-decoration: underline;
}

.ec-newsRole .ec-newsRole__newsCloseBtn {
  background-color: transparent;
}

.ec-newsRole .ec-newsRole__newsCloseBtn i:before {
  display: none;
}

.ec-newsRole .ec-newsRole__newsCloseBtn i:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #282828;
  border-right: 1px solid #282828;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.12s ease-in 0s;
  transition: all 0.12s ease-in 0s;
}

.ec-newsRole__news-list {
  max-width: 1130px;
  width: calc(100% - 32px);
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid #ececec;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
  background-color: #fff;
}

.ec-newsRole__news-listItem {
  padding: 16px 56px;
}

.ec-newsRole__news-listItem:not(:last-child) {
  border-bottom: 1px solid #ececec;
}

@media (max-width: 767px) {
  .ec-newsRole__news-listItem {
    padding: 16px;
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-align: justify;
  }
}

.ec-newsRole__news-listDate {
  font-size: 1.4rem;
}

.ec-newsRole__news-listTitle {
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.ec-newsRole__news-listDesc a {
  color: #2d4585;
  text-decoration: underline;
}

.top_intro {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .top_intro {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 40px;
  }
}

.top_intro__cont {
  width: 44%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767px) {
  .top_intro__cont {
    width: 100%;
  }
}

.top_intro__deco1,
.top_intro__deco2 {
  width: 28%;
  padding-top: 57.49914%;
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
}

.top_intro__deco1 {
  background-image: url("/html/user_data/assets/img/home/top_read_L.png");
}

@media (max-width: 767px) {
  .top_intro__deco1 {
    display: none;
  }
}

.top_intro__deco2 {
  background-image: url("/html/user_data/assets/img/home/top_read_R.png");
}

@media (max-width: 767px) {
  .top_intro__deco2 {
    display: none;
  }
}

.top_intro__ttl__deco {
  width: 33%;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .top_intro__ttl__deco {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top_intro__ttl__deco img {
    width: 33%;
  }
}

.top_intro__ttl {
  font-size: 2.4rem;
  letter-spacing: 0.15em;
  line-height: 33px;
  text-align: left;
  color: #310519;
  margin-bottom: 46px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .top_intro__ttl {
    margin-bottom: 20px;
  }
}

.top_intro__ttl__text {
  font-weight: bold;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #310519;
  font-family: "HiraKakuPro-W6";
}

@media (max-width: 767px) {
  .top_intro__ttl__text {
    font-size: 2rem;
  }
}

.top_intro__catch {
  font-weight: normal;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  color: #232a31;
  margin-bottom: 46px;
}

@media (max-width: 767px) {
  .top_intro__catch {
    margin-bottom: 20px;
  }
}

.ec-btn-row {
  width: 100%;
}

.top_intro_service {
  background: #f8f7f5;
  padding-top: 80px;
  padding-bottom: 100px;
}

.top_intro_service__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  margin-bottom: 40px;
}

.top_intro_service__ttl__en {
  font-family: "HiraKakuPro-W6";
  font-weight: bold;
  font-size: 4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #310519;
}

.top_intro_service__ttl__ja {
  font-family: "HiraKakuPro-W6";
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #310519;
}

.top_intro_service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #fff;
  -webkit-box-shadow: 0px 50px 50px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 50px 50px rgba(0, 0, 0, 0.05);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media (max-width: 767px) {
  .top_intro_service__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_intro_service__item:not(:last-child) {
  margin-bottom: 30px;
}

.top_intro_service__item.-flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .top_intro_service__item.-flex-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_intro_service__item__col-img {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .top_intro_service__item__col-img {
    width: 100%;
  }
}

.top_intro_service__item__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top_intro_service__item__img picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
}

.top_intro_service__item__img picture img {
  -o-object-fit: cover;
     object-fit: cover;
}

.top_intro_service__item__col-desc {
  width: 50%;
  padding: 40px;
}

.top_intro_service__item__col-desc .ec-btn-row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 767px) {
  .top_intro_service__item__col-desc {
    width: 100%;
    padding: 30px;
  }
}

.top_intro_service__item__col-desc .ec-inlineBtn--cancel.-md1 {
  max-width: 160px;
  height: 48px;
  line-height: 48px;
}

.top_intro_service__item__col-desc .ec-inlineBtn--cancel.-md1::after {
  top: 20px;
}

.top_intro_service__item__desc__ttl {
  font-family: "HiraKakuPro-W6";
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.15em;
  line-height: 1.375;
  text-align: left;
  color: #310519;
  position: relative;
  background-image: linear-gradient(to right, #310519, #310519 3px, transparent 3px, transparent 8px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 8px 2px;
  padding-bottom: 8px;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .top_intro_service__item__desc__ttl {
    font-size: 2rem;
  }
}

.top_intro_service__item__desc__text {
  font-weight: normal;
  /*font-size: 1.4rem;*/
	font-size: 1.6rem;
  letter-spacing: 0.05em;
  /*line-height: 2.4;*/
	  line-height: 1.8;
  text-align: left;
  color: #310519;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .top_intro_service__item__desc__text {
    text-align: justify;
  }
}

/*===============================
商品一覧・詳細
================================*/
@media (min-width: 768px) {
  .ec-shelfGrid {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.ec-productRole {
  padding-left: 16px;
  padding-right: 16px;
}

.ec-productRole__description.-item-detail-desc p {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: justify;
}

.ec-productRole__description.-item-detail-desc p a {
  text-decoration: underline;
  color: #2d4585;
}

.ec-productRole__description.-item-detail-desc hr {
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
}

.ec-productRole .ec-productRole__description {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 100px;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: justify;
  color: #232a31;
}

@media (max-width: 767px) {
  .ec-productRole .ec-productRole__description {
    padding-top: 32px;
    padding-left: 0;
    padding-right: 0;
  }
}

.ec-productRole .ec-productRole__description .ec-ttl {
  display: none;
}

.ec-productRole .ec-productRole__description .ec-ttl.has-item-data {
  display: block;
}

.ec-productRole .ec-productRole__description dl {
  font-size: 1.5rem;
  line-height: 1.5;
  width: 100%;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 4px;
}

@media (max-width: 767px) {
  .ec-productRole .ec-productRole__description dl {
    font-size: 1.4rem;
  }
}

.ec-productRole .ec-productRole__description dt {
  width: 35%;
  padding: 16px;
  text-align: center;
  font-weight: normal;
  background-color: #f8f7f5;
  margin-bottom: 2px;
}

@media (max-width: 767px) {
  .ec-productRole .ec-productRole__description dt {
    padding: 8px;
  }
}

.ec-productRole .ec-productRole__description dd {
  width: 65%;
  padding: 16px 50px;
  margin-bottom: 2px;
}

@media (max-width: 767px) {
  .ec-productRole .ec-productRole__description dd {
    padding: 8px 16px;
  }
}

.slick-slider {
  opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.slick-slider.slick-initialized {
  opacity: 1;
}

.slideThumb__img,
.slide-item__img {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
}

.slideThumb__img img,
.slide-item__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

.slideThumb__img {
  overflow: hidden;
}

.ec-sliderItemRole .slideThumb img {
  width: auto;
}

.item_nav {
  margin-left: -6px;
  margin-right: -6px;
}

.ec-sliderItemRole .slideThumb {
  width: 16.66666%;
  padding: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.slide-product_list {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .slide-product_list {
    margin-bottom: 32px;
  }
}

.ec-productRole .ec-productRole__tags {
  margin: 0;
  padding: 0;
  border-bottom: 0;
  margin-bottom: 16px;
}

.ec-shelfGrid__item span {
  font-size: 14px;
  overflow: hidden;
  word-break: break-all;
}

.ec-shelfGrid__item .ec-productRole__tag,
.ec-productRole .ec-productRole__tag {
  border: 1px solid #c1c1c1;
  background-color: #fff;
  color: #717b82;
  border-radius: 0;
}

.ec-shelfGrid__item .ec-productRole__tag {
  font-size: 1rem;
  line-height: 1;
  /*padding: 4px 1px;*/
	padding: 0.5em;
  font-size: 1.1rem;
  text-align: center;
}

.ec-shelfGrid__item .ec-productRole__tag:not(:last-child) {
  margin-bottom: 1px;
}




.ec-productRole__tags.-p-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 26%;
}

.ec-productRole .ec-productRole__price {
  color: #232a31;
  border-bottom: none;
  padding-top: 0;
  font-size: 1.3rem;
}

.ec-productRole .ec-productRole__title .ec-headingTitle {
  font-size: 2.4rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  padding-top: 34px;
  padding-bottom: 24px;
  color: #232a31;
}

@media (max-width: 767px) {
  .ec-productRole .ec-productRole__title .ec-headingTitle {
    font-size: 2.4rem;
  }
}

.ec-productRole .ec-productRole__category {
  border-bottom: none;
  background-color: #f8f7f5;
  padding: 13px;
  font-size: 1.3rem;
}

.ec-layoutRole__contentTop .ec-productRole__category {
  border-bottom: none;
  padding: 13px;
  font-size: 1.3rem;
  max-width: 1130px;
  margin: 0 auto;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

/* 通常価格 */
.ec-productRole__priceRegularPrice {
  font-size: 1.3rem;
}

/* 価格 */
.ec-price .ec-price__price {
  padding-left: 0;
  padding-right: 0;
  font-weight: 400;
}

.ec-price .ec-price__tax {
  font-size: 1.3rem;
}

/* 消費税 */
/* 商品コード */
.ec-productRole .ec-productRole__code {
  border-bottom: none;
  font-size: 1.3rem;
  padding-top: 0;
}

.ec-productRole .ec-productRole__category a {
  color: #2d4585;
}

.ec-productRole .ec-productRole__profile {
  padding-left: 36px;
}

@media (max-width: 767px) {
  .ec-productRole .ec-productRole__profile {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .ec-sliderItemRole {
    padding-left: 0;
    padding-right: 0;
  }
}

.ec-topicpath .ec-topicpath__item,
.ec-topicpath .ec-topicpath__divider,
.ec-topicpath .ec-topicpath__item--active {
  color: #232a31;
}

.ec-searchnavRole {
  padding-left: 16px;
  padding-right: 16px;
}

@media (max-width: 767px) {
  .ec-topicpath {
    border-top: 0;
    border-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.ec-topicpath .ec-topicpath__item a,
.ec-topicpath__item--active {
  color: #232a31;
}

.price02-default {
  margin-bottom: 0;
  font-size: 1.3rem;
}

.ec-modal-box .ec-inlineBtn--action {
  border-radius: 0;
}

#ec-modal-header {
  font-size: 1.4rem;
}

.ec-modal .ec-modal-wrap {
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-shadow: white 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  box-shadow: white 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  border: 0;
}

@media screen and (max-width: 1100px) {
  .product_list_page__search-box {
    padding-left: 16px;
    padding-right: 16px;
  }
  .product_list_page__search-box .ec-headerSearch .ec-headerSearch__category,
  .product_list_page__search-box .ec-headerSearch__keyword {
    width: 100%;
  }
}

.product_list_page__search-box .ec-headerSearch {
  max-width: 640px;
  margin: 0 auto 30px auto;
}

.ec-productRole__description.-item-detail-desc h1,
.ec-productRole__description.-item-detail-desc h2,
.ec-productRole__description.-item-detail-desc h3 {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: bold;
}

@media (max-width: 767px) {
  .ec-productRole__description.-item-detail-desc h1,
  .ec-productRole__description.-item-detail-desc h2,
  .ec-productRole__description.-item-detail-desc h3 {
    font-size: 2rem;
  }
}

.ec-productRole__description.-item-detail-desc h4,
.ec-productRole__description.-item-detail-desc h5,
.ec-productRole__description.-item-detail-desc h6 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.25;
  font-weight: bold;
}

@media (max-width: 767px) {
  .ec-productRole__description.-item-detail-desc h4,
  .ec-productRole__description.-item-detail-desc h5,
  .ec-productRole__description.-item-detail-desc h6 {
    font-size: 1.6rem;
  }
}

.ec-productRole__description.-item-detail-desc img {
  display: block;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  text-align: center;
}

.ec-productRole .ec-productRole__btn {
  margin-bottom: 24px;
}

.ec-shelfGrid__item-image {
  overflow: hidden;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
}

.ec-shelfGrid__item-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

.ec-shelfGrid .ec-shelfGrid__item:nth-child(odd),
.ec-shelfGrid .ec-shelfGrid__item:nth-child(even),
.ec-shelfGrid .ec-shelfGrid__item {
  padding: 0;
  width: calc(25% - 20px);
  margin: 0 10px 20px 10px;
  position: relative;
}

@media (max-width: 767px) {
  .ec-shelfGrid .ec-shelfGrid__item:nth-child(odd),
  .ec-shelfGrid .ec-shelfGrid__item:nth-child(even),
  .ec-shelfGrid .ec-shelfGrid__item {
    width: calc(50% - 8px);
    margin: 0 4px;
    margin-bottom: 8px;
  }
}

.ec-shelfRole {
  padding-left: 16px;
  padding-right: 16px;
}

.ec-shelfGrid .ec-shelfGrid__item-image {
  margin-bottom: 0;
  height: auto;
  background-color: #fff;
}

.ec-shelfGrid__item__desc {
  padding: 16px 0 24px 0;
  font-size: 1.4rem;
  line-height: 1.714285;
}

@media (max-width: 767px) {
  .ec-shelfGrid__item__desc {
    padding: 12px 8px;
  }
}

.ec-shelfGrid__item__desc .product-name {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .ec-shelfGrid__item__desc .product-name {
    font-size: 1.3rem;
    letter-spacing: normal;
  }
}

.ec-shelfGrid__item__desc .product-desc {
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: justify;
}

@media (max-width: 767px) {
  .ec-shelfGrid__item__desc .product-desc {
    font-size: 1.3rem;
    letter-spacing: normal;
  }
}

.ec-searchnavRole .ec-searchnavRole__infos {
  color: #232a31;
  border-top: 1px solid #232a31;
}

@media (max-width: 767px) {
  .ec-searchnavRole .ec-searchnavRole__infos {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
  }
}

.ec-searchnavRole__actions .ec-select select {
  border: 1px solid #232a31;
  background-color: #fff;
  color: #232a31;
}

.text-member-price {
  font-size: 1.3rem;
  font-weight: bold;
}

.ec-productRole .ec-productRole__priceRegular {
  padding-top: 0;
}

.ec-productRole__price .ec-price .ec-price__price .pointprice03 {
  font-size: 2.4rem;
  font-weight: bold;
}

.mv-category {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .mv-category {
    margin-bottom: 30px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.mv-category__item.mv-cat-39 {
  position: relative;
}

.mv-category__item.mv-cat-39::after {
  content: "CommingSoon";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.4rem;
  letter-spacing: .08em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}

@media (max-width: 767px) {
  .mv-category__item.mv-cat-39::after {
    font-size: 1.3rem;
  }
}

.product_list-intro {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.product_list-intro-read {
  margin-bottom: 90px;
}

@media (max-width: 767px) {
  .product_list-intro-read {
    margin-bottom: 45px;
  }
}

.product_list-intro-read__ttl {
  font-family: "HiraKakuPro-W6";
  font-weight: bold;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  line-height: 1.875;
  text-align: left;
  color: #232a31;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 1rem;
  background-image: url("/html/user_data/assets/img/common/stripe.svg");
  background-repeat: repeat-x;
  background-size: 100% 8px;
  background-position: bottom;
}

@media (max-width: 767px) {
  .product_list-intro-read__ttl {
    font-size: 1.6rem;
    background-size: 100% 4px;
  }
}

.product_list-intro-read__desc {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.875;
  text-align: left;
  color: #232a31;
}

@media (max-width: 767px) {
  .product_list-intro-read__desc {
    font-size: 1.4rem;
  }
}

.product_list-intro__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
  margin-bottom: 54px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .product_list-intro__nav::after {
    content: "";
    display: block;
    width: 50%;
    max-width: 180px;
  }
}

.product_list-intro__nav__item {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (max-width: 767px) {
  .product_list-intro__nav__item {
    max-width: 180px;
    width: 50%;
    padding: 0 4px;
    margin-bottom: 8px;
  }
}

.product_list-intro__nav__item .ec-inlineBtn--cancel.-md1 {
  height: 60px;
  line-height: 60px;
  background-color: #81191e;
  border-color: #81191e;
  border-radius: 30px;
  padding: 0;
  font-weight: normal;
  width: 190px;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .product_list-intro__nav__item .ec-inlineBtn--cancel.-md1 {
    width: 100%;
    display: block;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.4rem;
    padding-left: 12px;
    padding-right: 24px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    font-size: 1.4rem;
  }
}

@media (max-width: 575px) {
  .product_list-intro__nav__item .ec-inlineBtn--cancel.-md1 {
    font-size: 1.2rem;
  }
}

.product_list-intro__nav__item .ec-inlineBtn--cancel.-md1:after {
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  z-index: 2;
  display: block;
  right: 20px;
  top: 24px;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media (max-width: 767px) {
  .product_list-intro__nav__item .ec-inlineBtn--cancel.-md1:after {
    right: 10px;
    top: 18px;
  }
}

.product_list-intro__nav__item:hover, .product_list-intro__nav__item:active {
  opacity: .75;
}

.product_list-intro-1 {
  margin-bottom: 56px;
}

@media (max-width: 767px) {
  .product_list-intro-1 {
    margin-bottom: 28px;
  }
}

.product_list-intro-1__ttl,
.product_list-intro-2__ttl,
.product_list-intro-3__ttl {
  font-family: "HiraKakuPro-W6";
  font-weight: normal;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 2.1666;
  text-align: left;
  color: #232a31;
  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-bottom: 24px;
  background-image: linear-gradient(to right, #232a31, #232a31 3px, transparent 3px, transparent 8px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: left 84%;
}

@media (max-width: 767px) {
  .product_list-intro-1__ttl,
  .product_list-intro-2__ttl,
  .product_list-intro-3__ttl {
    font-size: 1.6rem;
    line-height: 3.1666;
  }
}

.product_list-intro-1__ttl:before,
.product_list-intro-2__ttl:before,
.product_list-intro-3__ttl:before {
  content: "";
  width: 4px;
  height: 32px;
  background-color: #232a31;
  display: block;
  margin-right: 8px;
}

.product_list-intro-1__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 575px) {
  .product_list-intro-1__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product_list-intro-1__col {
  width: 49%;
  background: #f8f7f5;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .product_list-intro-1__col {
    width: 100%;
    padding: 20px;
  }
}

.product_list-intro-1__col-fig {
  width: 120px;
}

@media (max-width: 767px) {
  .product_list-intro-1__col-fig {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
  }
}

.product_list-intro-1__col-desc {
  width: calc(100% - 120px);
  padding-left: 40px;
}

@media (max-width: 767px) {
  .product_list-intro-1__col-desc {
    width: 100%;
    padding-left: 0;
  }
}

.product_list-intro-1__col-desc__ttl {
  font-family: "HiraKakuPro-W6";
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.666666;
  text-align: left;
  color: #310519;
  margin-bottom: 12px;
}

@media (max-width: 575px) {
  .product_list-intro-1__col-desc__ttl {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}

.product_list-intro-1__col-desc__text {
  font-weight: normal;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: left;
}

.product_list-intro-1__col-note__text {
  font-weight: normal;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: left;
}

.product_list-intro-1__col-note__text .c-asita{
  display: block;
	padding-left:1em;
	text-indent:-1em;
}

.product_list-intro-2 {
  margin-bottom: 56px;
}

@media (max-width: 575px) {
  .product_list-intro-2 {
    max-width: 560px;
    margin: 0 auto 28px auto;
  }
}

.product_list-intro-2__col-fig {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 16px;
}

.product_list-intro-2__col-fig img {
  width: 180px;
}

.product_list-intro-2__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
  width: 100%;
  padding-top: 90px;
  margin-bottom: 70px;
}

@media (max-width: 575px) {
  .product_list-intro-2__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 62px;
  }
}

.product_list-intro-2__col {
  width: 21%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}

.product_list-intro-2__col:after {
  position: absolute;
  right: -40px;
  top: 50%;
  margin-top: -14px;
  content: "";
  width: 21px;
  height: 28px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 21px;
  border-color: transparent transparent transparent #310519;
}

.product_list-intro-2__col:last-child:after {
  display: none;
}

@media (max-width: 767px) {
  .product_list-intro-2__col {
    width: 49%;
  }
  .product_list-intro-2__col:nth-child(1), .product_list-intro-2__col:nth-child(2) {
    margin-bottom: 100px;
  }
  .product_list-intro-2__col:after {
    display: none;
  }
}

@media (max-width: 575px) {
  .product_list-intro-2__col {
    width: 100%;
  }
  .product_list-intro-2__col:nth-child(3) {
    margin-bottom: 100px;
  }
}

.product_list-intro-2__col::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 22px;
  border-color: transparent transparent transparent #310519;
  position: absolute;
  right: -30px;
  top: 50%;
  margin-top: -10px;
}

.product_list-intro-2__col__deco {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  background-color: #310519;
  position: relative;
  line-height: 64px;
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  position: absolute;
  left: 50%;
  top: -90px;
  margin-left: -32px;
}

@media (max-width: 767px) {
  .product_list-intro-2__col__deco {
    top: -75px;
  }
}

@media (max-width: 575px) {
  .product_list-intro-2__col__deco {
    top: -75px;
  }
}

.product_list-intro-2__col__deco:after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 12px solid #310519;
  z-index: 0;
}

@media (max-width: 767px) {
  .product_list-intro-2__col__deco {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

.product_list-intro-2__col__bd {
  border: 3px solid #310519;
  padding: 16px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .product_list-intro-2__col__bd {
    width: 100%;
  }
}

.product_list-intro-2__col-desc__ttl {
  font-family: "HiraKakuPro-W6";
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.666666;
  text-align: center;
  color: #232a31;
  width: 100%;
}

.product_list-intro-2__col-desc__text {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.714;
  text-align: left;
  color: #444;
  width: 100%;
}

.product_list-intro-3 {
  margin-bottom: 56px;
}

@media (max-width: 767px) {
  .product_list-intro-3 {
    margin-bottom: 28px;
  }
}

.product_list-intro-3__text {
  font-weight: normal;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.875;
  text-align: left;
  color: #444;
}

.c-note {
  background: #f8f7f5;
  padding: 30px;
}

.c-note__ttl {
  font-family: "HiraKakuPro-W6";
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 2.6;
  text-align: left;
  color: #232a31;
}

@media (max-width: 575px) {
  .c-note__ttl {
    font-size: 1.4rem;
  }
}

#RelatedProduct-product_area.ec-shelfRole {
  padding-left: 32px;
  padding-right: 32px;
}

@media (max-width: 767px) {
  #RelatedProduct-product_area.ec-shelfRole {
    padding-left: 16px;
    padding-right: 16px;
  }
}

#RelatedProduct-product_area .ec-ttl {
  padding-top: 100px;
  display: none;
}

@media (max-width: 767px) {
  #RelatedProduct-product_area .ec-ttl {
    padding-top: 50px;
  }
}

#RelatedProduct-product_area .ec-ttl.is-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#RelatedProduct-product_area .ec-shelfGrid__item-image {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
}

#RelatedProduct-product_area .ec-shelfGrid__item-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

#reviewContent {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  #reviewContent {
    margin-bottom: 32px;
  }
}

#product_review_area .ec-ttl {
  border-bottom: 1px solid #232a31;
}

#product_review_area .review_list {
  padding-left: 0;
}

#product_review_area .review_list li {
  padding: 30px 50px;
  background-color: #f8f7f5;
}

@media (max-width: 767px) {
  #product_review_area .review_list li {
    padding: 16px;
  }
}

#product_review_area .review_list li p {
  overflow: hidden;
  word-break: break-all;
}

.product_review_complete .ec-layoutRole__main,
.product_review_confirm .ec-layoutRole__main,
.product_review .ec-layoutRole__contents {
  background-color: #f8f7f5;
}

#product_review_area {
  padding-top: 100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  line-height: 1.4;
  color: #525263;
  width: 100%;
  max-width: 1130px;
}

@media (max-width: 767px) {
  #product_review_area {
    padding-top: 50px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

#product_review_area .ec-role {
  padding-left: 12px;
  padding-right: 12px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

@media (max-width: 767px) {
  #product_review_area .ec-role {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
  }
}

.product_review_complete .ec-reportDescription {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*===============================
マイページ
================================*/
.ec-addressRole__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.ec-addressRole .ec-addressRole__actions,
.ec-addressList .ec-addressList__item {
  border-bottom: 1px solid #ececec;
}

#page_shopping_shipping .ec-addressRole .ec-addressRole__actions,
#page_mypage_delivery .ec-addressRole .ec-addressRole__actions {
  margin-top: 0;
}

#page_entry p {
  margin-bottom: 16px;
  font-size: 1.5rem;
  line-height: 1.6;
}

#page_entry .header__nav__logo p {
  margin: 0 0 8px;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.ec-mypageRole {
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.ec-definitions {
  font-size: 1.4rem;
}

.ec-definitions dt {
  font-weight: normal;
}

.ec-definitions dd {
  font-weight: bold;
}

.ec-definitions,
.ec-definitions--soft {
  margin: 0;
}

.ec-orderMail__close {
  padding-top: 10px;
}

.ec-orderMail .ec-orderMail__close a,
.ec-orderMail .ec-orderMail__close a:hover,
.ec-orderMail .ec-orderMail__link a {
  color: #2d4585;
  text-decoration: underline;
}

.ec-orderMail {
  border-bottom: 1px solid #ececec;
}

@media (max-width: 767px) {
  .ec-favoriteRole .ec-favoriteRole__item {
    width: 50%;
    padding: 4px;
  }
}

.ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle {
  z-index: 1;
}

.ec-favoriteRole .ec-favoriteRole__item-image {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
}

.ec-favoriteRole .ec-favoriteRole__item-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

.ec-favoriteRole__header {
  opacity: 0.75;
}

.ec-favoriteRole .ec-favoriteRole__itemTitle {
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .ec-favoriteRole .ec-favoriteRole__itemTitle {
    font-size: 1.3rem;
  }
}

.ec-favoriteRole .ec-favoriteRole__itemPrice {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .ec-historyRole .ec-historyRole__detail {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    margin-top: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-bottom: 8px;
  }
}

.ec-historyRole .ec-historyRole__detail .ec-historyRole__detailPrice {
  font-size: 1.5rem;
}

.ec-historyRole__detailPrice {
  padding-top: 8px;
  margin-bottom: 0;
}

.ec-orderDelivery__item {
  padding-top: 0px;
}

.ec-imageGrid {
  padding-top: 4px;
  padding-bottom: 4px;
}

.ec-imageGrid__content {
  font-size: 1.3rem;
  padding-left: 16px;
}

.ec-historyRole .ec-historyRole__detail .ec-historyRole__detailTitle {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.ec-cartNavi {
  margin-left: 8px;
  background-color: transparent;
}

.ec-cartNavi__inner {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ec-cartNavi__inner:hover,
.ec-cartNavi__inner:active {
  opacity: 0.75;
}

.ec-cartNaviIsset::before {
  display: none;
}

.ec-para-normal,
.ec-favoriteRole__header {
  border-radius: 4px;
  font-size: 1.4rem;
  padding: 0;
}

.ec-para-normal {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.714285;
  padding: 0;
}

.ec-AddAddress {
  margin: 0 auto;
  width: calc(100% - 32px);
  max-width: 1090px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  border-radius: 8px;
  border: 1px solid #ececec;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
  background-color: #fff;
  padding-bottom: 56px;
}

.ec-AddAddress .ec-AddAddress__add {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 8px;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .ec-AddAddress .ec-AddAddress__add {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.ec-AddAddress .ec-AddAddress__add .ec-AddAddress__item {
  padding-left: 0;
  padding-right: 0;
}

.ec-AddAddress .ec-AddAddress__add .ec-AddAddress__btn {
  padding-top: 16px;
  border-top: 1px solid #f4f4f4;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .ec-AddAddress .ec-AddAddress__add .ec-AddAddress__btn {
    margin-top: 16px;
  }
}

.ec-AddAddress .ec-AddAddress__info,
.ec-AddAddress .ec-AddAddress__new {
  padding: 16px 24px;
  margin-bottom: 0;
}

.ec-AddAddress .ec-AddAddress__new {
  border-top: 1px solid #f4f4f4;
}

@media (max-width: 767px) {
  .ec-AddAddress .ec-AddAddress__new {
    padding: 8px 16px;
  }
}

.ec-AddAddress .ec-AddAddress__item {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .ec-AddAddress .ec-AddAddress__item {
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
}

.ec-AddAddress .ec-AddAddress__itemtContent {
  display: block;
}

.ec-AddAddress__itemtNumber,
.ec-AddAddress__itemtPrice,
.ec-AddAddress .ec-AddAddress__itemtTitle,
.ec-AddAddress .ec-AddAddress__itemtSize {
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.5;
}

.ec-AddAddress .ec-AddAddress__selectAddress select {
  height: 42px;
  line-height: 42px;
}

.ec-AddAddress .ec-AddAddress__selectNumber {
  margin-left: 16px;
  margin-right: 16px;
}

@media (max-width: 767px) {
  .ec-AddAddress .ec-AddAddress__selectNumber {
    margin-left: 0;
  }
}

.ec-AddAddress .ec-AddAddress__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .ec-AddAddress .ec-AddAddress__select {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .ec-AddAddress .ec-AddAddress__select:not(:last-child) {
    border-bottom: 1px solid #ececec;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}

.ec-AddAddress .ec-AddAddress__selectNumber input,
.ec-AddAddress .ec-AddAddress__select .ec-select {
  margin-bottom: 0;
}

.ec-AddAddress__item {
  width: 100%;
}

@media (max-width: 767px) {
  .ec-AddAddress .ec-AddAddress__selectNumber label,
  .ec-AddAddress .ec-AddAddress__selectAddress label {
    font-size: 1.5rem;
    display: block;
  }
}

@media (max-width: 767px) {
  .ec-AddAddress .ec-AddAddress__selectNumber input {
    margin-left: 0;
    display: block;
  }
}

@media (max-width: 767px) {
  .ec-AddAddress .btn.ec-inlineBtn.delete {
    margin-top: 16px;
  }
}

.ec-AddAddress .ec-AddAddress__itemThumb {
  width: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  height: 80px;
  min-width: 0;
  display: block;
}

.ec-AddAddress .ec-AddAddress__itemThumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

.ec-historyRole {
  padding: 24px;
}

@media (max-width: 767px) {
  .ec-historyRole {
    padding: 0;
  }
}

.ec-historyRole:not(:last-child) {
  border-bottom: 1px solid #ececec;
}

.ec-historyRole .ec-historyRole__contents {
  border-top: 0;
  padding: 16px 24px;
}

@media (max-width: 767px) {
  .ec-historyRole .ec-historyRole__contents {
    padding: 12px 16px;
  }
}

.ec-historyListHeader .ec-historyListHeader__date {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.ec-historyListHeader .ec-historyListHeader__action {
  margin-bottom: 0;
}

.ec-orderMails,
.ec-orderConfirm p,
.ec-input {
  overflow: hidden;
  word-break: break-all;
}

.ec-imageGrid .ec-imageGrid__img {
  width: 80px;
  padding: 0 0 80px 0;
  position: relative;
  overflow: hidden;
  height: auto;
}

.ec-imageGrid .ec-imageGrid__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

.ec-imageGrid .ec-imageGrid__img__bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

.ec-cartRole .ec-cartRole__cart {
  margin: 0;
}

.ec-orderAccount .ec-orderAccount__account {
  margin-bottom: 0;
}

.ec-orderAccount__title {
  font-size: 2rem;
  border-top: 0;
  padding: 32px 0 9px;
  border: 0;
  font-weight: bold;
}

.ec-orderDelivery .ec-orderDelivery__title {
  font-size: 2rem;
  border-top: 0;
  margin-top: 32px;
  padding-top: 32px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ec-selects.-bd0 {
  border-bottom: 0;
  margin-bottom: 64px;
}

.ec-orderDelivery__item .ec-borderedList li {
  border-bottom: 0;
}

.ec-orderDelivery .ec-orderDelivery__title.-addressee {
  margin-top: 0;
  margin-bottom: 16px;
}

.ec-imageGrid {
  border-top: 0;
}

.ec-navlistRole .ec-navlistRole__item:last-child {
  border-right: 0;
}

.ec-navlistRole .ec-navlistRole__item {
  border-bottom: 0;
  border-color: #ececec;
}

@media (max-width: 767px) {
  .ec-navlistRole .ec-navlistRole__item {
    border-bottom: 1px solid #ececec;
  }
  .ec-navlistRole .ec-navlistRole__item:last-child {
    border-bottom: 0;
    border-right: 1px solid #ececec;
  }
}

@media (max-width: 767px) {
  .ec-navlistRole .ec-navlistRole__item:nth-child(even) {
    border-right: 0;
  }
}

.ec-navlistRole .ec-navlistRole__item a {
  padding-left: 4px;
  padding-right: 4px;
}

@media (max-width: 767px) {
  .ec-navlistRole .ec-navlistRole__item a {
    font-size: 1.3rem;
  }
}

.ec-selects,
.ec-borderedList li {
  border-bottom: 1px solid #ececec;
}

.ec-orderMails,
.ec-orderOrder,
.ec-orderConfirm,
.ec-orderPayment,
.ec-orderAccount,
.ec-orderDelivery {
  padding: 24px;
  margin-bottom: 0;
  border-bottom: 1px solid #ececec;
}

@media (max-width: 767px) {
  .ec-orderMails,
  .ec-orderOrder,
  .ec-orderConfirm,
  .ec-orderPayment,
  .ec-orderAccount,
  .ec-orderDelivery {
    padding: 16px;
  }
}

#page_help_agreement .ec-ttl {
  border-bottom: 1px solid #232a31;
}

#page_help_agreement .ec-ttl__tex {
  padding-bottom: 8px;
}

#page_help_agreement .ec-off1Grid .ec-off1Grid__cell {
  line-height: 1.6;
  font-size: 1.5rem;
  text-align: justify;
}

@media (max-width: 767px) {
  #page_help_agreement .ec-off1Grid .ec-off1Grid__cell {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .ec-withdrawRole .ec-withdrawRole__title {
    font-size: 1.8rem;
  }
}

.ec-totalBox {
  border-radius: 8px;
  border: 1px solid #ececec;
  padding: 24px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
  background-color: #fff;
}

@media (max-width: 767px) {
  .ec-totalBox {
    padding: 16px;
  }
}

.ec-historyRole-row {
  border-radius: 8px;
  border: 1px solid #ececec;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
  background-color: #fff;
}

.ec-navlistRole .ec-navlistRole__navlist {
  border-radius: 8px;
  border: 1px solid #ececec;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
  background-color: #fff;
  margin-bottom: 16px;
}

.ec-orderRole__detail {
  font-size: 1.4rem;
}

.ec-orderRole .ec-orderRole__summary {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.ec-orderRole .ec-orderRole__detail {
  border-radius: 8px;
  border: 1px solid #ececec;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.02);
  background-color: #fff;
  padding: 0;
  margin-bottom: 24px;
}

.shipping-delivery-date {
  border: 1px solid #ececec;
  padding: 16px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.shipping-delivery-date__ttl {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.shipping-delivery-date__text {
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.shipping-delivery-date__list li {
  font-size: 1.3rem;
}

.shipping-delivery-date__list li::before {
  content: "・";
  display: inline;
}

@media (max-width: 767px) {
  .shipping-delivery-date__list li:not(:last-child) {
    margin-bottom: 8px;
  }
}

.shipping-text {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .shipping-text {
    line-height: 1.5;
  }
  .shipping-text strong {
    display: block;
    font-size: 1.3rem;
  }
}

.shipping-text.-indent {
  padding-top: 0;
  padding-left: 1em;
  text-indent: -1em;
}

@media (max-width: 767px) {
  .shipping-text.-indent {
    line-height: 1.5;
  }
}

.ec-orderDelivery__title.-delivery-method,
.ec-orderDelivery__title.-shipping-delivery-date {
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .ec-select label.shipping-label-ttl,
  .ec-select label.shipping-label-ttl,
  .ec-select label.shipping-label-ttl {
    width: 70px;
  }
}

.combine-multiple-unit-ttl {
  font-size: 12px;
  color: #81191e;
}

.kumiawase_shitei_desc {
  margin-bottom: 16px;
  border: 1px solid #ececec;
  padding: 16px;
}

.kumiawase_shitei_desc_text {
  color: #81191e;
  font-size: 1.3rem;
  line-height: 1.71428;
  text-align: justify;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.kumiawase_shitei_desc_text .-ex {
  font-size: 1.3rem;
  padding-top: 8px;
  color: #232a31;
  display: block;
}

/* 郵便番号入力に関するダイアログモーダル */
#modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
}

#modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  max-width: 360px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #ffffff;
}

#modal .border.maroon {
  background-color: maroon;
  color: white;
  font-size: 1.5em;
  border: 1px solid #ddd;
  padding: 0.8em;
}

@media (max-width: 767px) {
  #modal .border.maroon {
    font-size: 1.5rem;
  }
}

#modal_close {
  padding: 1em;
  cursor: pointer;
  text-align: center;
}

#yamato_payment4_payment {
  padding: 0;
  border: 0;
}

#yamato_payment4_credit {
  padding: 24px;
  border-top: 0;
}

@media (max-width: 767px) {
  #yamato_payment4_credit {
    padding: 16px;
  }
}

.ec-login .ec-login__link {
  font-size: 1.4rem;
  margin-left: 0;
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}

.ec-login .ec-login__link a {
  color: #2d4585;
}

.ec-login .ec-login__link a:hover, .ec-login .ec-login__link a:active {
  color: #2d4585;
  text-decoration: underline;
}

.ec-login .ec-login__link a.c-text-link-md1 {
  color: #de5d50;
  font-weight: 600;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .ec-login .ec-login__link {
    text-align: left;
    margin-top: 10px;
  }
}

.ec-login__ttl {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-bottom: 1em;
  text-align: left;
}

.ec-login__desc {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: justify;
  font-weight: bold;
}

.mypage .ec-grid3__cell__ttl {
  text-align: left;
}

.ec-login__actions.-shopping-login-row,
.ec-login__actions.-mypage-entry-row {
  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;
  margin-bottom: 16px;
}

.ec-blockBtn--action.-shopping-login,
.ec-blockBtn--action.-mypage-entry {
  max-width: 300px;
}

.mypage .disc-list-item {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

.mypage .disc-list-item:before {
  content: "・";
  display: inline;
  font-size: 1em;
}

.mypage .ec-grid3__cell__sbt {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .ec-login .ec-login__input {
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .ec-favoriteRole .ec-favoriteRole__itemList {
    width: 100%;
  }
}

#detail_box__security_code,
.mypage.kuronekocredit .dispTarget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #ececec;
  padding: 15px 0;
}

@media (max-width: 767px) {
  #detail_box__security_code,
  .mypage.kuronekocredit .dispTarget {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#detail_box__security_code dt,
.mypage.kuronekocredit .dispTarget dt {
  font-size: 1.5rem;
  line-height: 1.6;
  padding-top: 0;
  width: 30%;
}

@media (max-width: 767px) {
  #detail_box__security_code dt,
  .mypage.kuronekocredit .dispTarget dt {
    font-size: 1.4rem;
    width: 100%;
  }
}

#detail_box__security_code dd,
.mypage.kuronekocredit .dispTarget dd {
  overflow: hidden;
  word-break: break-all;
  font-size: 1.5rem;
  line-height: 1.6;
  padding-top: 0;
  width: 70%;
}

@media (max-width: 767px) {
  #detail_box__security_code dd,
  .mypage.kuronekocredit .dispTarget dd {
    font-size: 1.4rem;
    width: 100%;
  }
}

/*===============================
パスワードの再発行
================================*/
.ec-forgetCompleteRole {
  width: 100%;
  margin: 0 auto;
  max-width: 1130px;
  padding: 0 16px;
}

.ec-forgotRole {
  width: calc(100% - 32px);
  margin: 0 auto;
  max-width: 1130px;
}

.page_forgot_complete .ec-layoutRole__contents {
  background-color: #f8f7f5;
}

/*===============================
お問い合わせ
================================*/
.contact .ec-ttl,
.confirm .ec-ttl {
  border-bottom: 1px solid #232a31;
}

.contact .ec-ttl__tex,
.confirm .ec-ttl__tex {
  padding-bottom: 8px;
}

.ec-off1Grid__cell.-contact {
  padding-top: 60px;
}

@media (max-width: 767px) {
  .ec-off1Grid__cell.-contact {
    padding-top: 30px;
  }
}

.ec-contactConfirmRole {
  padding-left: 16px;
  padding-right: 16px;
}

.c-info-business-contact {
  padding: 16px;
  background-color: #f8f7f5;
  margin-top: 34px;
  margin-bottom: 48px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media (max-width: 767px) {
  .c-info-business-contact {
    margin-top: 17px;
    margin-bottom: 24px;
  }
}

.c-info-business-contact__btn-row .ec-blockBtn--action {
  height: 40px;
  line-height: 40px;
  max-width: 300px;
  font-size: 1.3rem;
}

.ec-contactRole .c-info-business-contact__desc {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.71428;
  margin-bottom: 0;
  margin-top: 8px;
  width: 100%;
  text-align: center;
}

@media (max-width: 767px) {
  .ec-contactRole .c-info-business-contact__desc {
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: left;
  }
}

/*===============================
完了画面--メッセージ汎用
================================*/
.ec-reportHeading h1,
.ec-reportHeading h2,
.ec-reportHeading h3,
.ec-reportHeading h4,
.ec-reportHeading h5,
.ec-reportHeading h6,
.ec-reportHeading p {
  font-size: 2.1rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: #232a31;
}

@media (max-width: 767px) {
  .ec-reportHeading h1,
  .ec-reportHeading h2,
  .ec-reportHeading h3,
  .ec-reportHeading h4,
  .ec-reportHeading h5,
  .ec-reportHeading h6,
  .ec-reportHeading p {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .ec-reportHeading {
    border-top: 0;
  }
}

.ec-reportDescription {
  max-width: 480px;
  width: 100%;
  margin: 0 auto 50px auto;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: justify;
  color: #232a31;
}

.ec-reportDescription.-text-center {
  text-align: center;
}

/*===============================
PC時 右カラム
================================*/
.side-element {
  margin-bottom: 30px;
}

.ec-ttl-side {
  font-size: 1.8rem;
  line-height: 1.33333;
  padding-bottom: 8px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #232a31;
}

.category-nav {
  background: #f8f7f5;
  padding: 15px 0 12px;
}

@media (max-width: 767px) {
  .category-nav {
    padding: 15px 12px;
  }
}

.category-nav__list {
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .category-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.category-nav__list__item {
  font-size: 1.4rem;
}

@media screen and (max-width: 960px) {
  .category-nav__list__item {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .category-nav__list__item {
    width: 50%;
  }
}

.category-nav__list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.2rem 0.3rem;
  text-decoration: none;
}

.category-nav__list__item a:hover, .category-nav__list__item a:active {
  opacity: 0.75;
  text-decoration: none;
  color: #232a31;
}

@media screen and (min-width: 961px) {
  .category-nav__list__item a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.category-nav__list__item__deco {
  width: 45px;
  height: 45px;
  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;
}

.category-nav__list__item__text {
  font-weight: bold;
}

.category-nav__list__item__deco img {
  width: auto;
  height: 24px;
}

@media (max-width: 767px) {
  .category-nav__list__item__deco img {
    height: 24px;
  }
}

.category-nav .btn {
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {
  .category-nav .btn {
    margin: 0 auto;
  }
}

.category-nav .btn a {
  width: 100%;
  font-weight: normal;
  text-decoration: none;
}

.ranking__list {
  padding: 1rem 0;
  counter-reset: number 0;
}

.ranking__list__item {
  width: 100%;
  position: relative;
  padding: 8px 0;
}

.ranking__list__item::before {
  counter-increment: number 1;
  content: counter(number) " ";
  position: absolute;
  z-index: 1;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 10px;
  color: #9e9e9e;
  border: #9e9e9e solid 1px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ranking__list__item:nth-child(1)::before {
  color: #fff;
  background: #cfae5f;
  border: none;
}

.ranking__list__item:nth-child(2)::before {
  color: #fff;
  background: #717b82;
  border: none;
}

.ranking__list__item:nth-child(3)::before {
  color: #fff;
  background: #a45c45;
  border: none;
}

.ranking__list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 0px 16px 8px;
}

.ranking__list__item a img {
  width: 60px;
}

.ranking__list__item a:hover, .ranking__list__item a:active {
  text-decoration: none;
}

@media screen and (min-width: 961px) {
  .ranking__list__item a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .ranking__list__item a:hover,
  .ranking__list__item a:active {
    opacity: 0.75;
    color: #232a31;
  }
}

.ranking__list__item__meta {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 0 0 1rem;
  color: #232a31 !important;
}

.ranking__list__item__meta__name {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}

.ranking__list__item__meta__price {
  font-size: 1.4rem;
  line-height: 1.2;
}

.ranking__list__item__meta__price .text-tax {
  font-size: 1.2rem;
}

.ranking__list__item__meta__price span {
  font-size: 1.2rem;
}

.ec-ranking {
  width: 100%;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

/* フッターバナー */
.footer__bnr {
  width: 100%;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("/html/user_data/assets/img/common/bg-texture.gif");
  background-repeat: repeat;
  background-position: center;
}

.product_page .footer__bnr:after {
  position: absolute;
  left: 50%;
  top: 0;
  content: "";
  display: block;
  width: 342px;
  height: 52px;
  background-image: url("/html/user_data/assets/img/common/deco-drop.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-left: calc(342 / 2 * -1px);
}

.footer__bnr__list__item {
  width: 340px;
  padding-left: 8px;
  padding-right: 8px;
  height: 176px;
}

.footer__bnr__list__item {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.footer__bnr__list__item:hover,
.footer__bnr__list__item:active {
  opacity: 0.75;
}

.side__bnr__list__item {
  width: 100%;
  margin-bottom: 8px;
  padding-left: 0px;
  padding-right: 0px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.side__bnr__list__item:hover, .side__bnr__list__item:active {
  opacity: 0.75;
}

.side__bnr__list__item a {
  display: block;
}

.side__bnr__list__item a img {
  display: block;
  max-width: none;
  width: 100%;
  height: auto;
}

.sns-box {
  position: relative;
  border-left: #232a31 solid 1px;
  border-right: #232a31 solid 1px;
  height: 100%;
}

.sns-box__inner {
  background-color: #fff;
  height: 100%;
  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;
}

.sns-box:before,
.sns-box:after,
.sns-box__inner:before,
.sns-box__inner:after {
  content: "";
  position: absolute;
  height: 1px;
  background: #232a31;
}

.sns-box:before {
  width: 10%;
  top: 0;
  left: 0;
}

.sns-box:after {
  width: 80%;
  bottom: 0;
  left: 0;
}

.sns-box__inner {
  padding: 10%;
}

.sns-box__inner:before {
  width: 80%;
  top: 0;
  right: 0;
}

.sns-box__inner:after {
  width: 10%;
  bottom: 0;
  right: 0;
}

.sns-box__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1rem;
}

.sns-box__list {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sns-box__list__item {
  margin: 0 0 10px 0;
}

.sns-box__list__item:last-child {
  margin: 0;
}

.sns-box__list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sns-box__list__item a:hover,
.sns-box__list__item a:active {
  text-decoration: none;
  color: #232a31;
}

.sns-box__list__item__text {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.sns-box__list__item__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  background: #232a31;
  border-radius: 16px;
  margin: 0 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side__bnr__list__item a .sns-box__list__item__icon img {
  width: auto;
  height: 18px;
}

.side__bnr__list__item a .sns-box__list__item__icon img.icon-fb-white {
  position: static;
}

.cart-box {
  padding: 10%;
  background: #f8f7f5;
  font-size: 1.4rem;
}

.cart-box__title {
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1rem;
}

.cart-box__item {
  line-height: 1.4;
}

.cart-box__total {
  margin: 0 0 1rem;
}

.cart-box .price {
  font-size: 1.6rem;
}

/*===============================
商品購入
================================*/
.text-order-complete_message {
  max-width: 480px;
  width: 100%;
  margin: 0 auto 50px auto;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 60px;
  word-break: break-all;
}

.ec-guest-box {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #ececec;
}

.-shopping-login .disc-list-item {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

.-shopping-login .disc-list-item:before {
  content: "・";
  display: inline;
  font-size: 1em;
}

.-shopping-login .ec-grid3__cell__ttl {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-bottom: 1em;
  text-align: left;
}

.ec-guest__text {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: justify;
}

#shopping_login {
  height: 100%;
}

/*===============================
ご利用ガイド
================================*/
.guide .ec-ttl {
  border-bottom: 1px solid #232a31;
}

.guide .ec-ttl__tex {
  padding-bottom: 8px;
}

#page_help_guide .ec-off1Grid__cell {
  padding-top: 60px;
}

@media (max-width: 767px) {
  #page_help_guide .ec-off1Grid__cell {
    padding-top: 30px;
  }
}

.pageindex {
  background-color: #f8f7f5;
  padding: 56px;
}

@media (max-width: 767px) {
  .pageindex {
    padding: 32px;
  }
}

.guide_detail .c-ol {
  list-style-type: decimal;
  padding-left: 2em;
  margin-bottom: 2em;
}

.guide_detail .c-ol li {
  padding-left: 1em;
  text-indent: -1em;
}

.guide_detail .c-border {
  border: 1px solid #232a31;
  padding: 24px;
  display: inline-block;
}

.guide_detail .deliv-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 767px) {
  .guide_detail .deliv-cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.guide_detail .deliv-cont__label {
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: bold;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #e9e9e9;
}

.guide_detail .deliv-cont__list {
  padding: 2px 4px 2px 8px;
  font-size: 1.4rem;
  line-height: 1.25;
}

@media (max-width: 767px) {
  .guide_detail .deliv-cont__list {
    font-size: 1.2rem;
    line-height: 1.2;
    padding: 2px 0;
  }
}

.guide_detail .shipping {
  border-bottom: 1px solid #ececec;
  line-height: 1.25;
  letter-spacing: normal;
}

@media (max-width: 767px) {
  .guide_detail .shipping {
    margin-bottom: 16px;
    font-size: 1.3rem;
  }
}

.guide_detail .shipping.-mb-s {
  margin-bottom: 8px;
}

.guide_detail .shipping th {
  background-color: #f8f7f5;
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
  padding: 8px 16px;
}

.guide_detail .shipping thead th {
  border-right: 1px solid #ececec;
}

.guide_detail .shipping td {
  border-top: 1px solid #ececec;
  border-right: 1px solid #ececec;
  border-left: 1px solid #ececec;
  padding: 8px 16px;
}

.guide_detail .logo-RapidSSL {
  width: 120px;
}

.guide_detail .c-tb-guide {
  border-bottom: 1px solid #ececec;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .guide_detail .c-tb-guide {
    margin-bottom: 16px;
    font-size: 1.3rem;
  }
}

.guide_detail .c-tb-guide.-mb {
  margin-bottom: 16px;
}

.guide_detail .c-tb-guide th {
  background-color: #f8f7f5;
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
  padding: 16px;
}

@media (max-width: 767px) {
  .guide_detail .c-tb-guide th {
    padding: 8px;
  }
}

.guide_detail .c-tb-guide th:last-child {
  border-right: 1px solid #ececec;
}

.guide_detail .c-tb-guide td {
  border-top: 1px solid #ececec;
  border-right: 1px solid #ececec;
  border-left: 1px solid #ececec;
  padding: 16px;
}

@media (max-width: 767px) {
  .guide_detail .c-tb-guide td {
    padding: 8px;
  }
}

.guide_detail .c-sbt {
  padding: 8px 16px;
  border: 1px solid #232a31;
  font-size: 2.4rem;
}

.guide_detail .media-img {
  display: inline-block;
}

.guide_detail .c-asta {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.4rem;
}

.guide_detail .c-asta.-mb {
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .guide_detail .c-asta.-mb {
    margin-bottom: 16px;
  }
}

.guide_detail .c-dl dt.c-sbt {
  margin-bottom: 1.5em;
}

@media (max-width: 767px) {
  .guide_detail .c-dl dt.c-sbt {
    margin-bottom: 1em;
    font-size: 1.8rem;
  }
}

.guide_detail .c-dl:not(:last-child) {
  margin-bottom: 56px;
}

.guide_detail .c-dl .c-bd-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #ececec;
  margin-bottom: 50px;
}

.guide_detail .c-dl ul li {
  width: 50%;
  padding: 24px;
}

@media (max-width: 767px) {
  .guide_detail .c-dl ul li {
    width: 100%;
    padding: 16px;
  }
}

.guide_detail .c-dl ul li .ttl {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1em;
}

.guide_detail .c-dl dt {
  margin-bottom: 0.25em;
}

.guide_detail .c-dl dt,
.guide_detail .c-dl dd {
  line-height: 2.4rem;
}

.guide_detail .c-dl dd:not(:last-child) {
  margin-bottom: 2em;
}

@media (max-width: 767px) {
  .guide_detail .c-dl dt,
  .guide_detail .c-dl dd {
    font-size: 1.4rem;
  }
}

.guide_detail .media-img {
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.guide_detail .media-img img {
  max-width: 100%;
  width: auto;
}

.guide_detail .maroon {
  font-size: 1.3rem;
  color: #de5d50;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
  text-indent: -1em;
}

.guide_detail .exlink {
  font-size: 1.3rem;
  opacity: 0.75;
  margin-bottom: 0;
  padding-top: 2em;
  display: block;
  color: #2d4585;
}

@media (max-width: 767px) {
  .guide_detail .exlink {
    padding-top: 0px;
  }
}

.guide_detail .exlink strong {
  font-weight: normal;
}

.guide_detail {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-align: justify;
}

.guide_detail p {
  margin-bottom: 2em;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .guide_detail p {
    font-size: 1.4rem;
  }
}

.guide_detail p.-mb-s {
  margin-bottom: 8px;
}

.shipping.-mb {
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .shipping.-mb {
    margin-bottom: 16px;
  }
}

.guide_detail .c-cricle-list li:before {
  content: "・";
  font-size: 1em;
  display: inline-block;
}

.guide_detail__ttl {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.25em;
}

.pageindex ul {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .pageindex ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.pageindex ul li {
  width: 50%;
  margin-bottom: 1em;
}

@media (max-width: 767px) {
  .pageindex ul li {
    width: 100%;
  }
}

.pageindex ul li a::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-image: url("/html/user_data/assets/img/common/ic-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-right: 4px;
}

.pageindex ul li:last-child {
  margin-bottom: 0;
}

.pageindex ul li ul li {
  width: 100%;
  padding-left: 1em;
  margin-bottom: 0;
}

#page_help_guide .ec-role:not(:last-child) {
  margin-bottom: 16px;
}

/*===============================
特定商取引に関する法律に基づく表記
================================*/
.help_tradelaw .ec-ttl {
  border-bottom: 1px solid #232a31;
}

.help_tradelaw .ec-ttl__tex {
  padding-bottom: 8px;
}

.ec-off1Grid__cell.-help_tradelaw {
  padding-top: 60px;
}

@media (max-width: 767px) {
  .ec-off1Grid__cell.-help_tradelaw {
    padding-top: 30px;
  }
}

.help_tradelaw .tadelaw-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.help_tradelaw .tadelaw-list:not(:last-child) {
  margin-bottom: 4px;
}

@media (max-width: 767px) {
  .help_tradelaw .tadelaw-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.tadelaw-list__ttl {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: .08em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  background-color: #f8f7f5;
  width: 20%;
  padding: 15px;
  font-weight: normal;
  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;
}

@media (max-width: 767px) {
  .tadelaw-list__ttl {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.tadelaw-list__desc {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: .08em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  width: 80%;
  padding: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .tadelaw-list__desc {
    width: 100%;
  }
}

/*===============================
企業情報ページ
================================*/
.c-section {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .c-section {
    margin-bottom: 48px;
  }
}

.c-aspect-3-2 {
  width: 100%;
  position: relative;
  padding-bottom: 66.666666%;
}

.c-aspect-3-2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}

.c-img-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .c-img-row {
    margin-bottom: 20px;
  }
}

.c-img-col-3 {
  width: 33.33333%;
  padding: 0 4px;
}

.c-section.-company-2 p {
  margin-bottom: 40px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .c-section.-company-2 p {
    font-size: 1.4rem;
    line-height: 1.71428;
    margin-bottom: 20px;
  }
}

.c-section.-company-2 .ec-btn-row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 767px) {
  .c-section.-company-2 .ec-btn-row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-section.-company-3 {
  margin-bottom: 0;
}

.c-box-1 {
  padding: 30px;
  background-color: #f8f7f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .c-box-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
  }
}

.c-box-1__image,
.c-box-1__desc {
  min-height: 0%;
}

.c-box-1__image .media {
  width: 100%;
  min-height: 0%;
}

.c-box-1__image .media img {
  width: 100%;
  height: auto;
  display: block;
}

.c-box-1__image.-col-5,
.c-box-1__desc.-col-5 {
  width: 50%;
  padding: 30px;
  min-height: 0%;
}

@media (max-width: 767px) {
  .c-box-1__image.-col-5,
  .c-box-1__desc.-col-5 {
    width: 100%;
    padding: 15px;
  }
}

.c-box-1__desc.-col-6 {
  width: 60%;
  padding: 30px;
}

@media (max-width: 767px) {
  .c-box-1__desc.-col-6 {
    width: 100%;
    padding: 15px;
  }
}

.c-box-1__image.-col-4 {
  width: 40%;
  padding: 30px;
}

@media (max-width: 767px) {
  .c-box-1__image.-col-4 {
    width: 100%;
    padding: 15px;
  }
}

.c-box-1__desc__ttl {
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .c-box-1__desc__ttl {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
}

.c-box-1__desc__text {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: justify;
}

@media (max-width: 767px) {
  .c-box-1__desc__text {
    font-size: 1.4rem;
  }
}

.c-section.-company-2 {
  width: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .c-section.-company-3 p {
    font-size: 1.4rem;
    line-height: 1.71428;
  }
}

.c-section.-company-3 p .c-text-link {
  display: block;
  padding-top: 8px;
}

.c-section.-company-3 .c-section__desc {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}

.c-section.-company-3 .c-section__desc__text {
  margin-bottom: 40px;
}

.c-section.-company-3 .ec-btn-row {
  margin-bottom: 50px;
}

.modal-img {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.modal-img__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 0;
  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;
}

.modal-img__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.modal-img__cont {
  position: relative;
  max-width: 640px;
  width: calc(100% - 48px);
}

.modal-img__text {
  color: #000;
  text-align: center;
}

.modal-img.is-show {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}

.ec-ttl.-company-1 {
  border-bottom: none;
  margin-bottom: 0;
}

.c-table.-company-1 {
  border-top: none;
  border-bottom: none;
}

.c-table.-company-1 th {
  border-bottom: 4px solid #fff;
}

.c-table.-company-1 td {
  border-bottom: 4px solid #fff;
}

/*===============================
野菜の駅の歩み
================================*/
.history-deco {
  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;
  margin-bottom: 30px;
}

.history-deco.-btm {
  margin-top: 30px;
}

.history-deco img {
  width: 100%;
}

.btn-img-center {
  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;
  padding-top: 100px;
}

@media (max-width: 767px) {
  .btn-img-center {
    padding-top: 50px;
  }
}

.btn-img-center img {
  width: 100%;
}

.c-catch-tex {
  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;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  line-height: 2;
  text-align: center;
  width: 100%;
}

.c-catch-tex.-colmuns {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-catch-tex.-colmuns p {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.1em;
}

#detail_history {
  padding: 56px;
  background-color: #f8f7f5;
  margin-bottom: 100px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.detail_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 760px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .detail_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.detail_block:not(:last-child) {
  margin-bottom: 32px;
}

.detail_block__img {
  width: 32%;
}

@media (max-width: 767px) {
  .detail_block__img {
    width: 244px;
    margin-bottom: 16px;
  }
}

.detail_block_desc {
  width: 68%;
  padding-left: 32px;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .detail_block_desc {
    width: 100%;
    padding-left: 0;
  }
}

.trim-circle {
  width: 300px;
  padding-bottom: 300px;
  border-radius: 150px;
  position: relative;
  overflow: hidden;
  height: auto;
  margin: 0 auto 60px auto;
}

@media (max-width: 767px) {
  .trim-circle {
    width: 240px;
    padding-bottom: 240px;
    border-radius: 120px;
    margin: 0 auto 30px auto;
  }
}

.trim-circle img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

.img-row {
  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;
  margin-bottom: 30px;
}

.img-row .img-col img {
  width: 100%;
}

.ec-ttl.-history {
  border-bottom: 0;
  text-align: center;
}

.ec-ttl.-history .ec-ttl__tex {
  text-align: center;
}

/*===============================
野菜の駅のはなし
================================*/
.storybottomimg__row {
  padding: 56px;
  background-color: #e8e1d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .storybottomimg__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px;
  }
}

.storybottomimg {
  margin-bottom: 56px;
}

.storybottomimg__ttl {
  width: 30%;
  font-size: 2rem;
  font-weight: bold;
  padding-right: 16px;
}

@media (max-width: 767px) {
  .storybottomimg__ttl {
    width: 100%;
    padding-right: 0;
    font-size: 1.5rem;
    padding-bottom: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid #232a31;
  }
}

.storybottomimg__desc {
  width: 70%;
  text-align: justify;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  padding-left: 24px;
  border-left: 1px solid #232a31;
}

@media (max-width: 767px) {
  .storybottomimg__desc {
    width: 100%;
    padding-left: 0;
    border-left: 0;
    font-size: 1.4rem;
    border-left: 0;
  }
}

.story-btn-list-row {
  padding-bottom: 100px;
}

.img-caption {
  font-size: 1.3rem;
  padding-top: 1em;
}

.story_sec-content {
  background-color: #f8f7f5;
  padding: 56px;
  margin-bottom: 56px;
}

@media (max-width: 767px) {
  .story_sec-content {
    padding: 24px;
    margin-bottom: 15px;
  }
}

.story_sec-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .story_sec-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.story_sec-row.-column {
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.story_sec-row.-w-small {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.story_sec-row:not(:last-child) {
  padding-bottom: 38px;
  margin-bottom: 46px;
  border-bottom: 1px solid #ececec;
}

.story_sec-row.-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .story_sec-row.-rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.story_sec-row.-rev .story_sec-col-desc {
  padding-left: 0;
  padding-right: 56px;
}

@media (max-width: 767px) {
  .story_sec-row.-rev .story_sec-col-desc {
    padding-right: 0;
  }
}

.story_sec-col-img {
  width: 30%;
}

@media (max-width: 767px) {
  .story_sec-col-img {
    width: 100%;
    margin-bottom: 16px;
  }
}

.story_sec-col-img.-col-5 {
  width: 50%;
}

@media (max-width: 767px) {
  .story_sec-col-img.-col-5 {
    width: 100%;
  }
}

.story_sec-col-img.-col-10 {
  width: 100%;
}

.story_sec-col-img.-col-10:not(:last-child) {
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .story_sec-col-img.-col-10 {
    width: 100%;
  }
}

.story_sec-row .story-img.-vartical img {
  width: 100%;
  height: auto;
}

.story_sec-col-desc {
  width: 70%;
  padding-left: 56px;
}

@media (max-width: 767px) {
  .story_sec-col-desc {
    width: 100%;
    padding-left: 0;
  }
}

.story_sec-col-desc.-col-10 {
  width: 100%;
  padding-left: 0;
}

.story_sec-col-desc.-col-5 {
  width: 50%;
}

@media (max-width: 767px) {
  .story_sec-col-desc.-col-5 {
    width: 100%;
  }
}

.story_sec-col-desc p {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: justify;
}

.story_sec-col-desc .c-sbt {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  .story_sec-col-desc .c-sbt {
    font-size: 1.8rem;
  }
}

.story-img {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
}

.story-img.-ratio-3-2 {
  padding-bottom: 66.6666%;
}

.story-img.-ratio-16-9 {
  padding-bottom: 56.25%;
}

.story-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

.story_next {
  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;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 100%;
}

.story_next:hover, .story_next:active {
  opacity: 0.75;
}

.story_next a {
  display: block;
  width: 100%;
}

.story_next a img {
  width: 100%;
}

.story-btn-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.story-btn-list a {
  width: 50%;
  padding: 1px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.story-btn-list a:hover, .story-btn-list a:active {
  opacity: 0.75;
}

.ec-companyRole .c-note {
  max-width: 720px;
  width: 100%;
  margin: 24px auto 0 auto;
}

/*===============================
販売店一覧
================================*/
.tb-shop-national caption {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.tb-shop-national {
  width: 100%;
}

.tb-shop-national:not(:last-child) {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .tb-shop-national {
    width: 760px;
  }
}

.tb-shop-national caption:not(:last-child) {
  margin-top: 56px;
}

.tb-shop-national th,
.tb-shop-national td {
  font-size: 1.5rem;
  line-height: 1.714285;
  padding: 8px;
  border-bottom: 1px solid #ececec;
}

.tb-shop-national th {
  background-color: #f8f7f5;
}

.tb-shop-national td:nth-child(1) {
  width: 20%;
}

.tb-shop-national td:nth-child(2) {
  width: 50%;
}

.tb-shop-national td:nth-child(3) {
  width: 30%;
}

.shop-list {
  margin-bottom: 100px;
}

.shop-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #232a31;
}

@media (max-width: 767px) {
  .shop-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 16px;
    padding-bottom: 8px;
    margin-bottom: 16px;
  }
}

.shop-list__item__desc dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1px;
}

@media (max-width: 767px) {
  .shop-list__item__desc dl {
    font-size: 1.4rem;
  }
}

.shop-list__item__desc dl dt {
  background-color: #f8f7f5;
  width: 120px;
  padding: 4px;
  text-align: center;
  font-weight: normal;
  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;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .shop-list__item__desc dl dt {
    font-size: 1.4rem;
  }
}

.shop-list__item__desc dl dd {
  width: calc(100% - 120px);
  padding: 4px 4px 4px 24px;
}

.shop-list__item__desc {
  width: 70%;
  padding: 0 32px;
}

@media (max-width: 767px) {
  .shop-list__item__desc {
    width: 100%;
    padding: 0;
  }
}

.shop-list__item__acction {
  width: 10%;
}

@media (max-width: 767px) {
  .shop-list__item__acction {
    width: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 16px;
  }
}

.shop-list__item__acction .radius {
  display: block;
  margin-bottom: 0;
  font-weight: bold;
  text-align: center;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 14px;
  border-radius: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 10px 16px;
  text-decoration: none;
  color: #232a31;
  background-color: #f5f7f8;
  -webkit-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  border: 1px solid #e5e7eb;
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .shop-list__item__acction .radius {
    width: 40%;
    margin-right: 8px;
  }
}

.shop-list__item__media {
  width: 20%;
}

@media (max-width: 767px) {
  .shop-list__item__media {
    width: 100%;
    margin-bottom: 16px;
  }
}

.shop-list__item__media__img {
  width: 100%;
  padding-bottom: 66.66666666%;
  position: relative;
  overflow: hidden;
  height: auto;
}

.shop-list__item__media__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
}

/*===============================
催事出店情報
================================*/
.c-summary {
  margin-bottom: 1em;
}

.ico-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ico {
  background-color: #eee;
  width: calc(50% - 2px);
  padding: 4px;
  margin: 1px;
  border-radius: 2px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.1rem;
  line-height: 1.1;
  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;
}

/* 新商品 */
.ico.ico_new {
  background: #003765;
  color: #fff;
}

/* 限定1 */
.ico.ico_ltd01 {
  background: #ab0415;
  color: #fff;
}

/* 限定2 */
.ico.ico_ltd02 {
  background: #66ab04;
  color: #fff;
}

/* 乳製品 */
.ico.ico_dairy {
  background: #b1e8ff;
  color: #0072a1;
}

/* スイーツ1 */
.ico.ico_sweets01 {
  background: #eee;
  color: #777;
}

/* スイーツ2 */
.ico.ico_sweets02 {
  background: #fff5b1;
  color: #a19000;
}

/* スイーツ3 */
.ico.ico_sweets03 {
  background: #ffb1d6;
  color: #a10040;
}

/* その他 */
.ico.ico_other {
  background: #eee;
  color: #9b9b9b;
}

.saiji-info-col .note {
  color: #de5d50;
  padding-top: 8px;
  display: block;
  font-size: 1.2rem;
}

.saiji-info-col ul.open-hours li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.saiji-info-col ul.open-hours li:not(:last-child) {
  margin-bottom: 8px;
}

.saiji-info-col ul.open-hours li.-days::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(/html/user_data/assets/img/common/ic-calender.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-right: 8px;
}

.saiji-info-col ul.open-hours li.-hours::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(/html/user_data/assets/img/common/ic-time.svg);
  background-repeat: no-repeat;
  margin-right: 8px;
  background-position: center;
  background-size: cover;
}

.saiji-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding-left: 11px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 767px) {
  .saiji-info-row {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.saiji-info-col {
  width: 33.333333%;
  font-size: 14px;
  padding: 0 4px;
}

@media (max-width: 767px) {
  .saiji-info-col {
    width: 100%;
    padding: 0;
  }
}

.saiji-info-col dt {
  background-color: #f8f7f5;
  padding: 4px;
  text-align: center;
  font-weight: normal;
  margin-bottom: 8px;
}

.saiji-info-col dd {
  padding: 4px 0;
}

.saiji-list__item__ttl {
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.25;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.saiji-list__item__ttl a {
  text-decoration: none;
  color: #232a31;
}

.saiji-list__item__ttl a:hover, .saiji-list__item__ttl a:active {
  text-decoration: none;
}

.saiji-list__item__ttl:hover, .saiji-list__item__ttl:active {
  cursor: pointer;
  opacity: 0.75;
}

.saiji-list__item__ttl a::after {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  background-image: url("/html/user_data/assets/img/common/ic-home.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  top: 2px;
}

.saiji-list {
  border-top: 1px solid #232a31;
}

.saiji-list__item {
  padding: 32px 16px;
  border-bottom: 1px solid #232a31;
}

@media (max-width: 767px) {
  .saiji-list__item {
    padding: 16px 0;
  }
  .saiji-list__item:not(:last-child) {
    margin-bottom: 32px;
  }
}

.saiji-list__item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 767px) {
  .saiji-list__item__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.saiji-list__item__img-col {
  width: 20%;
}

@media (max-width: 767px) {
  .saiji-list__item__img-col {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 20px auto;
  }
}

.saiji-list__item__img {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  height: auto;
}

.saiji-list__item__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
}

.saiji-list__item__desc {
  width: 80%;
}

@media (max-width: 767px) {
  .saiji-list__item__desc {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}

.ec-ttl.-evntshop {
  border: none;
  margin-bottom: 0;
}

/*===============================
メディア掲載情報
================================*/
.c-page-summary {
  margin-bottom: 50px;
  line-height: 1.6;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

/*===============================
クリスマスケーキページ
================================*/
.christmas .__wrap {
  /*総合*/
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  /*KV*/
  /*リード文*/
  /*概要*/
}

.christmas .__wrap p {
  font-size: 1.5rem;
  color: #444;
}

.christmas .__wrap p.red {
  color: #e60012;
}

.christmas .__wrap a.link.__underline {
  text-decoration: underline;
  color: #666;
}

.christmas .__wrap a.btn.__external {
  margin: 1.5rem auto;
  padding: 0.5rem 1rem;
  display: block;
  width: 100%;
  max-width: 30rem;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#e60012), to(#ab0415));
  background: linear-gradient(#e60012, #ab0415);
  color: #fff;
  border-radius: 5px;
}

.christmas .__wrap a.btn.__external:hover {
  text-decoration: none;
  opacity: 0.6;
}

.christmas .__wrap dt,
.christmas .__wrap dd {
  font-size: 1.5rem;
  color: #444;
}

.christmas .__wrap .note.__notebox {
  display: block;
}

.christmas .__wrap .note.__notebox p {
  color: #e60012;
  text-indent: -1em;
  padding-left: 1rem;
}

.christmas .__wrap .bold {
  font-weight: bold;
}

.christmas .__wrap .__kv.-christmas2020 {
  padding: 3rem;
  background: url(/user_data/packages/default/img/picture/img_christmas_kv.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
}

.christmas .__wrap .__kv .__catchcopy > p {
  font-size: 2.4rem;
  color: #fff;
  background-color: #e60012;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3rem 0.5rem;
  line-height: 1;
  margin: 0 0 0.5rem;
  letter-spacing: 5px;
}

.christmas .__wrap .__kv .__inner {
  display: -ms-grid;
  display: grid;
  gap: 25rem;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
  margin: 6rem 0 0;
  width: 100%;
}

.christmas .__wrap .__kv .__inner .__title img,
.christmas .__wrap .__kv .__inner .__day img {
  width: 100%;
}

.christmas .__wrap .read.__box.-christmas2020 {
  background-color: #ab0415;
  padding: 3rem 1.5rem;
}

.christmas .__wrap .read.__box p {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  line-height: 2;
}

.christmas .__wrap .read.__box p.bold {
  font-weight: bold;
}

.christmas .__wrap .read.__box figure {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
  margin: 5rem auto 2rem;
}

.christmas .__wrap .read.__box figure img {
  width: 100%;
}

.christmas .__wrap section.__detail {
  width: 100%;
  margin: 3rem 0;
  max-width: 760px;
  padding-left: 16px;
  padding-right: 16px;
}

.christmas .__wrap section.__detail h3 {
  font-size: 2.4rem;
  font-weight: normal;
  padding: 0 0 8px 0;
  margin: 0 0 1.5rem;
}

.christmas .__wrap section.__detail figure {
  width: 100%;
  margin: 0 auto;
}

.christmas .__wrap section.__detail figure img {
  width: 100%;
}

.christmas .__wrap section.__detail dl.__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 1.5rem auto;
  width: 75%;
}

.christmas .__wrap section.__detail dl.__list dt {
  width: 15%;
  background-color: #444;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
}

.christmas .__wrap section.__detail dl.__list dd {
  width: 75%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  margin: 0 0 0 1rem;
  font-size: 1.5rem;
}

.christmas .__wrap section.__detail dl.__list dt,
.christmas .__wrap section.__detail dl.__list dd {
  margin-bottom: 1rem;
  padding: 8px;
}

.christmas .__wrap section.__detail dl.__nomal {
  padding: 0 0.5rem;
}

.christmas .__wrap section.__detail dl.__nomal dt {
  background-color: #eee;
  padding: 0.2rem 0.5rem;
  margin: 0 0 0.5rem;
  font-weight: bold;
  font-size: 1.5rem;
}

.christmas .__wrap section.__detail dl.__nomal dd {
  padding: 1rem 1rem 1.5rem;
}

.christmas .__wrap section.__detail dl.__nomal dd p {
  margin: 0 0 0.5rem;
}

.christmas .__wrap section.__detail dl.__nomal dd .__notebox p {
  margin: 0;
}

/* ==============================================
  ▼クリスマスケーキページ 2021（PC）あとでcss統合予定
  =============================================== */
.christmas .__wrap {
  /*総合*/
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  /*KV*/
  /*リード文*/
  /*概要*/
}

.christmas .__wrap p {
  font-size: 1.5rem;
  color: #444;
}

.christmas .__wrap p.red {
  color: #e60012;
}

.christmas .__wrap p.green {
  color: #129d3c;
}

.christmas .__wrap .green {
  color: #129d3c;
}

.christmas .__wrap a.link.__underline {
  text-decoration: underline;
  color: #666;
}

.christmas .__wrap a.btn.__external {
  margin: 1.5rem auto;
  padding: 0.5rem 1rem;
  display: block;
  width: 100%;
  max-width: 30rem;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#1d572f), to(#2e7243));
  background: linear-gradient(#1d572f, #2e7243);
  color: #fff;
  border-radius: 5px;
}

.christmas .__wrap a.btn.__external:hover {
  text-decoration: none;
  opacity: 0.6;
}

.christmas .__wrap dt,
.christmas .__wrap dd {
  font-size: 1.5rem;
  color: #444;
}

.christmas .__wrap .note.__notebox {
  display: block;
}

.christmas .__wrap .note.__notebox p {
  color: #e60012;
  text-indent: -1em;
  padding-left: 1rem;
}

.christmas .__wrap .bold {
  font-weight: bold;
}

.christmas .__wrap .__kv {
  padding: 3rem;
  background: url(/user_data/packages/default/img/picture/img_christmas_kv_2021.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50rem;
  position: relative;
  height: calc(100vh - 112px);
  width: 100%;
  overflow: hidden;
}

.christmas .__wrap .__kv .__catchcopy > p {
  font-size: 2.4rem;
  color: #fff;
  background-color: #e60012;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3rem 0.5rem;
  line-height: 1;
  margin: 0 0 0.5rem;
  letter-spacing: 5px;
}

.christmas .__wrap .__kv .__inner .__zouryo {
  position: absolute;
  left: 20px;
  top: 20px;
  max-width: 20%;
  /*↓早割終了したら反映 20211201～*/
  right: 20px;
  left: auto;
  max-width: 25%;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.christmas .__wrap .__kv .__inner .__day {
  position: absolute;
  right: 20px;
  top: 20px;
  max-width: 20%;
  /*↓早割終了したら反映 20211201～*/
  display: none;
}

.christmas .__wrap .__kv .__inner .__day.-christmas2020 {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 20%;
  /*↓早割終了したら反映 20211201～*/
}

.christmas .__wrap .__kv .__inner .__title {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: 60%;
}

.christmas .__wrap .__kv .__inner .__title img,
.christmas .__wrap .__kv .__inner .__day img {
  width: 100%;
}

.christmas .__wrap .read.__box {
  background-color: #1d572f;
  padding: 6rem 3rem;
}

.christmas .__wrap .read.__box p {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  line-height: 2;
}

.christmas .__wrap .read.__box p span {
  font-size: 130%;
  padding: 0.2em;
  color: #fee1b2;
}

.christmas .__wrap .read.__box p.bold {
  font-weight: bold;
}

.christmas .__wrap .read.__box figure {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  margin: 5rem auto 2rem;
  max-width: 520px;
}

.christmas .__wrap .read.__box figure img {
  width: 100%;
}

.christmas .__wrap section.__detail {
  width: 100%;
  margin: 3rem auto;
  max-width: 760px;
}

.christmas .__wrap section.__detail h3 {
  font-size: 2.4rem;
  font-weight: normal;
  padding: 0 0 8px 0;
  margin: 0 0 1.5rem;
}

.christmas .__wrap section.__detail figure {
  width: 100%;
  margin: 0 auto;
}

.christmas .__wrap section.__detail figure img {
  width: 100%;
}

.christmas .__wrap section.__detail dl.__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1.5rem auto;
  width: 100%;
}

.christmas .__wrap section.__detail dl.__list dt {
  width: 15%;
  background-color: #444;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
}

.christmas .__wrap section.__detail dl.__list dd {
  width: 85%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  margin: 0;
  font-size: 1.5rem;
}

.christmas .__wrap section.__detail dl.__list dt,
.christmas .__wrap section.__detail dl.__list dd {
  margin-bottom: 1px;
}

.christmas .__wrap section.__detail dl.__nomal {
  padding: 0 0.5rem;
}

.christmas .__wrap section.__detail dl.__nomal dt {
  background-color: #eee;
  padding: 0.2rem 0.5rem;
  margin: 0 0 0.5rem;
  font-weight: bold;
  font-size: 1.5rem;
}

.christmas .__wrap section.__detail dl.__nomal dd {
  padding: 1rem 1rem 1.5rem;
}

.christmas .__wrap section.__detail dl.__nomal dd p {
  margin: 0 0 0.5rem;
}

.christmas .__wrap section.__detail dl.__nomal dd .__notebox p {
  margin: 0;
}

.ec-orderDelivery .ec-orderDelivery__change {
  top: 14px;
}

/*===============================
ヨーグル定期配送ページ
================================*/
.mv-yogurt-teiki {
  margin-bottom: 30px;
}

.mv-yogurt-teiki img {
  width: 100%;
  height: auto;
  max-width: none;
}

.yogurt-bd-box {
  border: 1px solid #81191e;
  color: #81191e;
  padding: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.row-yogurt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 30px;
}

.yogurt__img {
  width: 30%;
}

.yogurt__desc {
  width: 70%;
  padding-right: 4%;
}

.yogurt__desc__text {
  font-size: 1.5rem;
}

.ec-shelfGrid.-yogurt {
  width: 50%;
}

.ec-shelfGrid.-yogurt .ec-shelfGrid__item {
  width: 100%;
}

.yogurt-teiki-btn {
  padding: 30px 0 120px 0;
}

.yogurt-teiki-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.yogurt-teiki-btn a img {
  max-width: 100%;
  width: auto;
}

/*===============================
利用規約
================================*/
.ec-off1Grid__cell.-agreement {
  padding-top: 60px;
}

@media (max-width: 767px) {
  .ec-off1Grid__cell.-agreement {
    padding-top: 30px;
  }
}

.other_page.agreement .agreetmenut-list:not(:last-child) {
  margin-bottom: 32px;
}

.agreetmenut-list__ttl {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: .08em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.agreetmenut-list__desc {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: .08em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

/*===============================
プライバシーポリシー
================================*/
.privacy .ec-ttl {
  border-bottom: 1px solid #232a31;
}

.privacy .ec-ttl__tex {
  padding-bottom: 8px;
}

.ec-off1Grid__cell.-privacy {
  padding-top: 60px;
}

@media (max-width: 767px) {
  .ec-off1Grid__cell.-privacy {
    padding-top: 30px;
  }
}

.privacy-list:not(:last-child) {
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .privacy-list:not(:last-child) {
    margin-bottom: 15px;
  }
}

.privacy-list__ttl {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: .08em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-weight: bold;
}

.privacy-list__desc {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: .08em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.privacy-text-summary {
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .privacy-text-summary {
    margin-bottom: 15px;
  }
}

/*===============================
新規会員登録
================================*/
.ec-off1Grid__cell.-entry {
  padding-top: 60px;
}

@media (max-width: 767px) {
  .ec-off1Grid__cell.-entry {
    padding-top: 30px;
  }
}

/*追加
--------------------------*/
/*商品詳細*/
.ec-productRole .ec-productRole__description h4.catchcopy {
  line-height: 1.6 !important;
  font-size: 2rem !important;
}
ul.disc {
  list-style-type: disc;
}
ul.setmenu.disc {
  line-height: 1.6;
  border: 1px solid #ddd;
  padding: 1.5em;
}
ul.setmenu.disc li {
  margin-left: 1.2em;
}
ul.note_list {
	list-style: none;
  padding-left: 1em;
  margin-left: 0.1em;
}
ul.note_list li {
	text-indent: -1.4em;
  list-style-type: none;
}
ul.note_list li::before {
  content: "※";
  margin-right: 0.4em;
}
.ec-productRole .ec-productRole__description .c-note {
  background: #f8f7f5;
  padding: 1.5em;
}
.ec-productRole .ec-productRole__description h4.c-note__ttl {
  margin: 0 0 0.5em;
}

/*商品タグ*/
.ec-productRole .ec-productRole__tag {
	line-height: 1;
  padding: 0.5em;
}

/*地域限定*/
.ec-shelfGrid__item .ec-productRole__tag.tag_8.-p-detail,
.ec-productRole__tag.tag_8 {
  background: #dd4e36;
  color: #fff;
  border: transparent;
}
/*送料無料*/
.ec-shelfGrid__item .ec-productRole__tag.tag_7.-p-detail,
.ec-productRole__tag.tag_7 {
 	color: #dd4e36;
  border: 1px solid #dd4e36;
}

/*# sourceMappingURL=customize.css.map */
