@charset "UTF-8";
/*-----------------------------------------------------

color

-----------------------------------------------------*/
html,
html * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Roboto', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: .12rem;
}

.mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  -webkit-transform: rotate(0.03deg);
          transform: rotate(0.03deg);
}

/*!
 * ress.css • v2.0.2
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: break-word;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
  height: 0;
  /* Add the correct box sizing in Firefox */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none;
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

li {
  list-style: none;
  margin-right: 20px;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not([fill]) {
  fill: currentColor;
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
   # tell
   # ================================================================= */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: #333;
    text-decoration: none;
  }
}

/* # =================================================================
   # scroll
   # ================================================================= */
.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 1s;
  transition: 1s;
}

/*-----------------------------------------------------

mixin

-----------------------------------------------------*/
/*-----------------------------------------------------

layout.css

-----------------------------------------------------

02 l-main / 

-----------------------------------------------------*/
.swiper-container {
  opacity: 0;
  -webkit-transition: opacity .3s linear;
  transition: opacity .3s linear;
}

.swiper-container-initialized {
  opacity: 1;
}

.l-main {
  width: 100%;
}

.l-main .concept {
  margin: 0 auto;
  text-align: center;
}

.l-main .category-link-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  white-space: normal;
  flex-wrap: wrap;
}

.l-main .category-link-wrap .category-link {
  background-color: #DFAB3D;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  font-weight: bold;
}

.l-main .category-link-wrap .category-link:first-child {
  margin-left: 0;
}

.l-main .event-link-wrap {
  width: 300px;
  border-radius: 6px;
}

.l-main .event-link-wrap .event-link {
  display: -webkit-box;
  display: flex;
  padding: 0 30px 0 0;
  -webkit-box-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  background-color: #d25546;
}

.l-main .event-link-wrap .event-link:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.l-main .event-link-wrap .event-link .event-link-img-wrap {
  width: 28%;
  text-align: center;
}

.l-main .event-link-wrap .event-link .event-link-img-wrap img {
  border-radius: 6px 0 0 6px;
  width: 100%;
  margin-bottom: 0;
  vertical-align: bottom;
}

.l-main .event-link-wrap .event-link .event-link-txt {
  color: #fff;
  padding-left: 10px;
  font-size: 14px;
  line-height: 2;
}

.l-nav-wrap {
  margin-top: 30px;
}

.l-nav-wrap .nav-inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
          justify-content: center;
  flex-wrap: wrap;
}

.l-nav-wrap .nav-inner li {
  height: 46px;
  position: relative;
}

.l-nav-wrap .nav-inner .nav {
  border: 1px solid #999999;
  box-shadow: 0px 3px 0px 0px rgba(186, 186, 186, 0.25);
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  padding: 10px 5px;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  line-height: 2;
}

.l-nav-wrap .nav-inner .icon_1 {
  position: relative;
  width: 100%;
  height: 100%;
  letter-spacing: -0.05rem;
}

.l-nav-wrap .nav-inner .icon_1::before {
  position: absolute;
  bottom: 5px;
  left: 50%;
  text-align: center;
  content: url(../image/2019/common/icon_navA.svg) !important;
}

.l-nav-wrap .nav-inner .icon_2 {
  position: relative;
  width: 100%;
  height: 100%;
  letter-spacing: -0.05rem;
}

.l-nav-wrap .nav-inner .icon_2::before {
  position: absolute;
  bottom: 5px;
  left: 50%;
  text-align: center;
  content: url(../image/2019/common/icon_navB.svg) !important;
}

.l-nav-wrap .nav-inner .icon_3 {
  position: relative;
  width: 100%;
  height: 100%;
  letter-spacing: -0.05rem;
}

.l-nav-wrap .nav-inner .icon_3::before {
  position: absolute;
  bottom: 5px;
  left: 50%;
  text-align: center;
  content: url(../image/2019/common/icon_navC.svg) !important;
}

.l-nav-wrap .nav-inner .icon_4 {
  position: relative;
  width: 100%;
  height: 100%;
  letter-spacing: -0.05rem;
}

.l-nav-wrap .nav-inner .icon_4::before {
  position: absolute;
  bottom: 5px;
  left: 50%;
  text-align: center;
  content: url(../image/2019/common/icon_navD.svg) !important;
}

.l-nav-wrap .nav-inner .icon_5 {
  position: relative;
  width: 100%;
  height: 100%;
  letter-spacing: -0.05rem;
}

.l-nav-wrap .nav-inner .icon_5::before {
  position: absolute;
  bottom: 5px;
  left: 50%;
  text-align: center;
  content: url(../image/2019/common/icon_navE.svg) !important;
}

.l-nav-wrap .nav-inner .icon_6 {
  position: relative;
  width: 100%;
  height: 100%;
  letter-spacing: -0.05rem;
}

.l-nav-wrap .nav-inner .icon_6::before {
  position: absolute;
  bottom: 5px;
  left: 50%;
  text-align: center;
  content: url(../image/2019/common/icon_navF.svg) !important;
}

.l-nav-wrap .nav-inner .icon_7 {
  position: relative;
  width: 100%;
  height: 100%;
  letter-spacing: -0.05rem;
}

.l-nav-wrap .nav-inner .icon_7::before {
  position: absolute;
  bottom: 5px;
  left: 50%;
  text-align: center;
  content: url(../image/2019/common/icon_navG.svg) !important;
}

.l-category-wrap {
  margin: 30px 0 40px;
}

.l-category-wrap .category-title {
  text-align: center;
}

.l-category-wrap .category-title p {
  position: relative;
  display: inline-block;
}

.l-category-wrap .category-title p::before {
  position: absolute;
  top: 50%;
  left: 0;
}

.l-category-wrap .category-title .icon_1::before {
  content: url(../image/2019/common/icon_navA.svg);
}

.l-category-wrap .category-title .icon_2::before {
  content: url(../image/2019/common/icon_navB.svg);
}

.l-category-wrap .category-title .icon_3::before {
  content: url(../image/2019/common/icon_navC.svg);
}

.l-category-wrap .category-title .icon_4::before {
  content: url(../image/2019/common/icon_navD.svg);
}

.l-category-wrap .category-title .icon_5::before {
  content: url(../image/2019/common/icon_navE.svg);
}

.l-category-wrap .category-title .icon_6::before {
  content: url(../image/2019/common/icon_navF.svg);
}

.l-category-wrap .category-title .icon_7::before {
  content: url(../image/2019/common/icon_navG.svg);
}

.l-category-wrap .category-title .icon_4::before {
  left: -60px;
}

.l-category-wrap .products-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
}

.l-category-wrap .products-list .product-wrap {
  position: relative;
}

.l-category-wrap .products-list .product-wrap .product-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #333;
}

.l-category-wrap .products-list .product-wrap .product-link div,
.l-category-wrap .products-list .product-wrap .product-link h4,
.l-category-wrap .products-list .product-wrap .product-link div p {
  margin-bottom: 10px;
}

.l-category-wrap .products-list .product-wrap .product-link .img-wrap {
  overflow: hidden;
}

.l-category-wrap .products-list .product-wrap .product-link .img-wrap img {
  width: 100%;
  margin-bottom: 0 !important;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.l-category-wrap .products-list .product-wrap .product-link .text-wrap h4 {
  font-size: 16px;
  font-weight: bold;
}

.l-category-wrap .products-list .product-wrap .product-link .price {
  width: 100%;
  text-align: right;
  font-weight: bold;
  letter-spacing: -0.1px;
}

.l-category-wrap .products-list .product-wrap .product-link .price span {
  letter-spacing: -0.05px;
}

.l-category-wrap .products-list .product-wrap .product-link .small-text {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  /*　画面サイズ 767pxまで適用　*/
  .l-main {
    padding: 0 5px;
    line-height: 1.5;
  }
  .l-main .concept {
    font-size: 16px;
  }
  .l-main .category-link-wrap .category-link {
    width: 100%;
    margin: 0 0 10px;
    font-size: 16px;
  }
  .l-main .event-link-wrap {
    width: 260px;
  }
  .l-main .event-link-wrap .event-link:hover {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .l-nav-wrap .nav-inner li {
    width: calc((100vw - 15px) / 2);
    margin: 13px 0;
  }
  .l-nav-wrap .nav-inner li:nth-child(odd) {
    margin-right: 5px;
  }
  .l-nav-wrap .nav-inner .nav {
    font-size: 14px;
    line-height: 2;
  }
  .l-nav-wrap .nav-inner .icon_1::before {
    bottom: 5px;
    -webkit-transform: translateX(-50%) scale(0.6);
            transform: translateX(-50%) scale(0.6);
    width: 100%;
    height: 60px;
    content: url(../image/2019/common/icon_navA.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_2::before {
    bottom: 5px;
    -webkit-transform: translateX(-50%) scale(0.6);
            transform: translateX(-50%) scale(0.6);
    width: 100%;
    height: 60px;
    content: url(../image/2019/common/icon_navB.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_3::before {
    bottom: 5px;
    -webkit-transform: translateX(-50%) scale(0.6);
            transform: translateX(-50%) scale(0.6);
    width: 100%;
    height: 60px;
    content: url(../image/2019/common/icon_navC.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_4::before {
    bottom: 5px;
    -webkit-transform: translateX(-50%) scale(0.6);
            transform: translateX(-50%) scale(0.6);
    width: 100%;
    height: 60px;
    content: url(../image/2019/common/icon_navD.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_5::before {
    bottom: 5px;
    -webkit-transform: translateX(-50%) scale(0.6);
            transform: translateX(-50%) scale(0.6);
    width: 100%;
    height: 60px;
    content: url(../image/2019/common/icon_navE.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_6::before {
    bottom: 5px;
    -webkit-transform: translateX(-50%) scale(0.6);
            transform: translateX(-50%) scale(0.6);
    width: 100%;
    height: 60px;
    content: url(../image/2019/common/icon_navF.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_7::before {
    bottom: 5px;
    -webkit-transform: translateX(-50%) scale(0.6);
            transform: translateX(-50%) scale(0.6);
    width: 100%;
    height: 60px;
    content: url(../image/2019/common/icon_navG.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_4::before {
    bottom: 3px;
  }
  .l-category-wrap .category-title p {
    padding: 30px 0 30px 50px;
    font-size: 16px;
  }
  .l-category-wrap .category-title p::before {
    -webkit-transform: translateY(-50%) scale(0.7);
            transform: translateY(-50%) scale(0.7);
  }
  .l-category-wrap .category-title .icon_7::before {
    left: -10px;
  }
  .l-category-wrap .products-list {
    flex-wrap: wrap;
    -webkit-box-pack: center;
            justify-content: center;
    margin-bottom: 30px;
  }
  .l-category-wrap .products-list .product-wrap {
    width: calc((100vw - 28px) / 2);
    padding: 20px 0 20px 8px;
    border-left: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
  }
  .l-category-wrap .products-list .product-wrap:nth-child(odd) {
    padding-left: 0;
    border-left: none;
    padding-right: 8px;
    border-right: 1px solid #dbdbdb;
  }
  .l-category-wrap .products-list .product-wrap:nth-child(-n+2) {
    padding-top: 0px;
  }
  .l-category-wrap .products-list .product-wrap:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
  }
  .l-category-wrap .products-list .product-wrap .product-link .text-wrap .size {
    font-size: 12px;
  }
  .l-category-wrap .products-list .product-wrap .product-link .price {
    letter-spacing: -0.1px;
    padding-right: 5px;
  }
}

@media screen and (max-width: 320px) {
  .l-nav-wrap .nav-inner .icon_1 {
    letter-spacing: -0.1rem !important;
  }
}

@media screen and (min-width: 768px) {
  /*　画面サイズ 768px以上から適用　*/
  .l-main {
    max-width: 1290px;
    min-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .l-main .concept {
    font-weight: bold;
  }
  .l-main .category-link-wrap .category-link {
    margin: 0 0 20px 25px;
  }
  .l-main .category-link-wrap .category-link:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .l-nav-wrap .nav-inner li {
    width: 16%;
    margin: 30px 3px;
  }
  .l-nav-wrap .nav-inner .nav {
    font-size: 15px;
  }
  .l-nav-wrap .nav-inner .nav:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .l-nav-wrap .nav-inner .nav:hover p::before {
    -webkit-animation: hurueru .1s  infinite;
            animation: hurueru .1s  infinite;
  }
  .l-nav-wrap .nav-inner .icon_1::before {
    bottom: 15px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: url(../image/2019/common/icon_navA.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_2::before {
    bottom: 15px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: url(../image/2019/common/icon_navB.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_3::before {
    bottom: 15px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: url(../image/2019/common/icon_navC.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_4::before {
    bottom: 15px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: url(../image/2019/common/icon_navD.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_5::before {
    bottom: 15px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: url(../image/2019/common/icon_navE.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_6::before {
    bottom: 15px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: url(../image/2019/common/icon_navF.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_7::before {
    bottom: 15px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: url(../image/2019/common/icon_navG.svg) !important;
  }
  .l-nav-wrap .nav-inner .icon_2::before {
    bottom: 20px;
  }
  .l-nav-wrap .nav-inner .icon_4::before {
    bottom: 20px;
  }
  @-webkit-keyframes hurueru {
    0% {
      -webkit-transform: translateX(-50%) rotateZ(0deg);
              transform: translateX(-50%) rotateZ(0deg);
    }
    25% {
      -webkit-transform: translateX(-50%) rotateZ(2deg);
              transform: translateX(-50%) rotateZ(2deg);
    }
    50% {
      -webkit-transform: translateX(-50%) rotateZ(0deg);
              transform: translateX(-50%) rotateZ(0deg);
    }
    75% {
      -webkit-transform: translateX(-50%) rotateZ(-2deg);
              transform: translateX(-50%) rotateZ(-2deg);
    }
    100% {
      -webkit-transform: translateX(-50%) rotateZ(0deg);
              transform: translateX(-50%) rotateZ(0deg);
    }
  }
  @keyframes hurueru {
    0% {
      -webkit-transform: translateX(-50%) rotateZ(0deg);
              transform: translateX(-50%) rotateZ(0deg);
    }
    25% {
      -webkit-transform: translateX(-50%) rotateZ(2deg);
              transform: translateX(-50%) rotateZ(2deg);
    }
    50% {
      -webkit-transform: translateX(-50%) rotateZ(0deg);
              transform: translateX(-50%) rotateZ(0deg);
    }
    75% {
      -webkit-transform: translateX(-50%) rotateZ(-2deg);
              transform: translateX(-50%) rotateZ(-2deg);
    }
    100% {
      -webkit-transform: translateX(-50%) rotateZ(0deg);
              transform: translateX(-50%) rotateZ(0deg);
    }
  }
  .l-category-wrap .category-title p {
    padding: 30px 0 30px 60px;
  }
  .l-category-wrap .category-title p::before {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-category-wrap .products-list {
    margin-bottom: 60px;
  }
  .l-category-wrap .products-list .product-wrap {
    width: 23%;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .l-category-wrap .products-list .product-wrap:first-child {
    margin-left: 0;
  }
  .l-category-wrap .products-list .product-wrap .product-link .price {
    position: absolute;
    bottom: 0;
  }
  .l-category-wrap .products-list .product-wrap .product-link:hover .img-wrap {
    overflow: hidden;
  }
  .l-category-wrap .products-list .product-wrap .product-link:hover .img-wrap img {
    width: 100%;
    margin-bottom: 0 !important;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .l-category-wrap .products-list .product-wrap .product-link:hover .text-wrap {
    text-decoration: underline;
  }
}

/*-----------------------------------------------------

02 l-footer

-----------------------------------------------------*/
.l-footer {
  width: 100%;
}

.l-footer .footer-contents-wrap p.footer-txt {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 10px;
}

.l-footer .footer-contents-wrap .footer-link-wrap {
  display: -webkit-box;
  display: flex;
}

.l-footer .footer-contents-wrap .footer-link-wrap .footer-link {
  border-right: 1px solid #dbdbdb;
  padding: 0 10px;
  font-size: 13px;
  color: #333;
}

.l-footer .footer-contents-wrap .footer-link-wrap .footer-link:first-child {
  padding-left: 0;
}

.l-footer .footer-contents-wrap .footer-link-wrap .footer-link:last-child {
  border-right: none;
}

.l-footer .footer-contents-wrap .footer-link-wrap .footer-link a {
  text-decoration: none;
  color: #333;
}

.l-footer .footer-copyright-wrap {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .l-footer {
    width: 100%;
    max-width: 1290px;
    min-width: 980px;
    margin: 30px auto 0;
    padding: 30px 20px;
    border-top: 1px solid #dbdbdb;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
            align-items: flex-end;
  }
  .l-footer .footer-contents-wrap {
    margin-right: auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
            align-items: flex-end;
  }
  .l-footer .footer-contents-wrap .footer-logo {
    margin-right: 40px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
            align-items: flex-end;
  }
  .l-footer .footer-copyright-wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
            align-items: flex-end;
  }
}

@media screen and (max-width: 768px) {
  .l-footer {
    width: 100%;
    margin: 0 auto 0;
    padding: 0 10px 30px;
    text-align: center;
    line-height: 1.5;
  }
  .l-footer .footer-contents-wrap .footer-logo {
    width: 180px;
    margin: 0 auto;
  }
  .l-footer .footer-contents-wrap .footer-logo img {
    width: 100%;
  }
  .l-footer .footer-contents-wrap .footer-link-wrap {
    -webkit-box-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
}

/*-----------------------------------------------------

03 follow nav

-----------------------------------------------------*/
.clone-nav {
  width: 100%;
  height: 40px;
  position: fixed;
  top: -100px;
  left: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.clone-nav .nav-inner {
  display: -webkit-box;
  display: flex;
  font-size: 13px;
  -webkit-box-pack: center;
          justify-content: center;
  margin-top: 5px;
}

.clone-nav .nav-inner li {
  margin: 0 5px;
  border-left: 1px solid #dbdbdb;
  text-align: center;
}

.clone-nav .nav-inner li:first-child {
  border-left: none;
}

.clone-nav .nav-inner li a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  padding: 3px;
  letter-spacing: -0.1px;
  margin: 3px;
}

.clone-nav.is-fixed-nav {
  top: 0;
}

section {
  display: block;
  padding-top: 40px;
  margin-top: -40px;
}

@media screen and (max-width: 980px) {
  .clone-nav {
    overflow: hidden;
    background-color: rgba(117, 117, 117, 0.9);
  }
  .clone-nav .nav-inner {
    overflow-x: scroll;
    -webkit-box-pack: start;
            justify-content: flex-start;
  }
  .clone-nav .nav-inner li a {
    color: #fff;
  }
  section {
    display: block;
    padding-top: 30px;
    margin-top: -30px;
  }
}

/*-----------------------------------------------------

component.css

-----------------------------------------------------*/
.c-tag-icon-wrap {
  height: 29px;
}

.c-tag-icon-wrap .c-tag-icon {
  display: none;
  padding: 6px 8px;
  border-radius: 6px;
  color: #fff;
  line-height: 1;
  font-size: 14px;
  margin-bottom: 3px !important;
}

.c-tag-icon-wrap .free-shipping {
  background-color: #F14E4E;
}

.c-tag-icon-wrap .gift {
  background-color: #dac4ac;
}

.c-tag-icon-wrap .noshi {
  background-color: #dac4ac;
}
.c-tag-icon-wrap .limited-time {
  background-color: #9A63B9;
}

.is-active {
  display: inline-block !important;
}

.c-tag-icon-wrap .c-tag-icon {
  padding: 6px;
  border-radius: 6px;
  font-size: 12px;
}

.c-flex-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

.c-flex-wrap-between {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.c-btn {
  padding: 5px 10px;
  border-radius: 6px;
  background-color: #D80C18;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  border: unset;
  text-align: center;
}

.c-btn-edit {
  padding: 5px 10px;
}

.c-cart-btn-delete input[type=submit] {
  padding: 5px 10px;
  width: unset !important;
  height: unset !important;
  border-radius: 6px;
  background-color: #999999;
  color: #fff;
  border: unset;
  box-shadow: 0 2px 0 rgba(46, 46, 46, 0.8);
}

.c-btn-arrow {
  position: relative;
  padding: 10px 50px 10px 20px;
  border-radius: 6px;
}

.c-btn-arrow::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #fff;
  background-image: url(../image/2019/common/category_link_icon.svg);
  background-size: 6px;
  background-position: 8px;
  border-radius: 15px;
  color: #DFAB3D;
  text-align: center;
  line-height: 30px;
  content: " ";
  line-height: 1;
  padding: 2px 0 2px 4px;
}

.c-btn-arrow-left {
  position: relative;
  padding: 10px 20px 10px 50px;
  border-radius: 6px;
}

.c-btn-arrow-left::after {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  width: 20px;
  height: 20px;
  background-color: #fff;
  background-image: url(../image/2019/common/category_link_icon.svg);
  background-size: 6px;
  background-position: 8px;
  border-radius: 15px;
  color: #DFAB3D;
  text-align: center;
  line-height: 30px;
  content: " ";
  line-height: 1;
  padding: 2px 0 2px 4px;
}

@media screen and (min-width: 767px) {
  .c-mobile-br {
    display: none;
  }
  .c-pc-br {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .c-mobile-br {
    display: block;
  }
  .c-pc-br {
    display: none;
  }
}

.c-img-wrap {
  width: 100%;
}

.c-img-wrap img {
  width: 100%;
}

.c-font-l {
  font-size: larger !important;
}

.c-font-s {
  font-size: smaller !important;
}

.c-page-top {
  margin-top: 20px;
}

.c-page-top a {
  padding: 3px 6px 3px 28px;
  position: relative;
  background-color: #dbdbdb;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-size: 12px;
}

.c-page-top a::before {
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 14px 8px;
  border-color: transparent transparent #999999 transparent;
}

/*-----------------------------------------------------

margin text-align letter-spacing font-weight

-----------------------------------------------------*/
.c-mt10 {
  margin-top: 10px !important;
}

.c-mb10 {
  margin-bottom: 10px !important;
}

.c-mr10 {
  margin-right: 10px !important;
}

.c-ml10 {
  margin-left: 10px !important;
}

.c-mt20 {
  margin-top: 20px !important;
}

.c-mb20 {
  margin-bottom: 20px !important;
}

.c-mr20 {
  margin-right: 20px !important;
}

.c-ml20 {
  margin-left: 20px !important;
}

.c-mt30 {
  margin-top: 30px !important;
}

.c-mb30 {
  margin-bottom: 30px !important;
}

.c-mr30 {
  margin-right: 30px !important;
}

.c-ml30 {
  margin-left: 30px !important;
}

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

.c-font-red {
  color: #D80C18;
}

.c-attention {
  display: block;
  white-space: normal !important;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.c-attention::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\02747";
}

.c-font-bold {
  font-weight: bold;
}

/*-----------------------------------------------------

form

-----------------------------------------------------*/
.c-form-row {
  display: block;
  margin: 20px 0 5px;
}

.c-form-row label,
.c-form-row .form-title {
  font-size: 14px;
  display: block;
  font-weight: bold;
}

.c-form-row input {
  border: 1px solid #999999;
}

.c-form-row input[type="text"],
.c-form-row input[type="password"],
.c-form-row input[type="email"],
.c-form-row input[type="tel"] {
  width: 100%;
  height: 40px;
  padding: 5px;
}

.c-form-row .c-input-name {
  width: 45% !important;
}

.c-form-row .c-input-year {
  width: 20% !important;
}

.c-form-row .c-input-month,
.c-form-row .c-input-day {
  width: 20% !important;
}

.c-form-row .c-checkbox {
  margin: 20px 0;
}

.c-form-row .c-attention {
  display: block;
  white-space: normal !important;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.c-form-row .c-attention::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\02747";
}

.c-form-row .c-card-limit-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
          align-items: baseline;
}

.c-form-row .c-card-limit-wrap select {
  width: 60px;
}

.c-form-row .c-card-limit-wrap select, .c-form-row .c-card-limit-wrap label {
  margin-right: 10px;
}

.c-list-withdots {
  display: block;
  white-space: normal !important;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.c-list-withdots::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\02022";
}

.c-list-withdots:last-child {
  display: none;
}

input[type="button"],
input[type="submit"] {
  background-color: buttonface;
  border-style: outset;
  font-size: 13px;
  padding: 2px 5px;
}

input[disabled="disabled"],
select[disabled="disabled"] {
  background-color: #dbdbdb;
}

@media screen and (max-width: 767px) {
  input[type="button"],
  input[type="submit"],
  select {
    width: 100%;
    height: 44px;
    padding: 5px;
    background-color: #fff;
    border-radius: 6px;
  }
  textarea {
    width: 100%;
    height: 80px;
    padding: 5px;
    background-color: #fff;
  }
  input[type="checkbox"],
  input[type="radio"] {
    display: none;
  }
  .c-pager-wrap {
    -webkit-box-pack: center !important;
            justify-content: center !important;
  }
  .c-checkbox .c-checkbox-txt,
  .item-wrap .c-checkbox-txt {
    position: relative;
    padding-left: 28px;
  }
  .c-checkbox .c-checkbox-txt::before,
  .item-wrap .c-checkbox-txt::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 3px solid #dbdbdb;
    border-radius: 50%;
  }
  .c-checkbox input:checked + p.c-checkbox-txt::before,
  .item-wrap input:checked + p.c-checkbox-txt::before {
    border: 3px solid #FFcc00;
  }
  .c-checkbox input:checked + p.c-checkbox-txt::after,
  .item-wrap input:checked + p.c-checkbox-txt::after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background-color: #FFcc00;
    border-radius: 50%;
  }
  .c-checkbox-square {
    display: block;
    position: relative;
  }
  .c-checkbox-square input {
    position: absolute;
    top: 0;
    left: 0;
  }
  .c-checkbox-square .c-checkbox-wrap {
    display: -webkit-box;
    display: flex;
    border: 1px solid #dbdbdb;
    border-radius: 6px;
    padding: 10px;
    background-color: #dbdbdb;
  }
  .c-checkbox-square .c-checkbox-txt {
    position: relative;
    padding-left: 28px;
  }
  .c-checkbox-square .c-checkbox-txt::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff77;
  }
  .c-checkbox-square .c-checkbox-txt::after {
    content: "\02714";
    display: block;
    position: absolute;
    top: 0px;
    left: 4px;
    width: 10px;
    height: 10px;
    color: #ffffff77;
  }
  .c-checkbox-square input:checked + .c-checkbox-wrap {
    background-color: #FFcc00;
  }
  .c-checkbox-square input:checked + .c-checkbox-wrap p.c-checkbox-txt::before {
    border: 2px solid #fff;
    background-color: #fff;
  }
  .c-checkbox-square input:checked + .c-checkbox-wrap p.c-checkbox-txt::after {
    content: "\02714";
    display: block;
    position: absolute;
    top: 0px;
    left: 4px;
    width: 10px;
    height: 10px;
    color: #FFcc00;
  }
  .c-text-edit-add {
    text-align: right;
    font-size: 14px;
    margin-top: 5px;
  }
  .font_gray {
    margin-top: 2px;
    font-size: 12px;
  }
}

input[type="date"] {
  font-size: 16px;
  padding: 2px 5px;
  border: 1px solid #999999;
  height: 30px;
}

input[type="date"] {
  width: 40vw;
  font-size: 14px;
}

.c-terms {
  width: 100%;
  overflow-y: scroll;
  height: 200px;
  border: 1px solid #dbdbdb;
  padding: 10px;
  font-size: 13px;
}

.c-terms .terms-title {
  font-size: 14px;
  font-weight: bold;
  background-color: #dbdbdb;
  padding: 5px;
}

.c-terms .terms-sub-title {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}

.c-terms .terms-ol {
  float: unset !important;
  border: none !important;
  width: 100% !important;
  padding: 0 !important;
  text-align: left !important;
  font-size: 13px !important;
  margin: 10px 0 !important;
}

.c-terms .terms-ol li {
  float: unset !important;
  width: 100% !important;
  padding: 0 !important;
  text-align: left !important;
  font-size: 13px !important;
  margin: 5px 0;
}

input[type="date"] {
  width: 38vw;
}

.c-checkbox {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-left: 10px;
}

.c-checkbox .c-checkbox-txt {
  font-weight: normal;
  font-size: 16px;
}

.c-label {
  background-color: #0000AA;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

/*-----------------------------------------------------

step-bar

-----------------------------------------------------*/
@media screen and (max-width: 767px) {
  .img-step-bar {
    display: none;
  }
  #flow {
    margin: 0 !important;
  }
  #flow .c-step-bar-wrap {
    width: 100%;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    margin: 0;
    font-size: 10px;
    border: unset;
  }
  #flow .c-step-bar-wrap .step-01 {
    z-index: 5;
  }
  #flow .c-step-bar-wrap .step-02 {
    z-index: 4;
  }
  #flow .c-step-bar-wrap .step-03 {
    z-index: 3;
  }
  #flow .c-step-bar-wrap .step-04 {
    z-index: 2;
  }
  #flow .c-step-bar-wrap .step-05 {
    z-index: 1;
  }
  #flow .c-step-bar-wrap .step {
    width: 20%;
    height: 80px;
    background: #dbdbdb;
    font-size: 13px;
    position: relative;
    padding: 5px 2px 5px 16px;
    line-height: 1.2;
    display: table;
    text-align: center;
  }
  #flow .c-step-bar-wrap .step::after {
    content: "";
    position: absolute;
    top: -15%;
    right: -10px;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 13px solid #dbdbdb;
  }
  #flow .c-step-bar-wrap .step::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -13px;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 13px solid #fff;
  }
  #flow .c-step-bar-wrap .step:first-child {
    padding: 5px;
    width: 16%;
  }
  #flow .c-step-bar-wrap .is-current {
    color: #fff;
    background-color: #d25546;
  }
  #flow .c-step-bar-wrap .is-current::after {
    content: "";
    border-left: 13px solid #d25546;
    position: absolute;
    top: -15%;
    right: -10px;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
  }
  #flow .c-step-bar-wrap .step-bar-txt {
    display: table-cell;
    vertical-align: middle;
    font-size: 11px;
    line-height: 1.6;
  }
}

@media screen and (min-width: 768px) {
  .img-step-bar {
    display: block;
    margin: 20px auto;
  }
  .c-step-bar-wrap {
    display: none;
  }
}

.c-event-close {
  font-size: 16px;
  color: red;
  font-weight: bold;
  margin: -30px auto 60px;
  text-align: center;
  border: 1px solid red;
  padding: 10px;
}

.c-soldout-btn {
  width: 100%;
  height: 60px;
  background-color: #EDEDED;
  color: #666;
  font-weight: bold;
  font-size: 14px;
  border-radius: 6px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

/*-----------------------------------------------------

color

-----------------------------------------------------*/
/*-----------------------------------------------------

original_fathersday

-----------------------------------------------------*/
.swiper-wrap {
  background-image: none;
  background-color: #fff;
}

.swiper-wrap .main-wrap {
  width: 1080px;
  margin: 0 auto;
  position: relative;
}

.swiper-wrap .main-wrap .main-logo {
  position: absolute;
  top: -2px;
  right: 20px;
  width: 152px;
}

.swiper-wrap .main-wrap .main-logo img {
  width: 100%;
}

.popular {
  position: absolute;
  top: -3px;
  left: -3px;
  background-color: red;
  color: white;
  font-size: 14px;
  font-weight: bold;
  z-index: 2;
}

.popular .triangle-bg {
  position: relative;
}

.popular .triangle-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 80px 0 0;
  border-color: #ff3d6d transparent transparent transparent;
}

.popular .triangle-txt {
  position: absolute;
  top: -10px;
  left: -12px;
  padding: 0px;
  width: 140px;
  z-index: 3;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  letter-spacing: 2px;
}

.products-list .product-wrap .product-link {
  position: relative;
}

.products-list .product-wrap .product-link .img-wrap {
  border: unset;
  margin-bottom: 0 !important;
  position: relative;
  z-index: 1;
}

.products-list .product-wrap .product-link .img-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
}

.products-list .product-wrap .product-link .img-wrap .sub-img-l {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 45% !important;
  height: 45% !important;
}

.products-list .product-wrap .product-link .sub-img-l {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.products-list .product-wrap .product-link h3 {
  font-weight: bold;
  padding: 7px 0;
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 1.4;
}

.products-list .product-wrap .product-link .small-text {
  font-size: smaller;
}

.products-list .product-wrap .product-link .shop-name {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.2;
}

.products-list .product-wrap .product-link .shop-name a {
  color: #333;
  text-decoration: none;
}

.products-list .product-wrap .product-link .price {
  position: unset !important;
  margin-bottom: 10px;
  text-align: left !important;
  font-size: 18px;
  color: #ff3d6d;
}

.products-list .product-wrap .product-link .price .list-price {
  font-size: smaller;
  color: #333;
}

.products-list .product-wrap .product-link .c-tag-icon-wrap {
  height: unset !important;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding-bottom: 0 !important;
}

.products-list .product-wrap .product-link .c-tag-icon-wrap p {
  border-radius: 2px;
  width: 48%;
  color: #000000;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  letter-spacing: -0.05rem;
}

.products-list .product-wrap .product-link .c-tag-icon-wrap .free-shipping {
  background-color: #ff3d6d;
  color: #fff;
}

.products-list .product-wrap .product-link .c-tag-icon-wrap .gift {
  background-color: #fcd686;
}

.products-list .product-wrap .product-link .btn-add-cart {
  width: 100%;
  height: 60px;
  background-color: #000;
  border: 3px solid #000;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  margin-bottom: 10px;
  cursor: pointer;
}

.products-list .product-wrap .product-link .btn-add-cart:hover {
  background-color: #ff6e06;
  border: 3px solid #ff6e06;
}

.products-list .product-wrap .product-link .requested {
  width: 100%;
  display: none;
  font-size: 14px;
  color: #FF0000;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.is-fixed {
  position: fixed;
  left: 0;
  z-index: 3;
  width: 100%;
}

.balloon-wrap {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 20%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 300px;
}

.balloon-wrap .balloon-message {
  display: inline-block;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
  padding-top: 60px;
  font-size: 13px;
  -webkit-filter: drop-shadow(0 0 0.1rem #000);
          filter: drop-shadow(0 0 0.1rem #000);
}

.balloon-wrap .balloon-message span {
  color: yellow;
}

.balloon-wrap .icon-cart::before {
  top: 16px;
  left: 50%;
  -webkit-transform: translateY(0) translateX(-50%);
          transform: translateY(0) translateX(-50%);
}

.l-footer {
  display: block;
  width: 100%;
  max-width: unset;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0;
  border: unset;
  background-color: #9e9e9e;
  padding: 20px 0 0 0;
}

.l-footer .footer-contents-wrap {
  width: 100%;
  margin: 40px auto;
  color: #fff;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: unset;
          align-items: unset;
}

.l-footer .footer-contents-wrap .footer-logo {
  width: 167px;
  height: 60px;
}

.l-footer .footer-contents-wrap .footer-logo img {
  width: 100%;
}

.l-footer .footer-contents-wrap .footer-link-wrap .footer-link a {
  color: #fff;
}

.l-footer .footer-copyright-wrap {
  margin: 0;
  padding: 10px;
  background-color: #920908;
}

.l-footer .footer-copyright-wrap .footer-copyright {
  margin: 20px auto 15px;
  color: #fff;
}

.swiper-wrap {
  height: 260px !important;
  background-image: url("../img/main_img.png"), url("../image/2020/summergift/main_bg.jpg");
  background-position: center, center;
  background-repeat: no-repeat, repeat;
  position: relative;
  margin-bottom: 0 !important;
}

.swiper-wrap h1 {
  position: absolute;
  top: -100px;
  font-size: 1px;
}

.l-nav-wrap {
  width: 100%;
  margin-top: 0;
  height: 60px;
  background-color: #1778a0;
  box-shadow: 0px 3px 0px 0px rgba(186, 186, 186, 0.25);
}

.l-nav-wrap .nav-inner {
  width: 1080px;
  margin: 0 auto;
  -webkit-box-align: center !important;
          align-items: center !important;
}

.l-nav-wrap .nav-inner li {
  width: 16%;
  height: 60px;
  font-weight: bold;
  position: relative;
  margin: 0 !important;
}

.l-nav-wrap .nav-inner li .nav {
  border-radius: unset !important;
  height: 60px;
  border: unset;
  display: block;
  width: 100%;
  position: relative;
  display: table;
}

.l-nav-wrap .nav-inner li .nav:hover {
  -webkit-transition: unset;
  transition: unset;
  -webkit-transform: unset;
          transform: unset;
}

.l-nav-wrap .nav-inner li .nav p {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.2;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.l-nav-wrap .nav-inner li.season {
  background-color: #20c9b2 !important;
}

.l-nav-wrap .nav-inner li.cart {
  width: 20%;
  background-color: #000;
  position: relative;
}

.l-nav-wrap .nav-inner li.cart .nav {
  color: #fff;
}

.l-nav-wrap .nav-inner li.cart:hover {
  background-color: #e92828;
}

.l-nav-wrap .nav-inner li.menu {
  background-color: #48a5ce;
  border-right: 1px solid #98c0d1;
}

.l-nav-wrap .nav-inner li.menu::after {
  position: absolute;
  bottom: 4px;
  left: 50%;
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translateX(-50%);
}

.l-nav-wrap .nav-inner li.menu:hover {
  background-color: #39d6cc;
  color: #fff;
}

.l-nav-wrap .nav-inner li.menu .nav {
  color: #fff;
}

.l-nav-wrap .nav-inner li.menu .nav:hover {
  color: #fff;
}

.l-nav-wrap .nav-inner li.menu .nav:hover:after {
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.cart-num-wrap {
  position: relative;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

.cart-num-wrap .cart-num {
  position: absolute;
  top: -4px;
  left: 50px;
  display: inline-block;
  background-color: #E8C021;
  color: #000;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  line-height: 1.6;
  text-align: center;
  letter-spacing: -0.1rem;
  z-index: 2;
}

.icon-cart {
  position: relative;
  padding-left: 45px;
}

.icon-cart::before {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url("../image/2020/fathersday/Icon-feather-shopping-cart.svg");
  background-size: 28px 28px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
}

.l-main {
  max-width: 1080px !important;
}

.l-main p.concept {
  color: #666;
  margin-bottom: 60px;
}

.l-main h2.category-title {
  color: #333;
  font-size: 24px;
  position: relative;
  margin: 0 0 50px;
  padding-bottom: 16px;
}

.l-main h2.category-title p {
  padding: 0 !important;
}

.l-main h2.category-title span {
  background-color: #48a5ce;
  padding: 8px 50px;
  display: inline-block;
  color: #fff;
  border-radius: 30px;
  font-size: 20px;
}

.l-main h2.category-title span.season {
  background-color: #20c9b2 !important;
}

.l-main section li.product-wrap {
  width: 24%;
}

.l-main section li.product-wrap .img-wrap {
  height: 190px;
}

.l-main section li.product-wrap .img-wrap img {
  width: 100%;
  height: 100%;
}

.l-main section#section_1 li.product-wrap {
  width: 32%;
}

.l-main section#section_1 li.product-wrap .img-wrap {
  height: 280px;
}

.l-main section#section_1 li.product-wrap .img-wrap img {
  width: 100%;
  height: 280px;
}

.l-main section#section_1 li.product-wrap .c-tag-icon-wrap {
  -webkit-box-pack: start !important;
          justify-content: start !important;
}

.l-main section#section_1 li.product-wrap .c-tag-icon-wrap p {
  width: 120px;
  margin-right: 10px;
}

.l-category-wrap .category-title {
  padding: 0 !important;
  text-align: center;
  color: #ff9900;
  font-size: 18px;
}

.l-category-wrap .category-link-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  white-space: normal;
  flex-wrap: wrap;
}

.l-category-wrap .category-link-wrap span.Text1 {
  background-color: #ffe8b1;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
  font-weight: bold;
  margin: 8px 2px;
  padding: 5px 12px;
  border-radius: 6px;
}

.l-category-wrap .category-link-wrap span.Text1 a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  color: #999999;
}

.balloon-modal {
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
  display: none;
}

.balloon-modal .balloon-wrap {
  width: 300px;
  display: block;
  position: absolute;
  top: 50%;
  bottom: unset;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

.balloon-modal .balloon-wrap p {
  width: 100%;
}

.detail-modal {
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 5;
  display: none;
}

.detail-modal .detail-wrap {
  width: 900px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  bottom: unset;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  border-radius: 12px;
  padding: 20px;
}

.detail-modal .detail-wrap .detail-inner {
  display: -webkit-box;
  display: flex;
}

.detail-modal .detail-wrap .detail-inner .detail-img {
  width: 45%;
  padding-right: 20px;
}

.detail-modal .detail-wrap .detail-inner .detail-img img {
  width: 100%;
}

.detail-modal .detail-wrap .detail-inner .detail-text {
  width: 55%;
}

.detail-modal .detail-wrap .detail-btn-wrap {
  margin-top: 20px;
  display: -webkit-box;
  display: flex;
}

.voice {
  font-size: 13px;
  background-color: #f3d6d6;
  padding: 3px 5px;
  border-radius: 6px;
  color: #333;
  margin-top: 5px;
  display: inline-block;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 14px;
  }
  .is-fixed {
    top: 0;
  }
  .mobile-header {
    display: none;
  }
  .l-nav-wrap {
    z-index: 9 !important;
  }
  section {
    margin-top: -100px !important;
    padding-top: 100px !important;
  }
  .sub-img {
    width: 45% !important;
    height: 45% !important;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  .is-fixed {
    top: 0;
  }
  section {
    margin-top: -70px !important;
    padding-top: 70px !important;
  }
  .mobile-header {
    z-index: 5;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    align-content: center;
    -webkit-box-align: center;
    align-items: center;
    padding: 8px;
    background-color: #000000c7;
  }
  .mobile-header .cart-num-wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    background-color: #ff6e06;
    width: 100%;
    height: 54px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
  }
  .mobile-header .cart-num-wrap p {
    display: inline-block;
    position: relative;
  }
  .mobile-header .cart-num-wrap img {
    width: 30px;
    height: 30px;
  }
  .mobile-header .cart-num-wrap .cart-num {
    top: -8px !important;
    left: -20px !important;
  }
  .mobile-header .page-top {
    width: 100px;
    height: 54px;
    background-color: #9e9e9e;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    position: relative;
  }
  .mobile-header .page-top p {
    line-height: 1;
    text-align: center;
    padding-top: 14px;
    font-size: 13px;
  }
  .mobile-header .page-top p::after {
    position: absolute;
    top: 4px;
    left: 38%;
    content: "";
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(-135deg) translateX(-80%);
            transform: rotate(-135deg) translateX(-80%);
  }
  .swiper-wrap {
    margin-top: 0;
    background-image: url("../img/main_sp_img_mini.png"), url("../image/2020/summergift/main_sp_bg.jpg");
    height: 26vh !important;
    min-height: 160px;
    background-size: 100vw, 120vw;
    background-color: #fff !important;
    display: block;
  }
  .swiper-wrap .main-wrap {
    width: 100% !important;
  }
  .swiper-wrap .main-wrap .main-logo {
    position: absolute;
    top: 0;
    right: 20px;
    width: 30vw !important;
    max-width: 120px;
  }
  .swiper-wrap .main-wrap .main-logo img {
    width: 100%;
  }
  .l-nav-wrap .nav-inner {
    width: 100% !important;
    -webkit-box-align: center !important;
            align-items: center !important;
  }
  .l-nav-wrap .nav-inner li {
    width: 20% !important;
  }
  .l-nav-wrap .nav-inner li::after {
    bottom: 6px !important;
  }
  .l-nav-wrap .nav-inner li .nav {
    font-size: 12px !important;
    letter-spacing: -5em !important;
    line-height: 1.4 !important;
    padding: 0 5px !important;
    box-shadow: unset !important;
  }
  .l-nav-wrap .nav-inner .cart {
    display: none;
  }
  .concept {
    text-align: left !important;
    margin-bottom: unset !important;
    padding: 0 10px !important;
  }
  .l-category-wrap {
    padding: 0 5px;
    margin: 30px 0;
  }
  #section_1 .products-list .product-wrap {
    width: 100% !important;
  }
  .category-title {
    font-size: 20px !important;
    margin: 30px 0 -10px !important;
  }
  .category-title::before {
    display: none;
  }
  .products-list {
    -webkit-box-pack: justify !important;
            justify-content: space-between !important;
  }
  .products-list .product-wrap {
    width: 100% !important;
    margin: 50px 0 !important;
    border: unset !important;
    padding: 0 !important;
    border-bottom: 1px dashed #e5e5e5 !important;
  }
  .products-list .product-wrap .product-link .img-wrap {
    border: none !important;
  }
  .products-list .product-wrap .product-link .img-wrap .sub-img {
    width: 150px !important;
    height: 150px;
  }
  .products-list .product-wrap .product-link h3 {
    font-size: 16px;
  }
  .products-list .product-wrap .product-link .shop-name {
    font-size: 13px;
    letter-spacing: -0.05rem;
  }
  .products-list .product-wrap .product-link .product-name {
    font-size: 18px;
  }
  .products-list .product-wrap .product-link .price {
    font-size: 20px;
  }
  .products-list .product-wrap .product-link .icon-cart {
    font-size: 16px;
    padding-left: 28px;
  }
  .products-list .product-wrap .product-link .icon-cart::before {
    width: 24x;
    height: 24px;
    background-size: 24px 24px;
  }
  .mobile-contents {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
            justify-content: space-between;
  }
  .mobile-contents .img-wrap {
    width: 45%;
    height: 160px !important;
  }
  .mobile-contents .img-wrap img {
    height: 160px !important;
  }
  .mobile-contents .mobile-contents-text {
    width: 50%;
  }
  .mobile-contents .mobile-contents-text .shop-name {
    margin: 0 0 10px 0 !important;
  }
  .description-wrap {
    position: relative;
  }
  .description-wrap + .description-wrap {
    margin-top: 40px;
  }
  .description-trigger {
    background-color: #ededed;
    padding: 5px 20px;
    width: 200px;
    text-align: center;
    box-shadow: 0px 2px 6px -3px #999;
    border-radius: 12px;
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .description-trigger::after {
    content: "続きを読む";
  }
  .description-trigger .fa {
    margin-right: .5em;
  }
  .description-item {
    position: relative;
    overflow: hidden;
  }
  .description-item.is-hide {
    height: 80px;
    /*隠した後の高さ*/
  }
  .description-item::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 40px;
    /*グラデーションで隠す高さ*/
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.9)), color-stop(50%, rgba(255, 255, 255, 0.9)), to(#fff));
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
  }
  .description-trigger.is-show {
    bottom: -2em;
  }
  .description-trigger.is-show::after {
    content: "閉じる";
  }
  .description-trigger.is-show + .description-item::before {
    display: none;
  }
  .c-tag-icon-wrap {
    border: unset !important;
  }
  .c-tag-icon-wrap .c-tag-icon {
    width: 49% !important;
  }
  .empty-wrap {
    display: none;
  }
}

@media screen and (max-width: 320px) {
  .nav-inner li a p {
    letter-spacing: -0.1em !important;
  }
  .icon-cart {
    font-size: 12px !important;
  }
  .shop-name {
    font-size: 12px;
    letter-spacing: -0.05rem;
  }
  .c-tag-icon-wrap p {
    width: 47% !important;
  }
}

.non-decoration {
    text-decoration: none;
}

button:disabled {
    background-color: #CCCCCC !important;
    border-color: #FFFFFF!important;
}

.description {
    height: 147px;
}
