@charset "UTF-8";



/* ----------------------------
  Hero
---------------------------- */
.hero {
  height: 100%;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero-wrapper {
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.loaded .hero-wrapper {
  opacity: 1;
}
.hero-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/hero-bg-pc.jpg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.loaded .hero-bg {
  opacity: 0.7;
}
.hero-inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -85px;
}

@media screen and (min-width: 813px) and (max-height: 800px) {
  .hero-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    height: 100%;
    margin-top: 0;
    padding-bottom: 100px;
    box-sizing: border-box;
    position: relative;
    top: 0;
  }
}

@media screen and (max-width: 812px) {
  .hero {
    overflow: hidden;
    height: auto;
    min-height: 500px;
    max-height: 100%;
  }
  .hero:before {
    content: "";
    display: block;
    padding-top: 146.6666667%;
  }
  .hero-bg {
    background-image: url(../img/hero-bg-sp.jpg);
  }
  .hero-inner {
    padding: 0 4.2666667%;
    top: auto;
    left: 0;
    right: 0;
    bottom: 55px;
    margin-top: 0;
  }
}


/* Hero Title
---------------------------- */
.hero-title {
  margin-bottom: 23px;
  overflow: hidden;
}
.hero-title img {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.loaded .hero-title img {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}

@media screen and (max-width: 812px) {
  .hero-title {
    margin-bottom: 14px;
  }
  .hero-title img {
    max-width: 343.5px;
    width: 100%;
  }
}


/* Hero Lead
---------------------------- */
.hero-lead {
  margin-bottom: 16px;
  overflow: hidden;
}
.hero-lead em {
  display: block;
  line-height: 1.454545455;
  font-weight: bold;
  font-size: 22px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.loaded .hero-lead em {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}

@media screen and (max-width: 812px) {
  .hero-lead {
    margin-bottom: 0;
  }
  .hero-lead em {
    line-height: 1.642857143;
    font-size: 14px;
  }
}

@media screen and (max-width: 375px) {
  .hero-lead em {
    font-size: 3.7333333vw;
  }
}


/* Hero Body
---------------------------- */
.hero-body {
  margin: 0 auto;
  max-width: 670px;
  text-align: justify;
  line-height: 1.733333333;
  font-weight: 600;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.loaded .hero-body {
  opacity: 1;
}

@media screen and (max-width: 812px) {
  .hero-body {
    display: none;
  }
}


/* Hero Page Down
---------------------------- */
.hero .page-down {
  opacity: 0;
}
.hero.active .page-down {
  opacity: 0;
}
.loaded .hero .page-down {
  -webkit-animation: flash 1.6s 1.6s infinite;
  animation: flash 1.6s 1.6s infinite;
}

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


/* ----------------------------
  Intro
---------------------------- */
.intro {
  display: none;
  padding: 25px 5.3333333%;
  letter-spacing: 0.03125em;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
.loaded .intro {
  opacity: 1;
}
.intro dt {
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.5625;
  font-weight: bold;
  font-size: 16px;
}

@media screen and (max-width: 812px) {
  .intro {
    display: block;
  }
}

@media screen and (max-width: 375px) {
  .intro dt {
    font-size: 4.2666667vw;
  }
}



/* ----------------------------
  Page
---------------------------- */

/* Container
---------------------------- */
.page-container {
  height: 100%;
  position: relative;
}
.page-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.page-container.visible:before {
  opacity: 1;
}

/* Each */
.pastel:before {
  background: #d6eda9;
}
.denim {
  color: #fff;
}
.denim:before {
  background: #0e1b33;
}
.slits:before {
  background: #e3bfde;
}

@media screen and (max-width: 812px) {
  .page-container {
    height: auto;
  }
}


/* Background
---------------------------- */
.page-bg {
  width: 50%;
  overflow: hidden;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}
.page-bg:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}

/* Visible */
.visible .page-bg:before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* Each */
.pastel .page-bg:before {
  background-image: url(../img/pastel-bg.jpg);
}
.denim .page-bg {
  right: 0;
}
.denim .page-bg:before {
  background-image: url(../img/denim-bg.jpg);
}
.slits .page-bg:before {
  background-image: url(../img/slits-bg.jpg);
}

@media screen and (max-width: 812px) {
  .page-bg {
    display: none;
  }
}


/* Page
---------------------------- */
.page {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-pack: justify; /* Less than android 4.3 */
  -webkit-justify-content: space-between; /* Less than iOS8 */
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-right {
  -webkit-box-orient: horizontal; /* Less than android 4.3 */
  -webkit-box-direction: reverse; /* Less than android 4.3 */
  -webkit-flex-direction: row-reverse; /* Less than iOS8 */
  flex-direction: row-reverse;
}

@media screen and (max-width: 812px) {
  .page {
    -webkit-box-orient: vertical; /* Less than android 4.3 */
    -webkit-box-direction: reverse; /* Less than android 4.3 */
    -webkit-flex-direction: column-reverse; /* Less than iOS8 */
    flex-direction: column-reverse;
    height: auto;
    position: relative;
  }
  .pastel .page {
    background: #d6eda9;
  }
  .denim .page {
    background: #0e1b33;
    color: #fff;
  }
  .slits .page {
    background: #e3bfde;
  }
}


/* Page Sub
---------------------------- */
@media screen and (max-width: 812px) {
  .page-sub {
    position: static;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}



/* ----------------------------
  Page Body
---------------------------- */
.page-body {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-orient: vertical; /* Less than android 4.3 */
  -webkit-flex-direction: column; /* Less than iOS8 */
  flex-direction: column;
  -webkit-box-pack: center; /* Less than android 4.3 */
  -webkit-justify-content: center; /* Less than iOS8 */
  justify-content: center;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  width: 50%;
}
.page-body-inner {
  max-width: 430px;
  width: 100%;
}

@media screen and (max-width: 812px) {
  .page-body {
    display: block;
    padding: 0 5.3333333%;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
  }
  .page-body-inner {
    max-width: none;
  }
}


/* Page Title
---------------------------- */
.page-title {
  margin-bottom: 28px;
  text-align: center;
}
.page-title > span {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 22px;
}
.page-title > span span {
  display: block;
}
.page-title em {
  display: block;
}

@media screen and (min-width: 813px) and (max-height: 700px) {
  .page-title {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 812px) {
  .page-title {
    margin-top: -118px;
    margin-bottom: 16px;
  }
  .page-title > span {
    margin-bottom: 7px;
    font-size: 18px;
  }
  .page-title img {
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .page-title > span {
    font-size: 4.8vw;
  }
}

/* Each */
.pastel .page-title span {
  color: #ffa6b1;
}
.denim .page-title span {
  color: #f45f46;
}
.slits .page-title span {
  color: #e1659b;
}

@media screen and (max-width: 812px) {
  .pastel .page-title img {
    max-width: 286px;
    width: 85.3731343%;
  }
  .denim .page-title img {
    max-width: 313.5px;
    width: 93.5820896%;
  }
  .slits .page-title img {
    max-width: 287.5px;
    width: 85.8208955%;
  }
}


/* Page Sub Title
---------------------------- */
.page-subtitle {
  margin-bottom: 28px;
  text-align: center;
}
.page-subtitle span {
  display: block;
}

@media screen and (min-width: 813px) and (max-height: 700px) {
  .page-subtitle {
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 812px) {
  .page-subtitle {
    margin-bottom: 7px;
  }
  .page-subtitle img {
    max-width: 195px;
    width: 100%;
  }
}


/* Page Lead
---------------------------- */
.page-lead {
  margin-bottom: 25px;
  line-height: 1.7;
  text-align: center;
  letter-spacing: -0.075em;
  font-weight: bold;
  font-size: 20px;
}
.page-lead em {
  display: block;
}

@media screen and (min-width: 813px) and (max-height: 700px) {
  .page-lead {
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 812px) {
  .page-lead {
    margin-bottom: 10px;
    line-height: 1.666666667;
    font-size: 15px;
  }
}

@media screen and (max-width: 375px) {
  .page-lead {
    font-size: 4vw;
  }
}


/* Page Figure
---------------------------- */
.page-figure {
  display: none;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
.page-figure:before {
  content: "";
  display: block;
  padding-top: 133.2835821%;
}
.page-figure-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-figure-inner figure {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-figure-inner figure img {
  max-width: none;
  width: 100%;
}

@media screen and (max-width: 812px) {
  .page-figure {
    display: block;
  }
}


/* Page Detail
---------------------------- */
.page-detail {
  margin: 0 10px;
}
.page-detail:after {
  content: "";
  display: block;
  clear: both;
}
.page-detail-image {
  margin-top: 5px;
  text-align: center;
  float: right;
}
.page-detail-image figcaption {
  margin-top: 2px;
  line-height: 18px;
  font-weight: bold;
  font-size: 13px;
}
.page-detail-image figcaption span {
  display: block;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.page-detail-body {
  width: 270px;
  float: left;
  overflow: hidden;
}

@media screen and (min-width: 813px) and (max-height: 700px) {
  .page-detail-body {
    width: 70%;
  }
  .page-detail-image img {
    width: 60px;
  }
}

@media screen and (max-width: 812px) {
  .page-detail {
    margin: 0;
  }
  .page-detail-image {
    width: 117.5px;
    float: left;
  }
  .page-detail-image img {
    width: 63.5px;
  }
  .page-detail-image figcaption {
    margin-top: 0;
    line-height: 1.5;
    font-size: 12px;
  }
  .page-detail-image figcaption span {
    margin-top: -2px;
    font-size: 15px;
  }
  .page-detail-body {
    margin-left: 135px;
    width: auto;
    float: none;
  }
}

@media screen and (max-width: 375px) {
  .page-detail-image {
    width: 35.0746269%;
  }
  .page-detail-image img {
    width: 54.0425532%;
  }
  .page-detail-image figcaption {
    font-size: 3.2vw;
  }
  .page-detail-image figcaption span {
    font-size: 4vw;
  }
  .page-detail-body {
    margin-left: 40.2985075%;
  }
}

/* Each */
.pastel .page-detail-image figcaption {
  color: #ff9295;
}
.denim .page-detail-image figcaption {
  color: #e45a44;
}
.slits .page-detail-image figcaption {
  color: #e1659b;
}


/* Page Text
---------------------------- */
.page-text {
  line-height: 1.733333333;
  text-align: justify;
}

@media screen and (min-width: 813px) and (max-height: 700px) {
  .page-text {
    font-size: 14px;
  }
}


/* Page Note
---------------------------- */
.page-note {
  margin-top: 16px;
  line-height: 1.636363636;
  font-size: 11px;
}

@media screen and (max-width: 375px) {
  .page-note {
    font-size: 2.9333333vw;
  }
}


/* Page Link
---------------------------- */
.page-link {
  margin-top: 16px;
}
.page-link a {
  text-decoration: underline;
  font-size: 14px;
  font-weight: bold;
  color: inherit;
}
.page-link a:hover {
  text-decoration: none;
}

@media screen and (max-width: 812px) {
  .page-link {
    margin-top: 10px;
  }
}

@media screen and (max-width: 375px) {
  .page-link a {
    font-size: 3.7333333vw;
  }
}



/* ----------------------------
  Page Image
---------------------------- */
.page-image {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-orient: vertical; /* Less than android 4.3 */
  -webkit-flex-direction: column; /* Less than iOS8 */
  flex-direction: column;
  -webkit-box-pack: center; /* Less than android 4.3 */
  -webkit-justify-content: center; /* Less than iOS8 */
  justify-content: center;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  width: 50%;
  position: relative;
  overflow: hidden;
}
.page-image-inner {
  width: 71.875%;
  max-width: 460px;
  position: relative;
}
.page-image-inner:before {
  content: "";
  display: block;
  padding-top: 132.6086957%;
}
.page-image figure {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-image figure img {
  display: block;
  max-width: none;
  width: 100%;
}

@media screen and (min-width: 813px) and (max-height: 800px) {
  .page-image-inner {
    max-width: calc(60vh);
  }
}

@media screen and (max-width: 812px) {
  .page-image {
    display: block;
    padding-top: 126.6666667%;
    width: 100%;
    z-index: 1;
  }
  .page-image:before {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 1.2s;
    transition: all 1.2s;
  }
  .active .page-image:before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .page-image-inner {
    padding-top: 102.6666667%;
    width: 77.3333333%;
    max-width: none;
    height: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .page-image-inner:before {
    display: none;
  }
  .page-sub .page-image {
    display: none;
  }
}

/* Each */
@media screen and (max-width: 812px) {
  .pastel .page-image:before {
    background-image: url(../img/pastel-bg.jpg);
  }
  .denim .page-image:before {
    background-image: url(../img/denim-bg.jpg);
  }
  .slits .page-image:before {
    background-image: url(../img/slits-bg.jpg);
  }
}



/* ----------------------------
  Page Down
---------------------------- */
.page-down {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.active .page-down {
  opacity: 1;
}

@media screen and (max-width: 812px) {
  .page-down {
    font-size: 13px;
    bottom: 20px;
  }
  .page .page-down {
    display: none;
  }
}

@media screen and (max-width: 375px) {
  .page-down {
    font-size: 3.4666667vw;
  }
}



/* ----------------------------
  Product
---------------------------- */
.product {
  padding: 130px 20px 52px;
  opacity: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.active .product {
  opacity: 1;
}

@media screen and (max-width: 812px) {
  .product {
    padding: 26px 5.3333333% 34px;
  }
}


/* Product Title
---------------------------- */
.product-title {
  margin-bottom: 6px;
  line-height: 1.666666667;
  text-align: center;
  letter-spacing: -0.06em;
  font-weight: bold;
  font-size: 30px;
}

@media screen and (max-width: 812px) {
  .product-title {
    margin-bottom: 8px;
    letter-spacing: 0;
    font-size: 19px;
  }
}

@media screen and (max-width: 375px) {
  .product-title {
    font-size: 5.0666667vw;
  }
}


/* Product Lead
---------------------------- */
.product-lead {
  margin-bottom: 46px;
  line-height: 1.666666667;
  letter-spacing: -0.06em;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 812px) {
  .product-lead {
    margin-bottom: 24px;
    letter-spacing: 0;
    font-size: 15px;
  }
}

@media screen and (max-width: 375px) {
  .product-lead {
    font-size: 4vw;
  }
}


/* Product Main
---------------------------- */
.product-main {
  margin: 0 auto 54px;
  width: 100%;
  max-width: 790px;
}
.product-main:after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 812px) {
  .product-main {
    margin-bottom: 26px;
    max-width: none;
  }
}


/* Product Image
---------------------------- */
.product-image {
  padding-top: 6px;
  width: 43.7974684%;
  float: left;
}

@media screen and (max-width: 812px) {
  .product-image {
    margin-bottom: 16px;
    padding-top: 0;
    width: 100%;
    float: none;
    text-align: center;
  }
  .product-image img {
    max-width: 313px;
    width: 100%;
  }
}


/* Product Content
---------------------------- */
.product-body {
  width: 46.835443%;
  line-height: 1.733333333;
  float: right;
  text-align: justify;
}
.product-note {
  margin-top: 10px;
  line-height: 1.636363636;
  font-size: 11px;
}
.product-link {
  margin-top: 22px;
  text-align: center;
}
.product-link a {
  text-decoration: underline;
  font-weight: bold;
  font-size: 14px;
}
.product-link a:hover {
  text-decoration: none;
}

@media screen and (max-width: 812px) {
  .product-body {
    width: 100%;
    float: none;
  }
  .product-link {
    margin-top: 20px;
  }
}

@media screen and (max-width: 375px) {
  .product-note {
    font-size: 2.9333333vw;
  }
  .product-link a {
    font-size: 3.7333333vw;
  }
}


/* Product Artist
---------------------------- */
.product-artist {
  margin: 0 auto 48px;
  padding: 48px 60px;
  max-width: 780px;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid;
}
.product-artist-title {
  margin-bottom: 20px;
  line-height: 1.25;
  text-align: center;
  font-weight: bold;
}
.product-artist-title span {
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  font-size: 16px;
}
.product-artist-title em {
  display: block;
  letter-spacing: -0.04em;
  font-size: 28px;
}
.product-artist-body {
  line-height: 1.857142857;
  font-size: 14px;
}

@media screen and (max-width: 812px) {
  .product-artist {
    margin-bottom: 36px;
    padding: 24px 32px 28px;
    max-width: 100%;
    border: 1px solid;
  }
  .product-artist-title {
    margin-bottom: 18px;
  }
  .product-artist-title span {
    margin-bottom: 4px;
    font-size: 12px;
  }
  .product-artist-title em {
    font-size: 23px;
  }
  .product-artist-body {
    line-height: 1.666666667;
    font-size: 12px;
  }
}

@media screen and (max-width: 375px) {
  .product-artist-title span {
    font-size: 3.2vw;
  }
  .product-artist-title em {
    font-size: 6.1333333vw;
  }
  .product-artist-body {
    font-size: 3.2vw;
  }
}


/* Product Credit
---------------------------- */
.product-credit {
  margin-bottom: 44px;
  line-height: 1.571428571;
  text-align: center;
  letter-spacing: 0.04em;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 812px) {
  .product-credit {
    margin-bottom: 30px;
    line-height: 1.666666667;
    letter-spacing: -0.02em;
    font-size: 12px;
  }
}

@media screen and (max-width: 375px) {
  .product-credit {
    font-size: 3.2vw;
  }
}



/* ----------------------------
  Info
---------------------------- */

/* Info Share
---------------------------- */
.info-share {
  display: none;
  margin-bottom: 31px;
  text-align: center;
}
.info-share dt {
  font-weight: bold;
  font-size: 14px;
}
.info-share dd {
  display: inline-block;
  vertical-align: top;
  font-size: 10px;
  line-height: 1;
}
.info-share a {
  display: block;
  padding: 8px 14px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.info-share a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 812px) {
  .info-share {
    display: block;
  }
}

@media screen and (max-width: 375px) {
  .info-share dt {
    font-size: 3.7333333vw;
  }
}


/* Info Banners
---------------------------- */
.info-banners {
  margin: 0 auto 48px;
  max-width: 600px;
  width: 100%;
  text-align: center;
}
.info-banners li {
  margin-top: 30px;
}
.info-banners li:first-child {
  margin-top: 0;
}
.info-banners a {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.info-banners a:hover {
  opacity: 0.6;
}
.info-banners picture {
  display: block;
}
.info-banners img {
  max-width: none;
  width: 100%;
}

@media screen and (max-width: 812px) {
  .info-banners {
    margin-bottom: 30px;
    max-width: none;
  }
}


/* Info Box
---------------------------- */
@media screen and (max-width: 812px) {
  .info-box {
    padding: 30px 0;
    border: 1px solid;
  }
}


/* Info Contact
---------------------------- */
.info-contact {
  margin-bottom: 24px;
  font-weight: bold;
  text-align: center;
}
.info-contact dt {
  margin-bottom: -6px;
  font-size: 14px;
}
.info-contact dd {
  letter-spacing: 0.04em;
  font-size: 18px;
}
.info-contact dd a {
  font-size: 20px;
  border-bottom: 1px solid;
}
.info-contact dd a:hover {
  border-bottom: 0;
}

@media screen and (max-width: 812px) {
  .info-contact dt {
    margin-bottom: 0;
    font-size: 12px;
  }
  .info-contact dd a {
    font-size: 18px;
  }
}

@media screen and (max-width: 375px) {
  .info-contact dt {
    font-size: 3.2vw;
  }
  .info-contact dd,
  .info-contact dd a {
    font-size: 4.8vw;
  }
}


/* Info SNS
---------------------------- */
.info-sns {
  margin-bottom: 22px;
  font-weight: bold;
  text-align: center;
}
.info-sns dt {
  margin-bottom: 12px;
  font-size: 14px;
}
.info-sns dd {
  display: inline-block;
  margin: 0 14px;
  vertical-align: top;
}
.info-sns a {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.info-sns a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 812px) {
  .info-sns {
    margin-bottom: 14px;
  }
  .info-sns dt {
    margin-bottom: 0;
    font-size: 12px;
  }
  .info-sns dd {
    margin: 0;
    font-size: 10px;
    line-height: 1;
  }
  .info-sns a {
    padding: 12px 14px;
  }
}

@media screen and (max-width: 375px) {
  .info-sns dt {
    font-size: 3.2vw;
  }
}


/* Info Link
---------------------------- */
.info-link {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}
.info-link a {
  text-decoration: underline;
}
.info-link a:hover {
  text-decoration: none;
}

@media screen and (max-width: 812px) {
  .info-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 375px) {
  .info-link {
    font-size: 4.2666667vw;
  }
}




/* ----------------------------
  Effect
---------------------------- */

/* Data Effect Up
---------------------------- */
[data-effect="up"] {
  overflow: hidden;
}
[data-effect="up"] > * {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.active [data-effect="up"] > * {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}


/* Data Effect On
---------------------------- */
[data-effect="on"] {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.active [data-effect="on"] {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}


/* Data Effect Scale
---------------------------- */
[data-effect="scale"] {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  overflow: hidden;
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}
[data-effect="scale"] > * {
  display: block;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}
.active [data-effect="scale"] {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.active [data-effect="scale"] > * {
  -webkit-transform: scale(1);
  transform: scale(1);
}



/* ----------------------------
  Slide
---------------------------- */
[data-slide] figure img {
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
[data-slide] figure.current img {
  opacity: 1;
}


/* Slide Counter
---------------------------- */
.slide-counter {
  margin-top: 8px;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
.active .slide-counter {
  opacity: 1;
}

@media screen and (max-width: 812px) {
  .slide-counter {
    margin-top: 0;
    font-size: 15px;
    top: auto;
    bottom: 8px;
  }
}


/* Slide Button
---------------------------- */
.slide-button {
  display: none;
  padding: 15px 16px;
  font-size: 0;
  line-height: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
.active .slide-button {
  opacity: 1;
}

@media screen and (max-width: 812px) {
  .slide-button {
    display: block;
  }
}
