@charset "UTF-8";
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.flash {
  -webkit-animation: flash 1.5s infinite linear;
          animation: flash 1.5s infinite linear;
}

@-webkit-keyframes flash {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

@keyframes flash {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

.fadeIn-Loop {
  -webkit-animation: fadeIn-Loop 16s 8s infinite linear;
          animation: fadeIn-Loop 16s 8s infinite linear;
}

@-webkit-keyframes fadeIn-Loop {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn-Loop {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.disabled {
  cursor: default;
}

/* Project */
.element--hover {
  cursor: pointer;
  transition: box-shadow 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), -webkit-transform 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99);
  transition: box-shadow 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), transform 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99);
  transition: box-shadow 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), transform 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), -webkit-transform 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99);
}

.element--hover:hover {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1), 0 1px 6px rgba(0, 0, 0, 0.05), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1), 8px 32px 32px rgba(0, 0, 0, 0.15), 8px 64px 64px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.03) translateY(-0.5rem);
      -ms-transform: scale(1.03) translateY(-0.5rem);
          transform: scale(1.03) translateY(-0.5rem);
}

.element--hover:active {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1), 0 1px 6px rgba(0, 0, 0, 0.05), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1), 8px 16px 16px rgba(0, 0, 0, 0.15), 8px 32px 32px rgba(0, 0, 0, 0.15);
}

.wrapping_img{
padding-bottom: 20px;
padding-top: 50px;
}

@media screen and (min-width: 690px) {
.wrapping_img{
padding-bottom: 40px;
padding-top: 70px;
}
}

.icon_img{
  padding-bottom: 20px;
  text-align: center; */
  padding-bottom: 15px;
  width: 30px;
  margin: auto;
}

@media screen and (min-width: 690px) {
.icon_img{
  padding-bottom: 20px;
  width: 100%;
}
}

body {
  background-color: #f5f5f5;
}

.head-search li.refine-search .btn {
  background-color: transparent;
}

.head-search li.refine-search .btn:hover {
  background-color: transparent;
}

.ani-d {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.content_wrap {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  font-smoothing: antialiased;
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.content_wrap * {
  box-sizing: border-box;
  line-height: 25px;
}

.content_wrap .btn {
  border: none;
  background-color: #FFFFFF;
  font-size: 12px;
  padding: 5px;
  color: #ca2100;
  display: block;
  margin: 0 auto 5px auto;
  max-width: 160px;
  border: 1px solid #ca2100;
  font-size: 14px;
}

.content_wrap .btn a {
  color: inherit;
  display: block;
}

.content_wrap .header {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.content_wrap .header .hader__text {
  padding: 50px 0;
  text-align: center;
  color: #b28857;
  max-width: 1085px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
}

@media screen and (min-width: 690px) {
  .content_wrap .header .hader__text {
    padding: 70px 0;
  text-align: center;
  color: #b28857;
  max-width: 1085px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
  }
}

.content_wrap .header .hader__text .header__text-title {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 22px;
  font-weight: bold;
}

@media screen and (min-width: 690px) {
.content_wrap .header .hader__text .header__text-title {
  font-size: 25px;
  line-height: 2;
  margin-bottom: 22px;
  font-weight: bold;
}
}


.content_wrap .header .hader__text .header__text-title_2 {
  font-size: 14px;
  color: #000000;

}

@media screen and (min-width: 690px) {
.content_wrap .header .hader__text .header__text-title_2 {
  font-size: 18px;
  color: #000000;
}
}


.content_wrap .block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px 0 0 0;
}

.content_wrap .block > * {
  margin-bottom: 10px;
  -webkit-flex: 0 0 49%;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  -webkit-flex: 0 0 calc(50% - 5px);
      -ms-flex: 0 0 calc(50% - 5px);
          flex: 0 0 calc(50% - 5px);
}

@media screen and (min-width: 540px) {
  .content_wrap .block > * {
    margin-bottom: 15px;
    -webkit-flex: 0 0 24%;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
    -webkit-flex: 0 0 calc( ( 100% / 4)  - 10px);
        -ms-flex: 0 0 calc( ( 100% / 4)  - 10px);
            flex: 0 0 calc( ( 100% / 4)  - 10px);
    text-align: center;
  }
}

.content_wrap .block .block__child {
  position: relative;
  height: 100%;
}

.content_wrap .block .block__img {
  margin: 0;
  position: relative;
}

.content_wrap .block .block__img > img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all .5s linear;
}

@-moz-document url-prefix() {
  .content_wrap .block .block__img > img {
    width: 100%;
  }
}

.content_wrap .block .block__img > img:first-child {
  position: relative;
}

.content_wrap .block .block__text {
  margin: 0;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0%;
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  font-size: 14px;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
}

@media screen and (min-width: 980px) {
  .content_wrap .block .block__text {
    font-size: 16px;
  }
}

.content_wrap .block .block__text a {
  color: inherit;
  text-decoration: underline;
}

.content_wrap .block .block__text dt {
  text-align: center;
  margin: 8px 0;
}

.content_wrap .block .block__text dd {
  text-align: center;
  margin: 8px 0;
}

.content_wrap .item {
  margin-bottom: 40px;
}

@media screen and (min-width: 690px) {
  .content_wrap .item {
    margin: 40px 0 60px 0;
  }
}

.content_wrap .category {
  text-align: center;
}

@media screen and (min-width: 690px) {
  .content_wrap .category {
  }
}

.content_wrap .category .category__title {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #0000000;
  /* padding-bottom: 20px; */
  /* padding-top: 40px; */
}

@media screen and (min-width: 690px) {
  .content_wrap .category .category__title {
   margin-bottom: 40px;
   font-size: 25px;
   font-weight: bold;
   color: #000000;
  }
}

.content_wrap .category .category__mw {
    display: table;
    float: left;
    width: 100%;
    margin: 0 auto;
    background-color: #eeeeee;
}

.content_wrap .category .category__mw ul{
    width: 90%;
    margin: 0 5%;
}
.content_wrap .category .category__mw li{
    float: left;
    width: 23%;
    margin: 1%;
}

.content_wrap .category .category__mw:last-child {margin-bottom:60px;}

@media screen and (min-width: 690px) {
.content_wrap .category .category__mw {
    width: 50%;
}
.content_wrap .category .category__mw ul{
}
.content_wrap .category .category__mw li{
}
.content_wrap .category .category__mw:last-child {
}
}

.content_wrap .category ul.category__link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 65%;
    margin: auto;
}

@media screen and (min-width: 768px) {
.content_wrap .category ul.category__link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin: auto;
}
}

.content_wrap .category ul.category__link li {
  -webkit-flex: 0 0 49%;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  -webkit-flex: 0 0 calc(50% - 5px);
      -ms-flex: 0 0 calc(50% - 5px);
          flex: 0 0 calc(50% - 5px);
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .content_wrap .category ul.category__link li {
    -webkit-flex: 0 0 15%;
        -ms-flex: 0 0 15%;
            flex: 0 0 15%;
    -webkit-flex: 0 0 calc((100% / 6) - 10px);
        -ms-flex: 0 0 calc((100% / 6) - 10px);
            flex: 0 0 calc((100% / 6) - 10px);
  }
}

.content_wrap .category ul.category__link li a {
  display: block;
  padding: 10px;
  color: #FFFFFF;
}

.content_wrap .gift {
  border: 1px solid #ca2100;
  background-color: #FFFFFF;
  text-align: center;
  color: #ca2100;
  font-size: 14px;
  line-height: 2;
  padding: 20px;
  margin-bottom: 30px;
}

@media screen and (min-width: 690px) {
  .content_wrap .gift {
    margin-bottom: 60px;
    padding: 45px　45px　20px　45px;
  }
}

.content_wrap .gift .gift__title {
  margin-bottom: 15px;
}

@media screen and (min-width: 690px) {
  .content_wrap .gift .gift__title {
    margin-bottom: 45px;
  }
}

.content_wrap .giftwrapping {
  text-align: center;
  font-size: 16px;
  line-height: 25px;
}

@media screen and (min-width: 690px) {
  .content_wrap .giftwrapping {
  }
}

.content_wrap .giftwrapping .giftwrapping__title {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #0000000;
  /* padding-bottom: 20px; */
  padding-top: 40px;
}

@media screen and (min-width: 690px) {
  .content_wrap .giftwrapping .giftwrapping__title {
   margin-bottom: 40px;
   font-size: 25px;
   font-weight: bold;
   color: #000000;
  }
}

.content_wrap .giftwrapping .giftwrapping__item {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #0000000;
  padding-bottom: 20px;
  padding-top: 40px;
}

@media screen and (min-width: 690px) {
  .content_wrap .giftwrapping .giftwrapping__item {
   margin-bottom: 40px;
  font-size: 25px;
  font-weight: bold;
  color: #ef365d;
  }
}

.content_wrap .category ul.category__link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 65%;
    margin: auto;
}

.content_wrap .coupon {
  background-color: #274f3a;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 2;
}

@media screen and (min-width: 690px) {
  .content_wrap .coupon {
    background-image: url("//ds-assets.s3.amazonaws.com/e-look.jp/2018/elook/2018_xmasgift/coupon-area.jpg");
    background-repeat: no-repeat;
  }
}

.content_wrap .coupon .coupon__title {
  margin-bottom: 15px;
}

.content_wrap .coupon .coupon__inner {
  max-width: 695px;
  margin: 0 auto;
  padding: 40px 20px;
}

@media screen and (min-width: 690px) {
  .content_wrap .coupon .coupon__inner {
    padding: 80px 0 60px 0;
  }
}

.content_wrap .coupon .coupon__code {
  background-color: #FFFFFF;
  color: #274f3a;
  padding: 5px;
  font-size: 18px;
}

@media screen and (min-width: 690px) {
  .content_wrap .coupon .coupon__code {
    font-size: 28px;
  }
}

.banner-coupon {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}

@media screen and (min-width: 690px) {
  .banner-coupon {
    top: 20%;
    left: auto;
    right: 0;
  }
}

@-webkit-keyframes auto-fade_kf {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}

@keyframes auto-fade_kf {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}

.block__img-fade-2a img.auto-fade-01 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.block__img-fade-2a img.auto-fade-02 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}

.block__img-fade-2b img.auto-fade-01 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.block__img-fade-2b img.auto-fade-02 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}

.block__img-fade-2c img.auto-fade-01 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.block__img-fade-2c img.auto-fade-02 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

.block__img-fade-2d img.auto-fade-01 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.block__img-fade-2d img.auto-fade-02 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}

.block__img-fade-2e img.auto-fade-01 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 26s;
          animation-duration: 26s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.block__img-fade-2e img.auto-fade-02 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 26s;
          animation-duration: 26s;
  -webkit-animation-delay: 13s;
          animation-delay: 13s;
}

.block__img-fade-3a img.auto-fade-01 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.block__img-fade-3a img.auto-fade-02 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.block__img-fade-3a img.auto-fade-03 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}

@keyframes auto-fade_kf {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
}

　.photofade {
  position: absolute;
  top: 0;
  left: 0;
}

/* Utility */
.u-hide_text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.u-clearfix:after,
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.u-clear,
.clear {
  clear: both;
}

.u-fluid_img,
.fluid_img {
  max-width: 100%;
  height: auto;
}

.u-flo--left {
  float: left;
}

.u-flo--right {
  float: right;
}

.u-text--left {
  text-align: left;
}

.u-text--_right {
  text-align: right;
}

.u-text--center {
  text-align: center;
}

.u-font--xs {
  font-size: 60%;
}

.u-font--s {
  font-size: 80%;
}

.u-none {
  display: none;
  margin: 10px;
}

@media screen and (min-width: 690px) {
  .u-sm-inline {
    display: inline;
  }
}

@media screen and (min-width: 980px) {
  .u-md-inline {
    display: inline;
  }
}

@media screen and (min-width: 690px) {
  .u-sm-block {
    display: block;
  }
}

@media screen and (min-width: 980px) {
  .u-md-block {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .u-md-block_2 {
    display: block;
  }
}

@media screen and (min-width: 690px) {
  .u-sm-table {
    display: table;
  }
}

@media screen and (min-width: 980px) {
  .u-md-table {
    display: table;
  }
}

@media screen and (min-width: 480px) {
  .u-xs-none {
    display: none;
  }
}

@media screen and (min-width: 690px) {
  .u-sm-none {
    display: none;
  }
}

@media screen and (min-width: 980px) {
  .u-md-none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-md-none_2 {
    display: none;
  }
}

.u-font-xs {
  font-size: 60%;
}

.u-font-sm {
  font-size: 80%;
}

.u-font-md {
  font-size: 100%;
}

.u-font-lg {
  font-size: 120%;
}

.u-font-xl {
  font-size: 140%;
}

.u-pos-relative {
  position: relative;
}

/*================================================================================

state

================================================================================*/
.is-fade-in {
  transition: opacity 0.2s linear;
  opacity: 1 !important;
}

.is-fade-out {
  transition: opacity 0.6s ease-in-out;
  opacity: 0 !important;
}

.is-fade-out--long {
  transition: opacity 1s ease-in-out;
  opacity: 0 !important;
}
/*---------------20171128nambu---------------------*/
.giftwrapping_wrap {
  text-align: center;
}
.giftwrapping_wrap .wrapping-left{
  float: none;
  width: 100%;
}
.giftwrapping_wrap .wrapping-right{
  float: none;
  width: 100%;
}
.giftwrapping_wrap .wrapping-left img,.giftwrapping_wrap .wrapping-right img {
  max-width: 100%;
}
@media screen and (min-width: 690px) {
.giftwrapping_wrap {
  overflow: hidden;
  max-width: 1170px;
  margin: auto; 
}
.giftwrapping_wrap .wrapping-left{
  float: left;
  width: 50%;
}
.giftwrapping_wrap .wrapping-right{
  float: right;
  width: 50%;
}}


/*---------------GiftWrapping---------------------*/
 
.giftwrappingitem{
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 767px){
.giftwrappingitem{
  display: inline-block;
  max-width: 320px;
  width: 80%;
  margin: 0 auto;
}}

.giftwrapping .giftwrappingitem .block__right{
  width: 320px;
  float: left;
  /* margin-right: 20px; */
}

.giftwrapping .giftwrappingitem .block__center{
  width: 320px;
  float: left;
  margin-right: 20px;
}

.giftwrapping .giftwrappingitem .block__left{
  width: 320px;
  float: left;
  margin-right: 20px;
}@charset "UTF-8";
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.flash {
  -webkit-animation: flash 1.5s infinite linear;
          animation: flash 1.5s infinite linear;
}

@-webkit-keyframes flash {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

@keyframes flash {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

.fadeIn-Loop {
  -webkit-animation: fadeIn-Loop 16s 8s infinite linear;
          animation: fadeIn-Loop 16s 8s infinite linear;
}

@-webkit-keyframes fadeIn-Loop {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn-Loop {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.disabled {
  cursor: default;
}

/* Project */
.element--hover {
  cursor: pointer;
  transition: box-shadow 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), -webkit-transform 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99);
  transition: box-shadow 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), transform 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99);
  transition: box-shadow 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), transform 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99), -webkit-transform 600ms cubic-bezier(0.33, 0.11, 0.02, 0.99);
}

.element--hover:hover {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1), 0 1px 6px rgba(0, 0, 0, 0.05), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1), 8px 32px 32px rgba(0, 0, 0, 0.15), 8px 64px 64px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.03) translateY(-0.5rem);
      -ms-transform: scale(1.03) translateY(-0.5rem);
          transform: scale(1.03) translateY(-0.5rem);
}

.element--hover:active {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1), 0 1px 6px rgba(0, 0, 0, 0.05), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1), 8px 16px 16px rgba(0, 0, 0, 0.15), 8px 32px 32px rgba(0, 0, 0, 0.15);
}

.wrapping_img{
padding-bottom: 20px;
padding-top: 50px;
}

@media screen and (min-width: 690px) {
.wrapping_img{
padding-bottom: 40px;
padding-top: 70px;
}
}

.icon_img{
  padding-bottom: 20px;
  text-align: center; */
  padding-bottom: 15px;
  width: 30px;
  margin: auto;
}

@media screen and (min-width: 690px) {
.icon_img{
  padding-bottom: 20px;
  width: 100%;
}
}

body {
  background-color: #f5f5f5;
}

.head-search li.refine-search .btn {
  background-color: transparent;
}

.head-search li.refine-search .btn:hover {
  background-color: transparent;
}

.ani-d {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.content_wrap {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  font-smoothing: antialiased;
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.content_wrap * {
  box-sizing: border-box;
  line-height: 25px;
  width: 100%;
}

.content_wrap .btn {
  border: none;
  background-color: #FFFFFF;
  font-size: 12px;
  padding: 5px;
  color: #ca2100;
  display: block;
  margin: 0 auto 5px auto;
  max-width: 160px;
  border: 1px solid #ca2100;
  font-size: 14px;
}

.content_wrap .btn a {
  color: inherit;
  display: block;
}

.content_wrap .header {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.content_wrap .header .hader__text {
  padding: 50px 0;
  text-align: center;
  color: #b28857;
  max-width: 1085px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
}

@media screen and (min-width: 690px) {
  .content_wrap .header .hader__text {
    padding: 70px 0;
  text-align: center;
  color: #b28857;
  max-width: 1085px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
  }
}

.content_wrap .header .hader__text .header__text-title {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 22px;
  font-weight: bold;
}

@media screen and (min-width: 690px) {
.content_wrap .header .hader__text .header__text-title {
  font-size: 25px;
  line-height: 2;
  margin-bottom: 22px;
  font-weight: bold;
}
}


.content_wrap .header .hader__text .header__text-title_2 {
  font-size: 14px;
  color: #000000;

}

@media screen and (min-width: 690px) {
.content_wrap .header .hader__text .header__text-title_2 {
  font-size: 18px;
  color: #000000;
}
}


.content_wrap .block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 20px 0 0 0;
}

.content_wrap .block > * {
  margin-bottom: 10px;
  -webkit-flex: 0 0 49%;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  -webkit-flex: 0 0 calc(50% - 5px);
      -ms-flex: 0 0 calc(50% - 5px);
          flex: 0 0 calc(50% - 5px);
}

@media screen and (min-width: 540px) {
  .content_wrap .block > * {
    margin-bottom: 15px;
    -webkit-flex: 0 0 24%;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
    -webkit-flex: 0 0 calc( ( 100% / 4)  - 10px);
        -ms-flex: 0 0 calc( ( 100% / 4)  - 10px);
            flex: 0 0 calc( ( 100% / 4)  - 10px);
    text-align: center;
  }
}

.content_wrap .block .block__child {
  position: relative;
  height: 100%;
}

.content_wrap .block .block__img {
  margin: 0;
  position: relative;
}

.content_wrap .block .block__img > img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all .5s linear;
}

@-moz-document url-prefix() {
  .content_wrap .block .block__img > img {
    width: 100%;
  }
}

.content_wrap .block .block__img > img:first-child {
  position: relative;
}

.content_wrap .block .block__text {
  margin: 0;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0%;
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  font-size: 14px;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
}

@media screen and (min-width: 980px) {
  .content_wrap .block .block__text {
    font-size: 16px;
  }
}

.content_wrap .block .block__text a {
  color: inherit;
  text-decoration: underline;
}

.content_wrap .block .block__text dt {
  text-align: center;
  margin: 8px 0;
}

.content_wrap .block .block__text dd {
  text-align: center;
  margin: 8px 0;
}

.content_wrap .item {
  margin-bottom: 30px;
}

@media screen and (min-width: 690px) {
  .content_wrap .item {
    margin: 40px 0 50px 0;
  }
}

.content_wrap .category {
  text-align: center;
}

@media screen and (min-width: 690px) {
  .content_wrap .category {
  }
}

.content_wrap .category .category__title {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #0000000;
  /* padding-bottom: 20px; */
  /* padding-top: 40px; */
}

@media screen and (min-width: 690px) {
  .content_wrap .category .category__title {
   margin-bottom: 40px;
   font-size: 25px;
   font-weight: bold;
   color: #000000;
  }
}

.content_wrap .category .category__mw {
  /* margin-bottom: 15px; */
  /* font-size: 22px; */
  /* font-weight: bold; */
  color: #0000000;
  padding-bottom: 20px;
  padding-top: 40px;
}

@media screen and (min-width: 690px) {
  .content_wrap .category .category__mw {
   margin-bottom: 40px;
  font-size: 25px;
  font-weight: bold;
  color: #ef365d;
  }
}

.content_wrap .category ul.category__link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 65%;
    margin: auto;
}

@media screen and (min-width: 768px) {
.content_wrap .category ul.category__link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin: auto;
}
}

.content_wrap .category ul.category__link li {
  -webkit-flex: 0 0 49%;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  -webkit-flex: 0 0 calc(50% - 5px);
      -ms-flex: 0 0 calc(50% - 5px);
          flex: 0 0 calc(50% - 5px);
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .content_wrap .category ul.category__link li {
    -webkit-flex: 0 0 15%;
        -ms-flex: 0 0 15%;
            flex: 0 0 15%;
    -webkit-flex: 0 0 calc((100% / 6) - 10px);
        -ms-flex: 0 0 calc((100% / 6) - 10px);
            flex: 0 0 calc((100% / 6) - 10px);
  }
}

.content_wrap .category ul.category__link li a {
  display: block;
  padding: 10px;
  color: #FFFFFF;
}

.content_wrap .gift {
  border: 1px solid #ca2100;
  background-color: #FFFFFF;
  text-align: center;
  color: #ca2100;
  font-size: 14px;
  line-height: 2;
  padding: 20px;
  margin-bottom: 30px;
}

@media screen and (min-width: 690px) {
  .content_wrap .gift {
    margin-bottom: 60px;
    padding: 45px　45px　20px　45px;
  }
}

.content_wrap .gift .gift__title {
  margin-bottom: 15px;
}

@media screen and (min-width: 690px) {
  .content_wrap .gift .gift__title {
    margin-bottom: 45px;
  }
}

.content_wrap .giftwrapping {
  text-align: center;
  font-size: 16px;
  line-height: 25px;
}

@media screen and (min-width: 690px) {
  .content_wrap .giftwrapping {
  }
}

.content_wrap .giftwrapping .giftwrapping__title {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #0000000;
  /* padding-bottom: 20px; */
  padding-top: 40px;
}

@media screen and (min-width: 690px) {
  .content_wrap .giftwrapping .giftwrapping__title {
   margin-bottom: 40px;
   font-size: 25px;
   font-weight: bold;
   color: #000000;
  }
}

.content_wrap .giftwrapping .giftwrapping__item {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #0000000;
  padding-bottom: 20px;
  padding-top: 40px;
}

@media screen and (min-width: 690px) {
  .content_wrap .giftwrapping .giftwrapping__item {
   margin-bottom: 40px;
  font-size: 25px;
  font-weight: bold;
  color: #ef365d;
  }
}

.content_wrap .category ul.category__link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 65%;
    margin: auto;
}

.content_wrap .coupon {
  background-color: #274f3a;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 2;
}

@media screen and (min-width: 690px) {
  .content_wrap .coupon {
    background-image: url("//ds-assets.s3.amazonaws.com/e-look.jp/2018/elook/2018_xmasgift/coupon-area.jpg");
    background-repeat: no-repeat;
  }
}

.content_wrap .coupon .coupon__title {
  margin-bottom: 15px;
}

.content_wrap .coupon .coupon__inner {
  max-width: 695px;
  margin: 0 auto;
  padding: 40px 20px;
}

@media screen and (min-width: 690px) {
  .content_wrap .coupon .coupon__inner {
    padding: 80px 0 60px 0;
  }
}

.content_wrap .coupon .coupon__code {
  background-color: #FFFFFF;
  color: #274f3a;
  padding: 5px;
  font-size: 18px;
}

@media screen and (min-width: 690px) {
  .content_wrap .coupon .coupon__code {
    font-size: 28px;
  }
}

.banner-coupon {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}

@media screen and (min-width: 690px) {
  .banner-coupon {
    top: 20%;
    left: auto;
    right: 0;
  }
}

@-webkit-keyframes auto-fade_kf {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}

@keyframes auto-fade_kf {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}

.block__img-fade-2a img.auto-fade-01 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.block__img-fade-2a img.auto-fade-02 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}

.block__img-fade-2b img.auto-fade-01 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.block__img-fade-2b img.auto-fade-02 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}

.block__img-fade-2c img.auto-fade-01 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.block__img-fade-2c img.auto-fade-02 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

.block__img-fade-2d img.auto-fade-01 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.block__img-fade-2d img.auto-fade-02 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}

.block__img-fade-2e img.auto-fade-01 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 26s;
          animation-duration: 26s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.block__img-fade-2e img.auto-fade-02 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 26s;
          animation-duration: 26s;
  -webkit-animation-delay: 13s;
          animation-delay: 13s;
}

.block__img-fade-3a img.auto-fade-01 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.block__img-fade-3a img.auto-fade-02 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.block__img-fade-3a img.auto-fade-03 {
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}

@keyframes auto-fade_kf {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
}

　.photofade {
  position: absolute;
  top: 0;
  left: 0;
}

/* Utility */
.u-hide_text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.u-clearfix:after,
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.u-clear,
.clear {
  clear: both;
}

.u-fluid_img,
.fluid_img {
  max-width: 100%;
  height: auto;
}

.u-flo--left {
  float: left;
}

.u-flo--right {
  float: right;
}

.u-text--left {
  text-align: left;
}

.u-text--_right {
  text-align: right;
}

.u-text--center {
  text-align: center;
}

.u-font--xs {
  font-size: 60%;
}

.u-font--s {
  font-size: 80%;
}

.u-none {
  display: none;
  margin: 10px;
}

@media screen and (min-width: 690px) {
  .u-sm-inline {
    display: inline;
  }
}

@media screen and (min-width: 980px) {
  .u-md-inline {
    display: inline;
  }
}

@media screen and (min-width: 690px) {
  .u-sm-block {
    display: block;
  }
}

@media screen and (min-width: 980px) {
  .u-md-block {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .u-md-block_2 {
    display: block;
  }
}

@media screen and (min-width: 690px) {
  .u-sm-table {
    display: table;
  }
}

@media screen and (min-width: 980px) {
  .u-md-table {
    display: table;
  }
}

@media screen and (min-width: 480px) {
  .u-xs-none {
    display: none;
  }
}

@media screen and (min-width: 690px) {
  .u-sm-none {
    display: none;
  }
}

@media screen and (min-width: 980px) {
  .u-md-none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-md-none_2 {
    display: none;
  }
}

.u-font-xs {
  font-size: 60%;
}

.u-font-sm {
  font-size: 80%;
}

.u-font-md {
  font-size: 100%;
}

.u-font-lg {
  font-size: 120%;
}

.u-font-xl {
  font-size: 140%;
}

.u-pos-relative {
  position: relative;
}

/*================================================================================

state

================================================================================*/
.is-fade-in {
  transition: opacity 0.2s linear;
  opacity: 1 !important;
}

.is-fade-out {
  transition: opacity 0.6s ease-in-out;
  opacity: 0 !important;
}

.is-fade-out--long {
  transition: opacity 1s ease-in-out;
  opacity: 0 !important;
}
/*---------------20171128nambu---------------------*/
.giftwrapping_wrap {
  text-align: center;
}
.giftwrapping_wrap .wrapping-left{
  float: none;
  width: 100%;
}
.giftwrapping_wrap .wrapping-right{
  float: none;
  width: 100%;
}
.giftwrapping_wrap .wrapping-left img,.giftwrapping_wrap .wrapping-right img {
  max-width: 100%;
}
@media screen and (min-width: 690px) {
.giftwrapping_wrap {
  overflow: hidden;
  max-width: 1170px;
  margin: auto; 
}
.giftwrapping_wrap .wrapping-left{
  float: left;
  width: 50%;
}
.giftwrapping_wrap .wrapping-right{
  float: right;
  width: 50%;
}}


/*---------------GiftWrapping---------------------*/

.giftwrapping .giftwrappingitem .block__right{
  width: 320px;
  float: left;
  /* margin-right: 20px; */
}

.giftwrapping .giftwrappingitem .block__center{
  width: 320px;
  float: left;
  margin-right: 20px;
}

.giftwrapping .giftwrappingitem .block__left{
  width: 320px;
  float: left;
  margin-right: 20px;
}


div.anniv7_cp_apply {
  max-width: 1070px;
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
}

div.attention {
  padding: 3% 5%;
  box-sizing: border-box;
  margin: 8% auto 0 auto;
}

section.attention {
    font-size: 16px;
    background-color: #eeeeee;
    margin: 40px 0 40px 0;
    padding: 40px 20px 40px 20px;
    text-align: center;
    line-height: 25px;
}

dd {
    margin: 0;
}

p {
    margin: 0;
}

.category__mw img {
    max-width: 430px;
}

.content_wrap .category .category__mw li img {
    max-width: 100px;
}
