/*
*
*  Title: Visvim
*  Last Modified: 2014-06-03
*  Description: Pages Style
*
*/
/* =========== INDEX LIST ============

  1: RESET
  2: COMMON
  3: LAYOUT
  4: MODULE
  5: PLUGIN

====================================== */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ===================================

  1: RESET

====================================== */


/* ===================================

  2: COMMON

====================================== */
/*
html {
  min-width: 100%;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 62.5%;
  letter-spacing: .07em;
  color: #1b1b1b;
  background: url(../img/bg_body_01.png) scroll repeat 0 0;
}
@media screen and (max-width: 320px) {
  html {
    min-width: 0;
  }
}

body {
  -webkit-font-smoothing: antialiased;
}

#page {
  width: 100%;
  min-width: 304px;
  overflow: hidden;
  position: relative;
}

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

p,
ul,
ol,
dl {
  margin: 0;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.6;
}

img {
  line-height: 1;
  vertical-align: top;
}

a:link {
  text-decoration: none;
  color: #1b1b1b;
  -webkit-transition: color .5s;
  -moz-transition: color .5s;
  -o-transition: color .5s;
  -ms-transition: color .5s;
  transition: color .5s;
}
a:link img {
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  -ms-transition: opacity 1s;
  transition: opacity 1s;
  opacity: 1;
}

a:visited {
  text-decoration: none;
  color: #1b1b1b;
}

a:hover {
  text-decoration: none;
  color: #898989;
  -webkit-transition: color .5s;
  -moz-transition: color .5s;
  -o-transition: color .5s;
  -ms-transition: color .5s;
  transition: color .5s;
}
a:hover img {
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  -ms-transition: opacity 1s;
  transition: opacity 1s;
  opacity: .6;
}

a:active {
  text-decoration: none;
  color: #898989;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
}
*/

/* form style
--------------------*/
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  -webkit-appearance: none;
  padding: 8px 10px;
  border: none;
  background: #fff;
  color: #000;
  line-height: 1.4;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #a0a0a0;
  line-height: 1.4;
  font-weight: 500;
}

input[type="text"]:focus::-webkit-input-placeholder,
input[type="tel"]:focus::-webkit-input-placeholder,
input[type="email"]:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: #fff;
}

input[type="text"].is-errored,
input[type="tel"].is-errored,
input[type="email"].is-errored,
textarea.is-errored {
  color: #d60000;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
  color: #000;
}

input[type="checkbox"],
input[type="radio"] {
  margin-right: 5px;
}

input[type="submit"] {
  background: none;
  border: none;
  line-height: 1.4;
}

textarea {
  width: 100%;
  min-height: 8em;
}

select {
  margin: 5px 10px 5px 0;
  padding: 3px;
  border: 1px solid #ccc;
  font-size: 12px;
  font-size: 1.2rem;
}

label {
  display: inline-block;
  cursor: pointer;
}

input.is-errored::-webkit-input-placeholder,
textarea.is-errored::-webkit-input-placeholder {
  color: #D60000;
}

/* ===================================

  3: LAYOUT

====================================== */
/* clearfix */
.cf:after, .logo:after, .gnav-inner:after, .contents:after, .panels:after, .dissertationOn-lookbook-body:after, .archives-more:after, .footer .panel:after, .entry-image:after, .entry-col:after, .entry-largish:after, .entry-half:after, .release-gallery:after, .release-gallery-info:after, .release-gallery-vertical-3 .release-gallery-info-products:after, .release-gallery-vertical-4 .release-gallery-info-products:after, .release-gallery-vertical-5 .release-gallery-info-products:after, .collections-menu-pc dl:after, .collections-menu-tb:after, .collections-detail-detailimages:after, .collections-detail-detailthumbnails:after, .collections-detail-webstorelink:after, ul.lookbook-top-brandlink:after, .dissertations-title-wrapper:after, .dissertations-title-wrapper ul:after, .footer-sns:after, .stockist-title-wrapper:after, .stockist-title-wrapper ul:after, .ict-body .ict-collections:after, .ict-body .ict-lookbook:after, .lcc-top-menu:after {
  content: "";
  display: block;
  clear: both;
}

.header-inner {
  width: 1064px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .header-inner {
    width: 808px;
  }
}
@media screen and (max-width: 600px) {
  .header-inner {
    width: 640px;
  }
}
@media screen and (max-width: 320px) {
  .header-inner {
    width: 360px;
  }
}
.ie .header-inner {
  min-width: 808px;
}

.contents {
  width: 1064px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 1280px;
}
@media screen and (max-width: 768px) {
  .contents {
    width: 808px;
  }
}
@media screen and (max-width: 600px) {
  .contents {
    width: 640px;
  }
}
@media screen and (max-width: 320px) {
  .contents {
    width: 360px;
  }
}
.ie .contents {
  min-width: 808px;
}

.footer {
  width: 1064px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 20px;
  width: 1280px;
}
@media screen and (max-width: 768px) {
  .footer {
    width: 808px;
  }
}
@media screen and (max-width: 600px) {
  .footer {
    width: 640px;
  }
}
@media screen and (max-width: 320px) {
  .footer {
    width: 360px;
  }
}
.ie .footer {
  min-width: 808px;
}

/* ===================================

  4: MODULE

====================================== */
.mb-35 {
  margin-bottom: 35px !important;
}

.btn a {
  display: block;
  padding: 8px;
  background: #000;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
  font-size: 13px;
  font-size: 1.3rem;
  color: #FFF;
  -webkit-transition: background-color .5s;
  -moz-transition: background-color .5s;
  -o-transition: background-color .5s;
  -ms-transition: background-color .5s;
  transition: background-color .5s;
}
.btn a:hover {
  -webkit-transition: background-color .5s;
  -moz-transition: background-color .5s;
  -o-transition: background-color .5s;
  -ms-transition: background-color .5s;
  transition: background-color .5s;
  background-color: #666;
}

.btn-more a {
  background: #000 url(../img/icn_more_01.png) scroll no-repeat 14px center;
}

.btn-back a {
  width: 265px;
  margin: auto;
}
@media screen and (max-width: 320px) {
  .btn-back a {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.contents + .btn-back {
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 40px;
}

.link-blank::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  width: 14px;
  height: 10px;
  margin-left: 6px;
  background: url(../img/icn_blank_02.png) scroll no-repeat 0 0;
}

.header {
  margin: 0 0 30px;
  border-bottom: 1px solid #E5E5E5;
  background: #FFF;
  z-index: 999;
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

.header-inner {
  position: relative;
  height: 110px;
  padding-top: 45px;
  box-sizing: border-box;
  width: 100% !important;
}
.is-fixed .header-inner {
  height: 55px;
  padding-top: 16px;
}
@media screen and (max-width: 600px) {
  .header-inner {
    height: 60px;
    padding-top: 23px;
  }
}

.logo {
  float: left;
  width: 245px;
  margin-left: 20px;
}
@media screen and (max-width: 955px) {
  .logo {
    margin-left: 0px;
  }
}
.logo .logo-visvimtv {
  width: 182px;
  background: #FFF;
}
@media screen and (max-width: 600px) {
  .logo .logo-visvimtv {
    width: 137px;
  }
}
.is-fixed .logo {
  padding-top: 0px;
}
@media screen and (max-width: 600px) {
  .logo {
    width: auto;
    height: 50%;
  }
  .logo img {
    margin-right: 15px;
  }
}

.menu-toggle {
  display: none;
}
@media screen and (max-width: 955px) {
  .menu-toggle {
    overflow: hidden;
    display: block;
    position: absolute;
    top: 39px;
    right: 34px;
    width: 36px;
    height: 32px;
    background: url(../img/icn_menu_01.png) scroll no-repeat center center;
    background-size: contain;
    text-indent: 100%;
    white-space: nowrap;
    cursor: pointer;
  }
}
@media screen and (max-width: 600px) {
  .menu-toggle {
    top: 23px;
    right: 15px;
    width: 18px;
    height: 16px;
  }
}

@media screen and (max-width: 955px) {
  .menu-body {
    position: absolute;
    top: 111px;
    left: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px 30px;
    border-bottom: 1px solid #E5E5E5;
    background: #FFF;
    z-index: 999;
  }
}
@media screen and (max-width: 600px) {
  .menu-body {
    top: 61px;
  }
}

.menu-sub {
  display: none;
}
@media screen and (max-width: 955px) {
  .menu-sub {
    display: block;
  }
}

.gnav {
  float: right;
  margin-top: -6px;
}
@media screen and (max-width: 955px) {
  .gnav {
    margin-top: 0px;
    float: none;
    display: table;
    width: 100%;
  }
}

.gnav-inner {
  padding: 40px 0 0;
  list-style-type: none;
}
.is-fixed .gnav-inner {
  padding-top: 9px;
}
@media screen and (max-width: 955px) {
  .gnav-inner {
    display: table-cell;
    width: 50%;
    padding: 25px 0 0;
    vertical-align: bottom;
  }
}
@media screen and (max-width: 320px) {
  .gnav-inner {
    display: block;
    width: 100%;
  }
}

.gnav-item {
  float: left;
  margin: 0 26px 0 0;
  font-size: 12px;
  font-size: 1.2rem;
  vertical-align: baseline;
}
.is-fixed .gnav-item {
  margin-right: 16px;
}
.menu-sub .gnav-item {
  font-weight: 400;
}
@media screen and (max-width: 955px) {
  .gnav-item {
    float: none;
    margin-bottom: 0.2em;
    margin-right: 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.gnav-item a {
  display: block;
  padding: 0 10px;
}
.gnav-item a img {
  display: none;
  margin-left: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 955px) {
  .gnav-item a img {
    display: inline;
  }
}

.gnav-item-06 {
  margin-top: -18px;
  margin-right: 10px;
  font-size: 10px;
  font-size: 1rem;
}
.is-fixed .gnav-item-06 {
  margin-top: 0;
  margin-right: 10px;
}
.gnav-item-06 a {
  padding: 21px 10px 0;
  background: url(../img/icn_custom_01.png) scroll no-repeat center 0;
}
.is-fixed .gnav-item-06 a {
  overflow: hidden;
  width: 40px;
  height: 20px;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 955px) {
  .gnav-item-06 {
    margin-top: 2em;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .gnav-item-06 a {
    padding-top: 0;
    background: none;
  }
}

.gnav-item-07 {
  margin-top: -18px;
  margin-right: 0;
  font-size: 10px;
  font-size: 1rem;
}
.is-fixed .gnav-item-07 {
  margin-top: -3px;
}
.gnav-item-07 a {
  padding: 21px 10px 0;
  background: url(../img/icn_webstore.png) scroll no-repeat center 0;
  background-size: 20px auto;
}
.is-fixed .gnav-item-07 a {
  overflow: hidden;
  width: 40px;
  height: 20px;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 955px) {
  .gnav-item-07 {
    margin-top: 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .gnav-item-07 a {
    padding-top: 0;
    background: none;
  }
}

.gnav-item-08 {
  display: none;
}
@media screen and (max-width: 955px) {
  .gnav-item-08 {
    display: block;
  }
}

@media screen and (max-width: 955px) {
  .gnav-item-13 {
    margin-top: 2em;
  }
}

.switching {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 12px;
  font-size: 1.2rem;
  color: #ADADAD;
}
.is-fixed .switching {
  display: none;
}
.switching .is-current {
  padding: 5px;
  color: #1B1B1B;
}
.switching a {
  padding: 5px;
  text-decoration: none;
  color: #ADADAD;
}
@media screen and (max-width: 955px) {
  .switching {
    top: 25px;
    right: 24px;
    padding: 0 5px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 320px) {
  .switching {
    right: 5px;
  }
}

.contents {
  padding: 0 20px 40px;
}
@media screen and (max-width: 600px) {
  .contents {
    padding-bottom: 0;
  }
}

.contents-title {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .news .contents-title {
    margin-bottom: 10px;
  }
}
.dissertationOn .contents-title {
  margin-bottom: 30px;
}
.contents-title a {
  font-size: 14px;
  font-size: 1.4rem;
}
.contents-title a:link {
  text-decoration: underline;
}
.contents-title a:hover {
  text-decoration: none;
}

.contents-date {
  margin: -20px 0 20px;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 300;
  color: #A0A0A0;
}
@media screen and (max-width: 768px) {
  .news .contents-date {
    margin: -10px 0 10px;
  }
}
.dissertationOn .contents-date {
  margin: 0;
  font-size: 10px;
  font-size: 1rem;
}

.dissertationOn .contents-season {
  margin: 0 0 10px;
  font-size: 10px;
  font-size: 1rem;
}

.contents-category {
  margin: -20px 0 20px;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .news .contents-category {
    margin: -10px 0 10px;
  }
}

.contents-category-upper {
  font-size: 9px;
  font-size: 0.9rem;
}
.contents-category-upper a:link, .contents-category-upper a:visited {
  text-decoration: underline;
}
.contents-category-upper a:hover, .contents-category-upper a:active {
  text-decoration: none;
}

.main {
  float: left;
  width: 74.596774193%;
}
@media screen and (max-width: 768px) {
  .main {
    float: none;
    width: 100%;
  }
}
.news .main {
  position: relative;
}

.side {
  float: right;
  width: 17.8427419%;
}
@media screen and (max-width: 768px) {
  .side {
    float: none;
    width: 100%;
  }
}
.news .side {
  padding-top: 200px;
}
@media screen and (max-width: 768px) {
  .news .side {
    padding-top: 20px;
  }
}

.panels, .dissertationOn-lookbook-body {
  margin-right: -1.587301587%;
}
.side .panels, .side .dissertationOn-lookbook-body {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .side .panels, .side .dissertationOn-lookbook-body {
    margin-right: -1.587301587%;
  }
}
@media screen and (max-width: 600px) {
  .side .panels, .side .dissertationOn-lookbook-body {
    margin-bottom: -30px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 320px) {
  .side .panels, .side .dissertationOn-lookbook-body {
    margin-bottom: 0;
  }
}
.panels .btn-more, .dissertationOn-lookbook-body .btn-more {
  clear: both;
  width: 265px;
  margin: auto;
}
@media screen and (max-width: 320px) {
  .panels .btn-more, .dissertationOn-lookbook-body .btn-more {
    width: 100%;
  }
}
.panels .btn-more a, .dissertationOn-lookbook-body .btn-more a {
  clear: both;
}

.panels-item, .archives-item, .dissertationOn-lookbook-body-item, .collections-item {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  float: left;
  width: 25%;
  margin-bottom: 30px;
  padding-right: 1.587301587%;
}
.side .panels-item, .side .archives-item, .side .dissertationOn-lookbook-body-item, .side .collections-item {
  float: none;
  width: auto;
  padding-right: 0;
  /*
  @include mq-tb {
    width: 50%;
  }
  */
}
@media screen and (max-width: 768px) {
  .side .panels-item, .side .archives-item, .side .dissertationOn-lookbook-body-item, .side .collections-item {
    float: left;
    width: 33.33333333%;
    width: 50%;
    padding-right: 1.587301587%;
  }
}
.panels-visual .panels-item, .panels-visual .archives-item, .panels-visual .dissertationOn-lookbook-body-item, .panels-visual .collections-item {
  margin-bottom: 54px;
}
@media screen and (max-width: 320px) {
  .panels-visual .panels-item, .panels-visual .archives-item, .panels-visual .dissertationOn-lookbook-body-item, .panels-visual .collections-item {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .panels-item, .archives-item, .dissertationOn-lookbook-body-item, .collections-item {
    width: 33.33333333%;
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .panels-item, .archives-item, .dissertationOn-lookbook-body-item, .collections-item {
    width: 50%;
  }
}
.panels-item img, .archives-item img, .dissertationOn-lookbook-body-item img, .collections-item img {
  width: 100%;
}

.panels-item-icon {
  position: absolute;
  z-index: 30;
}
.panels-item-icon img {
  background: none !important;
}

.panels-item-thumbnail {
  margin-bottom: 12px;
}
.panels-item-thumbnail a {
  display: block;
  background: #FFF;
}
.panels-item-thumbnail img {
  background: #FFF;
}

.panels-item-category {
  margin-bottom: 6px;
  font-size: 13px;
  font-size: 1.3rem;
}
.panels-item-newsletter .panels-item-category {
  margin-bottom: 26px;
}

.panels-item-category-upper {
  font-size: 10px;
  font-size: 1rem;
  font-weight: 400;
}
.panels-item-category-upper a {
  text-decoration: none;
}

.panels-item-category-external {
  padding-right: 30px;
  background: url(../img/icn_blank_01.png) scroll no-repeat right 3px;
}
.panels-item-category-external .panels-item-category-external-url {
  display: block;
  font-size: 10px;
  font-size: 1rem;
  font-weight: 400;
  color: #A0A0A0;
}

.panels-item-title {
  margin-bottom: 3px;
  font-size: 10px;
  font-size: 1rem;
  font-weight: 400;
}

.panels-item-date {
  font-size: 10px;
  font-size: 1rem;
  font-weight: 300;
  color: #a0a0a0;
}

.panels-visual-logo {
  position: absolute;
  z-index: 99;
  right: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}
@media screen and (max-width: 320px) {
  .panels-visual-logo {
    position: static;
    width: auto !important;
  }
}

@media screen and (max-width: 320px) {
  .panels-visual-logo-image {
    display: none;
  }
}

.panels-visual-logo-text {
  display: none;
}
@media screen and (max-width: 320px) {
  .panels-visual-logo-text {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
  }
  .panels-visual-logo-text span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
  }
}

.panels-item-concept,
.panels-item-collection {
  width: 50%;
}
@media screen and (max-width: 600px) {
  .panels-item-concept,
  .panels-item-collection {
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .panels-item-concept,
  .panels-item-collection {
    margin-bottom: 30px !important;
  }
}
.panels-item-concept > a,
.panels-item-collection > a {
  position: relative;
  display: block;
}
.panels-item-concept .panels-item-thumbnail,
.panels-item-collection .panels-item-thumbnail {
  margin-bottom: 0;
}
.panels-item-concept .panels-item-thumbnail ul,
.panels-item-collection .panels-item-thumbnail ul {
  list-style-type: none;
  padding: 0;
}
.panels-item-concept .panels-item-thumbnail li,
.panels-item-collection .panels-item-thumbnail li {
  padding: 0;
}
@media screen and (max-width: 320px) {
  .panels-item-concept .panels-item-thumbnail,
  .panels-item-collection .panels-item-thumbnail {
    margin-bottom: 12px;
  }
}

.panels-item-dissertation,
.panels-item-lookbook {
  position: relative;
  width: 50%;
}
.panels-item-dissertation a,
.panels-item-lookbook a {
  position: relative;
  display: block;
  background: #FFF;
}
@media screen and (max-width: 320px) {
  .panels-item-dissertation a,
  .panels-item-lookbook a {
    background: none;
  }
}
@media screen and (max-width: 600px) {
  .panels-item-dissertation,
  .panels-item-lookbook {
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .panels-item-dissertation,
  .panels-item-lookbook {
    margin-bottom: 30px !important;
  }
}
.panels-item-dissertation .panels-item-thumbnail,
.panels-item-lookbook .panels-item-thumbnail {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media screen and (max-width: 320px) {
  .panels-item-dissertation .panels-item-thumbnail,
  .panels-item-lookbook .panels-item-thumbnail {
    margin-bottom: 12px;
  }
}
.panels-item-dissertation .panels-item-thumbnail ul,
.panels-item-lookbook .panels-item-thumbnail ul {
  list-style-type: none;
  padding: 0;
}

.panels-item-first {
  display: none !important;
}
@media screen and (max-width: 600px) {
  .panels-item-first {
    display: inline-block !important;
  }
}

.panels-item-custom .panels-item-thumbnail {
  position: relative;
}
.panels-item-custom .panels-item-icon {
  top: 7.239819004%;
  left: 0;
  width: 16.949152542%;
  height: 9.049773755%;
}

.panels-item-webstore .panels-item-thumbnail {
  position: relative;
}
.panels-item-webstore .panels-item-icon {
  top: 5.49451%;
  left: 4.11523%;
  width: 6.98889%;
  height: 7.93162%;
}
@media screen and (max-width: 600px) {
  .panels-item-webstore .panels-item-icon {
    width: 10.48333%;
    height: 11.89743%;
  }
}
.panels-item-webstore .panels-item-icon img {
  width: 100%;
  height: auto;
}

body.dissertations .panels-item .panels-item-icon, body.dissertations .archives-item .panels-item-icon, body.dissertations .dissertationOn-lookbook-body-item .panels-item-icon, body.dissertations .collections-item .panels-item-icon,
.panels-item-dissertations .panels-item-icon {
  top: 5.49451%;
  left: 4.11523%;
  width: 10.14403%;
  height: 8.40659%;
}
@media screen and (max-width: 600px) {
  body.dissertations .panels-item .panels-item-icon, body.dissertations .archives-item .panels-item-icon, body.dissertations .dissertationOn-lookbook-body-item .panels-item-icon, body.dissertations .collections-item .panels-item-icon,
  .panels-item-dissertations .panels-item-icon {
    width: 15.21605%;
    height: 12.60989%;
  }
}
body.dissertations .panels-item .panels-item-icon img, body.dissertations .archives-item .panels-item-icon img, body.dissertations .dissertationOn-lookbook-body-item .panels-item-icon img, body.dissertations .collections-item .panels-item-icon img,
.panels-item-dissertations .panels-item-icon img {
  width: 100%;
  height: auto;
}

.panels-item-indigo .panels-item-thumbnail {
  position: relative;
  background: #fff url(../img/loading.gif) scroll no-repeat center center;
}
.panels-item-indigo .panels-item-thumbnail a {
  background: none;
  -webkit-transition: background 2s;
  -moz-transition: background 2s;
  -o-transition: background 2s;
  -ms-transition: background 2s;
  transition: background 2s;
}
.panels-item-indigo .panels-item-thumbnail a:hover {
  background: #FFF;
  -webkit-transition: background 0;
  -moz-transition: background 0;
  -o-transition: background 0;
  -ms-transition: background 0;
  transition: background 0;
}
.panels-item-indigo .panels-item-icon {
  top: 6.334841628%;
  left: 4.745762711%;
  width: 15.593220338%;
  height: 11.764705882%;
}
@media screen and (max-width: 320px) {
  .top .panels-item-indigo {
    height: auto !important;
    /*TEMP*/
  }
}

.panels-item-indigo-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/cvr_indigo.png) scroll no-repeat 0 0;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
.ie .panels-item-indigo-frame {
  display: none;
}

@media screen and (max-width: 320px) {
  .panels-item-newsletter {
    clear: both;
    float: none;
    width: 100%;
    height: auto !important;
  }
  .panels-item .panels-item-newsletter, .archives-item .panels-item-newsletter, .dissertationOn-lookbook-body-item .panels-item-newsletter, .collections-item .panels-item-newsletter {
    padding-top: 30px;
  }
}

.panels-item-newsletter-inner {
  padding: 8px 15px 0;
  border-left: 1px solid #D7D7D7;
}

@media screen and (max-width: 320px) {
  .panels-item-utility {
    clear: both;
    float: none;
    width: 100%;
    height: auto !important;
  }
}

.panels-item-utility-inner {
  /*min-height: 170px;*/
  padding: 0 15px 0 9px;
  border-left: 1px solid #D7D7D7;
}

.panels-item-utility-list {
  margin-bottom: 25px;
  padding: 0;
  list-style-type: none;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}

.panels-item-utility-list-item {
  margin-bottom: 6px;
}
.panels-item-utility-list-item a {
  display: block;
  padding: 3px 6px;
}

.pager {
  clear: both;
  padding: 22px 0 0;
  border-top: 1px solid #D7D7D7;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 600px) {
  .pager {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 320px) {
  .pager {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.pager a {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 0 12px;
}
@media screen and (max-width: 600px) {
  .pager a {
    padding: 0 8px;
  }
}
@media screen and (max-width: 320px) {
  .pager a {
    padding: 0 7px;
  }
}
.pager a.pager-next {
  padding-left: 20px;
  background: url(../img/icn_pager_next.png) scroll no-repeat left center;
  -moz-background-size: 8px 10px;
  -o-background-size: 8px 10px;
  -webkit-background-size: 8px 10px;
  background-size: 8px 10px;
}
@media screen and (max-width: 600px) {
  .pager a.pager-next {
    padding-right: 15px;
  }
}
@media screen and (max-width: 320px) {
  .pager a.pager-next {
    padding-left: 14px;
  }
}
.pager a.pager-prev {
  padding-right: 20px;
  background: url(../img/icn_pager_prev.png) scroll no-repeat right center;
  -moz-background-size: 8px 10px;
  -o-background-size: 8px 10px;
  -webkit-background-size: 8px 10px;
  background-size: 8px 10px;
}
@media screen and (max-width: 600px) {
  .pager a.pager-prev {
    padding-right: 15px;
  }
}
@media screen and (max-width: 320px) {
  .pager a.pager-prev {
    padding-right: 14px;
  }
}
.pager span {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 0 12px;
}
@media screen and (max-width: 600px) {
  .pager span {
    padding: 0 8px;
  }
}
@media screen and (max-width: 320px) {
  .pager span {
    padding: 0 7px;
  }
}
.pager span {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 0 12px;
}
.pager .current_page {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 0 12px;
  color: #898989;
}
@media screen and (max-width: 600px) {
  .pager .current_page {
    padding: 0 8px;
  }
}
@media screen and (max-width: 320px) {
  .pager .current_page {
    padding: 0 7px;
  }
}

.archives {
  padding: 24px 0 20px;
  border-top: 1px solid #D7D7D7;
  border-bottom: 1px solid #D7D7D7;
}
@media screen and (max-width: 600px) {
  .archives {
    margin-bottom: 20px;
  }
}

.archives-title {
  margin-bottom: 10px;
  font-size: 13px;
  font-size: 1.3rem;
  color: #A0A0A0;
}

@media screen and (max-width: 768px) {
  .archives-item {
    width: 25% !important;
  }
}
@media screen and (max-width: 600px) {
  .archives-item {
    width: 50% !important;
  }
}

.archives-item-image {
  margin-bottom: 10px;
}
.archives-item-image img {
  background: #FFF;
}

.archives-item-title {
  margin-bottom: 10px;
}
.archives-item-title:last-child {
  margin-bottom: 0;
}

.archives-item-text {
  font-size: 10px;
  font-size: 1rem;
}

.archives-more {
  clear: both;
  overflow: hidden;
}

.newsletter p {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}

.newsletter-input {
  margin-bottom: 10px;
  padding-right: 20px;
}
.newsletter-input input {
  width: 100%;
}

.modal-content {
  max-width: 600px;
}
.modal-content * {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 400;
}
.modal-content h1 {
  margin: 0 0 30px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
}
.modal-content h2 {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
}
.modal-content p {
  margin: 0 0 10px;
}
.modal-content p:last-child {
  margin-bottom: 0;
}
.modal-content .btn-close {
  max-width: 50%;
  margin: 30px auto 0;
}
@media screen and (max-width: 600px) {
  .modal-content .btn-close {
    max-width: none;
  }
}

.modal-text {
  position: relative;
  overflow: hidden;
}

#to_valued_customer-sent .modal-text p a {
  text-decoration: underline;
}
#to_valued_customer-sent .modal-text p a:hover {
  text-decoration: none;
}

.movie {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.form {
  position: relative;
  padding-top: 35px;
}
@media screen and (max-width: 600px) {
  .form {
    padding-top: 0;
  }
}
.form .required {
  color: #d60000;
}
.form .btn-submit {
  width: 265px;
  margin: auto;
}
@media screen and (max-width: 320px) {
  .form .btn-submit {
    width: 100%;
  }
}
.form .btn-top {
  width: 265px;
  margin: auto;
}
@media screen and (max-width: 320px) {
  .form .btn-top {
    width: 100%;
  }
}

.form-review {
  margin-bottom: 20px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
}

.form-misentered {
  margin-bottom: 20px;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
}

.form-confirmation {
  margin-bottom: 20px;
  font-size: 13px;
  font-size: 1.3rem;
}
.form-confirmation th {
  width: 170px;
  padding: 20px 0 10px;
  border-bottom: 1px solid #D7D7D7;
  vertical-align: top;
  font-weight: 500;
  color: #A0A0A0;
}
@media screen and (max-width: 600px) {
  .form-confirmation th {
    width: auto;
    padding-right: 20px;
  }
}
@media screen and (max-width: 320px) {
  .form-confirmation th {
    display: block;
    border-bottom: none;
  }
}
.form-confirmation td {
  padding: 20px 0 10px;
  border-bottom: 1px solid #D7D7D7;
  font-weight: 400;
}
@media screen and (max-width: 320px) {
  .form-confirmation td {
    display: block;
    padding-top: 0;
  }
}
.form-confirmation tr:last-child th {
  padding-bottom: 30px;
}
@media screen and (max-width: 320px) {
  .form-confirmation tr:last-child th {
    padding-bottom: 10px;
  }
}
.form-confirmation tr:last-child td {
  padding-bottom: 30px;
}

.form-back {
  position: absolute;
  bottom: .5em;
  left: 0;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .form-back {
    position: static;
    margin-top: 30px;
  }
}
.form-back a {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 0 0 0 20px;
  background: url(../img/icn_arrow_left_01.png) scroll no-repeat left center;
}

.footer .panel {
  margin-bottom: 0;
}

.copyright {
  text-align: right;
}
.copyright * {
  font-size: 10px;
  font-size: 1rem;
  font-weight: 300;
  color: #A0A0A0;
}

.entry {
  margin-bottom: 30px;
  font-weight: 400;
}

@media screen and (max-width: 320px) {
  .entry-image {
    margin-bottom: 15px !important;
  }
}

.entry-caption {
  margin-top: -5px;
  font-size: 10px;
  font-size: 1rem;
}
.entry-image .entry-caption {
  margin: 12px 0;
  text-align: right;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 600px) {
  .entry-image .entry-caption {
    text-align: center;
  }
}

.btn-purchase {
  float: right;
  width: 265px;
}
.btn-purchase a {
  position: relative;
}
.btn-purchase a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  width: 20px;
  height: 18px;
  margin-top: -9px;
  background: url(../img/icn_webstore_02.png) scroll no-repeat 0 0;
  background-size: 20px auto;
}
.btn-purchase a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 14px;
  height: 10px;
  margin-top: -5px;
  background: url(../img/icn_blank_03.png) scroll no-repeat 0 0;
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  -o-transition: opacity .5s;
  -ms-transition: opacity .5s;
  transition: opacity .5s;
  opacity: 1;
}
.btn-purchase a:hover::after {
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  -o-transition: opacity .5s;
  -ms-transition: opacity .5s;
  transition: opacity .5s;
  opacity: .25;
}
@media screen and (max-width: 600px) {
  .btn-purchase {
    width: 100%;
  }
}

.entry-col {
  margin-bottom: 30px;
}
.entry-col * {
  font-size: 12px;
  font-size: 1.2rem;
}
.entry-col p {
  margin-bottom: 15px;
}
.entry-col img {
  width: 100%;
  height: auto;
}
.entry-col hr {
  display: block;
  height: auto;
  margin: 0 0 15px;
  border: none;
}
.entry-col hr::before {
  content: "* * *";
  display: block;
  text-align: center;
  color: #1b1b1b;
}
.entry-col .entry-col-child .entry-col-left {
  float: left !important;
  width: 49.5894909% !important;
}
.entry-col .entry-col-child .entry-col-right {
  float: right !important;
  width: 49.5894909% !important;
}
.entry-col .entry-col-child .entry-col-center {
  float: none !important;
  width: 49.5895% !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.entry-note {
  margin-top: 30px;
  font-size: 10px;
  font-size: 1rem;
}

.entry-fullwidth .entry-image {
  width: 100%;
  margin-bottom: 30px;
}
.entry-fullwidth .entry-image img {
  width: 100%;
}
.entry-fullwidth .entry-col-left {
  float: left;
  width: 49.2332526%;
}
@media screen and (max-width: 600px) {
  .entry-fullwidth .entry-col-left {
    float: none;
    width: 100%;
  }
}
.entry-fullwidth .entry-col-right {
  float: right;
  width: 49.2332526%;
}
@media screen and (max-width: 600px) {
  .entry-fullwidth .entry-col-right {
    float: none;
    width: 100%;
  }
}
.entry-fullwidth .entry-col-center {
  width: 49.2333%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .entry-fullwidth .entry-col-center {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.entry-largish .entry-image {
  float: left;
  width: 66.1290322%;
}
@media screen and (max-width: 600px) {
  .entry-largish .entry-image {
    float: none;
    width: 100%;
  }
}
.entry-largish .entry-image img {
  width: 100%;
}
.entry-largish .entry-col {
  float: right;
  width: 32.2580645%;
}
@media screen and (max-width: 600px) {
  .entry-largish .entry-col {
    float: none;
    width: 100%;
  }
}

.entry-half .entry-image {
  float: left;
  width: 49.1935483%;
}
@media screen and (max-width: 600px) {
  .entry-half .entry-image {
    float: none;
    width: 100%;
  }
}
.entry-half .entry-image img {
  width: 100%;
}
.entry-half .entry-col {
  float: right;
  width: 49.1935483%;
}
@media screen and (max-width: 600px) {
  .entry-half .entry-col {
    float: none;
    width: 100%;
  }
}

.news-nav {
  position: absolute;
  top: 0;
  right: -34.054054%;
  width: 23.9189189%;
  padding: 0 0 0 12px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 1px solid #D7D7D7;
}
@media screen and (max-width: 768px) {
  .news-nav {
    overflow: hidden;
    position: static;
    width: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 15px;
    padding-left: 0;
    border-top: 1px solid #D7D7D7;
    border-left: none;
  }
}

.news-nav-title {
  margin-bottom: 18px;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .news-nav-title {
    display: none;
  }
}

.news-nav-links {
  margin-bottom: 30px;
  margin-left: -3px;
  padding: 0;
  list-style-type: none;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .news-nav-links {
    float: left;
    margin: 0;
  }
}

.news-nav-links-item {
  margin-bottom: 12px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .news-nav-links-item {
    float: left;
    margin-right: 50px;
  }
}
.news-nav-links-item a {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 0 3px;
}
.news-nav-links-item.is-current a {
  background: #fff;
  color: #A7A7A7;
}

.news-nav-links-item-count {
  color: #a0a0a0;
}

@media screen and (max-width: 768px) {
  .news-nav-select {
    margin-top: -5px;
    padding-left: 1px;
    float: left;
  }
}

.panels-news {
  margin-right: -2.116402116%;
}
.panels-news .panels-item, .panels-news .archives-item, .panels-news .dissertationOn-lookbook-body-item, .panels-news .collections-item {
  width: 33.33333333%;
}
@media screen and (max-width: 600px) {
  .panels-news .panels-item, .panels-news .archives-item, .panels-news .dissertationOn-lookbook-body-item, .panels-news .collections-item {
    width: 50%;
  }
}
.panels-news .panels-item-title {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
}
.panels-news .panels-item-date {
  margin-bottom: 3px;
}
.panels-news .panels-item-news-category {
  font-size: 10px;
  font-size: 1rem;
  font-weight: 400;
}

.panels-item-thumbnail-only {
  float: none;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 74.91524237%;
  text-align: center;
}
.panels-item-thumbnail-only span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.panels-item-thumbnail-only img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
}
.panels-item-thumbnail-only.panels-item-thumbnail-only-square img {
  left: 50%;
  margin-left: -37.5%;
}

.panels-item-thumbnail-list {
  overflow: hidden;
  list-style-type: none;
  padding: 0;
}

.panels-item-thumbnail-list-item {
  overflow: hidden;
  width: 50%;
  float: left;
}

.panels-news-thumbnail-square img {
  width: 149.324324324%;
  height: auto;
}

.release-gallery img {
  width: 100%;
  height: auto;
}

.release-gallery-look {
  float: left;
  padding-right: 2px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 320px) {
  .release-gallery-look {
    float: none;
    width: 100% !important;
    margin-bottom: 4px;
    padding: 0;
  }
}

.release-gallery-products {
  float: right;
  padding: 0 0 0 2px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style-type: none;
}
@media screen and (max-width: 320px) {
  .release-gallery-products {
    float: none;
    width: 100% !important;
    padding: 0;
  }
}

.release-gallery-products-item {
  margin-bottom: 4px;
  text-align: center;
  overflow: hidden;
}
.release-gallery-products-item span {
  display: block;
  background: #FFF;
}
.release-gallery-products-item img {
  width: inherit;
  max-width: 75.0819672%;
}

.release-gallery-info {
  clear: both;
  margin-bottom: 30px;
  border-bottom: 1px solid #D7D7D7;
}
.release-gallery-info * {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 400;
}
.release-gallery-info dd {
  margin: 0;
}

.release-gallery-info-name {
  font-weight: 300;
  color: #a0a0a0;
}

.release-gallery-info-item {
  padding: 10px 4px;
  border-top: 1px solid #D7D7D7;
}
.release-gallery-info-item:first-child {
  border-top: none;
}
@media screen and (max-width: 320px) {
  .release-gallery-info-look .release-gallery-info-item {
    border-bottom: 1px solid #D7D7D7;
  }
}

.release-gallery-info-look {
  float: left;
  padding-right: 0.2162162%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 320px) {
  .release-gallery-info-look {
    float: none;
    width: 100% !important;
    padding: 0;
  }
}

.release-gallery-info-look-list dt {
  float: left;
  clear: left;
  min-width: 7.5em;
  white-space: nowrap;
}
.release-gallery-info-look-list dd {
  overflow: hidden;
}

.release-gallery-info-products {
  float: right;
  padding-right: 0.2162162%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 320px) {
  .release-gallery-info-products {
    float: none;
    width: 100% !important;
    padding: 0;
  }
}

.release-gallery-text {
  margin-top: 30px;
}
.release-gallery-text * {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}
.release-gallery-text h2 {
  margin-bottom: 15px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
}
.release-gallery-text h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 500;
}
.release-gallery-text p {
  margin-bottom: 20px;
}
.release-gallery-text strong {
  font-weight: 500;
}

.release-gallery-horizontal-3 .release-gallery-look,
.release-gallery-horizontal-3 .release-gallery-info-look {
  width: 50%;
}
.release-gallery-horizontal-3 .release-gallery-products,
.release-gallery-horizontal-3 .release-gallery-info-products {
  width: 50%;
}

.release-gallery-horizontal-4 .release-gallery-look,
.release-gallery-horizontal-4 .release-gallery-info-look {
  width: 60%;
}
.release-gallery-horizontal-4 .release-gallery-products,
.release-gallery-horizontal-4 .release-gallery-info-products {
  width: 40%;
}

.release-gallery-horizontal-5 .release-gallery-look,
.release-gallery-horizontal-5 .release-gallery-info-look {
  width: 66.7027027%;
}
.release-gallery-horizontal-5 .release-gallery-products,
.release-gallery-horizontal-5 .release-gallery-info-products {
  width: 33.1891891%;
}

.release-gallery-vertical-3 .release-gallery-look, .release-gallery-vertical-4 .release-gallery-look, .release-gallery-vertical-5 .release-gallery-look,
.release-gallery-vertical-3 .release-gallery-info-look,
.release-gallery-vertical-4 .release-gallery-info-look,
.release-gallery-vertical-5 .release-gallery-info-look {
  float: none;
  width: 100%;
  padding-right: 0 !important;
}
.release-gallery-vertical-3 .release-gallery-look, .release-gallery-vertical-4 .release-gallery-look, .release-gallery-vertical-5 .release-gallery-look {
  margin-bottom: 4px;
}
.release-gallery-vertical-3 .release-gallery-look-products, .release-gallery-vertical-4 .release-gallery-look-products, .release-gallery-vertical-5 .release-gallery-look-products {
  position: relative;
  height: 0;
  padding-bottom: 66.7748917%;
  background: #FFF;
  text-align: center;
}
.release-gallery-vertical-3 .release-gallery-look-products img, .release-gallery-vertical-4 .release-gallery-look-products img, .release-gallery-vertical-5 .release-gallery-look-products img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto !important;
  height: 100% !important;
  margin-left: -33.3513513%;
}
.release-gallery-vertical-3 .release-gallery-products, .release-gallery-vertical-4 .release-gallery-products, .release-gallery-vertical-5 .release-gallery-products,
.release-gallery-vertical-3 .release-gallery-info-products,
.release-gallery-vertical-4 .release-gallery-info-products,
.release-gallery-vertical-5 .release-gallery-info-products {
  float: none;
  width: auto;
  margin: 0 -2px;
  padding: 0 !important;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
@media screen and (max-width: 320px) {
  .release-gallery-vertical-3 .release-gallery-products, .release-gallery-vertical-4 .release-gallery-products, .release-gallery-vertical-5 .release-gallery-products,
  .release-gallery-vertical-3 .release-gallery-info-products,
  .release-gallery-vertical-4 .release-gallery-info-products,
  .release-gallery-vertical-5 .release-gallery-info-products {
    margin: 0;
  }
}
.release-gallery-vertical-3 .release-gallery-products-item, .release-gallery-vertical-4 .release-gallery-products-item, .release-gallery-vertical-5 .release-gallery-products-item {
  float: left;
  width: 50%;
  margin-bottom: 0 !important;
  padding: 0 2px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.release-gallery-vertical-3 .release-gallery-products-item:last-child, .release-gallery-vertical-4 .release-gallery-products-item:last-child, .release-gallery-vertical-5 .release-gallery-products-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 320px) {
  .release-gallery-vertical-3 .release-gallery-products-item, .release-gallery-vertical-4 .release-gallery-products-item, .release-gallery-vertical-5 .release-gallery-products-item {
    float: none;
    width: 100%;
    margin-bottom: 4px !important;
    padding: 0;
  }
}
.release-gallery-vertical-3 .release-gallery-info-products, .release-gallery-vertical-4 .release-gallery-info-products, .release-gallery-vertical-5 .release-gallery-info-products {
  margin: 0;
  border-top: 1px solid #D7D7D7;
}
@media screen and (max-width: 320px) {
  .release-gallery-vertical-3 .release-gallery-info-products, .release-gallery-vertical-4 .release-gallery-info-products, .release-gallery-vertical-5 .release-gallery-info-products {
    border-top: none;
  }
}
.release-gallery-vertical-3 .release-gallery-info-products .release-gallery-info-item, .release-gallery-vertical-4 .release-gallery-info-products .release-gallery-info-item, .release-gallery-vertical-5 .release-gallery-info-products .release-gallery-info-item {
  float: left;
  width: 50%;
  padding: 10px 4px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
}
@media screen and (max-width: 320px) {
  .release-gallery-vertical-3 .release-gallery-info-products .release-gallery-info-item, .release-gallery-vertical-4 .release-gallery-info-products .release-gallery-info-item, .release-gallery-vertical-5 .release-gallery-info-products .release-gallery-info-item {
    float: none;
    width: 100%;
    border-bottom: 1px solid #D7D7D7;
  }
  .release-gallery-vertical-3 .release-gallery-info-products .release-gallery-info-item:last-child, .release-gallery-vertical-4 .release-gallery-info-products .release-gallery-info-item:last-child, .release-gallery-vertical-5 .release-gallery-info-products .release-gallery-info-item:last-child {
    border-bottom: none;
  }
}

.release-gallery-vertical-4 .release-gallery-products-item {
  width: 33.3333333%;
}
@media screen and (max-width: 320px) {
  .release-gallery-vertical-4 .release-gallery-products-item {
    width: 100%;
  }
}
.release-gallery-vertical-4 .release-gallery-info-products .release-gallery-info-item {
  width: 33.3333333%;
}
@media screen and (max-width: 320px) {
  .release-gallery-vertical-4 .release-gallery-info-products .release-gallery-info-item {
    width: 100%;
  }
}

.release-gallery-vertical-5 .release-gallery-products-item {
  width: 25%;
}
@media screen and (max-width: 320px) {
  .release-gallery-vertical-5 .release-gallery-products-item {
    width: 100%;
  }
}
.release-gallery-vertical-5 .release-gallery-info-products .release-gallery-info-item {
  width: 25%;
}
@media screen and (max-width: 320px) {
  .release-gallery-vertical-5 .release-gallery-info-products .release-gallery-info-item {
    width: 100%;
  }
}

.release-gallery-singular {
  margin-bottom: 30px;
}
.release-gallery-singular .release-gallery-image {
  text-align: center;
}

.release-gallery-singular-square .release-gallery-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.release-subsection {
  margin-bottom: 30px;
}

.release-subsection-title {
  margin-bottom: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}
.release-perchase .release-subsection-title {
  vertical-align: middle;
}
.release-perchase .release-subsection-title::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  width: 22px;
  height: 20px;
  margin-right: 5px;
  background: url(../img/icn_webstore_01.png) scroll no-repeat 0 0;
  background-size: 20px auto;
}

.release-subsection-list {
  margin-bottom: 15px;
  padding: 0;
  list-style-type: none;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}
.release-subsection-list:last-child {
  margin-bottom: 0;
}
.release-subsection-list a:link {
  text-decoration: underline;
}
.release-subsection-list a:hover, .release-subsection-list a:active {
  text-decoration: none;
}
.release-perchase .release-subsection-list a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  width: 14px;
  height: 10px;
  margin-left: 7px;
  background: url(../img/icn_blank_02.png) scroll no-repeat 0 0;
}

.release-subsection-number {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  min-width: 8.5em;
  margin-right: 1em;
}
@media screen and (max-width: 600px) {
  .release-subsection-number {
    display: block;
    margin-right: 0;
    margin-top: 10px;
  }
}

.release-subsection-note {
  margin-top: 15px;
  font-size: 11px;
  font-size: 1.1rem;
}
.release-subsection-note a:link {
  text-decoration: underline;
}
.release-subsection-note a:hover, .release-subsection-note a:active {
  text-decoration: none;
}

.dissertationOn-lookbook {
  margin-top: 18%;
  margin-bottom: 30px;
}

.dissertationOn-lookbook-title {
  margin-bottom: 10px;
  font-size: 13px;
  font-size: 1.3rem;
}

.dissertationOn-lookbook-body-item {
  float: none !important;
}
.dissertationOn-lookbook-body-item img {
  background: #FFF;
}

.lookbook-slide a:hover {
  -webkit-transition-property: none;
  -moz-transition-property: none;
  -o-transition-property: none;
  -ms-transition-property: none;
  transition-property: none;
}
.lookbook-slide a:hover img {
  -webkit-transition-property: none;
  -moz-transition-property: none;
  -o-transition-property: none;
  -ms-transition-property: none;
  transition-property: none;
  opacity: 1;
}

.lookbook-latest {
  display: table;
  width: 100%;
  margin-bottom: 30px;
  padding: 0;
  list-style-type: none;
}
@media screen and (max-width: 480px) {
  .lookbook-latest {
    display: block;
  }
}

.lookbook-latest-item {
  display: table-cell;
  width: 50%;
  padding: 0 5px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  .lookbook-latest-item {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
.lookbook-latest-item img {
  background: #FFF;
}
@media screen and (max-width: 480px) {
  .lookbook-latest-item img {
    width: 100% !important;
    height: auto;
  }
}

.lookbook-latest-only {
  width: 50%;
  margin: 0 auto 30px;
}
@media screen and (max-width: 480px) {
  .lookbook-latest-only {
    width: 100%;
  }
}
.lookbook-latest-only .lookbook-latest-item {
  width: auto;
}

.lookbook-latest-item-vertical img {
  width: 75%;
}
@media screen and (max-width: 480px) {
  .lookbook-latest-item-vertical img {
    width: 100%;
  }
}

.lookbook-latest-item-horizontal img {
  width: 100%;
}

.lookbook-slide-visual {
  margin-bottom: 30px;
  height: 600px;
}
@media screen and (max-width: 320px) {
  .lookbook-slide-visual {
    height: auto !important;
  }
}

.lookbook-slide-visual-inner {
  overflow: hidden;
  height: 600px;
  padding: 0;
  list-style-type: none;
  white-space: nowrap;
  display: none;
}

.lookbook-slide-visual-item {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  vertical-align: top;
  cursor: pointer;
  opacity: .2;
}
@media screen and (max-width: 320px) {
  .lookbook-slide-visual-item {
    opacity: 1;
  }
}
.lookbook-slide-visual-item.is-current {
  opacity: 1;
  cursor: default;
}
.lookbook-slide-visual-item.is-current a {
  pointer-events: none;
}
.lookbook-slide-visual-item a {
  display: block;
}
.lookbook-slide-visual-item a:link, .lookbook-slide-visual-item a:visited, .lookbook-slide-visual-item a:active, .lookbook-slide-visual-item a:hover {
  overflow: hidden;
  outline: none;
}
.lookbook-slide-visual-item span {
  display: table-cell;
  width: 680px;
  height: 600px;
  text-align: center;
  vertical-align: middle;
}
.lookbook-slide-visual-item img.horizontal {
  width: auto;
  height: 600px;
}
.lookbook-slide-visual-item img.vertical {
  width: 600px;
  height: auto;
}

.lookbook-slide-thumbnail {
  position: relative;
  margin-bottom: 15px;
  padding: 10px 0;
  border-top: 1px solid #D7D7D7;
  border-bottom: 1px solid #D7D7D7;
  overflow: hidden;
}
.lookbook-slide-thumbnail::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 40px;
  height: 60px;
  background: url(../../lookbook/img/cvr_pager_01.png) scroll no-repeat 0 0;
  z-index: 999;
  pointer-events: none;
}
.lookbook-slide-thumbnail::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: -2px;
  width: 40px;
  height: 60px;
  background: url(../../lookbook/img/cvr_pager_02.png) scroll no-repeat 0 0;
  z-index: 999;
  pointer-events: none;
}

.lookbook-slide-thumbnail-inner {
  overflow: hidden;
  height: 60px;
  padding: 0;
  list-style-type: none;
  white-space: nowrap;
}

.lookbook-slide-thumbnail-item {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  float: left;
  padding-right: 2px;
  background: #f1f1f1;
  cursor: pointer;
  opacity: .2;
}
.lookbook-slide-thumbnail-item img.horizontal {
  width: auto;
  height: 60px;
}
.lookbook-slide-thumbnail-item img.vertical {
  width: 60px;
  height: auto;
}
.lookbook-slide-thumbnail-item.is-current {
  opacity: 1;
}
.lookbook-slide-thumbnail-item:hover {
  opacity: 0.8;
}
.lookbook-slide-thumbnail-item a {
  display: block;
}
.lookbook-slide-thumbnail-item a:link, .lookbook-slide-thumbnail-item a:visited, .lookbook-slide-thumbnail-item a:active, .lookbook-slide-thumbnail-item a:hover {
  overflow: hidden;
  outline: none;
}
.lookbook-slide-thumbnail-item span {
  display: table-cell;
  width: 60px;
  height: 60px;
  text-align: center;
  vertical-align: middle;
}

.lookbook-slide-spec-wrapper {
  padding-top: 10px;
  padding-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .lookbook-slide-spec-wrapper {
    padding-bottom: 0px;
  }
}
@media screen and (max-width: 480px) {
  .lookbook-slide-spec-wrapper {
    padding-bottom: 0px;
  }
}

.lookbook-slide-spec {
  display: none;
}

.lookbook-slide-spec-item {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 400;
}
.lookbook-slide-spec-item dt {
  color: #A0A0A0;
  display: none;
}
.lookbook-slide-spec-item dd {
  margin: 0;
}
.lookbook-slide-spec-item dd * {
  font-size: 11px;
  font-size: 1.1rem;
}
.lookbook-slide-spec-item dd p {
  margin-bottom: 8px;
}
.lookbook-slide-spec-item dd p:last-child {
  margin-bottom: 0;
}
.lookbook-slide-spec-item dd span {
  color: #888;
}

.bx-controls {
  margin: 30px 0;
  padding: 15px 0 8px;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
}

@media screen and (max-width: 320px) {
  .bx-wrapper {
    margin-bottom: 20px !important;
  }
}
.bx-wrapper .bx-pager {
  text-align: center;
}
.bx-wrapper .bx-pager .bx-pager-item {
  margin-bottom: 7px;
  display: inline-block;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #fff;
  border-radius: 5px;
  display: block;
  height: 10px;
  margin: 0 5px;
  outline: 0 none;
  text-indent: -9999px;
  width: 10px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #000000;
}

@media screen and (max-width: 600px) {
  .contact .contents {
    padding-bottom: 40px;
  }
}
.contact h1 {
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
}
.contact .contents-body {
  max-width: 610px;
  margin: auto;
}

.contact-about {
  margin-bottom: 20px;
}

.contact-email {
  margin-bottom: 20px;
}
.contact-email input {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contact-free {
  margin-bottom: 20px;
}
.contact-free textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contact-note {
  margin: 0 0 30px;
  font-weight: 400;
}

.contact-note-title {
  margin-bottom: 10px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #A0A0A0;
}

.contact-note-body {
  padding-left: 10px;
  border-left: 1px solid #D7D7D7;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}
.contact-note-body p {
  margin-bottom: 15px;
}
.contact-note-body p:last-child {
  margin-bottom: 0;
}

.form-complete {
  margin-bottom: 20px;
  padding-bottom: 45px;
  border-bottom: 1px solid #D7D7D7;
  text-align: center;
}
.form-complete p {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 400;
}
.form-complete p:first-child {
  font-weight: 500;
}
.form-complete p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .recruit .contents {
    padding-bottom: 40px;
  }
}
.recruit h1 {
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
}
.recruit .contents-body {
  max-width: 610px;
  margin: auto;
}
.recruit .contents-body .btn-entry {
  width: 265px;
  margin: auto;
}
@media screen and (max-width: 320px) {
  .recruit .contents-body .btn-entry {
    width: 100%;
  }
}

.recruit-lists {
  margin-bottom: 45px;
}

.recruit-lists-title {
  margin-bottom: 15px;
  font-weight: 700;
}

.recruit-lists-body {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 15px;
  font-weight: 400;
}

.recruit-lists-jobs {
  padding: 0;
  list-style-type: none;
}

.recruit-lists-jobs-item span {
  font-weight: 700;
}

.recruit-form {
  margin-top: 25px;
  border-top: 1px solid #d7d7d7;
}
.recruit-confirm .recruit-form {
  margin-top: 0;
  border-top: none;
}
@media screen and (max-width: 600px) {
  .recruit-lists + .recruit-form {
    padding-top: 20px;
  }
}

.recruit-form-title {
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
}

.recruit-form-lead {
  margin-bottom: 10px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}

.recruit-form-input {
  margin-bottom: 10px;
}
.recruit-form-input input,
.recruit-form-input textarea {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.recruit-form-input label {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  margin-right: 36px;
  font-weight: 400;
}
.recruit-form-input label input {
  margin-right: 5px;
}

.recruit-form-birth p {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 0 20px 0 10px;
  color: #A0A0A0;
}
@media screen and (max-width: 320px) {
  .recruit-form-birth p {
    display: block;
    padding-left: 0;
  }
}

.recruit-form-free textarea {
  height: 14em;
}

.recruit-confirm .recruit-form-free {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d7d7d7;
}

.about .contents, .littlecloudcoffee .contents {
  padding-bottom: 0;
}
@media screen and (max-width: 600px) {
  .about .contents, .littlecloudcoffee .contents {
    padding-bottom: 40px;
  }
}
.about h1, .littlecloudcoffee h1,
.about .contents-body,
.littlecloudcoffee .contents-body {
  max-width: 610px;
  margin: auto;
}

.about-item {
  padding: 30px 0;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .about-item {
    float: none;
    width: 100%;
    padding: 40px 0 0 !important;
  }
}
@media screen and (max-width: 320px) {
  .about-item {
    padding-top: 20px;
  }
}
.about-item p {
  margin-bottom: 20px;
  font-size: 12px;
  font-size: 1.2rem;
}
.about-item .about-item-title {
  margin-bottom: 18px;
  font-size: 16px;
  font-size: 1.6rem;
}
.about-item .about-item-established {
  font-size: 10px;
  font-size: 1rem;
  color: #A0A0A0;
}

.about-item-link a:link {
  text-decoration: underline;
}
.about-item-link a:hover {
  text-decoration: none;
}

.stockist-dealing {
  margin: -10px 0 30px;
  padding: 0;
  list-style-type: none;
}

.stockist-dealing-item {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  margin-right: 20px;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 400;
}

.stockist-note {
  font-weight: 400;
}

.stockist-nav {
  margin-bottom: 80px;
  padding: 0;
  list-style-type: none;
}

.stockist-nav-item {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  margin-right: 45px;
  font-weight: 400;
}
.stockist-nav-item a {
  display: block;
  padding-left: 16px;
  background: url(../img/icn_arrow_down_01.png) scroll no-repeat left center;
}

.stockist-item {
  margin-bottom: 50px;
}

.stockist-item-title {
  margin-bottom: 25px;
  font-size: 16px;
  font-size: 1.6rem;
}

.stockist-item-image {
  margin-bottom: 15px;
}

.stockist-item-info p {
  margin-bottom: 5px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}
.stockist-item-info .stockist-map {
  font-family: Garamond, Georgia, serif;
  font-size: 13px;
  font-size: 1.3rem;
}
.stockist-item-info a.sp-phonecall {
  text-decoration: underline;
}

.stockist-item-info-tax {
  font-size: 10px;
  font-size: 1rem;
}

.stockist-visvimstore-item-title,
.stockist-fil-item-title {
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 1.3rem;
}

.stockist-area.is-readyTo-toggle {
  margin-right: 0;
  border-bottom: 1px solid #D7D7D7;
}
.stockist-area.is-readyTo-toggle .stockist-area-item {
  margin-bottom: 0;
}
.stockist-area.is-readyTo-toggle .stockist-item-title {
  margin-bottom: 10px;
}

.stockist-area-item {
  width: 33.3333333%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 20px;
}
@media screen and (max-width: 600px) {
  .stockist-area-item {
    width: 50%;
  }
}
.is-readyTo-toggle .stockist-area-item {
  float: none !important;
  width: 100% !important;
  padding-right: 0 !important;
}

.stockist-area-item-title {
  margin-bottom: 15px;
  color: #A0A0A0;
}
.is-readyTo-toggle .stockist-area-item-title {
  position: relative;
  margin-bottom: 0;
  padding: 12px 0;
  border-top: 1px solid #D7D7D7;
  font-size: 16px;
  font-size: 1.6rem;
  cursor: pointer;
}
.is-readyTo-toggle .stockist-area-item-title::after {
  position: absolute;
  top: 50%;
  right: 12px;
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  margin-top: -4px;
  background: url(../img/icn_arrow_down_01.png) scroll no-repeat 0 0;
}
.is-readyTo-toggle .stockist-area-item-title.is-active::after {
  background-image: url(../img/icn_arrow_up_01.png);
}

.is-readyTo-toggle .stockist-area-item-body {
  padding-bottom: 20px;
}

.stockist-area-item-drop {
  padding: 0 0 0 10px;
  border-left: 1px solid #D7D7D7;
}
.stockist-area-item-drop * {
  font-size: 12px;
  font-size: 1.2rem;
}

.stockist-area-item-drop-title {
  font-weight: 700;
}

.stockist-area-item-drop-body {
  margin: 0;
  padding: 0 0 10px;
  font-weight: 400;
}
.stockist-area-item-drop:last-child .stockist-area-item-drop-body {
  padding-bottom: 0;
}

.sitepolicy .contents-title {
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
}
@media screen and (max-width: 600px) {
  .sitepolicy .contents-title {
    padding-top: 0;
  }
}
.sitepolicy .contents-body {
  max-width: 610px;
  margin: auto;
}
.sitepolicy .contents-body * {
  font-size: 12px;
  font-size: 1.2rem;
}
.sitepolicy .contents-body h2 {
  margin: 20px 0 12px;
  font-weight: 700;
}
.sitepolicy .contents-body p {
  margin-bottom: 20px;
  font-weight: 400;
}
.sitepolicy .contents-body img {
  vertical-align: middle;
}
.sitepolicy .contents-body a:link {
  text-decoration: underline;
}
.sitepolicy .contents-body a:hover {
  text-decoration: none;
}
.sitepolicy .mailto {
  border-bottom: 1px solid #1b1b1b;
}
.sitepolicy .mailto:hover {
  border-bottom: none;
}

.sitepolicy-email span {
  color: #999;
}

/*************************************************************
collections
*************************************************************/
.collections-item {
  margin-bottom: 1.587301587%;
}
@media screen and (max-width: 768px) {
  .collections-item {
    width: 25% !important;
  }
}
@media screen and (max-width: 600px) {
  .collections-item {
    width: 50% !important;
  }
}

.collections-item-title {
  opacity: 0;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 400;
}
.collections-item-title span {
  display: block;
  margin: 5px 20px 5px 10px;
}

.collections-list {
  padding-bottom: 30px;
}
.collections-list .panels, .collections-list .dissertationOn-lookbook-body {
  margin-top: 30px;
}

.collections-item-webstore {
  background: url(/jp/shared/img/icn_webstore_01.png) no-repeat;
  width: 22px;
  height: 20px;
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.pager-noborder {
  border: 0 !important;
}

.collections-detail .panels, .collections-detail .dissertationOn-lookbook-body {
  padding-bottom: 32px;
  border-bottom: 1px solid #D7D7D7;
}
@media screen and (max-width: 600px) {
  .collections-detail .panels, .collections-detail .dissertationOn-lookbook-body {
    padding-bottom: 15px;
  }
}

.collections-menu-pc {
  border-bottom: 1px solid #D7D7D7;
}
@media screen and (max-width: 768px) {
  .collections-menu-pc {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .collections-menu-pc {
    display: none;
  }
}
.collections-menu-pc dl {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
}
.collections-menu-pc dl dt {
  width: 88px;
  padding-top: 3px;
  float: left;
}
.collections-menu-pc dl .collections-menu-collections-title {
  height: 42px;
}
.collections-menu-pc dl .collections-menu-products-title {
  height: 105px;
}
.collections-menu-pc dl dd {
  float: left;
  margin: 0;
  padding: 0;
  padding-left: 15px;
}
.collections-menu-pc dl dd a {
  white-space: nowrap;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 10px;
}
.collections-menu-pc dl dd a.selected {
  background-color: #FFF;
  transition: none;
  opacity: 1;
  color: #A7A7A7;
}

.collections-menu-tb {
  display: none;
  border-bottom: 1px solid #D7D7D7;
}
@media screen and (max-width: 600px) {
  .collections-menu-tb {
    display: block;
  }
}
.collections-menu-tb select {
  width: 100%;
}
.collections-menu-tb .panels-item-search {
  width: 100% !important;
}
.collections-menu-tb .btn-search {
  width: 100% !important;
  margin-top: -15px !important;
}
.collections-menu-tb .btn-search a {
  background: #000 url(../img/icn_search.png) scroll no-repeat 14px center;
}
.collections-menu-tb .btn-search a:hover {
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  -o-transition: opacity .5s;
  -ms-transition: opacity .5s;
  transition: opacity .5s;
  opacity: .5;
}

span.collections-detail-linktotop {
  margin-left: 0.7em;
}
span.collections-detail-linktotop a {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 0.7em;
}

a.collections-detail-linktoback {
  font-size: 12px;
  font-size: 1.2rem;
  float: right;
  text-decoration: none !important;
  margin-top: 4px;
}

.panels-collections-detail {
  width: 50%;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .panels-collections-detail {
    width: 100%;
  }
}
.panels-collections-detail p {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 400;
}

.collections-detail-detailimages {
  position: absolute;
  top: 0;
  left: 0;
  width: 94%;
  height: 100%;
  background: #FFF;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .collections-detail-detailimages {
    width: 98.412698413%;
  }
}
.collections-detail-detailimages-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.collections-detail-detailimages-wrapper div {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.collections-detail-detailimages-wrapper div:first-child {
  opacity: 1;
}

.collections-detail-spacer {
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.5;
}

.collections-detail-left {
  position: absolute;
  background: url(/jp/shared/img/arw_l.png);
  background-size: cover;
  width: 44px;
  height: 44px;
  z-index: 3;
  top: 50%;
  left: 0;
  margin-top: -22px;
  cursor: pointer;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .collections-detail-left {
    opacity: 1;
  }
}

.collections-detail-right {
  position: absolute;
  background: url(/jp/shared/img/arw_r.png);
  background-size: cover;
  width: 44px;
  height: 44px;
  z-index: 3;
  top: 50%;
  right: 0;
  margin-top: -22px;
  cursor: pointer;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .collections-detail-right {
    opacity: 1;
  }
}

.collections-detail-bigimage {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.collections-detail-bigimage img {
  width: auto;
  height: auto;
}

.collections-detail-control {
  position: relative;
  z-index: 2;
  width: 96.825396826%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .collections-detail-control {
    width: 98.412698413%;
    width: 100%;
  }
}

table.collections-detail-spectable {
  width: auto;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  table.collections-detail-spectable {
    margin-top: 17px;
  }
}
table.collections-detail-spectable th {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 2.0em;
  font-weight: 400;
  white-space: nowrap;
  padding-right: 2em;
  vertical-align: top;
}
table.collections-detail-spectable td {
  vertical-align: top;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 2.0em;
  font-weight: 400;
}

.collections-detail-detailthumbnails {
  margin-top: 30px;
  padding-right: -1%;
}
.collections-detail-detailthumbnails div {
  width: 19%;
  margin-right: 1%;
  margin-bottom: 1%;
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #ffffff;
  background-color: #fff;
  cursor: pointer;
}
.collections-detail-detailthumbnails div img {
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  -o-transition: opacity .5s;
  -ms-transition: opacity .5s;
  transition: opacity .5s;
  opacity: 1;
}
.collections-detail-detailthumbnails div:first-child {
  border-color: #d7d7d7;
}
.collections-detail-detailthumbnails div img:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .collections-detail-detailthumbnails {
    display: none;
  }
}

.panels-collections-detail-logo {
  margin-bottom: 30px;
}
.panels-collections-detail-logo-visvim img {
  width: 82px;
  height: auto;
  margin-left: -5px;
}
.panels-collections-detail-logo-wmv img {
  width: 59px;
  height: auto;
}
.panels-collections-detail-logo-ict img {
  width: 66px;
  height: auto;
}
.panels-collections-detail-logo-lcc img {
  width: 47px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .panels-collections-detail-logo {
    margin-bottom: 17px;
  }
}

.collections-detail-webstorelink {
  margin-top: 42px;
}
.collections-detail-webstorelink .btn-purchase {
  float: left;
  width: 42.4%;
}
@media screen and (max-width: 600px) {
  .collections-detail-webstorelink .btn-purchase {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .collections-detail-webstorelink {
    margin-top: 17px;
  }
}

.collections-detail-share {
  font-size: 0px;
  font-size: 0rem;
  margin-top: 40px;
  width: 100%;
  text-align: right;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .collections-detail-share {
    margin-top: 22px;
  }
}
@media screen and (max-width: 768px) {
  .collections-detail-share {
    text-align: center;
  }
}
.collections-detail-share div, .collections-detail-share a {
  display: inline-block;
  height: 16px;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.collections-detail-share a:hover {
  background-position: bottom left;
}
.collections-detail-share-title {
  width: 68px;
  background-image: url(/jp/shared/img/icon_share.png);
  background-size: contain !important;
  padding-left: 25px;
}
.collections-detail-share-title p {
  font-size: 12px;
  font-size: 1.2rem;
  color: #999;
  margin-top: -1px;
  text-align: left;
}
.collections-detail-share-mail {
  width: 20px;
  background-image: url(/jp/shared/img/icon_mail.png);
  margin-right: 20px;
}
.collections-detail-share-fb {
  width: 16px;
  background-image: url(/jp/shared/img/icon_fb.png);
  margin-right: 20px;
}
.collections-detail-share-tw {
  width: 20px;
  background-image: url(/jp/shared/img/icon_tw.png);
}

.collections-detail-dots {
  text-align: center;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 17px;
  display: none;
}
.collections-detail-dots div {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #ccc;
  margin: 0 6px;
}
.collections-detail-dots div img {
  display: none;
}
.collections-detail-dots div:first-child {
  background: #000;
}
@media screen and (max-width: 768px) {
  .collections-detail-dots {
    display: block;
  }
}

.collections-detail-colors {
  display: none;
}

.collections-detail-color {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 400;
  padding-right: 16px;
  padding-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .pager-collections-detail-back {
    margin-bottom: 30px;
  }
}

/*************************************************************
lookbook ss17
*************************************************************/
.lookbook-upApp {
  opacity: 0;
}

.lookbook-top-title {
  padding-bottom: 0 !important;
}

.lookbook-top-contents {
  margin-top: 0 !important;
}

.lookbook-top-cover {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}
.lookbook-top-cover-item {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .lookbook-top-cover-item {
    margin-bottom: 15px;
  }
}
.lookbook-top-cover-item img {
  position: relative;
  width: 100%;
  height: auto;
}
.lookbook-top-cover-item a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: background-color 1s;
  -moz-transition: background-color 1s;
  -ms-transition: background-color 1s;
  -o-transition: background-color 1s;
  transition: background-color 1s;
  top: 0;
  left: 0;
}
.lookbook-top-cover-item a img.lookbook-top-cover-logo-visvim {
  width: 119px;
  height: auto;
  position: absolute;
  bottom: 50%;
  left: 50%;
  opacity: 1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .lookbook-top-cover-item a img.lookbook-top-cover-logo-visvim {
    width: 15.49479vw;
  }
}
.lookbook-top-cover-item a img.lookbook-top-cover-logo-wmv {
  width: 91px;
  height: auto;
  position: absolute;
  bottom: 50%;
  left: 50%;
  opacity: 1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .lookbook-top-cover-item a img.lookbook-top-cover-logo-wmv {
    width: 11.84896vw;
  }
}
.lookbook-top-cover-item a p {
  font-size: 16px;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .lookbook-top-cover-item a p {
    margin-top: 2.08333vw;
    font-size: 2.08333vw;
  }
}
.lookbook-top-cover-item a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

ul.lookbook-top-brandlink {
  margin: 0;
  padding: 0;
  padding-bottom: 30px;
  width: 100%;
  list-style-type: none;
}
@media screen and (max-width: 600px) {
  ul.lookbook-top-brandlink {
    padding-bottom: 15px;
  }
}
ul.lookbook-top-brandlink li {
  margin: 0;
  padding: 0;
  width: 33.333333333333333333%;
  box-sizing: border-box;
  height: 85px;
  float: left;
  border-right: #d7d7d7 1px solid;
}
@media screen and (max-width: 600px) {
  ul.lookbook-top-brandlink li {
    height: 50px;
  }
}
ul.lookbook-top-brandlink li a {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center 23px;
  position: relative;
  transition: none;
}
@media screen and (max-width: 600px) {
  ul.lookbook-top-brandlink li a {
    background-position: center 13px;
  }
}
ul.lookbook-top-brandlink li a p {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  position: absolute;
  top: 56px;
  left: 0;
}
@media screen and (max-width: 600px) {
  ul.lookbook-top-brandlink li a p {
    font-size: 8px;
    font-size: 0.8rem;
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 600px) {
  ul.lookbook-top-brandlink li a p {
    top: 30px;
  }
}
ul.lookbook-top-brandlink li a:hover {
  opacity: 1;
  color: #000;
}
ul.lookbook-top-brandlink li:last-child {
  border-right: none;
}

.lookbook-top-brandlink-visvim {
  background-image: url(/jp/lookbook/img/top_logo_visvim.png);
  background-size: 93px 26px;
}
@media screen and (max-width: 600px) {
  .lookbook-top-brandlink-visvim {
    background-size: 46px 13px;
  }
}

.lookbook-top-brandlink-wmv {
  background-image: url(/jp/lookbook/img/top_logo_wmv.png);
  background-size: 69px 26px;
}
@media screen and (max-width: 600px) {
  .lookbook-top-brandlink-wmv {
    background-size: 35px 13px;
  }
}

.lookbook-top-brandlink-ict {
  background-image: url(/jp/lookbook/img/top_logo_ict.png);
  background-size: 75px 32px;
  background-position: center 28px !important;
}
@media screen and (max-width: 600px) {
  .lookbook-top-brandlink-ict {
    background-position: center 18px !important;
    background-size: 38px 16px;
  }
}

.contents-lookbook-detail {
  max-width: 1000px;
  box-sizing: border-box;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
@media screen and (max-width: 1280px) {
  .contents-lookbook-detail .lookbook-detail-back, .contents-lookbook-detail h1 {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .contents-lookbook-detail {
    max-width: 100%;
    width: 100%;
  }
}

.lookbook-detail .panels, .lookbook-detail .dissertationOn-lookbook-body {
  border-bottom: 1px solid #D7D7D7;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .lookbook-detail .panels, .lookbook-detail .dissertationOn-lookbook-body {
    border-bottom: 0;
  }
}

span.lookbook-detail-linktotop {
  margin-left: 0.7em;
}
span.lookbook-detail-linktotop a {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 0.7em;
}

.lookbook-detail-photo {
  width: 100%;
  max-width: 1000px;
  height: auto;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .lookbook-detail-photo {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .lookbook-detail-photo {
    margin-bottom: 10px;
  }
}

.lookbook-detail-photo:last-type-of {
  margin-bottom: 0;
}

.lookbook-detail-photo-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.lookbook-detail-photo-img {
  width: 100%;
  height: auto;
  position: relative;
}
.lookbook-detail-photo-img img {
  width: 100%;
  height: auto;
}

.lookbook-detail-photo-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10.9375vw;
  height: 7.8125vw;
  background-image: url(../../lookbook/img/spec_icon.png);
  background-repeat: no-repeat;
  background-size: 4.6875vw 2.8125vw;
  background-position: center center;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .lookbook-detail-photo-icon {
    visibility: visible;
  }
}

.lookbook-detail-photo-wrapper-vlong {
  width: auto;
}
.lookbook-detail-photo-wrapper-vlong img {
  height: 960px;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .lookbook-detail-photo-wrapper-vlong img {
    width: auto;
    height: 100vw;
  }
}
@media screen and (max-width: 768px) {
  .lookbook-detail-photo-wrapper-vlong img {
    width: 100%;
    height: auto;
  }
}

.lookbook-detail-photo-texts {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -ms-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}
.lookbook-detail-photo-texts:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .lookbook-detail-photo-texts {
    visibility: hidden;
  }
}

.lookbook-detail-iconimg img {
  width: 30px;
  height: 18px;
}

table.lookbook-detail-spectable {
  width: auto;
  max-width: 85%;
  position: absolute;
  bottom: 20px;
  left: 28px;
}
@media screen and (max-width: 768px) {
  table.lookbook-detail-spectable {
    margin-bottom: 15px;
  }
}
table.lookbook-detail-spectable th {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 2.0em;
  white-space: nowrap;
  padding-right: 2em;
  vertical-align: top;
  color: #fff;
}
table.lookbook-detail-spectable td {
  vertical-align: top;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 2.0em;
  color: #fff;
}
table.lookbook-detail-spectable td a {
  text-decoration: underline;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .lookbook-detail-back {
    margin-bottom: 30px;
  }
}

table.lookbook-detail-spectable td.lookbook-detail-number {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 10px;
}

table.lookbook-detail-spectable td.lookbook-detail-iconimg {
  font-size: 0px;
  font-size: 0rem;
  line-height: 0;
  padding-bottom: 38px;
}

.lookbook-detail-texts-forsp {
  display: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .lookbook-detail-texts-forsp {
    display: block;
  }
}
.lookbook-detail-texts-forsp-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.lookbook-detail-texts-forsp-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.lookbook-detail-texts-forsp-content table.lookbook-detail-spectable {
  width: 93.75%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -47px;
  bottom: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.lookbook-detail-texts-forsp-content table.lookbook-detail-spectable th {
  padding-right: 1em;
  font-size: 2.5vw;
}
.lookbook-detail-texts-forsp-content table.lookbook-detail-spectable td {
  font-size: 2.5vw;
}
.lookbook-detail-texts-forsp-content table.lookbook-detail-spectable td.lookbook-detail-number {
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
}
.lookbook-detail-texts-forsp-content table.lookbook-detail-spectable td.lookbook-detail-iconimg {
  text-align: center;
}
.lookbook-detail-texts-forsp-content table.lookbook-detail-spectable td.lookbook-detail-iconimg img {
  margin-left: 8px;
}
.lookbook-detail-texts-forsp-close {
  position: absolute;
  width: 14.0625vw;
  height: 14.0625vw;
  top: 50%;
  left: 50%;
  margin-left: -7.03125vw;
  background-image: url(../../lookbook/img/close.png);
  background-repeat: no-repeat;
  background-size: 4.53125vw 4.53125vw;
  background-position: center center;
}

.lookbook-detail-texts-forsp-on {
  visibility: visible;
  opacity: 1;
}

body#lookbook-detail {
  background-image: url(../../lookbook/img/loading.gif);
  background-repeat: no-repeat;
  background-position: center top 50vh;
  background-size: 21px 21px;
}

/*************************************************************
links for ict
*************************************************************/
div.links-for-ict {
  position: relative;
}
div.links-for-ict div {
  position: absolute;
  top: -6px;
  right: 0;
}
div.links-for-ict a {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 400;
  background-image: url(/jp/ict/shared/img/icon_ict.png);
  background-repeat: no-repeat;
  background-size: 36px 19px;
  background-position: center left;
  padding-left: 46px;
  height: 20px;
  display: block;
  padding-top: 7px;
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  div.links-for-ict {
    padding-bottom: 45px;
  }
}

.links-for-othernews {
  position: relative;
  height: auto;
}
.links-for-othernews div {
  position: absolute;
  top: -6px;
  right: 0;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
}
.links-for-othernews a {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 400;
  height: 20px;
  padding-top: 7px;
  text-decoration: underline;
  display: inline-block;
  margin-left: 16px;
}
.links-for-othernews a:first-of-type {
  margin-left: 8px !important;
}
.links-for-othernews-ict {
  background-image: url(/jp/ict/shared/img/icon_ict.png);
  background-repeat: no-repeat;
  background-size: 36px 19px;
  background-position: center left;
  padding-left: 46px;
}
.links-for-othernews-visvim {
  background-image: url(/jp/shared/img/icon_visvim.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center left;
  padding-left: 30px;
}
.links-for-othernews-visvim_wht {
  background-image: url(/jp/shared/img/icon_visvim_wht.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center left;
  padding-left: 30px;
}
.links-for-othernews-lcc {
  background-image: url(/jp/shared/img/icon_lcc.png);
  background-repeat: no-repeat;
  background-size: auto 20px;
  background-position: center left;
  padding-left: 28px;
}
.links-for-othernews-lcc_wht {
  background-image: url(/jp/shared/img/icon_lcc_wht.png);
  background-repeat: no-repeat;
  background-size: auto 20px;
  background-position: center left;
  padding-left: 28px;
}
@media screen and (max-width: 600px) {
  .links-for-othernews {
    padding-bottom: 45px;
  }
}

.links-for-othernews_wht a {
  color: #fff !important;
  transition: opacity 0.5s;
}
.links-for-othernews_wht a:hover {
  opacity: 0.6;
}

/*************************************************************
little cloud coffee
*************************************************************/
.littlecloudcoffee {
  background-image: url(/jp/shared/img/whitebg.gif);
}
.littlecloudcoffee h1 {
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
}
.littlecloudcoffee .lcc-img {
  width: 100%;
  height: auto;
}
.littlecloudcoffee .lcc-img50 {
  width: 50%;
  height: auto;
}
.littlecloudcoffee .lcc-map {
  width: 295px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .littlecloudcoffee .lcc-map {
    width: 270px;
  }
}
.littlecloudcoffee .lcc-menu {
  margin-bottom: 30px;
}
.littlecloudcoffee .lcc-menu p {
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2em !important;
  font-weight: bold;
}
.littlecloudcoffee .lcc-menu p.normat-txt {
  font-weight: normal;
  font-size: 12px;
  font-size: 1.2rem;
}
.littlecloudcoffee .lcc-menu p.normat-txt-st {
  font-size: 12px;
  font-size: 1.2rem;
}
.littlecloudcoffee .lrbox {
  margin-bottom: 20px;
  width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
}
.littlecloudcoffee .lrbox p {
  margin: 0;
  padding: 0;
}
.littlecloudcoffee .lrbox img {
  margin-bottom: 10px;
}
.littlecloudcoffee .lrbox div {
  width: 50%;
  box-sizing: border-box;
  float: left;
}
.littlecloudcoffee table td {
  font-size: 12px;
  font-size: 1.2rem;
  vertical-align: top;
  padding-bottom: 5px;
}
.littlecloudcoffee #email {
  border: 1px solid #e5e5e5;
}

/*************************************************************
panel item press(top)
*************************************************************/
@media screen and (max-width: 320px) {
  .panels-item-press {
    clear: both;
    float: none;
    width: 100%;
    height: auto !important;
  }
  .panels-item .panels-item-press, .archives-item .panels-item-press, .dissertationOn-lookbook-body-item .panels-item-press, .collections-item .panels-item-press {
    padding-top: 30px;
  }
}
.panels-item-press-inner {
  padding: 8px 15px 0;
  border-left: 1px solid #D7D7D7;
  min-height: 162px;
}
@media screen and (max-width: 320px) {
  .panels-item-press-inner {
    min-height: 0px;
  }
}
.panels-item-press-inner h3 {
  font-size: 11px;
  font-size: 1.1rem;
  margin-top: 20px;
}
.panels-item-press-inner h3 span {
  font-size: 10px;
  font-size: 1rem;
  font-weight: 300;
  color: #a0a0a0;
  padding-left: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.panels-item-press-inner h3 a {
  text-decoration: underline;
}
.panels-item-press-inner p {
  margin-top: 5px;
  font-size: 10px;
  font-size: 1rem;
  font-weight: 400;
}

/*************************************************************
under IE8(top)
*************************************************************/
.under-ie8 {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  background: url(../img/bg_body_01.png) scroll repeat 0 0;
  text-align: center;
}
.under-ie8 img {
  margin-top: 88px;
  margin-bottom: 23px;
}
.under-ie8 p {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 26px;
}

/*************************************************************
top main panel(added 2015.07.28)
*************************************************************/
.top-main-panels {
  width: 100%;
  margin: 0 auto;
/*  margin-bottom: 54px; */
/*  margin-top: -30px; */
  position: relative;
  background-color: #000;
}
.top-main-panels div.top-main-fake {
  position: relative;
  top: 0;
  left: 0;
}
.top-main-panels div.top-main-fake img {
  opacity: 0;
}
.top-main-panels div.top-main-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.top-main-panels div.top-main-fake img,
.top-main-panels div.top-main-panel img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .top-main-panels {
    display: none;
  }
}

/*************************************************************
top main panel sp(added 2018.07)
*************************************************************/
.top-main-panels-sp {
  width: 100%;
  height: auto;
  margin: 0 auto;
/*  margin-bottom: 13px; */
  margin-top: -30px;
  position: relative;
  display: none;
  background-color: #000;
}
@media screen and (max-width: 600px) {
  .top-main-panels-sp {
    display: block;
  }
}
.top-main-panels-sp .slick-track,
.top-main-panels-sp .slick-list {
  height: 100% !important;
}
.top-main-panels-sp .slick-dots {
  position: absolute;
/*  top: 100vw; */
  top: 50vw;
  left: 50%;
  transform: translate(-50%, -15px);
  text-align: center;
  width: auto;
  font-size: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.top-main-panels-sp .slick-dots ul {
  font-size: 0 !important;
  list-style-type: none;
  text-align: center;
  width: auto;
  height: auto;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
}
.top-main-panels-sp .slick-dots li {
  padding: 0 7px;
  cursor: pointer;
  display: inline-block;
  font-size: 0 !important;
  width: 5px !important;
  height: 5px !important;
  box-sizing: border-box !important;
}
.top-main-panels-sp .slick-dots li button {
  width: 5px !important;
  height: 5px !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  background-color: #c2c7ca;
  border: 1px solid #c2c7ca;
  border-radius: 50%;
  font-size: 0 !important;
}
.top-main-panels-sp .slick-dots li.slick-active button {
  background-color: #fff;
}
.top-main-panels-sp div.top-main-panel-sp {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
}
.top-main-panels-sp div.top-main-panel-sp a {
  display: inline-block;
  position: relative;
  width: 100%;
}
.top-main-panels-sp div.top-main-panel-sp a img {
  width: 100%;
  height: auto;
  opacity: 1 !important;
}
.top-main-panels-sp div.top-main-panel-sp p {
  position: relative;
  box-sizing: border-box;
  padding: 7px 20px 10px;
  width: 100%;
}

/*************************************************************
top content(added 2016.11)
*************************************************************/
.top-content,
.top-content-middle,
.top-content-bottom,
body.top footer {
  width: 100%;
  max-width: 1391px;
}

@media screen and (max-width: 768px) {
  .top-content-middle {
    width: 100% !important;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.panels-item-ict,
.panels-item-lcc {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .panels-item-ict,
  .panels-item-lcc {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .panels-item-lcc {
    margin-bottom: 7px;
  }
}

.panels-item-lcc .panels-item-lcc-img {
  box-sizing: border-box;
  width: 32.03008%;
  height: 100%;
  min-height: 130px;
  position: relative;
  box-sizing: border-box;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
.panels-item-lcc .panels-item-lcc-img img {
  width: 42.25352%;
  height: auto;
}

.panels-item-ict .panels-item-ict-img {
  box-sizing: border-box;
  width: 32.03008%;
  height: 100%;
  min-height: 130px;
  position: relative;
  box-sizing: border-box;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
.panels-item-ict .panels-item-ict-img img {
  width: 71.3615%;
  height: auto;
}

.panels-item-lcc .panels-item-lcc-text,
.panels-item-ict .panels-item-ict-text {
  padding: 26px 26px 0 0;
  display: table-cell;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .panels-item-lcc .panels-item-lcc-text,
  .panels-item-ict .panels-item-ict-text {
    padding: 26px 26px 26px 0;
    vertical-align: middle;
  }
}

.panels-item-lcc-inner,
.panels-item-ict-inner {
  background-color: rgba(255, 255, 255, 0.55);
  min-height: 130px;
  box-sizing: border-box;
  display: table;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .panels-item-lcc-inner,
  .panels-item-ict-inner {
    min-height: 0px;
  }
}

@media screen and (max-width: 600px) {
  .panels-lcc_and_ict {
    margin-bottom: 57px;
  }
}

#top-small-panels {
  display: none;
}
@media screen and (max-width: 600px) {
  #top-small-panels {
    display: block;
  }
}

.top-main-panel {
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 1s linear;
  -moz-transition: opacity 1s linear;
  -ms-transition: opacity 1s linear;
  -o-transition: opacity 1s linear;
  transition: opacity 1s linear;
  z-index: 1;
}

.top-main-panel-on {
  opacity: 1;
  z-index: 2;
}

.top-main-circles {
  z-index: 4;
  width: 100%;
  height: 39px;
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
}
.top-main-circles div {
  display: inline-block;
  padding: 6px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .top-main-circles div {
    margin: 0 10px;
  }
}
.top-main-circles span {
  display: block;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border: 1px solid rgba(210, 210, 210, 0);
  border-radius: 4px;
  background-color: rgba(210, 210, 210, 0.6);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.top-main-circles div.on span {
  background-color: #fff !important;
  border: 1px solid #dcdcdc !important;
}

.top-main-right {
  z-index: 5;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  right: 25px;
  width: 54px;
  height: 54px;
  border-radius: 30px;
  background-color: rgba(181, 181, 181, 0.4);
  background-image: url(../../../assets/top02/images/main_panel_right.png);
  background-position: center center;
  background-size: 15px auto;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  opacity: 0;
  cursor: pointer;
}
.top-main-right:hover {
  background-color: rgba(181, 181, 181, 0.6);
}

.top-main-left {
  z-index: 5;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  left: 25px;
  width: 54px;
  height: 54px;
  border-radius: 30px;
  background-color: rgba(181, 181, 181, 0.4);
  background-image: url(../../../assets/top02/images/main_panel_left.png);
  background-position: center center;
  background-size: 15px auto;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  opacity: 0;
  cursor: pointer;
}
.top-main-left:hover {
  background-color: rgba(181, 181, 181, 0.6);
}

/*************************************************************
pager (added 2016.11)
*************************************************************/
.pager-dissertations {
  padding-bottom: 0px;
}
@media screen and (max-width: 600px) {
  .pager-dissertations {
    padding-bottom: 30px;
  }
}

/*************************************************************
stockist (added 2016.11)
*************************************************************/
.stockist-item-title-img-visvim {
  display: inline-block;
  width: 96px;
  height: 22px;
  background-image: url(../../shared/img/logo_visvim_wmv.png);
  background-repeat: no-repeat;
  background-size: auto 22px;
  background-position: center left;
}

.stockist-item-title-img-wmv {
  display: inline-block;
  width: 62px;
  height: 22px;
  background-image: url(../../shared/img/logo_visvim_wmv.png);
  background-repeat: no-repeat;
  background-size: auto 22px;
  background-position: center right;
}

/*************************************************************
sns share (added 2016.11)
*************************************************************/
.sns-share {
  font-size: 0px;
  font-size: 0rem;
  margin-top: 40px;
  display: table;
  width: 100%;
}
.sns-share-inner {
  display: table-cell;
  width: 100%;
  text-align: right;
  vertical-align: middle;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .sns-share-inner {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .sns-share {
    margin-top: 22px;
  }
}
.sns-share div, .sns-share a, .sns-share span {
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
}
.sns-share-title {
  width: 98px;
  height: 24px;
  background-image: url(../../shared/img/share_icon.png);
  background-position: center left !important;
  background-size: 15px 17px !important;
  box-sizing: border-box;
  position: relative;
}
.sns-share-title p {
  font-size: 12px;
  line-height: 12px;
  color: #999;
  margin-top: 2px;
  text-align: left;
  position: absolute;
  top: 5px;
  left: 24px;
}
.sns-share-mail {
  width: 28px;
  height: 24px;
  background-image: url(../../shared/img/share_mail.png);
  background-size: 24px auto !important;
  margin-right: 24px;
  position: relative;
}
.sns-share-mail span {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../../shared/img/share_mail_ov.png);
  background-size: 24px auto !important;
  opacity: 0;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.sns-share-mail span:hover {
  opacity: 1;
}
.sns-share-fb {
  width: 24px;
  height: 24px;
  background-image: url(../../shared/img/share_fb.png);
  background-size: 22px auto !important;
  margin-right: 23px;
  position: relative;
}
.sns-share-fb span {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../../shared/img/share_fb_ov.png);
  background-size: 22px auto !important;
  opacity: 0;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.sns-share-fb span:hover {
  opacity: 1;
}
.sns-share-tw {
  width: 26px;
  height: 24px;
  background-image: url(../../shared/img/share_tw.png);
  background-size: 20px auto !important;
  margin-right: 18px;
  position: relative;
}
.sns-share-tw span {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../../shared/img/share_tw_ov.png);
  background-size: 20px auto !important;
  opacity: 0;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.sns-share-tw span:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .sns-share-tw {
    margin-right: 0px;
  }
}

.sns-share-ict .sns-share-title {
  background-image: url(../../shared/img/share_icon_ict.png) !important;
}
.sns-share-ict .sns-share-title p {
  color: #fff !important;
}
.sns-share-ict .sns-share-title {
  background-image: url(../../shared/img/share_icon_ict.png) !important;
}
.sns-share-ict .sns-share-mail {
  background-image: url(../../shared/img/share_mail_ict.png) !important;
}
.sns-share-ict .sns-share-fb {
  background-image: url(../../shared/img/share_fb_ict.png) !important;
  margin-right: 20px;
}
.sns-share-ict .sns-share-tw {
  background-image: url(../../shared/img/share_tw_ict.png) !important;
}

/*************************************************************
dissertations (added 2016.11)
*************************************************************/
/*************************************************************
dissertations sort link (added 2018.07)
*************************************************************/
.dissertations-title-wrapper {
  width: 100%;
}
.dissertations-title-wrapper ul {
  float: left;
  margin: 0 !important;
  margin-left: 95px !important;
  padding: 0 !important;
  list-style: none !important;
}
@media screen and (max-width: 768px) {
  .dissertations-title-wrapper ul {
    display: none;
  }
}
.dissertations-title-wrapper ul li {
  float: left;
  padding: 0 !important;
  padding-right: 35px !important;
  padding-left: 15px !important;
  position: relative;
}
.dissertations-title-wrapper ul li::before {
  content: ".";
  font-size: 0;
  display: inline-block;
  position: absolute;
  width: 5px;
  height: 5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #000;
  border-radius: 50%;
  opacity: 0;
}
.dissertations-title-wrapper ul li:last-of-type {
  padding-right: 0px !important;
}
.dissertations-title-wrapper ul li a {
  color: #A0A0A0 !important;
}
.dissertations-title-wrapper ul li a:hover {
  color: #000 !important;
}
.dissertations-title-wrapper ul li.current a {
  color: #000 !important;
}
.dissertations-title-wrapper ul li.current::before {
  opacity: 1;
}

h1.contents-title-dissertations {
  display: inline-block !important;
  float: left;
}

.category-choice-sp {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0px;
  height: 48px;
  overflow: hidden;
  text-align: right;
  position: relative;
  box-sizing: border-box;
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .category-choice-sp {
    display: block;
  }
}

select.category-choice-sp-select {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  overflow: hidden;
  font-size: 16px;
  line-height: 16px;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: 0;
  border: 0;
  appearance: none;
  tap-highlight-color: transparent;
}

.category-choice-sp-this {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #000;
  height: 22px;
  box-sizing: border-box;
  background-image: url(../img/icon_dropdown.png);
  background-repeat: no-repeat;
  background-size: 9px auto;
  background-position: right 7px bottom 9px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}

.category-choice-sp-this p {
  font-size: 14px;
  height: 22px;
  box-sizing: border-box;
  text-align: left;
  box-sizing: border-box;
}

/*************************************************************
footer sns (added 2018.07)
*************************************************************/
.footer-sns {
  list-style-type: none;
  margin: 0 0 0 auto !important;
  padding: 0 0 0 0 !important;
  color: #999999;
  font-weight: normal;
  display: inline-block;
  margin-bottom: 25px !important;
}
.footer-sns-wrapper {
  width: 100%;
  text-align: right;
}
.footer-sns li {
  float: left;
  height: 24px;
  box-sizing: border-box;
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 20px !important;
}

.footer-sns-title {
  position: relative;
}
.footer-sns-title span {
  display: inline-block;
  margin-top: 3px;
}

.footer-sns-fb {
  font-size: 0;
}
.footer-sns-fb a {
  background-image: url(../img/link_fb.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  font-size: 0;
}
.footer-sns-fb a:hover {
  opacity: 1 !important;
}
.footer-sns-fb a img {
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.5s;
}
.footer-sns-fb a img:hover {
  opacity: 1;
}

.footer-sns-insta {
  font-size: 0;
}
.footer-sns-insta a {
  background-image: url(../img/link_insta.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: inline-block;
  font-size: 0;
}
.footer-sns-insta a:hover {
  opacity: 1 !important;
}
.footer-sns-insta a img {
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.5s;
}
.footer-sns-insta a img:hover {
  opacity: 1;
}

/*************************************************************
stockist (added 2018.07)
*************************************************************/
.stockist-title-wrapper {
  width: 100%;
  box-sizing: border-box;
  padding: 30px 0;
  transform: translateY(-30px);
}
.stockist-title-wrapper-fixed {
  position: fixed !important;
  left: 0;
  top: 0;
  z-index: 10;
  background-image: url(../img/bg_body_01.png);
  padding: 30px 20px 15px;
  transform: translateY(0px);
}
.stockist-title-wrapper-fixed .stockist-title-wrapper-inner {
  max-width: 1240px;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
.stockist-title-wrapper-space {
  position: relative;
  width: 100%;
  height: 0;
  margin: 0;
}
.stockist-title-wrapper-space {
  position: relative;
  width: 100%;
  height: 26px;
}
@media screen and (max-width: 768px) {
  .stockist-title-wrapper-space {
    height: 0;
  }
}
.stockist-title-wrapper ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  margin-bottom: 10px !important;
}
.stockist-title-wrapper ul:last-of-type {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .stockist-title-wrapper ul {
    display: none;
  }
}
.stockist-title-wrapper ul li {
  float: left;
  padding: 0 !important;
  padding-right: 15px !important;
  padding-left: 15px !important;
  position: relative;
}
.stockist-title-wrapper ul li::before {
  content: ".";
  font-size: 0;
  display: inline-block;
  position: absolute;
  width: 5px;
  height: 5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #000;
  border-radius: 50%;
  opacity: 0;
}
.stockist-title-wrapper ul li:last-of-type {
  padding-right: 0px !important;
}
.stockist-title-wrapper ul li span {
  color: #A0A0A0 !important;
  transition: color 0.5s;
  cursor: pointer;
}
.stockist-title-wrapper ul li span:hover {
  color: #000 !important;
}
.stockist-title-wrapper ul li.current span {
  color: #000 !important;
}
.stockist-title-wrapper ul li.current::before {
  opacity: 1;
}

h1.contents-title-stockist {
  display: inline-block !important;
  float: left;
}

.stockist-selector-pc {
  float: left;
  margin-left: 90px;
  padding-left: 47px;
  background-image: url(../img/icon_search_bk.png);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left 12px top 0;
  box-sizing: border-box;
  border-left: 1px solid #999999;
}
@media screen and (max-width: 1024px) {
  .stockist-selector-pc {
    width: 100%;
    margin-left: 0px;
  }
}

/* ===================================

  5: ICT

====================================== */
/*************************************************/
/* ict common */
body.ict header.header {
  background: url(../../ict/shared/img/bg_indigo.jpg) !important;
  border-bottom: none !important;
}
body.ict header.header a {
  color: #fff;
  transition: opacity 0.5s !important;
}
body.ict header.header a:hover {
  opacity: 0.6 !important;
}
body.ict header.header .logo {
  margin-top: -6px;
}
@media screen and (max-width: 320px) {
  body.ict header.header .logo {
    margin-top: -8px;
  }
}
body.ict header.header .logo a:hover {
  opacity: 1 !important;
}
body.ict header.header .switching a {
  color: #adadad !important;
}
body.ict header.header .switching a:hover {
  opacity: 1 !important;
}
body.ict header.header .switching .is-current {
  color: #adadad;
  color: #fff !important;
}
@media screen and (max-width: 955px) {
  body.ict header.header .menu-body {
    background: url(../../ict/shared/img/bg_sp_menu.jpg) !important;
    border-bottom: none;
  }
}
body.ict header.header .gnav-item-07 a {
  background: url(../img/icn_webstore_02.png) scroll no-repeat center 0;
  background-size: 20px auto;
}
@media screen and (max-width: 955px) {
  body.ict header.header .gnav-item-07 a {
    background: none;
  }
}
body.ict header.header .gnav-item-00 {
  background-image: url(../../ict/shared/img/stech.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 28px;
}
body.ict header.header .gnav-item-00 a {
  background-image: url(../../ict/shared/img/icon_back.png);
  background-repeat: no-repeat;
  background-position: 0px 1px;
  background-size: 10px 14px;
  padding-left: 17px;
}
body.ict header.header .gnav-item-pc {
  display: block;
}
@media screen and (max-width: 955px) {
  body.ict header.header .gnav-item-pc {
    display: none;
  }
}
body.ict header.header .gnav-item-tb {
  display: none;
}
@media screen and (max-width: 955px) {
  body.ict header.header .gnav-item-tb {
    display: block;
    background-image: none;
    padding-top: 1.5em;
  }
  body.ict header.header .gnav-item-tb a {
    background-position: left center;
    margin-left: 10px;
  }
}
body.ict header.header .logo-ict {
  width: 81px;
  height: 34px;
}
@media screen and (max-width: 955px) {
  body.ict header.header .menu-toggle {
    background: url(../../ict/shared/img/icon_sp_menu.png) scroll no-repeat 0 0 !important;
    background-size: contain !important;
  }
}

body.ict header.is-fixed .logo-ict {
  margin-top: -5px;
}
body.ict header.is-fixed .logo {
  margin-top: 0;
}

div.links-for-others {
  position: relative;
}
div.links-for-others div {
  position: absolute;
  top: -6px;
  right: 0;
}
div.links-for-others a {
  color: #fff;
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 400;
  background-image: url(/jp//ict/shared/img/icon_visvim.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center left;
  padding-left: 30px;
  height: 20px;
  display: block;
  padding-top: 7px;
  text-decoration: underline;
  transition: all 0.5s;
}
div.links-for-others a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 600px) {
  div.links-for-others {
    padding-bottom: 45px;
  }
}

/*************************************************/
/* ict news */
body.ict-news {
  background-image: url(../../ict/shared/img/bg_news.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#ict-news-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../ict/shared/img/bg_news.jpg) !important;
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  #ict-news-bg {
    background-image: url(../../ict/shared/img/bg_news_sp.jpg) !important;
    background-size: 100% auto;
    background-position: top center !important;
  }
}

/*************************************************/
/* ict collections */
body.ict-collections {
  background-image: url(../../ict/shared/img/bg_collections.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#ict-collections-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url(../../ict/shared/img/bg_collections.jpg) !important;
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center !important;
}
@media screen and (max-width: 768px) {
  #ict-collections-bg {
    background-image: url(../../ict/shared/img/bg_collections_sp.jpg) !important;
    background-size: 100% auto;
    background-position: top center !important;
  }
}

/*************************************************/
/* ict lookbook */
body.ict-lookbook {
  background-image: url(../../ict/shared/img/bg_lookbook.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#ict-lookbook-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url(../../ict/shared/img/bg_lookbook.jpg) !important;
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center !important;
}
@media screen and (max-width: 768px) {
  #ict-lookbook-bg {
    background-image: url(../../ict/shared/img/bg_lookbook_sp.jpg) !important;
    background-size: 100% auto;
    background-position: top center !important;
  }
}

body#ict,
body.ict-news,
body.ict-lookbook,
body.ict-collections {
  height: auto;
  min-height: 100%;
  color: #fff;
}
body#ict .collections-list .pager .current_page,
body.ict-news .collections-list .pager .current_page,
body.ict-lookbook .collections-list .pager .current_page,
body.ict-collections .collections-list .pager .current_page {
  color: #a7a7a7;
}
body#ict .archives h2,
body.ict-news .archives h2,
body.ict-lookbook .archives h2,
body.ict-collections .archives h2 {
  color: #fff;
}
body#ict footer p.copyright small,
body#ict footer .panels-item-utility-list-item a,
body.ict-news footer p.copyright small,
body.ict-news footer .panels-item-utility-list-item a,
body.ict-lookbook footer p.copyright small,
body.ict-lookbook footer .panels-item-utility-list-item a,
body.ict-collections footer p.copyright small,
body.ict-collections footer .panels-item-utility-list-item a {
  color: #fff;
}
body#ict .panels-item-utility-list-item a,
body#ict .lookbook-detail-spectable a,
body#ict .collections-menu-pc a,
body#ict .archives a,
body#ict .panels-item-title a,
body#ict .panels-item-category a,
body#ict .news-nav-links-item a,
body#ict .pager a,
body#ict .release-subsection-list li a,
body#ict .release-subsection-note a,
body#ict .contents-category-upper a,
body#ict .pager-collections-detail-back a,
body#ict .contents-title a,
body.ict-news .panels-item-utility-list-item a,
body.ict-news .lookbook-detail-spectable a,
body.ict-news .collections-menu-pc a,
body.ict-news .archives a,
body.ict-news .panels-item-title a,
body.ict-news .panels-item-category a,
body.ict-news .news-nav-links-item a,
body.ict-news .pager a,
body.ict-news .release-subsection-list li a,
body.ict-news .release-subsection-note a,
body.ict-news .contents-category-upper a,
body.ict-news .pager-collections-detail-back a,
body.ict-news .contents-title a,
body.ict-lookbook .panels-item-utility-list-item a,
body.ict-lookbook .lookbook-detail-spectable a,
body.ict-lookbook .collections-menu-pc a,
body.ict-lookbook .archives a,
body.ict-lookbook .panels-item-title a,
body.ict-lookbook .panels-item-category a,
body.ict-lookbook .news-nav-links-item a,
body.ict-lookbook .pager a,
body.ict-lookbook .release-subsection-list li a,
body.ict-lookbook .release-subsection-note a,
body.ict-lookbook .contents-category-upper a,
body.ict-lookbook .pager-collections-detail-back a,
body.ict-lookbook .contents-title a,
body.ict-collections .panels-item-utility-list-item a,
body.ict-collections .lookbook-detail-spectable a,
body.ict-collections .collections-menu-pc a,
body.ict-collections .archives a,
body.ict-collections .panels-item-title a,
body.ict-collections .panels-item-category a,
body.ict-collections .news-nav-links-item a,
body.ict-collections .pager a,
body.ict-collections .release-subsection-list li a,
body.ict-collections .release-subsection-note a,
body.ict-collections .contents-category-upper a,
body.ict-collections .pager-collections-detail-back a,
body.ict-collections .contents-title a {
  color: #fff;
  transition: all 0.5s !important;
}
body#ict .panels-item-utility-list-item a:hover,
body#ict .lookbook-detail-spectable a:hover,
body#ict .collections-menu-pc a:hover,
body#ict .archives a:hover,
body#ict .panels-item-title a:hover,
body#ict .panels-item-category a:hover,
body#ict .news-nav-links-item a:hover,
body#ict .pager a:hover,
body#ict .release-subsection-list li a:hover,
body#ict .release-subsection-note a:hover,
body#ict .contents-category-upper a:hover,
body#ict .pager-collections-detail-back a:hover,
body#ict .contents-title a:hover,
body.ict-news .panels-item-utility-list-item a:hover,
body.ict-news .lookbook-detail-spectable a:hover,
body.ict-news .collections-menu-pc a:hover,
body.ict-news .archives a:hover,
body.ict-news .panels-item-title a:hover,
body.ict-news .panels-item-category a:hover,
body.ict-news .news-nav-links-item a:hover,
body.ict-news .pager a:hover,
body.ict-news .release-subsection-list li a:hover,
body.ict-news .release-subsection-note a:hover,
body.ict-news .contents-category-upper a:hover,
body.ict-news .pager-collections-detail-back a:hover,
body.ict-news .contents-title a:hover,
body.ict-lookbook .panels-item-utility-list-item a:hover,
body.ict-lookbook .lookbook-detail-spectable a:hover,
body.ict-lookbook .collections-menu-pc a:hover,
body.ict-lookbook .archives a:hover,
body.ict-lookbook .panels-item-title a:hover,
body.ict-lookbook .panels-item-category a:hover,
body.ict-lookbook .news-nav-links-item a:hover,
body.ict-lookbook .pager a:hover,
body.ict-lookbook .release-subsection-list li a:hover,
body.ict-lookbook .release-subsection-note a:hover,
body.ict-lookbook .contents-category-upper a:hover,
body.ict-lookbook .pager-collections-detail-back a:hover,
body.ict-lookbook .contents-title a:hover,
body.ict-collections .panels-item-utility-list-item a:hover,
body.ict-collections .lookbook-detail-spectable a:hover,
body.ict-collections .collections-menu-pc a:hover,
body.ict-collections .archives a:hover,
body.ict-collections .panels-item-title a:hover,
body.ict-collections .panels-item-category a:hover,
body.ict-collections .news-nav-links-item a:hover,
body.ict-collections .pager a:hover,
body.ict-collections .release-subsection-list li a:hover,
body.ict-collections .release-subsection-note a:hover,
body.ict-collections .contents-category-upper a:hover,
body.ict-collections .pager-collections-detail-back a:hover,
body.ict-collections .contents-title a:hover {
  opacity: 0.6 !important;
}
body#ict .contents-date,
body#ict .news-nav-links-item-count,
body#ict .panels-item-date,
body#ict .panels-item-category-external-url,
body#ict .release-gallery-info-name,
body#ict .collections-detail-share-title p,
body.ict-news .contents-date,
body.ict-news .news-nav-links-item-count,
body.ict-news .panels-item-date,
body.ict-news .panels-item-category-external-url,
body.ict-news .release-gallery-info-name,
body.ict-news .collections-detail-share-title p,
body.ict-lookbook .contents-date,
body.ict-lookbook .news-nav-links-item-count,
body.ict-lookbook .panels-item-date,
body.ict-lookbook .panels-item-category-external-url,
body.ict-lookbook .release-gallery-info-name,
body.ict-lookbook .collections-detail-share-title p,
body.ict-collections .contents-date,
body.ict-collections .news-nav-links-item-count,
body.ict-collections .panels-item-date,
body.ict-collections .panels-item-category-external-url,
body.ict-collections .release-gallery-info-name,
body.ict-collections .collections-detail-share-title p {
  color: #fff;
}
body#ict div.lookbook-detail-number,
body.ict-news div.lookbook-detail-number,
body.ict-lookbook div.lookbook-detail-number,
body.ict-collections div.lookbook-detail-number {
  background: url(../../ict/shared/img/lookbook_pagenum_slash.png) no-repeat !important;
}
body#ict .current_page,
body.ict-news .current_page,
body.ict-lookbook .current_page,
body.ict-collections .current_page {
  color: #a7a7a7;
  background: #FFF;
}
body#ict .collections-item-image,
body.ict-news .collections-item-image,
body.ict-lookbook .collections-item-image,
body.ict-collections .collections-item-image {
  background-color: #fff;
}
body#ict .collections-item-title,
body.ict-news .collections-item-title,
body.ict-lookbook .collections-item-title,
body.ict-collections .collections-item-title {
  color: #000;
}
body#ict p.btn-back a,
body#ict p.btn-purchase a,
body.ict-news p.btn-back a,
body.ict-news p.btn-purchase a,
body.ict-lookbook p.btn-back a,
body.ict-lookbook p.btn-purchase a,
body.ict-collections p.btn-back a,
body.ict-collections p.btn-purchase a {
  background: url(../../ict/shared/img/btn_bg.jpg);
  color: #ffffff;
  transition: all 0.5s;
}
body#ict p.btn-back a:hover,
body#ict p.btn-purchase a:hover,
body.ict-news p.btn-back a:hover,
body.ict-news p.btn-purchase a:hover,
body.ict-lookbook p.btn-back a:hover,
body.ict-lookbook p.btn-purchase a:hover,
body.ict-collections p.btn-back a:hover,
body.ict-collections p.btn-purchase a:hover {
  opacity: 0.6 !important;
  /*color:#b5b5b5;*/
  /*
  &::after{
    opacity:0.6 !important;
  }
  */
}
body#ict p.newsletter-subscribe a,
body.ict-news p.newsletter-subscribe a,
body.ict-lookbook p.newsletter-subscribe a,
body.ict-collections p.newsletter-subscribe a {
  background: url(../../ict/shared/img/btn_bg.jpg);
  color: #fff;
  transition: all 0.5s;
}
body#ict p.newsletter-subscribe a:hover,
body.ict-news p.newsletter-subscribe a:hover,
body.ict-lookbook p.newsletter-subscribe a:hover,
body.ict-collections p.newsletter-subscribe a:hover {
  opacity: 1 !important;
  color: #b5b5b5 !important;
}
body#ict p.newsletter-subscribe a:hover::after,
body.ict-news p.newsletter-subscribe a:hover::after,
body.ict-lookbook p.newsletter-subscribe a:hover::after,
body.ict-collections p.newsletter-subscribe a:hover::after {
  opacity: 1 !important;
}
body#ict .news-nav-links .is-current span,
body#ict .news-nav-links .is-current a,
body.ict-news .news-nav-links .is-current span,
body.ict-news .news-nav-links .is-current a,
body.ict-lookbook .news-nav-links .is-current span,
body.ict-lookbook .news-nav-links .is-current a,
body.ict-collections .news-nav-links .is-current span,
body.ict-collections .news-nav-links .is-current a {
  color: #a7a7a7 !important;
}
body#ict .release-subsection-title::before,
body.ict-news .release-subsection-title::before,
body.ict-lookbook .release-subsection-title::before,
body.ict-collections .release-subsection-title::before {
  background: url(../img/icn_webstore_02.png) scroll no-repeat 0 0 !important;
  background-size: 20px auto !important;
}
body#ict .collections-detail-color,
body.ict-news .collections-detail-color,
body.ict-lookbook .collections-detail-color,
body.ict-collections .collections-detail-color {
  color: #000;
}
body#ict .newsletter-content,
body.ict-news .newsletter-content,
body.ict-lookbook .newsletter-content,
body.ict-collections .newsletter-content {
  color: #000;
}

/*************************************************/
/* ict top */
body#ict {
  background-image: url(../../ict/img/bg.jpg) !important;
}
body#ict .contents-title, body#ict .panels-item-category, body#ict .copyright small, body#ict .footer a {
  color: #FFF !important;
}
body#ict footer {
  position: relative;
  z-index: 1 !important;
}

#ict-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#ict-bg div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url(../../ict/img/bg.jpg) !important;
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center !important;
}

.ict-body {
  width: 610px;
  margin: 0 auto;
  margin-top: 66px;
  color: #FFF;
}
.ict-body .ict-info a,
.ict-body .ict-contents-titles a {
  color: #fff;
  transition: all 0.5s;
}
.ict-body .ict-info a:hover,
.ict-body .ict-contents-titles a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 600px) {
  .ict-body {
    width: 96%;
    margin: 0 3%;
  }
}
.ict-body h2 {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 130px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .ict-body h2 {
    margin-bottom: 65px;
  }
}
.ict-body h2 img {
  width: 100%;
  height: auto;
}
.ict-body p {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: justify;
}
.ict-body .ict-jp-text {
  padding-top: 100px;
  background: url(../../ict/img/flag.png) no-repeat;
  background-size: 29px 25px;
  background-position: center 25px;
}
.ict-body .ict-jp-text p {
  font-weight: 600;
}
.ict-body .ict-map {
  margin-top: 80px;
  position: relative;
  pointer-events: none;
}
.ict-body .ict-map img.map {
  width: 100%;
  height: auto;
  position: relative;
}
.ict-body .ict-map img.map-flag {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7.868852459016393%;
  height: 10.16393442622951%;
  margin-left: -7%;
  margin-top: -9.5%;
}
.ict-body .ict-info {
  margin-top: 20px;
  padding-bottom: 90px;
}
@media screen and (max-width: 600px) {
  .ict-body .ict-info {
    padding-bottom: 22px;
  }
}
.ict-body .ict-info h3 {
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
}
.ict-body .ict-info div {
  font-size: 0px;
  font-size: 0rem;
  width: 20px;
  height: 1px;
  overflow: hidden;
  margin: 15px auto;
  background-color: #FFF;
}
.ict-body .ict-info p {
  text-align: center;
  margin-bottom: 0;
}
.ict-body .ict-info p a {
  color: #fff !important;
  text-decoration: underline !important;
}
.ict-body .ict-info p a img {
  vertical-align: middle;
  margin-left: 3px;
}
.ict-body .ict-collections {
  margin-top: 65px;
  text-align: center;
  background-image: url(../../ict/img/collections_wht.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 100%;
}
.ict-body .ict-collections img {
  width: 100%;
  height: auto;
}
.ict-body .ict-collections a:hover {
  opacity: 1 !important;
}
.ict-body .ict-newsfeed {
  margin-top: 80px;
  width: 610px;
  height: auto;
  position: relative;
  text-align: center;
  /*
  img.ict-newsfeed-frame{
    height:100%;
    width:auto;
    position:absolute;
    top:0;
    left:64/610*100%;
  }
  img.ict-newsfeed-img{
    width:386/610*100%;
    height:386/426*100%;
    position:absolute;
    top:17/426*100%;
    left:132/610*100%;
  }
  */
}
@media screen and (max-width: 600px) {
  .ict-body .ict-newsfeed {
    width: 100%;
  }
}
.ict-body .ict-newsfeed a {
  width: 440px;
  height: 445px;
  display: inline-block;
  position: relative;
  background-image: url(../../ict/img/news_frame.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .ict-body .ict-newsfeed a {
    width: 260px;
    height: 262.95455px;
  }
}
.ict-body .ict-newsfeed a div.feedimg {
  width: 87.72727%;
  height: 86.74157%;
  position: absolute;
  top: 3.82022%;
  left: 5%;
  background-color: #FFFFFF;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.5s;
}
.ict-body .ict-newsfeed a div.feedimg:hover {
  opacity: 0.5;
}
.ict-body .ict-newsfeed a img.newsimg {
  position: absolute;
  top: 6.74157%;
  left: 7.27273%;
  pointer-events: none;
  width: 76px;
  height: 33px;
}
@media screen and (max-width: 600px) {
  .ict-body .ict-newsfeed a img.newsimg {
    width: 38px;
    height: 17px;
  }
}
.ict-body .ict-lookbook {
  margin-top: 65px;
  width: 100%;
}
.ict-body .ict-lookbook a {
  display: block;
  position: relative;
  width: 645px;
  height: auto;
  margin-left: -2.78689%;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .ict-body .ict-lookbook a {
    width: 105.7377%;
  }
}
.ict-body .ict-lookbook a img {
  position: absolute;
}
.ict-body .ict-lookbook a div.face {
  display: block;
  position: absolute;
  top: 5.01475%;
  left: 2.63566%;
  width: 94.57364%;
  height: 90.26549%;
  background-color: #fff;
}
.ict-body .ict-lookbook-img0 {
  position: relative !important;
  width: 100%;
  height: auto;
}
.ict-body .ict-lookbook-img1 {
  display: block;
  position: absolute;
  top: 5.01475%;
  left: 2.63566%;
  width: 94.57364%;
  height: auto;
}
.ict-body .ict-lookbook-img2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.ict-body .ict-lookbook-img3 {
  display: block;
  position: absolute;
  top: 44.24779%;
  left: 30.54264%;
  width: 40%;
  height: auto;
  pointer-events: none;
}
.ict-body .ict-contents-titles h3 {
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.ict-body .ict-contents-titles h3 span {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: normal !important;
}
.ict-body .ict-contents-titles p {
  text-align: center;
}
.ict-body .ict-contents-titles p.ict-newsfeed-date {
  padding: 0 !important;
  margin-top: -20px !important;
}

body#ict .contents {
  position: relative;
  z-index: 10 !important;
}

.ict-scroll-item {
  position: absolute;
  left: 50%;
  margin-top: 0;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .ict-scroll-item {
    display: none;
  }
}
.ict-scroll-item-img1 {
  top: 134px;
  margin-left: 325px;
}
.ict-scroll-item-img2 {
  top: 433px;
  margin-left: 313px;
}
.ict-scroll-item-img3 {
  top: 510px;
  margin-left: 451px;
}
.ict-scroll-item-img4 {
  top: 955px;
  margin-left: -724px;
}
.ict-scroll-item-img5 {
  top: 1201px;
  margin-left: -645px;
}
.ict-scroll-item-img6 {
  top: 1302px;
  margin-left: -640px;
}
.ict-scroll-item-img7 {
  top: 1654px;
  margin-left: 433px;
}
.ict-scroll-item-img8 {
  top: 1450px;
  margin-left: 333px;
}
.ict-scroll-item-img9 {
  top: 2416px;
  margin-left: -680px;
}
.ict-scroll-item-img10 {
  top: 2540px;
  margin-left: -750px;
}
.ict-scroll-item-img11 {
  top: 2810px;
  margin-left: -650px;
}
.ict-scroll-item-img12 {
  top: 3254px;
  margin-left: 264px;
}
.ict-scroll-item-img13 {
  top: 3277px;
  margin-left: 292px;
}

/* ===================================

  5: LCC

====================================== */
/*************************************************/
/* lcc common */
body.lcc {
  background-color: #fff !important;
  font-size: 0;
}

/****************************************************************************/
/** lcc header **/
/****************************************************************************/
body.lcc header.header {
  background-image: url(../../littlecloudcoffee/shared/img/bg_header.jpg) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  border-bottom: none !important;
}
@media screen and (max-width: 955px) {
  body.lcc header.header {
    background-image: url(../../littlecloudcoffee/shared/img/bg_header_sp.jpg) !important;
    background-size: 100% auto;
    background-repeat: no-repeat !important;
    background-position: center top !important;
  }
}
body.lcc header.header a {
  color: #fff;
  transition: opacity 0.5s !important;
}
body.lcc header.header a:hover {
  opacity: 0.6 !important;
}
body.lcc header.header .logo {
  transform: translateY(-26px);
}
body.lcc header.header .logo img {
  height: 70px;
  width: auto;
  background-color: transparent !important;
}
@media screen and (max-width: 600px) {
  body.lcc header.header .logo {
    transform: translateY(-9px);
  }
  body.lcc header.header .logo img {
    height: 34px;
  }
}
body.lcc header.header .logo a {
  background-color: transparent !important;
}
body.lcc header.header .logo a:hover {
  opacity: 1 !important;
}
body.lcc header.header .switching {
  position: absolute;
  z-index: 1;
}
body.lcc header.header .switching a {
  color: #adadad !important;
}
body.lcc header.header .switching a:hover {
  opacity: 1 !important;
}
body.lcc header.header .switching .is-current {
  color: #adadad;
  color: #fff !important;
}
body.lcc header.header .menu-body {
  background-color: #3b2321;
}
@media screen and (max-width: 955px) {
  body.lcc header.header .menu-body {
    transform: translateY(-1px);
  }
}
body.lcc header.header .menu-body-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../littlecloudcoffee/shared/img/bg_header_sp.jpg) !important;
  background-size: 100% auto;
  background-repeat: no-repeat !important;
  background-position: center top -109px !important;
  z-index: 0;
  opacity: 0.2;
  visibility: hidden;
}
@media screen and (max-width: 955px) {
  body.lcc header.header .menu-body-bg {
    visibility: visible;
  }
}
@media screen and (max-width: 600px) {
  body.lcc header.header .menu-body-bg {
    background-position: center top -59px !important;
  }
}
body.lcc header.header .menu-body .gnav {
  position: relative;
  z-index: 1;
}
body.lcc header.header .gnav-item-07 a {
  background: url(../img/icn_webstore_02.png) scroll no-repeat center 0;
  background-size: 20px auto;
}
@media screen and (max-width: 955px) {
  body.lcc header.header .gnav-item-07 a {
    background: none;
  }
}
@media screen and (max-width: 955px) {
  body.lcc header.header .gnav-item-07 {
    width: 50%;
  }
}
@media screen and (max-width: 955px) {
  body.lcc header.header .gnav-item-01 {
    width: 50%;
  }
}
body.lcc header.header .gnav-item-00 {
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 28px;
}
body.lcc header.header .gnav-item-00 a {
  background-image: url(../../ict/shared/img/icon_back.png);
  background-repeat: no-repeat;
  background-position: 0px 1px;
  background-size: 10px 14px;
  padding-left: 17px;
}
body.lcc header.header .gnav-item-pc {
  display: block;
  border-right: 0.99px solid #a0a09e;
}
@media screen and (max-width: 955px) {
  body.lcc header.header .gnav-item-pc {
    display: none;
  }
}
body.lcc header.header .gnav-item-tb {
  display: none;
}
@media screen and (max-width: 955px) {
  body.lcc header.header .gnav-item-tb {
    display: block;
    background-image: none;
    padding-top: 1.5em;
  }
  body.lcc header.header .gnav-item-tb a {
    background-position: left center;
    margin-left: 10px;
  }
}
@media screen and (max-width: 955px) {
  body.lcc header.header .menu-toggle {
    background: url(../../ict/shared/img/icon_sp_menu.png) scroll no-repeat 0 0 !important;
    background-size: contain !important;
  }
}

body.lcc header.is-fixed {
  height: 55px !important;
}
body.lcc header.is-fixed .logo {
  transform: translateY(-5px) !important;
}
body.lcc header.is-fixed .logo img {
  height: 34px !important;
}
@media screen and (max-width: 955px) {
  body.lcc header.is-fixed {
    height: 110px !important;
  }
}
@media screen and (max-width: 600px) {
  body.lcc header.is-fixed {
    height: 60px !important;
  }
}

@media screen and (max-width: 955px) {
  body.lcc-news header .gnav-item-07 {
    width: 50%;
  }
}
@media screen and (max-width: 955px) {
  body.lcc-news header .gnav-item-01 {
    width: 50%;
  }
}

/****************************************************************************/
/** lcc top **/
/****************************************************************************/
body.lcc-top {
  position: relative;
  background-color: transparent !important;
}

body.lcc-top header.header {
  background-image: none !important;
  background-color: transparent;
  margin-bottom: 0 !important;
  top: 0 !important;
  margin: 0 !important;
  position: absolute;
  width: 100%;
  z-index: 10 !important;
}
body.lcc-top header.header .logo {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 955px) {
  body.lcc-top header.header {
    top: 585px !important;
  }
}
@media screen and (max-width: 600px) {
  body.lcc-top header.header {
    top: 66vw !important;
    margin-top: -60px !important;
  }
}

body.lcc-top header.is-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  background-image: url(../../littlecloudcoffee/shared/img/bg_header.jpg) !important;
}
@media screen and (max-width: 955px) {
  body.lcc-top header.is-fixed {
    background-image: url(../../littlecloudcoffee/shared/img/bg_header_sp.jpg) !important;
  }
}
body.lcc-top header.is-fixed .logo {
  opacity: 1 !important;
  pointer-events: auto !important;
}

body.lcc-top .contents {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  background-color: transparent !important;
  z-index: 2;
  position: relative;
}

body.lcc-top .contents-body {
  padding: 20px 20px 40px;
}

body.lcc-top .contents .mainVisual {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  body.lcc-top .contents .mainVisual {
    height: 66vw;
  }
}
body.lcc-top .contents .mainVisual .mainVisual-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
body.lcc-top .contents .mainVisual .mainVisual-inner h1 {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -27px;
}
@media screen and (max-width: 600px) {
  body.lcc-top .contents .mainVisual .mainVisual-inner h1 {
    margin-top: -18px;
  }
}
body.lcc-top .contents .mainVisual .mainVisual-inner h1 img {
  width: 102px;
  height: auto;
}
@media screen and (max-width: 600px) {
  body.lcc-top .contents .mainVisual .mainVisual-inner h1 img {
    width: 86px;
  }
}
body.lcc-top .contents .mainVisual .mainVisual-inner h2 {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 48px;
}
@media screen and (max-width: 600px) {
  body.lcc-top .contents .mainVisual .mainVisual-inner h2 {
    margin-top: 41px;
  }
}
body.lcc-top .contents .mainVisual .mainVisual-inner h2 img {
  width: 184px;
  height: auto;
}

body.lcc-top .bgvideo {
  width: 100%;
  height: 700px;
  position: fixed;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  body.lcc-top .bgvideo {
    height: 66vw;
  }
}
body.lcc-top .bgvideo video {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
}
body.lcc-top .bgvideo .bgvideo-photos {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
body.lcc-top .bgvideo .bgvideo-photos div.slick-track,
body.lcc-top .bgvideo .bgvideo-photos div.slick-list {
  height: 100% !important;
}
body.lcc-top .bgvideo .bgvideo-photos div.bgvideo-photos-slide {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

body.lcc-top footer {
  background-color: #fff !important;
  z-index: 1;
  position: relative;
}

.lcc-news-title,
.lcc-news-panels {
  width: 80%;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lcc-news-title,
  .lcc-news-panels {
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px !important;
  }
}
.lcc-news-title .panels-item, .lcc-news-title .archives-item, .lcc-news-title .dissertationOn-lookbook-body-item, .lcc-news-title .collections-item,
.lcc-news-panels .panels-item,
.lcc-news-panels .archives-item,
.lcc-news-panels .dissertationOn-lookbook-body-item,
.lcc-news-panels .collections-item {
  width: 25% !important;
}
@media screen and (max-width: 768px) {
  .lcc-news-title .panels-item, .lcc-news-title .archives-item, .lcc-news-title .dissertationOn-lookbook-body-item, .lcc-news-title .collections-item,
  .lcc-news-panels .panels-item,
  .lcc-news-panels .archives-item,
  .lcc-news-panels .dissertationOn-lookbook-body-item,
  .lcc-news-panels .collections-item {
    width: 50% !important;
  }
}
.lcc-news-title .contents-title,
.lcc-news-panels .contents-title {
  width: 100% !important;
  margin: 0 !important;
  padding: 27px 0;
}

.lcc-news-more {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .lcc-news-more {
    padding-bottom: 0;
  }
}

/****************************************************************************/
/** lcc news panel **/
/****************************************************************************/
body.lcc .release-gallery-look,
body.lcc .release-gallery-image,
body.lcc .release-gallery-look-products,
body.lcc .release-gallery-products-item,
body.lcc .panels-item-thumbnail {
  box-sizing: border-box;
  border: 0.99px solid #e8e8e8;
}

/****************************************************************************/
/** lcc top menu **/
/****************************************************************************/
.lcc-top-menu div {
  float: left;
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .lcc-top-menu div {
    width: 100%;
  }
}

/****************************************************************************/
/** lcc text input **/
/****************************************************************************/
body.lcc #email {
  border: 1px solid #e5e5e5;
}

body.lcc-top .contents-body {
  padding-top: 30px !important;
}
body.lcc-top .about-item:first-of-type {
  padding-top: 0 !important;
}

/*  Adjustings for JP
====================================== */
.entry-col * {
  line-height: 1.8;
}

.release-gallery-text * {
  line-height: 1.8;
}

.stockist-item-info p {
  line-height: 1.8;
}

.about-item p {
  line-height: 1.8;
}

.sitepolicy .contents-body * {
  line-height: 1.8;
}

/* ===================================

  5: PLUGIN

====================================== */
/* Magnific Popup CSS */
.white-popup {
  position: relative;
  background: url(../img/bg_body_01.png) scroll repeat center top;
  padding: 30px 20px;
  width: auto;
  max-width: 600px;
  margin: 20px auto;
  -webkit-box-shadow: 0 4px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.3);
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #fff;
  opacity: 0.7;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #cccccc;
}

.mfp-preloader a:hover {
  color: white;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button.mfp-close {
  overflow: hidden;
  width: 14px;
  height: 14px;
  line-height: 14px;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  background: url(../img/btn_close.png) scroll no-repeat 0 0;
  background-size: cover;
  text-indent: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 320px) {
  button.mfp-close {
    top: 18px;
    right: 10px;
    width: 12px;
    height: 12px;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

.mfp-close-btn-in .mfp-close {
  color: #333333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/*!
 * clickstream v2.1.0
 * http://blivesta.github.io/clickstream/
 * Licensed under MIT
 * Copyright 2013-2014 blivesta
 *
 */
.clickstream {
  position: relative;
  opacity: 0;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.clickstream-in {
  -webkit-animation-duration: .5s;
  -o-animation-duration: .5s;
  animation-duration: .5s;
}

.clickstream-out {
  -webkit-animation-duration: .5s;
  -o-animation-duration: .5s;
  animation-duration: .5s;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation-name: fade-in;
  -o-animation-name: fade-in;
  animation-name: fade-in;
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fade-out {
  -webkit-animation-name: fade-out;
  -o-animation-name: fade-out;
  animation-name: fade-out;
}

@-webkit-keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes fade-in-up {
  0% {
    opacity: 0;
    -o-transform: translateY(1000px);
    transform: translateY(1000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1000px);
    -o-transform: translateY(1000px);
    transform: translateY(1000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-in-up {
  -webkit-animation-name: fade-in-up;
  -o-animation-name: fade-in-up;
  animation-name: fade-in-up;
}

@-webkit-keyframes fade-out-up {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
}
@-o-keyframes fade-out-up {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
}
@keyframes fade-out-up {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1000px);
    -o-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
}
.fade-out-up {
  -webkit-animation-name: fade-out-up;
  -o-animation-name: fade-out-up;
  animation-name: fade-out-up;
}

@-webkit-keyframes fade-in-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes fade-in-down {
  0% {
    opacity: 0;
    -o-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-1000px);
    -o-transform: translateY(-1000px);
    transform: translateY(-1000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.fade-in-down {
  -webkit-animation-name: fade-in-down;
  -o-animation-name: fade-in-down;
  animation-name: fade-in-down;
}

@-webkit-keyframes fade-out-down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
  }
}
@-o-keyframes fade-out-down {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(1000px);
    transform: translateY(1000px);
  }
}
@keyframes fade-out-down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(1000px);
    -o-transform: translateY(1000px);
    transform: translateY(1000px);
  }
}
.fade-out-down {
  -webkit-animation-name: fade-out-down;
  -o-animation-name: fade-out-down;
  animation-name: fade-out-down;
}

@-webkit-keyframes fade-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes fade-in-left {
  0% {
    opacity: 0;
    -o-transform: translateX(-1500px);
    transform: translateX(-1500px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1500px);
    -o-transform: translateX(-1500px);
    transform: translateX(-1500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.fade-in-left {
  -webkit-animation-name: fade-in-left;
  -o-animation-name: fade-in-left;
  animation-name: fade-in-left;
}

@-webkit-keyframes fade-out-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
  }
}
@-o-keyframes fade-out-left {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-1500px);
    transform: translateX(-1500px);
  }
}
@keyframes fade-out-left {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-1500px);
    -o-transform: translateX(-1500px);
    transform: translateX(-1500px);
  }
}
.fade-out-left {
  -webkit-animation-name: fade-out-left;
  -o-animation-name: fade-out-left;
  animation-name: fade-out-left;
}

@-webkit-keyframes fade-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes fade-in-right {
  0% {
    opacity: 0;
    -o-transform: translateX(1500px);
    transform: translateX(1500px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fade-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(1500px);
    -o-transform: translateX(1500px);
    transform: translateX(1500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.fade-in-right {
  -webkit-animation-name: fade-in-right;
  -o-animation-name: fade-in-right;
  animation-name: fade-in-right;
}

@-webkit-keyframes fade-out-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
  }
}
@-o-keyframes fade-out-right {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(1500px);
    transform: translateX(1500px);
  }
}
@keyframes fade-out-right {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(1500px);
    -o-transform: translateX(1500px);
    transform: translateX(1500px);
  }
}
.fade-out-right {
  -webkit-animation-name: fade-out-right;
  -o-animation-name: fade-out-right;
  animation-name: fade-out-right;
}

@-webkit-keyframes rotate-in {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@-o-keyframes rotate-in {
  0% {
    opacity: 0;
    -o-transform: rotate(-200deg);
    transform: rotate(-200deg);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    -o-transform: rotate(0);
    transform: rotate(0);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes rotate-in {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    -o-transform: rotate(-200deg);
    transform: rotate(-200deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
.rotate-in {
  -webkit-animation-name: rotate-in;
  -o-animation-name: rotate-in;
  animation-name: rotate-in;
}

@-webkit-keyframes rotate-out {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@-o-keyframes rotate-out {
  0% {
    opacity: 1;
    -o-transform: rotate(0);
    transform: rotate(0);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    -o-transform: rotate(200deg);
    transform: rotate(200deg);
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes rotate-out {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    -o-transform: rotate(200deg);
    transform: rotate(200deg);
    -webkit-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
  }
}
.rotate-out {
  -webkit-animation-name: rotate-out;
  -o-animation-name: rotate-out;
  animation-name: rotate-out;
}

@-webkit-keyframes flip-in-x {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
  }
}
@-o-keyframes flip-in-x {
  0% {
    opacity: 0;
    -o-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    -o-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
  }
}
@keyframes flip-in-x {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    -o-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -o-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
  }
}
.flip-in-x {
  -webkit-animation-name: flip-in-x;
  -o-animation-name: flip-in-x;
  animation-name: flip-in-x;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-x {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}
@-o-keyframes flip-out-x {
  0% {
    opacity: 1;
    -o-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    -o-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}
@keyframes flip-out-x {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -o-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    -o-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}
.flip-out-x {
  -webkit-animation-name: flip-out-x;
  -o-animation-name: flip-out-x;
  animation-name: flip-out-x;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-in-y {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
  }
}
@-o-keyframes flip-in-y {
  0% {
    opacity: 0;
    -o-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -o-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
  }
}
@keyframes flip-in-y {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    -o-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
    -o-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
  }
}
.flip-in-y {
  -webkit-animation-name: flip-in-y;
  -o-animation-name: flip-in-y;
  animation-name: flip-in-y;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-y {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}
@-o-keyframes flip-out-y {
  0% {
    opacity: 1;
    -o-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    -o-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}
@keyframes flip-out-y {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
    -o-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    -o-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}
.flip-out-y {
  -webkit-animation-name: flip-out-y;
  -o-animation-name: flip-out-y;
  animation-name: flip-out-y;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes zoom-in {
  0% {
    opacity: 0;
    -o-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -o-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
  }
}
.zoom-in {
  -webkit-animation-name: zoom-in;
  -o-animation-name: zoom-in;
  animation-name: zoom-in;
}

@-webkit-keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes zoom-out {
  0% {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -o-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -o-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoom-out {
  -webkit-animation-name: zoom-out;
  -o-animation-name: zoom-out;
  animation-name: zoom-out;
}