/* Scss Document */
/*====================================================================
  index
====================================================================

Part name///
  01 General_style
  02 Common_style
  03 Top_style
  04 Special_style
  05 News_style
  06 New-arrival_style
  07 Ranking_style
  08 Snap-photo_style
  09 Catalog_style
  10 SNS_style
  11 Concept_style
  12 Movie_style
*/
/*====================================================================
  01 General_style
====================================================================*/
body.menu_on {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/*====================================================================
  02 Common_style
====================================================================*/
/*---------------------------------------------------------
  header
*/
header .main_menu li a:hover {
  opacity: 1;
}

.web_store_btn {
  opacity: 0;
}

.sp_header {
  opacity: 0;
}

.webstoreArea{
  position: fixed;
  bottom: 0;
  right: 0;
  display: none;
  width: 200px;
  height: 110px;
  background: #fbb2b7;
  z-index: 9999;
}

.webstoreArea img{
  width: 73px;
  margin: 0 auto;
  padding-top: 19px;
  box-sizing: border-box;
}

.webstoreArea img.pc_item{
  display: block;
}
.webstoreArea img.sp_item{
  display: none;
}

@media screen and (max-width: 980px) {
  .webstoreArea{
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(110 *(100vw / 640));
  }

  .webstoreArea img{
    width: calc(520 *(100vw / 640));
    padding-top: calc(33 *(100vw / 640));
  }
  .webstoreArea img.pc_item{
    display: none;
  }
  .webstoreArea img.sp_item{
    display: block;
  }
}

.webstoreArea a {
  display: block;
  position: relative;
  height: 100%;
}

.webstoreArea a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.webstoreArea a:hover {
  opacity: 1;
}

.webstoreArea a:hover:before {
  opacity: .5;
}

.webstoreArea a.hover:before {
  opacity: .5;
}

.sp_menu_wrap {
  position: fixed;
  left: -100%;
  top: 64px;
  padding: 0 0 64px 0;
  overflow: scroll;
  display: block;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.sp_menu_wrap.menu_open {
  left: 0;
}

.sp_menu_wrap .sp_menu ul {
  width: 100%;
  letter-spacing: -.4em;
}

.sp_menu_wrap .sp_menu ul li {
  letter-spacing: normal;
  position: relative;
}

.sp_menu_wrap .sp_menu ul li.main_top {
  display: inline-block;
  width: 50%;
}

.sp_menu_wrap .sp_menu ul li.main_top.menu_shop {
  background: linear-gradient(#6c8be4, #bd22eb);
}

.sp_menu_wrap .sp_menu ul li.main_top.menu_shop:before {
  content: "";
  display: block;
  width: 13px;
  height: 19px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  background-image: url("../images/sp_menu_shop.png");
  background-size: cover;
}

.sp_menu_wrap .sp_menu ul li.main_top.menu_web {
  background: linear-gradient(#f889df, #eb2269);
}

.sp_menu_wrap .sp_menu ul li.main_top.menu_web:before {
  content: "";
  display: block;
  width: 23px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  background-image: url("../images/sp_menu_cart.png");
  background-size: cover;
}

.sp_menu_wrap .sp_menu ul li.main_top a {
  color: #fff;
  letter-spacing: 0.12em;
  padding-right: 15px;
}

.sp_menu_wrap .sp_menu ul li.main {
  border-bottom: 1px solid #bbbbbb;
}

.sp_menu_wrap .sp_menu ul li.sub {
  display: inline-block;
  width: 50%;
}

.sp_menu_wrap .sp_menu ul li.sub a {
  color: #fff;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 21px;
  margin: auto;
}

.sp_menu_wrap .sp_menu ul li.sub:last-child a {
  height: 42px;
}

.sp_menu_wrap .sp_menu ul li a {
  font-size: 14px;
  padding: 20px 0;
  letter-spacing: 0.18em;
}

.sp_menu_wrap .sp_menu ul.menu_sub {
  background: #bbbbbb;
}

.sp_menu_wrap .sp_menu ul.menu_sub li {
  vertical-align: middle;
  height: 61px;
}

.sp_menu_wrap .sp_menu ul.menu_sub li:first-child {
  border-bottom: 1px solid #fff;
}

.sp_menu_wrap .sp_menu ul.menu_sub li:nth-child(2) {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.sp_menu_wrap .sp_menu ul.menu_sub li:last-child {
  border-left: 1px solid #fff;
}

.web_store_btn {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.web_store_btn.menu_open {
  top: -150px;
  right: -150px;
}

/*---------------------------------------------------------
  footer
*/
footer {
  opacity: 0;
}

@media screen and (max-width: 980px) {
  footer .footer_inner_wrap {
    display: block;
  }
  footer .footer_inner_wrap .footer_inner {
    width: 100%;
  }
  footer .footer_inner_wrap .footer_inner .sub_menu {
    display: none;
  }
  footer .footer_inner_wrap .footer_inner .sns_menu {
    float: none;
    text-align: center;
    width: 100%;
  }
  footer .footer_inner_wrap .footer_inner .sns_menu p {
    float: none;
    display: inline-block;
    margin: 0 10px;
  }
  footer .footer_inner_wrap .footer_inner .sns_menu p.blog, footer .footer_inner_wrap .footer_inner .sns_menu p.fb {
    display: none;
  }
  footer .copyright {
    background: #404040;
    color: #fff;
  }
}

/*====================================================================
  03 Top_style
====================================================================*/
/*---------------------------------------------------------
  Top
*/
.loading {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.loading img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 70%;
  max-width: 300px;
  height: 100px;
  margin: auto;
}

.top_hide {
  opacity: 0;
}

.main_slider_prev {
  position: absolute;
  top: 240px;
  display: block;
  width: 30px;
  height: 55px;
  background: #fff;
  z-index: 9;
  cursor: pointer;
  left: 0;
}

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

.main_slider_prev:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 20px;
  border-top: 1px solid #000;
}

.main_slider_prev:before {
  left: 12px;
  border-left: 1px solid #000;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.main_slider_next {
  position: absolute;
  top: 240px;
  display: block;
  width: 30px;
  height: 55px;
  background: #fff;
  z-index: 9;
  cursor: pointer;
  right: 0;
}

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

.main_slider_next:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 20px;
  border-top: 1px solid #000;
}

.main_slider_next:before {
  right: 12px;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.toppage .main_slider {
  width: 830px;
  height: 580px;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 980px) {
  .toppage .main_slider {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 0 100px;
  }
}

.toppage .main_slider .slick-list {
  overflow: inherit;
}

.toppage .main_slider li {
  position: relative;
}

.toppage .main_slider li .hover_area {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-blend-mode: normal;
  opacity: 0;
}

.toppage .main_slider li img {
  width: 100%;
  opacity: .5;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.toppage .main_slider li .title_area {
  position: absolute;
  bottom: -20px;
  left: -20px;
  font-style: italic;
}

@media screen and (max-width: 980px) {
  .toppage .main_slider li .title_area {
    bottom: -60px;
    left: 0;
  }
}

.toppage .main_slider li .title_area .date {
  display: block;
  width: 70px;
  height: 50px;
  background: #000;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.toppage .main_slider li .title_area .date p.day {
  font-size: 22px;
}

.toppage .main_slider li .title_area .date p.month {
  font-size: 10px;
}

.toppage .main_slider li .title_area p.title {
  display: block;
  width: 550px;
  height: 60px;
  line-height: 60px;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: #fff;
  background: #000;
  padding-left: 20px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.toppage .main_slider li.slick-active img {
  opacity: 1;
}

.toppage .main_slider li.slick-active .title_area .date {
  background: #000;
}

.toppage .main_slider li.slick-active .title_area p.title {
  background: #000;
}

.toppage .main_slider li:hover a {
  opacity: 1;
}

.toppage .main_slider li:hover .hover_area {
  opacity: 1;
  -webkit-animation: gradientAnimation 2s linear infinite;
  -moz-animation: gradientAnimation 2s linear infinite;
  animation: gradientAnimation 2s linear infinite;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  background-blend-mode: hard-light;
  opacity: .4;
  filter: alpha(opacity=40);
  -ms-filter: "alpha(opacity=30)";
  -khtml-opacity: .30;
}

@-webkit-keyframes gradientAnimation {
  0%, 100% {
    background-position: 0 30%, 0 0;
  }
  50% {
    background-position: 100% 70%, 0 0;
  }
}

@-moz-keyframes gradientAnimation {
  0%, 100% {
    background-position: 0 30%, 0 0;
  }
  50% {
    background-position: 100% 70%, 0 0;
  }
}

@keyframes gradientAnimation {
  0%, 100% {
    background-position: 0 30%, 0 0;
  }
  50% {
    background-position: 100% 70%, 0 0;
  }
}

.toppage .main_slider li.hover a {
  opacity: 1;
}

.toppage .main_slider li.hover .hover_area {
  opacity: 1;
  -webkit-animation: gradientAnimation 2s linear infinite;
  -moz-animation: gradientAnimation 2s linear infinite;
  animation: gradientAnimation 2s linear infinite;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  background-blend-mode: difference;
}

@-webkit-keyframes gradientAnimation {
  0%, 100% {
    background-position: 0 30%, 0 0;
  }
  50% {
    background-position: 100% 70%, 0 0;
  }
}

@-moz-keyframes gradientAnimation {
  0%, 100% {
    background-position: 0 30%, 0 0;
  }
  50% {
    background-position: 100% 70%, 0 0;
  }
}

@keyframes gradientAnimation {
  0%, 100% {
    background-position: 0 30%, 0 0;
  }
  50% {
    background-position: 100% 70%, 0 0;
  }
}

.toppage .top_newarrival {
  padding: 100px 0;
}

@media screen and (max-width: 980px) {
  .toppage .top_newarrival {
    padding: 30px 0 calc(120 *(100vw / 640));
  }
}

.toppage .top_newarrival .title {
  border: none;
}

.toppage .top_newarrival .title img {
  width: 60%;
  max-width: 259px;
}

.toppage .top_newarrival .top_newarrival_inner li {
  padding: 0;
}

.toppage .top_newarrival .top_newarrival_inner li:nth-child(6) {
  display: none !important;
}

.toppage .top_newarrival .top_newarrival_inner li a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.toppage .top_newarrival .top_newarrival_inner li a:hover {
  opacity: 1;
}

.toppage .top_newarrival .top_newarrival_inner li a:hover:before {
  opacity: .5;
}

.toppage .top_newarrival .top_newarrival_inner li.hover a:before {
  opacity: .5;
}

@media screen and (max-width: 980px) {
  .toppage .top_newarrival a.link_button {
    display: none;
  }
  .toppage a.link_button.spBtn {
    display: block;
    width: calc(260 *(100vw / 640));
    padding: 9px 0;
  }
  .toppage .top_newarrival .top_newarrival_inner li:nth-child(6) {
    display: block !important;
  }
}

.toppage .top_news {
  padding-bottom: 100px;
}

.toppage .top_news .title {
  width: 21%;
  max-width: 119px;
}

/*.toppage .top_news ul li {
  border: none;
}*/

@media screen and (max-width: 980px) {
  .toppage .top_news {
    padding-bottom: calc(120 *(100vw / 640));
  }
  .toppage .top_news ul li {
    width: 90%;
    margin: 0 auto calc(50 *(100vw / 640));
    float: none;
    padding: 0 calc(30 *(100vw / 640)) calc(30 *(100vw / 640));
    box-sizing: border-box;
    border-bottom: 1px dashed #888888;
  }
  .top_news_inner li.item::after{
    content: none;
  }
  .toppage .top_news ul li:nth-child(3) {
    margin: 0 auto;
  }
}

@media screen and (max-width: 980px) {
  .toppage .top_news ul li a {
    display: block;
    width: 100%;
    border: none;
    padding: 0;
  }
}

.toppage .top_news ul li a .img_area {
  position: relative;
  display: block;
}

.toppage .top_news ul li a .img_area:before,
.top_snap ul li a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

@media screen and (max-width: 980px) {
  .toppage .top_news ul li a .img_area {
    display: none;
  }
}

.toppage .top_news ul li a:hover,
.top_snap ul li a:hover {
  opacity: 1;
}

.toppage .top_news ul li a:hover .img_area:before,
.top_snap ul li a:hover:before {
  opacity: .5;
}

.toppage .top_news ul li a.hover,
.top_snap ul li a:hover {
  opacity: 1;
}

.toppage .top_news ul li a.hover .img_area:before,
.top_snap ul li a.hover:before {
  opacity: .5;
}

@media screen and (max-width: 980px) {
  .toppage .top_news ul li .data {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

.toppage .top_news ul li .data p.date {
  color: #333;
  font-size: 12px;
  font-weight: normal;
  padding: 5px 0;
  line-height: 1;
  letter-spacing: 0.07em;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Meiryo,sans-serif,"宋体",Gulim;
}

@media screen and (max-width: 375px) {
  .toppage .top_news ul li .data p.date {
    font-size: calc(20 *(100vw / 640));
    color: #888888;
    padding: 0 0 calc(13 *(100vw / 640));
    letter-spacing: 0.03em;
    font-family: 'Open Sans', "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Meiryo,sans-serif,"宋体",Gulim;
  }
}

.toppage .top_news ul li .data p.text {
  color: #333;
  font-size: 14px;
  font-weight: normal;
  padding: 0;
  word-break: normal;
  letter-spacing: 0.03em;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Meiryo,sans-serif,"宋体",Gulim;
}

@media screen and (max-width: 375px) {
  .toppage .top_news ul li .data p.text {
    font-size: 12px;
    color: #000;
    font-family: 'Open Sans', "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Meiryo,sans-serif,"宋体",Gulim;
  }
}

.top_snap{
  padding-bottom: 100px;
}

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

.top_snap .title_img{
  width: 228px;
  margin: 0 auto 30px;
  display: block;
}

.top_snap ul{
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.top_snap ul li{
  width: 180px;
}

.top_snap ul li a{
  display: block;
  position: relative;
}

.top_snap ul li .top_snap--shop{
  font-size: 12px;
  color: #000;
  letter-spacing: 0.02em;
  line-height: 18px;
  margin: 5px 0 2px;
}

.top_snap ul li .top_snap--name{
  font-size: 15px;
  color: #000;
  letter-spacing: 0.08em;
  line-height: 18px;
  font-family: 'Open Sans', sans-serif;
}

.top_snap ul li .top_snap--name span{
  font-size: 11px;
  color: #000;
  letter-spacing: 0.08em;
  font-family: 'Open Sans', sans-serif;
}

.toppage .parallax_wrapper .parallax_layer a {
  position: relative;
}

.toppage .parallax_wrapper .parallax_layer a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.toppage .parallax_wrapper .parallax_layer a:hover {
  opacity: 1;
}

.toppage .parallax_wrapper .parallax_layer a:hover:before {
  opacity: .5;
}

.toppage .top_sp_area {
  display: none;
}

@media screen and (max-width: 980px) {
  .toppage .top_sp_area {
    display: block;
  }
}

.toppage .top_sp_area .top_sp_special {
  margin: 0 auto 50px;
}

.toppage .top_sp_area .top_sp_special img.title_img {
  display: block;
  width: 70%;
  max-width: 380px;
  margin: 0 auto 20px;
}

.toppage .top_sp_area .top_sp_special a {
  display: block;
  position: relative;
}

.toppage .top_sp_area .top_sp_special a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.toppage .top_sp_area .top_sp_special a:hover {
  opacity: 1;
}

.toppage .top_sp_area .top_sp_special a.hover {
  opacity: 1;
}

.toppage .top_sp_area .top_sp_special a.hover:before {
  opacity: .5;
}

.toppage .top_sp_area .top_sp_catalog {
  margin: 0 auto 50px;
}

.toppage .top_sp_area .top_sp_catalog img.title_img {
  display: block;
  width: 28%;
  max-width: 168px;
  margin: 0 auto 20px;
}

.toppage .top_sp_area .top_sp_catalog a {
  display: block;
  position: relative;
}

.toppage .top_sp_area .top_sp_catalog a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.toppage .top_sp_area .top_sp_catalog a:hover {
  opacity: 1;
}

.toppage .top_sp_area .top_sp_catalog a.hover {
  opacity: 1;
}

.toppage .top_sp_area .top_sp_catalog a.hover:before {
  opacity: .5;
}

.toppage .top_sp_area .top_sp_snap {
  margin: 0 auto 50px;
}

.toppage .top_sp_area .top_sp_snap img.title_img {
  display: block;
  width: 45%;
  max-width: 228px;
  margin: 0 auto 20px;
}

.toppage .top_sp_area .top_sp_snap ul {
  letter-spacing: -.4em;
  text-align: center;
}

.toppage .top_sp_area .top_sp_snap ul li {
  letter-spacing: normal;
  text-align: left;
  display: inline-block;
  width: 32%;
  margin: 0 0 20px;
}

.toppage .top_sp_area .top_sp_snap ul li:nth-child(3n-1) {
  margin: 0 2% 20px;
}

.toppage .top_sp_area .top_sp_snap ul li p {
  font-size: 12px;
}

.toppage .top_sp_area .top_sp_snap ul li a {
  display: block;
  position: relative;
}

.toppage .top_sp_area .top_sp_snap ul li a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.toppage .top_sp_area .top_sp_snap ul li a:hover {
  opacity: 1;
}

.toppage .top_sp_area .top_sp_snap ul li a.hover {
  opacity: 1;
}

.toppage .top_sp_area .top_sp_snap ul li a.hover:before {
  opacity: .5;
}

@media screen and (max-width: 980px) {
  .toppage .top_sp_area .top_sp_snap {
    margin: 0 auto calc(120 *(100vw / 640));
  }
}

.top_instagram .top_instagram_inner ul li a {
  display: block;
  position: relative;
}

.top_instagram .top_instagram_inner ul li a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.top_instagram .top_instagram_inner ul li a:hover {
  opacity: 1;
}

.top_instagram .top_instagram_inner ul li a:hover:before {
  opacity: .5;
}

.top_instagram .top_instagram_inner ul li a:after {
  content: "";
  display: block;
  width: 100%;
  height: 44px;
  position: absolute;
  top: -22px;
  left: 0;
  background-image: url("../images/im_top_ig_tape.png");
  background-size: 100% 100%;
}

@media screen and (max-width: 980px) {
  .top_instagram {
    display: block;
    background: none;
  }
  .top_instagram p.title {
    width: 100%;
    margin-top: 0;
  }
  .top_instagram p.title img {
    display: block;
    width: 43%;
    max-width: 230px;
    margin: 0 auto;
  }
  .top_instagram .top_instagram_inner {
    width: 100%;
  }
  .top_instagram .top_instagram_inner .follow_btn {
    display: none;
  }
  .top_instagram_item_wrap{
    width: 90%;
    margin: 0 auto;
  }
  .top_instagram .top_instagram_inner ul {
    text-align: center;
    letter-spacing: -.4em;
    padding: 20px 0;
  }
  .top_instagram .top_instagram_inner ul li {
    letter-spacing: normal;
    width: 32%;
    margin: 0 0;
  }
  .top_instagram .top_instagram_inner ul li:nth-child(2) {
    margin: 0 2%;
  }
  .top_instagram .top_instagram_inner ul li:nth-child(4) {
    display: none;
  }
  .top_instagram .top_instagram_inner ul li a.hover {
    opacity: 1;
  }
  .top_instagram .top_instagram_inner ul li a.hover:before {
    opacity: .5;
  }
  .top_instagram .top_instagram_inner a.link_button {
    display: none;
  }
}

/*====================================================================
  04 Special_style
====================================================================*/
/*---------------------------------------------------------
  Special magazine
*/
.special_main {
  position: relative;
  display: block;
  width: 100%;
}

.special_main .title_area {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 50px;
  margin: auto;
  text-align: center;
  z-index: 9;
}

.special_main .title_area p {
  color: #fff;
}

.special_main .title_area p.title {
  font-size: 30px;
}

@media screen and (max-width: 770px) {
  .special_main .title_area p.title {
    font-size: 22px;
  }
}

.special_main .title_area p.day {
  font-size: 16px;
}

.special_main .special_bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.special_main .scroll_down {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: block;
  width: 90px;
  height: 40px;
  margin: auto;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 770px) {
  .special_main .scroll_down {
    display: none;
  }
}

.special_main .scroll_down:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  margin: auto;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: scroll_down 3s ease-in-out 0s infinite;
  -moz-animation: scroll_down 3s ease-in-out 0s infinite;
  animation: scroll_down 3s ease-in-out 0s infinite;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes scroll_down {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes scroll_down {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes scroll_down {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.special_magazine {
  padding-top: 50px;
}

@media screen and (max-width: 770px) {
  .special_magazine {
    padding-top: 0;
  }
}

.special_magazine p {
  line-height: 1.57;
}

@media screen and (max-width: 980px) {
  .special_magazine p {
    width: 85%;
    margin: auto;
  }
}

.special_magazine p.title {
  font-size: 15px;
  color: #f4727b;
  font-weight: 600;
  margin-bottom: 10px;
}

.special_magazine p.text {
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 25px;
}

@media screen and (max-width: 770px) {
  .special_magazine p.text {
    font-size: 13px;
    line-height: 2.2;
  }
}

.special_magazine img {
  margin-bottom: 25px;
}

.special_magazine .type_both {
  letter-spacing: -.4em;
}

.special_magazine .type_both div {
  letter-spacing: normal;
  display: inline-block;
  width: 50%;
  vertical-align: top;
}

@media screen and (max-width: 770px) {
  .special_magazine .type_both div {
    width: 100%;
    display: block;
  }
}

.special_magazine .type_both div.text_area {
  padding: 10px 0 0 20px;
}

@media screen and (max-width: 770px) {
  .special_magazine .type_both div.text_area {
    padding: 0;
  }
}

.special_magazine .styling {
  letter-spacing: -.4em;
}

@media screen and (max-width: 770px) {
  .special_magazine .styling {
    width: 80%;
    margin: auto;
  }
}

.special_magazine .styling .slick-arrow {
  top: 30%;
}

.special_magazine .styling li {
  letter-spacing: normal;
  vertical-align: top;
  display: inline-block;
  width: 32%;
}

@media screen and (max-width: 770px) {
  .special_magazine .styling li {
    width: 100%;
    margin: 0;
  }
}

.special_magazine .styling li:nth-child(3n-1) {
  margin: 0 2% 50px;
}

@media screen and (max-width: 770px) {
  .special_magazine .styling li:nth-child(3n-1) {
    margin: 0;
  }
}

.special_magazine .styling li img {
  width: 100%;
}

.special_magazine .styling li .item {
  position: relative;
  border-bottom: 1px dotted #000;
  padding: 5px 0;
}

.special_magazine .styling li .item p {
  font-size: 12px;
  text-align: center;
}

.special_magazine .styling li .item a {
  position: relative;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin: 5px auto;
  background: #f4727b;
  color: #fff;
}

.special_magazine .link_button {
  width: 270px;
  font-size: 15px;
  margin: 50px auto 70px;
}

.special_archive {
  padding-top: 38px;
}

.special_archive ul {
  letter-spacing: -.4em;
}

.special_archive ul li.item {
  letter-spacing: normal;
  display: inline-block;
  width: 46%;
  height: auto;
  vertical-align: top;
  margin: 0 2% 40px;
}

@media screen and (max-width: 770px) {
  .special_archive ul li.item {
    display: block;
    width: 300px;
    max-width: 100%;
    margin: 0 auto 20px;
  }
}

.special_archive ul li.item .img_area {
  position: relative;
}

.special_archive ul li.item .img_area:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.special_archive ul li.item .img_area:hover:before {
  opacity: .5;
}

.special_archive ul li.item .img_area.hover:before {
  opacity: .5;
}

.special_archive ul li.item .sp_item {
  display: block;
}

.special_archive ul li.item .sp_item .date {
  font-size: 11px;
}

@media screen and (max-width: 770px) {
  .special_archive ul li.item .sp_item .date {
    font-size: 11px;
  }
}

.special_archive ul li.item .sp_item .text {
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (max-width: 770px) {
  .special_archive ul li.item .sp_item .text {
    font-size: 12px;
  }
}

.special_archive .pagination {
  margin-bottom: 20px;
}

.special_archive .pagination .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #fbb2b7;
  color: #fbb2b7;
}

.special_archive .pagination .page-numbers.current {
  background: #fbb2b7;
  color: #fff;
}

.special_archive .pagination .page-numbers.prev {
  border: none;
}

.special_archive .pagination .page-numbers.next {
  border: none;
}

/*====================================================================
  05 News_style
====================================================================*/
/*---------------------------------------------------------
  News
*/
.news ul {
  letter-spacing: -.4em;
}

.news ul li.item {
  letter-spacing: normal;
  display: inline-block;
  width: 250px;
  height: auto;
  vertical-align: top;
  margin: 0 0 15px;
}

@media screen and (max-width: 980px) {
  .news ul li.item {
    width: 32%;
  }
}

@media screen and (max-width: 770px) {
  .news ul li.item {
    width: 49%;
  }
}

.news ul li.item:nth-child(3n-1) {
  margin: 0 15px 15px;
}

@media screen and (max-width: 980px) {
  .news ul li.item:nth-child(3n-1) {
    margin: 0 2% 15px;
  }
}

@media screen and (max-width: 980px) {
  .news ul li.item:nth-child(3n-1) {
    margin: 0 0 15px;
  }
}

@media screen and (max-width: 980px) {
  .news ul li.item:nth-child(2n) {
    margin: 0 0 15px 2%;
  }
}

.news ul li.item .img_area {
  position: relative;
}

.news ul li.item .img_area:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.news ul li.item .img_area:hover:before {
  opacity: .5;
}

.news ul li.item .img_area.hover:before {
  opacity: .5;
}

.news ul li.item .sp_item {
  display: block;
}

.news ul li.item .sp_item .date {
  font-size: 11px;
}

@media screen and (max-width: 770px) {
  .news ul li.item .sp_item .date {
    font-size: 11px;
  }
}

.news ul li.item .sp_item .text {
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (max-width: 770px) {
  .news ul li.item .sp_item .text {
    font-size: 12px;
  }
}

.news .pagination {
  margin-bottom: 20px;
}

.news .pagination .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #fbb2b7;
  color: #fbb2b7;
}

.news .pagination .page-numbers.current {
  background: #fbb2b7;
  color: #fff;
}

.news .pagination .page-numbers.prev {
  border: none;
}

.news .pagination .page-numbers.next {
  border: none;
}

/*====================================================================
  06 New-arrival_style
====================================================================*/
/*---------------------------------------------------------
  New arrival
*/
.newarrival .brndx .item {
  width: 32%;
  margin: 0 0 10px;
  position: relative;
}

.newarrival .brndx .item:before {
  content: "";
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  opacity: 0;
}

.newarrival .brndx .item:nth-child(3n-1) {
  margin: 0 2% 10px;
}

@media screen and (max-width: 770px) {
  .newarrival .brndx .item {
    width: 49%;
  }
  .newarrival .brndx .item:nth-child(3n-1) {
    margin: 0 0 10px;
  }
  .newarrival .brndx .item:nth-child(2n) {
    margin: 0 0 10px 2%;
  }
  .newarrival .brndx .item:before {
    display: block;
  }
  .newarrival .brndx .item.hover:before {
    opacity: .5;
  }
}

.newarrival .brndx .item .mask {
  top: 0;
  height: 100%;
  background: none;
}

.newarrival .brndx .item .mask:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  opacity: .5;
}

.newarrival .brndx .item .mask a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  line-height: 30px;
  margin: auto;
  padding: 0;
}

/*====================================================================
  07 Ranking_style
====================================================================*/
/*---------------------------------------------------------
  Ranking arrival
*/
.newarrival.ranking ul.brndx li.item {
  width: 49%;
  margin: 0 0 20px;
  position: relative;
}

.newarrival.ranking ul.brndx li.item:nth-child(2n) {
  margin: 0 0 20px 2%;
}

.newarrival.ranking ul.brndx li.item:before {
  content: "";
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  opacity: 0;
}

@media screen and (max-width: 770px) {
  .newarrival.ranking ul.brndx li.item:before {
    display: block;
  }
  .newarrival.ranking ul.brndx li.item.hover:before {
    opacity: .5;
  }
}

.newarrival.ranking ul.brndx li.item .link_reserve span {
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  background: #f4f4f4;
  border-radius: 20px;
}

.newarrival.ranking ul.brndx li.item .mask {
  top: 0;
  height: 100%;
  background: none;
}

.newarrival.ranking ul.brndx li.item .mask:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  opacity: .5;
}

.newarrival.ranking ul.brndx li.item .mask a {
  width: 120px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.newarrival.ranking ul.brndx li.item .mask.on:before {
  opacity: .5;
}

/*====================================================================
  08 Snap-photo_style
====================================================================*/
/*---------------------------------------------------------
  SNAP PHOTO arrival
*/
.wrapper_inner.snap {
  padding-top: 90px;
}

@media screen and (max-width: 770px) {
  .wrapper_inner.snap {
    padding-top: 0;
  }
}

.wrapper_inner.snap .snap_list li .snap_list_img:before {
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
}

.wrapper_inner.snap .snap_list li:hover .snap_list_img:before {
  opacity: .5;
}

.wrapper_inner.snap .snap_list li.hover .snap_list_img:before {
  opacity: .5;
}

.wrapper_inner.snap .pagination {
  margin-bottom: 20px;
}

.wrapper_inner.snap .pagination .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #fbb2b7;
  color: #fbb2b7;
}

.wrapper_inner.snap .pagination .page-numbers.current {
  background: #fbb2b7;
  color: #fff;
}

.wrapper_inner.snap .pagination .page-numbers.prev {
  border: none;
}

.wrapper_inner.snap .pagination .page-numbers.next {
  border: none;
}

.wrapper_inner.snap_single {
  padding-top: 90px;
}

@media screen and (max-width: 770px) {
  .wrapper_inner.snap_single {
    padding-top: 0;
  }
}

.wrapper_inner.snap_single .snap_item li .item_img:before {
  width: 100%;
  height: 100%;
  border: none;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
}

.wrapper_inner.snap_single .snap_item li .item_img:after {
  display: none;
}

.wrapper_inner.snap_single .snap_item li:hover .item_img:before {
  opacity: .5;
}

@media screen and (max-width: 770px) {
  .wrapper_inner.snap_single .snap_item li .item_img:before {
    display: block;
  }
  .wrapper_inner.snap_single .snap_item li.hover .item_img:before {
    opacity: .5;
  }
}

.wrapper_inner.snap_single .snap_list li .snap_list_img:before {
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
}

.wrapper_inner.snap_single .snap_list li:hover .snap_list_img:before {
  opacity: .5;
}

.wrapper_inner.snap_single .snap_list li.hover .snap_list_img:before {
  opacity: .5;
}

/*====================================================================
  09 Catalog_style
====================================================================*/
/*---------------------------------------------------------
  Catalog arrival
*/
.wrapper_inner.catalog {
  width: 100%;
}

.wrapper_inner.catalog .catalog_title {
  text-align: center;
}

.wrapper_inner.catalog .catalog_title p.season {
  font-size: 14px;
}

.wrapper_inner.catalog .catalog_title p.concept {
  font-size: 20px;
}

.wrapper_inner.catalog .catalog_slider {
  padding: 50px 0 0;
}

.wrapper_inner.catalog .catalog_slider .slick-list {
  overflow: inherit;
}

.catalog_archive {
  background: #f2f2f2;
  text-align: center;
  padding: 30px 0 60px;
}

.catalog_archive .archive_title {
  font-size: 16px;
  padding: 0 0 30px;
}

.catalog_archive .archive_slider {
  max-width: 710px;
  margin: auto;
}

.catalog_archive .archive_slider .slick-prev {
  background: none;
  top: 35%;
  cursor: pointer;
  left: -50px;
}

.catalog_archive .archive_slider .slick-prev:before {
  border-color: #3e3e3e;
}

.catalog_archive .archive_slider .slick-next {
  background: none;
  top: 35%;
  cursor: pointer;
  right: -50px;
}

.catalog_archive .archive_slider .slick-next:before {
  border-color: #3e3e3e;
}

.catalog_archive .archive_slider li {
  margin: 0 10px;
}

.catalog_archive .archive_slider li p {
  font-size: 12px;
  margin: 10px 0 0;
}

@media screen and (max-width: 375px) {
  .catalog_archive .archive_slider li p {
    font-size: 10px;
  }
}

/*====================================================================
  10 SNS_style
====================================================================*/
/*---------------------------------------------------------
  SNS
*/
@media screen and (max-width: 770px) {
  .sns {
    width: 96%;
    margin: 0 auto;
  }
}

.sns a:hover {
  opacity: 1;
}

.sns .insta {
  margin: 50px auto;
}

@media screen and (max-width: 770px) {
  .sns .insta {
    margin: 0 auto;
  }
}

.sns .insta .insta_title {
  font-size: 10px;
  color: #bbbbbb;
  letter-spacing: 0.06em;
}

.sns .insta .insta_id {
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.16em;
  font-size: 15px;
}

.sns .insta .img_area {
  margin: 10px 0 30px;
}

.sns .insta .img_area ul {
  letter-spacing: -.4em;
}

.sns .insta .img_area ul li {
  letter-spacing: normal;
  display: inline-block;
  width: 150px;
  height: 150px;
  margin: 0 5px 0 0;
}

@media screen and (max-width: 770px) {
  .sns .insta .img_area ul li {
    width: 32%;
    margin: 0;
  }
}

.sns .insta .img_area ul li:last-child {
  margin: 0;
}

@media screen and (max-width: 770px) {
  .sns .insta .img_area ul li:nth-child(n+4) {
    display: none;
  }
}

@media screen and (max-width: 770px) {
  .sns .insta .img_area ul li:nth-child(2) {
    margin: 0 2%;
  }
}

.sns .insta .img_area ul li a {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  position: relative;
}

.sns .insta .img_area ul li a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  opacity: 0;
}

.sns .insta .img_area ul li a:hover:before {
  opacity: .5;
}

.sns .insta .img_area ul li a.hover:before {
  opacity: .5;
}

.sns .fashionista {
  margin: 0 0 50px;
}

.sns .fashionista .sns_title {
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.16em;
  font-size: 15px;
  text-align: center;
  margin: 0 auto 30px;
}

.sns .fashionista ul {
  letter-spacing: -.4em;
}

.sns .fashionista ul li {
  letter-spacing: normal;
  display: inline-block;
  width: 190px;
  position: relative;
  margin: 0 70px 20px 0;
}

@media screen and (max-width: 770px) {
  .sns .fashionista ul li {
    width: 40%;
    margin: 0 10% 20px 0;
  }
}

.sns .fashionista ul li:nth-child(3n) {
  margin: 0 0 20px 0;
}

@media screen and (max-width: 770px) {
  .sns .fashionista ul li:nth-child(3n) {
    margin: 0 10% 20px 0;
  }
}

@media screen and (max-width: 770px) {
  .sns .fashionista ul li:nth-child(2n) {
    margin: 0 0 20px 0;
  }
}

.sns .fashionista ul li a {
  display: block;
  width: 100%;
}

.sns .fashionista ul li a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  opacity: 0;
}

.sns .fashionista ul li a:hover:before {
  opacity: .5;
}

.sns .fashionista ul li a.hover:before {
  opacity: .5;
}

.sns .fashionista ul li a .text_area {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transform-origin: left top;
  position: absolute;
  left: 101%;
  bottom: -33px;
  width: 166px;
}

.sns .fashionista ul li a .text_area p.insta_name {
  font-size: 10px;
  color: #bbbbbb;
  letter-spacing: 0.06em;
}

.sns .fashionista ul li a .text_area p.insta_id {
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.16em;
  font-size: 13px;
}

@media screen and (max-width: 375px) {
  .sns .fashionista ul li a .text_area p.insta_id {
    font-size: 10px;
  }
}

.sns .blog {
  display: inline-block;
  width: 360px;
  vertical-align: top;
  margin: 0 30px 0 0;
}

@media screen and (max-width: 770px) {
  .sns .blog {
    width: 100%;
    margin: 0;
  }
}

.sns .blog .sns_title {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  margin: 0 0 25px 50px;
  position: relative;
}

.sns .blog .sns_title:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: -4px;
  left: -45px;
  background-size: cover;
}

.sns .blog .sns_title:before {
  background-image: url("../images/sns/icon_blog.png");
}

.sns .blog ul {
  display: block;
  width: 100%;
  letter-spacing: -.4em;
  border-top: 1px solid #bfbfbf;
  border-left: 1px solid #bfbfbf;
  padding: 0 0 20px;
}

@media screen and (max-width: 770px) {
  .sns .blog ul {
    border: none;
  }
}

.sns .blog ul li {
  margin: 20px 0 0 40px;
  letter-spacing: normal;
  display: inline-block;
}

@media screen and (max-width: 770px) {
  .sns .blog ul li {
    width: 50%;
    margin: 0 auto 40px;
  }
}

.sns .blog ul li a p.blog_title {
  color: #bbbbbb;
  font-size: 11px;
}

.sns .blog ul li a p.blog_name {
  font-size: 15px;
}

.sns .app {
  display: inline-block;
  width: 360px;
  vertical-align: top;
}

@media screen and (max-width: 770px) {
  .sns .app {
    width: 100%;
    margin: 0;
  }
}

.sns .app .sns_title {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  margin: 0 0 25px 50px;
  position: relative;
}

.sns .app .sns_title:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: -4px;
  left: -45px;
  background-size: cover;
}

.sns .app .sns_title:before {
  background-image: url("../images/sns/icon_app.png");
}

.sns .app ul {
  display: block;
  width: 100%;
  letter-spacing: -.4em;
  border-top: 1px solid #bfbfbf;
  border-left: 1px solid #bfbfbf;
  padding: 0 0 20px;
}

@media screen and (max-width: 770px) {
  .sns .app ul {
    border: none;
  }
}

.sns .app ul li {
  margin: 20px 0 0 40px;
  letter-spacing: normal;
  display: inline-block;
}

@media screen and (max-width: 770px) {
  .sns .app ul li {
    width: 100%;
    margin: 0 auto 40px;
  }
}

.sns .app ul li a p.app_title {
  color: #bbbbbb;
  font-size: 11px;
}

.sns .app ul li a p.app_name {
  font-size: 15px;
}

.sns .twitter {
  margin: 50px 0 75px;
  width: 755px;
}

@media screen and (max-width: 770px) {
  .sns .twitter {
    width: 100%;
    margin: 0;
  }
}

.sns .twitter .sns_title {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  margin: 0 0 25px 50px;
  position: relative;
}

.sns .twitter .sns_title:before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: -4px;
  left: -45px;
  background-size: cover;
}

.sns .twitter .sns_title:before {
  background-image: url("../images/sns/icon_tw.png");
}

.sns .twitter ul {
  letter-spacing: -.4em;
  border-top: 1px solid #bfbfbf;
  border-left: 1px solid #bfbfbf;
  padding: 0 0 20px;
}

@media screen and (max-width: 770px) {
  .sns .twitter ul {
    border: none;
  }
}

.sns .twitter ul li {
  width: 180px;
  margin: 20px 0 0 40px;
  letter-spacing: normal;
  display: inline-block;
}

@media screen and (max-width: 770px) {
  .sns .twitter ul li {
    width: 50%;
    margin: 0 auto 40px;
  }
}

.sns .twitter ul li a p.tw_title {
  color: #bbbbbb;
  font-size: 11px;
}

.sns .twitter ul li a p.tw_id {
  font-size: 15px;
}

/*====================================================================
  11 Concept_style
====================================================================*/
/*---------------------------------------------------------
  concept
*/
.season_concept .text p.sp_view {
  display: none;
}

@media screen and (max-width: 860px) {
  .season_concept .season_concept_content {
    height: auto;
    padding-bottom: 20px;
  }
  .season_concept .text p.pc_view {
    display: none;
  }
  .season_concept .text p.sp_view {
    display: block;
  }
}


/*---------------------------------------------------------
  youtube
*/
.youtube{
  margin: 100px auto 0;
  position: relative;
}
/*.youtube:after {
    content: "";
    background: #fff;
    width: 245px;
    height: 551px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.youtube:before {
    content: "";
    background: #fff;
    width: 247px;
    height: 551px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}*/
iframe#youtube {
    width: 100%;
    height: 551px;
}
@media screen and (max-width: 980px){
.youtube:after,
.youtube:before {
    display: none;
}
.youtube {
    margin: 100px auto 0;
    position: relative;
    width: 90%;
}
iframe#youtube {
    width: 100%;
    height: 190px;
}
#main-youtube iframe {
    position: static;
    top: 0;
    right: 0;
    z-index: 0;
    width: 100% !important;
    height: -webkit-fill-available;
}
.youtube_innnar {
/*  position: relative;
  width: 100%;
  padding-top: 56.25%;*/
}
.youtube_innnar iframe {
/*  position: absolute;
  top: 0;
  right: 0;*/
  width: 100% !important;
/*  height: 100% !important;*/
}
}

/*====================================================================
  12 Movie_style
====================================================================*/
/*---------------------------------------------------------
  Movie arrival
*/
.wrapper_inner.movie {
  width: 810px;
  padding-top: 38px;
}

.wrapper_inner.movie p.movie_ttl {
  font-size: 15px;
  text-align: left;
  margin: 5px 0 0;
  word-break: break-word;
}

#youtube {
    width: 100%;
}

.movie_archive {
  padding: 75px 0 85px;
  width: 100%;
  max-width: 810px;
}

.movie_archive .archive_title {
  font-size: 16px;
  padding: 0 0 30px;
  text-align: center;
}

.movie_archive ul {
  max-width: 810px;
  margin: auto;
  text-align: center;
  letter-spacing: -.4em;
}

.movie_archive ul li {
  letter-spacing: normal;
  display: inline-block;
  width: 46%;
  height: auto;
  vertical-align: top;
  margin: 0 2% 40px;
}


.movie_archive ul li a .img_area {
  position: relative;
  display: block;
}

.movie_archive ul li a .img_area:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: repeating-linear-gradient(45deg, #cbcb01, #01d0ae, #d10057, #5701a7) 0 0/200% no-repeat;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.movie_archive ul li a:hover {
  opacity: 1;
}

.movie_archive ul li a:hover .img_area:before {
  opacity: .5;
}

.movie_archive ul li a.hover {
  opacity: 1;
}

.movie_archive ul li a.hover .img_area:before {
  opacity: .5;
}

.movie_archive ul li p {
  font-size: 15px;
  text-align: left;
  margin: 5px 0 0;
  word-break: break-word;
}

@media screen and (max-width: 770px) {
  .wrapper_inner.movie {
    width: 100%;
  }

  .wrapper_inner.movie p.movie_ttl {
    font-size: 12px;
    width: 300px;
    margin: 5px auto 0;
  }

  .movie_archive {
    padding-top: 30px;
  }
  .movie_archive ul {
    max-width: 100%;
    letter-spacing: -.4em;
  }

  .movie_archive ul li {
    display: block;
    width: 300px;
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .movie_archive ul li p {
    font-size: 12px;
  }
}
/*---------------------------------------------------------
  youtube
*/
.movie_top .youtube{
  margin: 0;
  position: inherit;
}
.movie_top .youtube:after {
    content: none;
}
.movie_top .youtube:before {
    content: none;
}
.movie_top iframe#youtube {
    width: 100%;
    height: 360px;
}
@media screen and (max-width: 980px){
.movie_top .youtube:after,
.movie_top .youtube:before {
    display: none;
}
.movie_top .youtube {
    margin: 0;
    position: inherit;
    width: inherit;
}
.movie_top iframe#youtube {
    width: 100%;
}
.movie_top #main-youtube iframe {
    position: inherit;
    top: 0;
    right: 0;
    z-index: 0;
    width: 100% !important;
    height: -webkit-fill-available;
}
.movie_top .youtube_innnar {
/*  position: relative;
  width: 100%;
  padding-top: 56.25%;*/
}
.movie_top .youtube_innnar iframe {
/*  position: absolute;
  top: 0;
  right: 0;*/
  width: 100% !important;
/*  height: 100% !important;*/
}
}
/*====================================================================
  12 CONCEPT ADD 190411
====================================================================*/

.season_concept figure{
  position: absolute;
  transform: rotate(4deg);
  padding: 30px 0 0 ;
}
.season_concept figure .tape {
    position: absolute;
    width: 207px;
    top: -4px;
    left: 0;
    right: 0;
    margin: auto;
    height: 62px;
    transform: rotate(-2deg);
}
.season_concept figure .img_contents {
    width: 390px;
    border: 10px solid #fff;
    box-shadow:0px 0px 4px 2px #eaeaea;
}
@media screen and (max-width: 769px) {
  .season_concept figure{
    position: static;
    transform: rotate(0deg);
    padding: 30px 0 0 ;
  }
  .season_concept figure .tape {
      position: absolute;
      width: 190px;
      top: 3px;
      left: 0;
      right: 0;
      margin: auto;
      height: 55px;
      transform: rotate(-3deg);
  }
  .season_concept figure .img_contents {
      width: 100%;
      border: 10px solid #fff;
      box-shadow:0px 0px 4px 2px #eaeaea;
  }
}



