@charset "UTF-8";
@media (max-width: 767px) {
  #gNaviBtn {
    background-color: rgba(255, 255, 255, 0.3);
  }
}
/*---------------------- Effect Fade ------------------------*/
.effect-fade {
  opacity: 0;
  transition: all 2000ms;
}
.effect-fade.effect-scroll {
  opacity: 1;
}
@media (min-width: 768px) {
  #itemList ul > li.effect-fade:nth-of-type(2), #aboutFukuske li.effect-fade:nth-of-type(2) {
    -moz-transition-delay: 300ms;
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    transition-delay: 300ms;
  }
  /* 3つ目の要素に400msのdelayをかける */
  #aboutFukuske li.effect-fade:nth-of-type(3) {
    -moz-transition-delay: 600ms;
    -webkit-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
    transition-delay: 600ms;
  }
}
/*---------------------- Main Visual ------------------------*/
#mainVisual {
  width: 100%;
  text-align: center;
  position: relative;
}
#mainVisual li {
  width: 100%;
  background-size: cover;
  background-position: center;
}
#mainVisual li.photo01 {
  background-image: url("../images/top/main_photo01.jpg");
}
#mainVisual li.photo02 {
  background-image: url("../images/top/main_photo02.jpg");
}
#mainVisual li.photo03 {
  background-image: url("../images/top/main_photo03.jpg");
}
.slide-animation {
  animation: fadezoom 20s 0s forwards;
}
@keyframes fadezoom {
  0% {
    transform: scale(1.0);
  }
  100% {
    transform: scale(1.2);
  }
}
@media (min-width: 768px) {
  #mainVisual .brandLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -150px;
    margin-left: -200px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 0;
    box-sizing: border-box;
    height: 300px;
    width: 400px;
    display: none;
    z-index: 10;
  }
}
@media (orientation: landscape) and (min-width: 768px) {
  .slick-track {
    overflow: hidden;
  }
  #mainVisual {
    height: 100vh;
    overflow: hidden;
  }
  #mainVisual li {
    height: 100vh;
  }
}
@media (orientation: portrait) and (min-width: 768px) {
  #mainVisual {
    height: 60vw;
    overflow: hidden;
  }
  #mainVisual li {
    height: 60vw;
  }
}
@media (max-width: 767px) {
  #mainVisual .brandLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -90px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px 0 0;
    box-sizing: border-box;
    height: 120px;
    width: 180px;
    display: none;
    z-index: 10;
  }
  #mainVisual .brandLogo img {
    width: 120px;
    height: auto;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  #mainVisual {
    height: 100vh;
    overflow: hidden;
  }
  #mainVisual li {
    height: 100vh;
  }
}
@media (orientation: portrait) and (max-width: 767px) {
  #mainVisual {
    height: 85vw;
    overflow: hidden;
  }
  #mainVisual li {
    height: 85vw;
  }
}
/*---------------------- Item List ------------------------*/
#itemList {
  background-color: #f0f0f0;
}
@media (min-width: 768px) {
  #itemList {
    padding: 6% 4%;
  }
  #itemList ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #itemList li {
    width: calc(90% / 3);
    margin-right: 5%;
    list-style-type: none;
    position: relative;
  }
}
@media (max-width: 767px) {
  #itemList {
    padding: 50px 20px;
  }
  #itemList li {
    margin-bottom: 50px;
    list-style-type: none;
    position: relative;
  }
  #itemList li:last-child {
    margin-bottom: 0;
  }
}
#itemList li img {
  width: 100%;
  display: block;
}
#itemList li:last-child {
  margin-right: 0;
}
#itemList li p.title {
  text-align: center;
  height: 50px;
  box-sizing: border-box;
  padding-top: 15px;
  font-family: 'Lora', serif;
  font-size: 1.2em;
}
@media only screen and (max-width: 1100px) and (min-width: 768px) {
  #itemList li p.title {
    letter-spacing: 0.05em;
  }
}
#itemList li .mainContainer .detailBtn, #itemList li .mainContainer .detailBtn span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
#itemList li .mainContainer .detailBtn {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  z-index: 100;
  cursor: pointer;
  border-radius: 50%;
}
#itemList li .mainContainer .detailBtn span {
  position: absolute;
  left: 10px;
  width: 50%;
  height: 2px;
  background-color: #000;
}
#itemList li .mainContainer .detailBtn span:nth-of-type(1) {
  top: 20px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
#itemList li .mainContainer .detailBtn span:nth-of-type(2) {
  top: 20px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
#itemList li .mainContainer.active .detailBtn span:nth-of-type(1) {
  top: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
#itemList li .mainContainer.active .detailBtn span:nth-of-type(2) {
  top: 20px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}
#itemList li .detail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
}
#itemList li .detail .itemPhoto {
  position: relative;
  display: block;
  padding-top: calc(66.7% + 50px);
}
#itemList li .detail .itemPhotoInner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-position: center;
}
#itemList li.mensSocks .detail .itemPhotoInner {
  background-image: url("../images/top/mens_socks_photo03.jpg");
}
#itemList li.ladysSocks .detail .itemPhotoInner {
  background-image: url("../images/top/ladys_socks_photo03.jpg");
}
#itemList li.stockings .detail .itemPhotoInner {
  background-image: url("../images/top/stockings_photo03.jpg");
}
#itemList li .detail .text {
  position: absolute;
  box-sizing: border-box;
  text-align: center;
  padding-top: 66.7%;
  left: 0;
  right: 0;
  bottom: 0;
}
#itemList li .detail .text p.btn {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}
#itemList li .detail .text p.btn a {
  display: inline-block;
  border: 1px solid #000;
  color: #000;
  position: relative;
  line-height: normal;
  transition: 0.5s;
  vertical-align: middle;
}
#itemList li .detail .text p.btn a::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 22px;
  margin-top: -4px;
}
@media (min-width: 768px) {
  #itemList li .detail .text p {
    font-size: 0.8vw;
  }
  #itemList li .detail .text p.btn {
    margin-top: calc((0.5vw + 1.1vw + 0.6vw + 2px) / 2 * -1);
  }
  #itemList li .detail .text p.btn a {
    padding: 0.5vw 40px 0.6vw 30px;
  }
}
@media (max-width: 767px) {
  #itemList li .detail .text p {
    font-size: 0.7em;
  }
  #itemList li .detail .text p.btn {
    margin-top: calc((9px + 1.4em + 10px + 2px) / 2 * -1);
  }
  #itemList li .detail .text p.btn a {
    padding: 9px 40px 10px 30px;
  }
}
@media (min-width: 1025px) {
  #itemList li .mainContainer {
    cursor: pointer;
  }
  #itemList li .mainContainer .detailBtn:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transition: 0.5s;
  }
  #itemList li .detail .text p.btn a:hover {
    color: #fff;
    background: #000;
  }
  #itemList li .detail .text p.btn a:hover::after {
    border-top: solid 1px #FFF;
    border-right: solid 1px #FFF;
  }
}
/*---------------------- bottom Contents ------------------------*/
@media (orientation: landscape) and (min-width: 768px) {
  #bottomContents {
    background-image: url("../images/top/bottom_contents_bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
}
@media (orientation: portrait) and (min-width: 768px) {
  #bottomContents:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url("../images/top/bottom_contents_bg.jpg") center no-repeat;
    background-size: cover;
  }
}
@media (max-width: 767px) {
  #bottomContents:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url("../images/top/bottom_contents_bg.jpg") center no-repeat;
    background-size: cover;
  }
}
/*---------------------- About fukuske ------------------------*/
#aboutFukuske li .photo {
  position: relative;
  display: block;
  padding-top: 100%;
  border-radius: 50%;
}
#aboutFukuske li img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  width: 100%;
}
#aboutFukuske li .text {
  margin: 15px 0 0;
}
#aboutFukuske li .text a {
  display: inline-block;
}
#aboutFukuske li a p {
  display: inline-block;
  padding: 0 15px 0 0;
  color: #FFF;
  position: relative;
  line-height: normal;
}
#aboutFukuske li a p::after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
}
@media (min-width: 768px) {
  #aboutFukuske {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 5% 10% 6%;
  }
  #aboutFukuske li {
    list-style-type: none;
    width: calc(76% / 3);
    margin-right: 12%;
    text-align: center;
    box-sizing: border-box;
  }
  #aboutFukuske li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  #aboutFukuske {
    padding: 50px 15%;
  }
  #aboutFukuske li {
    list-style-type: none;
    margin-bottom: 50px;
    text-align: center;
  }
  #aboutFukuske li:last-child {
    margin-bottom: 0;
  }
  #aboutFukuske li .text {
    margin: 10px 0 0;
  }
}
@media (min-width: 1025px) {
  #aboutFukuske li .photo:hover {
    background-color: #FFF;
  }
  #aboutFukuske li a:hover img {
    opacity: 0.8;
    transition: 0.5s;
  }
  #aboutFukuske li a:hover p {
    color: #e7e7e7;
    transition: 0.5s;
  }
  #aboutFukuske li a:hover p::after {
    border-top: solid 1px #e7e7e7;
    border-right: solid 1px #e7e7e7;
  }
}
/*---------------------- Link Banner ------------------------*/
@media (max-width: 767px) {
  #bottomContents .linkBanner {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
/*---------------------- Shop List ------------------------*/
.shopList {
  text-align: center;
  color: #FFF;
  padding: 0 0 5%;
}
.shopList h2 {
  font-weight: 700;
  font-size: 1.1em;
  margin: 0 0 20px;
}
.shopList p {
  line-height: 180%;
}
@media (max-width: 767px) {
  .shopList {
    padding: 0 0 50px;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .shopList h2 {
    margin: 0 0 15px;
  }
  .shopList p {
    padding: 0 20px;
  }
}