@charset "UTF-8";



/* ----------------------------
  Hero
---------------------------- */

/* Hero Container
---------------------------- */
body {
  padding-top: 1px; /* To Avoid Margin Collapsing */
}
.hero {
  margin: 7px 8px 8px;
  background: #7ed8d0;
  color: #464849;
}
.hero-inner {
  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-box-direction: reverse; /* Less than android 4.3 */
  -webkit-flex-direction: column-reverse; /* Less than iOS8 */
  flex-direction: column-reverse;
  margin: 0 auto;
  padding: 34px 0 256px;
  max-width: 980px;
  background-repeat: no-repeat;
  position: relative;
}

@media screen and (max-width: 812px) {
  .hero {
    margin: 3px 4px 0;
  }
  .hero-inner {
    padding: 40px 0 106px;
    max-width: 367px;
  }
}

/* Each */
.ginza .hero-inner {
  background: url(../img/ginza/hero-bg-map-pc.png) no-repeat right 15px;
}
.shinjuku .hero-inner {
  background: url(../img/shinjuku/hero-bg-map-pc.png) no-repeat right 124px;
}
.nakameguro .hero-inner {
  background: url(../img/nakameguro/hero-bg-map-pc.png) no-repeat right 22px top 118px;
}
.harajuku .hero-inner {
  background: url(../img/harajuku/hero-bg-map-pc.png) no-repeat right top 84px;
}
.shibuya .hero-inner {
  background: url(../img/shibuya/hero-bg-map-pc.png) no-repeat right top 84px;
}
.omotesando .hero-inner {
  background: url(../img/omotesando/hero-bg-map-pc.png) no-repeat right top 120px;
}
.shirokane .hero-inner {
  background: url(../img/shirokane/hero-bg-map-pc.png) no-repeat right top 75px;
}
.tokyo .hero-inner {
  background: url(../img/tokyo/hero-bg-map-pc.png) no-repeat right top 62px;
}
.roppongi .hero-inner {
  background: url(../img/roppongi/hero-bg-map-pc.png) no-repeat right top 54px;
}

@media screen and (max-width: 812px) {
  .ginza .hero-inner {
    background: url(../img/ginza/hero-bg-map-sp.png) no-repeat right 156px;
    background-size: 79.8365123% auto;
  }
  .shinjuku .hero-inner {
    background: url(../img/shinjuku/hero-bg-map-sp.png) no-repeat right 192px;
    background-size: 58.3106267% auto;
  }
  .nakameguro .hero-inner {
    background: url(../img/nakameguro/hero-bg-map-sp.png) no-repeat right 210px;
    background-size: 70.1634877% auto;
  }
  .harajuku .hero-inner {
    background: url(../img/harajuku/hero-bg-map-sp.png) no-repeat right 185px;
    background-size: 71.9346049% auto;
  }
  .shibuya .hero-inner {
    background: url(../img/shibuya/hero-bg-map-sp.png) no-repeat right top 200px;
    background-size: 68.9373297% auto;
  }
  .omotesando .hero-inner {
    background: url(../img/omotesando/hero-bg-map-sp.png) no-repeat right top 214px;
    background-size: 60.7629428% auto;
  }
  .shirokane .hero-inner {
    background: url(../img/shirokane/hero-bg-map-sp.png) no-repeat right top 197.5px;
    background-size: 62.5340599% auto;
  }
  .tokyo .hero-inner {
    background: url(../img/tokyo/hero-bg-map-sp.png) no-repeat right top 193px;
    background-size: 78.0653951% auto;
  }
  .roppongi .hero-inner {
    background: url(../img/roppongi/hero-bg-map-sp.png) no-repeat right top 200px;
    background-size: 64.7138965% auto;
  }
}

@media screen and (max-width: 320px) {
  .shinjuku .hero-inner {
    background-position: right 178px;
  }
  .nakameguro .hero-inner {
    background-position: right 184px;
  }
}



/* Hero Head
---------------------------- */
.hero-head {
  margin-top: 42px;
  margin-left: 50px;
  max-width: 600px;
  opacity: 0;
  -webkit-transform: translateX(-24px);
  transform: translateX(-24px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.loaded .hero-head {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.hero-head-title {
  margin-bottom: 10px;
  line-height: 1.2;
  font-family: "Marion", serif;
  position: relative;
}
.hero-head-title em {
  display: block;
  font-size: 40px;
}
.hero-head-title span {
  display: block;
  font-size: 20px;
}
.hero-head-title:after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 100%;
  height: 1px;
  background: #78797f;
}
.hero-head-lead {
  text-align: justify;
  letter-spacing: 0;
}

@media screen and (max-width: 812px) {
  .hero-head {
    margin: 46.3215259% 6.5395095% 0;
  }
  .hero-head-title em {
    margin-bottom: 4px;
    font-size: 32px;
  }
  .hero-head-title:after {
    margin-top: 8px;
  }
}


/* Hero Images
---------------------------- */
.hero-images {
  margin-top: -28px;
  padding-left: 135px;
  position: relative;
}
.hero-picture {
  width: 235px;
  position: relative;
}
.hero-picture img {
  opacity: 0;
  -webkit-transform: translateX( -50% ) rotate( -45deg );
  transform: translateX( -50% ) rotate( -45deg );
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.loaded .hero-picture img {
  opacity: 1;
  -webkit-transform: translateX( 0 ) rotate( 0deg );
  transform: translateX( 0 ) rotate( 0deg );
}

@media screen and (max-width: 812px) {
  .hero-images {
    margin-top: 7px;
    padding: 0 2.1798365%;
  }
  .hero-picture {
    width: 41.025641%;
  }
}

/* Label */
.hero-picture:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
}
.ginza .hero-picture:before {
  width: 162px;
  height: 48px;
  background-image: url(../img/ginza/hero-label-pc.png);
  right: -38px;
  bottom: -32px;
}
.shinjuku .hero-picture:before {
  width: 181px;
  height: 54px;
  background-image: url(../img/shinjuku/hero-label-pc.png);
  right: -50px;
  bottom: -26px;
}
.nakameguro .hero-picture:before {
  width: 154px;
  height: 45px;
  background-image: url(../img/nakameguro/hero-label-pc.png);
  right: -24px;
  bottom: -24px;
}
.harajuku .hero-picture:before {
  width: 177px;
  height: 53px;
  background-image: url(../img/harajuku/hero-label-pc.png);
  right: -46px;
  bottom: -26px;
}
.shibuya .hero-picture:before {
  width: 140px;
  height: 44px;
  background-image: url(../img/shibuya/hero-label-pc.png);
  right: -10px;
  bottom: -26px;
}
.omotesando .hero-picture:before {
  width: 139px;
  height: 43px;
  background-image: url(../img/omotesando/hero-label-pc.png);
  right: -30px;
  bottom: -26px;
}
.shirokane .hero-picture:before {
  width: 110px;
  height: 37px;
  background-image: url(../img/shirokane/hero-label-pc.png);
  right: -10px;
  bottom: -20px;
}
.tokyo .hero-picture:before {
  width: 195px;
  height: 55px;
  background-image: url(../img/tokyo/hero-label-pc.png);
  right: -68px;
  bottom: -32px;
}
.roppongi .hero-picture:before {
  width: 135px;
  height: 44px;
  background-image: url(../img/roppongi/hero-label-pc.png);
  right: -20px;
  bottom: -26px;
}

@media screen and (max-width: 812px) {
  .ginza .hero-picture:before {
    width: 87.5px;
    height: 36px;
    background-image: url(../img/ginza/hero-label-sp.png);
    right: -36px;
    bottom: -15px;
  }
  .shinjuku .hero-picture:before {
    width: 99px;
    height: 41px;
    background-image: url(../img/shinjuku/hero-label-sp.png);
    right: -36px;
    bottom: -15px;
  }
  .nakameguro .hero-picture:before {
    width: 83.5px;
    height: 35px;
    background-image: url(../img/nakameguro/hero-label-sp.png);
    right: -25px;
    bottom: -15px;
  }
  .harajuku .hero-picture:before {
    width: 97px;
    height: 40.5px;
    background-image: url(../img/harajuku/hero-label-sp.png);
    right: -28px;
    bottom: -15px;
  }
  .shibuya .hero-picture:before {
    width: 76.5px;
    height: 33px;
    background-image: url(../img/shibuya/hero-label-sp.png);
    right: -13px;
    bottom: -15px;
  }
  .omotesando .hero-picture:before {
    width: 75.5px;
    height: 32.5px;
    background-image: url(../img/omotesando/hero-label-sp.png);
    right: -14px;
    bottom: -15px;
  }
  .shirokane .hero-picture:before {
    width: 60.5px;
    height: 27px;
    background-image: url(../img/shirokane/hero-label-sp.png);
    right: 2px;
    bottom: -15px;
  }
  .tokyo .hero-picture:before {
    width: 107px;
    height: 42.5px;
    background-image: url(../img/tokyo/hero-label-sp.png);
    right: -35px;
    bottom: -18px;
  }
  .roppongi .hero-picture:before {
    width: 73px;
    height: 32.5px;
    background-image: url(../img/roppongi/hero-label-sp.png);
    right: -6px;
    bottom: -15px;
  }
}

/* Gif */
.hero-gif {
  position: absolute;
}
.ginza .hero-gif {
  width: 220px;
  left: -10px;
  top: -75px;
}
.shinjuku .hero-gif {
  width: 220px;
  left: -12px;
  top: 0px;
}
.nakameguro .hero-gif {
  width: 220px;
  left: 0;
  top: -50px;
}
.harajuku .hero-gif {
  width: 170px;
  left: 0px;
  top: -30px;
}
.shibuya .hero-gif {
  width: 210px;
  left: -10px;
  top: 12px;
}
.omotesando .hero-gif {
  width: 194px;
  left: -5px;
  top: -30px;
}
.shirokane .hero-gif {
  width: 250px;
  left: -16px;
  top: 52px;
}
.tokyo .hero-gif {
  width: 196px;
  left: 25px;
  top: -100px;
}
.roppongi .hero-gif {
  width: 210px;
  left: -2px;
  top: 0;
}


@media screen and (max-width: 812px) {
  .ginza .hero-gif {
    padding-top: 26.4305177%;
    width: 31.0626703%;
    left: -4px;
    top: 0;
  }
  .shinjuku .hero-gif {
    padding-top: 19.6185286%;
    width: 45.7765668%;
    left: -12px;
    top: 0;
  }
  .nakameguro .hero-gif {
    padding-top: 23.1607629%;
    width: 40.8719346%;
    left: -20px;
    top: 0;
  }
  .harajuku .hero-gif {
    padding-top: 29.972752%;
    width: 32.6975477%;
    left: -20px;
    top: 0;
  }
  .shibuya .hero-gif {
    padding-top: 27.2479564%;
    width: 43.5967302%;
    left: -20px;
    top: 0;
  }
  .omotesando .hero-gif {
    padding-top: 22.3433243%;
    width: 40.8719346%;
    left: -30px;
    top: 0;
  }
  .shirokane .hero-gif {
    padding-top: 38.147139%;
    width: 49.3188011%;
    left: -8px;
    top: 0;
  }
  .tokyo .hero-gif {
    padding-top: 17.4386921%;
    width: 35.4223433%;
    left: -2px;
    top: 0;
  }
  .roppongi .hero-gif {
    padding-top: 29.4277929%;
    width: 41.9618529%;
    left: -2px;
    top: 0;
  }
}


/* Hero Logo
---------------------------- */
.hero-logo {
  text-align: center;
}

@media screen and (max-width: 812px) {
  .hero-logo img {
    width: 244px;
  }
}


/* Hero Button
---------------------------- */
.hero-button {
  position: absolute;
  top: 465px;
  right: 80px;
}
.hero-button:before {
  content: "";
  display: block;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -70px;
  margin-top: -70px;
  -webkit-animation: glow 1.6s infinite;
  animation: glow 1.6s infinite;
}
.hero-button a {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -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;
  -webkit-box-orient: vertical; /* Less than android 4.3 */
  -webkit-flex-direction: column; /* Less than iOS8 */
  flex-direction: column;
  background: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.hero-button a:hover {
  opacity: 0.6;
}
.hero-button span {
  display: block;
  margin-top: 8px;
  line-height: 1.199508901;
  font-family: "Marion", serif;
  font-size: 16px;
  color: #6f6b6a;
}

@-webkit-keyframes glow {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes glow {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@media screen and (max-width: 812px) {
  .hero-button {
    top: 115px;
    right: 3.2697548%;
  }
  .hero-button:before {
    width: 90px;
    height: 90px;
    margin-left: -45px;
    margin-top: -45px;
  }
  .hero-button a {
    width: 66px;
    height: 66px;
  }
  .hero-button img {
    width: 23px;
  }
  .hero-button span {
    margin-top: 6px;
    font-size: 11px;
  }
}



/* ----------------------------
  Container
---------------------------- */
.container {
  margin-top: -244px;
  color: #464849;
  position: relative;
}
.container:before {
  content: "";
  display: block;
  padding-top: 0;
  width: 100%;
  height: 0;
  background: #f0f3f3;
  position: absolute;
  top: 244px;
  left: 0;
  right: 0;
  -webkit-transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.container.in:before {
  padding-top: 580px;
}

@media screen and (max-width: 812px) {
  .container {
    margin-top: -85px;
    overflow: hidden;
  }
  .container:before {
    top: 85px;
  }
  .container.in:before {
    padding-top: 326.4%;
  }
}



/* ----------------------------
  Navigation
---------------------------- */
.nav {
  margin: 0 auto;
  padding: 7px;
  max-width: 500px;
  box-sizing: border-box;
  background: #fff;
  position: relative;
}
.nav-inner {
  padding-top: 22px;
  padding-bottom: 20px;
  border: 1px solid #7ed8d0;
}

@media screen and (max-width: 812px) {
  .nav {
    padding: 5px;
    width: 85.3333333%;
  }
  .nav-inner {
    padding-top: 20px;
  }
}


/* Navigation Head
---------------------------- */
.nav-head {
  margin-bottom: 11px;
  text-align: center;
  font-family: "Marion", serif;
  line-height: 1.2;
  font-size: 24px;
}

@media screen and (max-width: 812px) {
  .nav-head {
    margin-bottom: 19px;
    font-size: 20px;
  }
}


/* Navigation Body
---------------------------- */
.nav-body {
  margin: 0 -198px;
}

@media screen and (max-width: 812px) {
  .nav-body {
    margin: 0 auto;
    max-width: 270px;
  }
}

@media screen and (max-width: 320px) {
  .nav-body {
    max-width: 240px;
  }
}


/* Navigation Slide
---------------------------- */
.nav-slide {
  padding-top: 24px;
  height: 480px;
  position: relative;
}
.nav-slide-item {
  width: 320px;
  background: #fff;
  position: absolute;
  bottom: 0;
  -webkit-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.nav-slide-item:before {
  content: "";
  display: block;
  padding-top: 150%;
}
.nav-slide-item img,
.nav-slide-item video {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 812px) {
  .nav-slide {
    padding-top: 16px;
    height: 405px;
  }
  .nav-slide-item {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  .nav-slide {
    height: 360px;
  }
}


/* Position */
.nav-slide-left {
  left: 0;
  z-index: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.nav-slide-center {
  left: 280px;
  box-shadow: 2px 2px 6px 0px rgba(11, 11, 11, 0.47);
  -webkit-transform: translateY(-24px);
  transform: translateY(-24px);
  z-index: 3;
}
.nav-slide-right {
  left: 560px;
  z-index: 2;
}

@media screen and (max-width: 812px) {
  .nav-slide-left {
    left: -100%;
    margin-left: 28px;
  }
  .nav-slide-center {
    left: 0;
    margin-left: 0;
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
  }
  .nav-slide-right {
    left: 100%;
    margin-left: -28px;
  }
}


/* Video Controls
---------------------------- */
.video-controls {
  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;
  height: 35px;
  background: rgba(0, 0, 0, 0.54);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.video-controls button {
  padding-top: 35px;
  width: 35px;
  height: 0;
  overflow: hidden;
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.nav-slide-center .video-controls button {
  opacity: 1;
  visibility: visible;
}
.video-controls button:before,
.video-controls button:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.video-controls button:after {
  opacity: 0;
  visibility: hidden;
}

/* Play Stop */
.video-playstop:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #fff;
  margin: auto;
}
.video-playstop:after {
  background-image: url(../img/common/icon-pause.png);
  background-size: 36% auto;
}
.playing + .video-controls .video-playstop:before {
  opacity: 0;
  visibility: hidden;
}
.playing + .video-controls .video-playstop:after {
  opacity: 1;
  visibility: visible;
}

/* Play Back */
.video-playback:before {
  background-image: url(../img/common/icon-playback.png);
  background-size: 45% auto;
}

/* Sound */
.video-sound:before {
  background-image: url(../img/common/icon-sound-off.png);
  background-size: 62.2641509% auto;
}
.video-sound:after {
  background-image: url(../img/common/icon-sound-on.png);
  background-size: 62.2641509% auto;
}
.soundon + .video-controls .video-sound:before {
  opacity: 0;
  visibility: hidden;
}
.soundon + .video-controls .video-sound:after {
  opacity: 1;
  visibility: visible;
}


/* Video Timeline
---------------------------- */
.video-timeline {
  width: 100%;
  height: 4px;
  background: #a8a8a8;
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.video-timeline-now {
  width: 0%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.nav-slide-center .video-timeline {
  opacity: 1;
  visibility: visible;
}


/* Navigation Foot
---------------------------- */

/* Head */
.nav-foot-head {
  margin-bottom: 8px;
  text-align: center;
  font-family: "Marion", serif;
  line-height: 1.2;
  font-size: 19px;
}

@media screen and (max-width: 812px) {
  .nav-foot-head {
    margin-bottom: 8px;
    font-size: 17px;
  }
}

/* Body */
.nav-foot-body {
  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;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  padding: 0 30px;
}
.nav-foot-body button {
  padding: 4px 0 8px;
  width: 74px;
  line-height: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.nav-foot-body button:hover {
  opacity: 0.6;
}

@media screen and (max-width: 812px) {
  .nav-foot-body {
    padding: 0 3.2467532%;
  }
  .nav-foot-body button {
    width: 56px;
  }
}

/* Count */
.nav-foot-count {
  width: 60px;
  height: 54px;
  line-height: 1;
  font-family: "Marion", serif;
  font-size: 34px;
  color: #8e8e93;
  position: relative;
}
.nav-foot-count em {
  display: block;
  position: absolute;
}
.nav-foot-count em:first-child {
  color: #313331;
  top: -3px;
  right: 34px;
}
.nav-foot-count em:last-child {
  bottom: -4px;
  left: 34px;
}
.nav-foot-count span {
  display: block;
  padding-top: 36px;
  width: 36px;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.nav-foot-count span:before {
  content: "";
  display: block;
  width: 141.421356237%;
  height: 1px;
  background: #65656b;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  position: absolute;
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 812px) {
  .nav-foot-count {
    width: 42px;
    height: 42px;
    font-size: 27px;
  }
  .nav-foot-count em:first-child {
    right: 26px;
  }
  .nav-foot-count em:last-child {
    bottom: -3px;
    left: 26px;
  }
  .nav-foot-count span {
    padding-top: 30px;
    width: 30px;
  }
}



/* ----------------------------
  Spot
---------------------------- */
.spot {
  margin: 60px auto 0;
  max-width: 930px;
  position: relative;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  opacity: 0;
  visibility: hidden;
}
.spot-visible {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 812px) {
  .spot {
    margin-top: 150px;
  }
}


/* Spot Section
---------------------------- */
.spot-section {
  margin-top: -90px;
  position: relative;
}
.spot-section:first-child {
  margin-top: 0;
}
.spot-section:after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 812px) {
  .spot-section {
    margin-top: 150px;
  }
}


/* Spot Image
---------------------------- */
.spot-image {
  padding-right: 25px;
  width: 445px;
  box-sizing: border-box;
  position: relative;
}
.spot-left .spot-image {
  margin-right: 20px;
  float: left;
}
.spot-right .spot-image {
  margin-left: 20px;
  float: right;
}
.spot-image:before {
  content: "";
  display: block;
  padding-top: 0;
  width: 130px;
  height: 0;
  background: #7ed8d0;
  position: absolute;
  right: 0;
  top: -22px;
  -webkit-transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.on .spot-image:before {
  padding-top: 670px;
}

@media screen and (max-width: 812px) {
  .spot-image {
    padding-right: 0;
    width: 100%;
  }
  .spot-left .spot-image {
    margin-right: 0;
    float: none;
  }
  .spot-right .spot-image {
    margin-left: 0;
    float: none;
  }
  .spot-image:before {
    width: 110px;
    height: 0;
    top: -18px;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  .on .spot-image:before {
    padding-top: 161.3333333%;
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }
}

/* Figure */
.spot-image figure {
  position: relative;
}
.spot-image img {
  max-width: none;
  width: 100%;
  position: relative;
}
.spot-image figcaption {
  line-height: 1;
  font-size: 35px;
  font-family: "Marion", serif;
  color: #5b5e60;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(449px, 0) rotate(90deg);
  transform: translate(449px, 0) rotate(90deg);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

@media screen and (max-width: 812px) {
  .spot-image figure {
    padding-right: 20px;
  }
  .spot-image figcaption {
    width: 100%;
    font-size: 28px;
    top: 0;
    left: 0;
    -webkit-transform: translate(100%, 0) rotate(90deg);
    transform: translate(100%, 0) rotate(90deg);
    margin-left: 3px;
  }
}

/* Text */
.spot-image p {
  margin-top: 6px;
  line-height: 1.777777778;
  font-size: 10px;
  position: relative;
}

@media screen and (max-width: 812px) {
  .spot-image p {
    margin-top: 14px;
    padding: 0 4.8%;
    line-height: 1.444444444;
  }
}


/* Spot Body
---------------------------- */
.spot-left .spot-body {
  padding-top: 138px;
}
.spot-right .spot-body {
  padding-top: 174px;
}

@media screen and (max-width: 812px) {
  .spot-left .spot-body,
  .spot-right .spot-body {
    margin-top: 76px;
    padding: 0 4.8%;
    position: relative;
  }
}


/* Spot Contents
---------------------------- */
.spot-head {
  margin-bottom: 16px;
  line-height: 1.4;
  font-size: 20px;
}
.spot-text small {
  display: block;
  margin-top: 16px;
  line-height: 1.6;
  font-size: 10px;
  color: #989b9b;
}

@media screen and (max-width: 812px) {
  .spot-head {
    margin-bottom: 20px;
    font-size: 19px;
  }
}



/* ----------------------------
  Spot Item
---------------------------- */
.spot-item {
  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;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  margin: 86px auto 0;
  max-width: 548px;
  position: relative;
}

@media screen and (max-width: 812px) {
  .spot-item {
    display: block;
    margin-top: 132px;
    padding: 0 10%;
    max-width: 300px;
  }
}


/* Spot Item Image
---------------------------- */
.spot-item-image {
  width: 258px;
  border: 1px solid #c9c9c9;
  box-sizing: border-box;
}

@media screen and (max-width: 812px) {
  .spot-item-image {
    width: 100%;
  }
  .spot-item-image img {
    max-width: none;
    width: 100%;
  }
}


/* Spot Item Body
---------------------------- */
.spot-item-body {
  width: 260px;
}
.spot-item-body dl {
  margin-right: -10px;
  font-size: 13px;
}
.spot-item-body dt {
  margin-bottom: 22px;
}
.spot-item-body p {
  margin-top: 18px;
}
.spot-item-body a {
  display: block;
  padding: 10px 0;
  border: 1px solid #c9c9c9;
  text-align: center;
  font-size: 14px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.spot-item-body a:hover {
  background: #81d8d0;
  border: 1px solid #81d8d0;
  color: #fff;
}

@media screen and (max-width: 812px) {
  .spot-item-body {
    margin-top: 10px;
    width: 100%;
  }
  .spot-item-body dl {
    margin-right: 0;
    text-align: center;
    line-height: 1.678571429;
    /*
    font-size: 14px;
    */
  }
  .spot-item-body dt {
    margin-bottom: 24px;
  }
  .spot-item-body p {
    margin-top: 20px;
  }
  .spot-item-body a {
    padding: 11px 0;
  }
}



/* ----------------------------
  Spot Detail Head
---------------------------- */
.spot-detail {
  margin: 40px auto 0;
  max-width: 548px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 812px) {
  .spot-detail {
    margin-top: 45px;
    padding: 0 4.8%;
    max-width: none;
    box-sizing: border-box;
  }
}


/* Spot Detail Head
---------------------------- */
.spot-detail-head {
  margin-bottom: 8px;
  padding-bottom: 6px;
  line-height: 1.2;
  letter-spacing: 0;
  font-family: "Marion", serif;
  font-size: 22px;
  position: relative;
}
.spot-detail-head:after {
  content: "";
  display: block;
  width: 0;
  height: 5px;
  background: #7ed8d0;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -68px;
  -webkit-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.on .spot-detail-head:after {
  width: 136px;
}

@media screen and (max-width: 812px) {
  .spot-detail-head {
    margin-bottom: 13px;
    font-size: 24px;
  }
  .spot-detail-head:after {
    height: 4px;
    margin-right: -70px;
  }
  .on .spot-detail-head:after {
    width: 140px;
  }
}


/* Spot Detail Lead
---------------------------- */
.spot-detail-lead {
  margin: 0 -20px;
  margin-bottom: 30px;
  line-height: 1.909090909;
  font-size: 11px;
}

@media screen and (max-width: 812px) {
  .spot-detail-lead {
    margin: 0 auto 30px;
    width: 88.4955752%;
    max-width: 300px;
    line-height: 1.6;
    font-size: 10px;
  }
}


/* Spot Detail List
---------------------------- */
.spot-detail-list {
  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;
}
.spot-detail-list li {
  width: 260px;
}
.spot-detail-list button {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.spot-detail-list button:hover {
  opacity: 0.6;
}
.spot-detail-list span {
  display: block;
  margin-top: 6px;
  font-family: "Marion", serif;
  font-size: 12px;
}

@media screen and (max-width: 812px) {
  .spot-detail-list li {
    width: 48.6725664%;
  }
  .spot-detail-list img {
    max-width: none;
    width: 100%;
  }
  .spot-detail-list span {
    margin-top: 5px;
  }
}



/* ----------------------------
  Info
---------------------------- */
.info {
  margin: 20px auto 36px;
  max-width: 548px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 812px) {
  .info {
    margin-top: 30px;
    padding: 0 4.8%;
    max-width: none;
    box-sizing: border-box;
  }
}


/* Info Sign
---------------------------- */
.info-sign {
  text-align: right;
}

@media screen and (max-width: 812px) {
  .info-sign img {
    width: 198px;
  }
}


/* Info Credit
---------------------------- */
.info-credit {
  margin-top: 26px;
  line-height: 2;
  font-size: 11px;
}

@media screen and (max-width: 812px) {
  .info-credit {
    margin-top: 22px;
    line-height: 1.583333333;
    font-size: 12px;
  }
}


/* Info Contact
---------------------------- */
.info-contact {
  margin-top: 26px;
  line-height: 2;
  font-size: 11px;
}
.info-contact dd:last-child a {
  text-decoration: underline;
}
.info-contact dd:last-child a:hover {
  text-decoration: none;
}

@media screen and (max-width: 812px) {
  .info-contact {
    margin-top: 22px;
    line-height: 1.583333333;
    font-size: 12px;
  }
}


/* Info SNS
---------------------------- */
.info-sns {
  margin-top: 46px;
  line-height: 1;
  text-align: center;
}
.info-sns li {
  display: inline-block;
  margin: 0 22px;
  vertical-align: top;
}
.info-sns a {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.info-sns a:hover {
  opacity: 0.6;
}
.info-sns svg {
  display: block;
  fill: #1B1B1B;
}
li.info-sns-line {
  display: none;
}
.info-sns-line path:last-child {
  fill: #fff;
}

@media screen and (max-width: 812px) {
  li.info-sns-line {
    display: inline-block;
  }
}




/* ----------------------------
  Area
---------------------------- */
.area {
  padding: 58px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/common/bg-area-pc.jpg);
  background-color: #7ed8d0;
  color: #434444;
}
.area-inner {
  margin: 0 auto;
  padding: 12px;
  max-width: 880px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}
.area-body {
  padding-top: 40px;
  padding-bottom: 60px;
  border: 1px solid #7ed8d0;
  position: relative;
}

@media screen and (max-width: 812px) {
  .area {
    padding: 60px 4.8% 50px;
    background-image: url(../img/common/bg-area-sp.jpg);
  }
  .area-inner {
    padding: 10px;
    max-width: none;
  }
  .area-body {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}


/* Area Head
---------------------------- */
.area-head {
  margin-bottom: 22px;
  padding-bottom: 4px;
  text-align: center;
  line-height: 1.25;
  font-family: "Marion", serif;
  font-size: 32px;
  position: relative;
}
.area-head:after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #7ed8d0;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -125px;
  -webkit-transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.on .area-head:after {
  width: 250px;
}

@media screen and (max-width: 812px) {
  .area-head {
    margin-bottom: 28px;
    padding-bottom: 6px;
    font-size: 21px;
  }
  .area-head:after {
    margin-left: -100px;
  }
  .on .area-head:after {
    width: 200px;
  }
}


/* Guide Slide
---------------------------- */
.area-slide {
  margin: 0 auto 18px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: "Marion", serif;
}
.area-slide-inner {
  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;
}
.area-slide-item section {
  width: 135px;
}
.area-slide-item a {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.area-slide-item a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 812px) {
  .area-slide {
    margin-bottom: 16px;
    word-break: break-all;
  }
  .area-slide-inner {
    -webkit-box-pack: center; /* Less than android 4.3 */
    -webkit-justify-content: center; /* Less than iOS8 */
    justify-content: center;
  }
  .area-slide-item section {
    width: 29.972752%;
    max-width: 220px;
  }
}


/* Guide Slide Contents
---------------------------- */
.area-slide h3 {
  line-height: 1.2;
  font-size: 15px;
}
.area-slide figure {
  margin: 6px auto 11px;
}
.area-slide p {
  line-height: 1;
  font-size: 12px;
}

@media screen and (max-width: 812px) {
  .area-slide h3 {
    margin: 0 -0.5em;
    font-size: 11px;
  }
  .area-slide figure {
    margin: 5px auto 4px;
    width: 81.8181818%;
  }
  .area-slide p {
    line-height: 1.222222222;
    font-size: 10px;
  }
}


/* Guide Navigation
---------------------------- */
.area-nav {
  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;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  margin: 0 auto;
  padding: 0 6px;
  max-width: 480px;
  width: 100%;
  box-sizing: border-box;
}
.area-nav button {
  padding: 4px 0 8px;
  width: 64px;
  line-height: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.area-nav button:hover {
  opacity: 0.6;
}

@media screen and (max-width: 812px) {
  .area-nav {
    padding: 0 7.3569482%;
  }
  .area-nav button {
    width: 56px;
  }
}

/* Count */
.area-nav-count {
  width: 60px;
  height: 54px;
  line-height: 1;
  font-family: "Marion", serif;
  font-size: 34px;
  color: #65656b;
  position: relative;
}
.area-nav-count em {
  display: block;
  position: absolute;
}
.area-nav-count em:first-child {
  color: #262727;
  top: -3px;
  right: 34px;
}
.area-nav-count em:last-child {
  bottom: -4px;
  left: 34px;
}
.area-nav-count span {
  display: block;
  padding-top: 36px;
  width: 36px;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.area-nav-count span:before {
  content: "";
  display: block;
  width: 141.421356237%;
  height: 1px;
  background: #65656b;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  position: absolute;
  top: 50%;
  left: 50%;
}

@media screen and (max-width: 812px) {
  .area-nav-count {
    width: 42px;
    height: 42px;
    font-size: 27px;
  }
  .area-nav-count em:first-child {
    right: 26px;
  }
  .area-nav-count em:last-child {
    bottom: -3px;
    left: 26px;
  }
  .area-nav-count span {
    padding-top: 30px;
    width: 30px;
  }
}


/* Area Link
---------------------------- */
.area-link {
  margin-top: 28px;
  text-align: center;
}
.area-link a {
  display: inline-block;
  vertical-align: top;
  font-family: "Marion", serif;
  font-size: 22px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.area-link a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 812px) {
  .area-link {
    margin-top: 55px;
  }
  .area-link a {
    font-size: 19px;
  }
}


/* Area Note
---------------------------- */
.area-note {
  text-align: center;
  font-size: 16px;
}

@media screen and (max-width: 812px) {
  .area-note {
    margin-top: 14px;
    line-height: 1.4;
    font-size: 15px;
  }
}

@media screen and (max-width: 320px) {
  .area-note {
    font-size: 13px;
  }
}


/* Area Button
---------------------------- */
.area-button {
  margin: 22px auto 0;
  max-width: 430px;
  width: 100%;
}
.area-button a {
  display: block;
  padding: 17px 0;
  border: 1px solid #69696b;
  text-align: center;
  line-height: 1.2;
  font-size: 16px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.area-button a:hover {
  border: 1px solid #434444;
  background: #434444;
  color: #fff;
}

@media screen and (max-width: 812px) {
  .area-button {
    margin-top: 18px;
    padding: 0 4.4164038%;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
  }
  .area-button a {
    padding: 14px 0;
    font-size: 14px;
  }
}


/* Area GIF
---------------------------- */
.area-gif {
  width: 160px;
  position: absolute;
  left: 36px;
  bottom: 36px;
}

@media screen and (max-width: 812px) {
  .area-gif {
    width: 25.0783699%;
    max-width: 80px;
    position: absolute;
    left: -3px;
    bottom: 136px;
  }
}


/* ----------------------------
  Footprint
---------------------------- */
.footprint:before,
.footprint:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-image: url(../img/common/icon-footprint.png);
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.footprint:after {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.on .footprint:before,
.on .footprint:after {
  opacity: 1;
}

@media screen and (max-width: 812px) {
  .footprint:before,
  .footprint:after {
    background-size: 232.5px auto;
  }
}


/* Footprint 01
---------------------------- */
.footprint-01:before {
  width: 21px;
  height: 48px;
  background-position: -5px -5px;
  top: -34px;
  left: 516px;
}
.footprint-01:after {
  width: 21px;
  height: 45px;
  background-position: -36px -5px;
  top: 26px;
  left: 542px;
}

@media screen and (max-width: 812px) {
  .footprint-01:before {
    width: 16px;
    height: 44.5px;
    background-position: -95.5px -2.5px;
    top: -135px;
    left: 50%;
    margin-left: 36px;
  }
  .footprint-01:after {
    width: 18px;
    height: 41px;
    background-position: -116.5px -2.5px;
    top: -78px;
    left: 50%;
    margin-left: 70px;
  }
}


/* Footprint 02
---------------------------- */
.footprint-02:before {
  width: 20px;
  height: 48px;
  background-position: -67px -5px;
  top: -148px;
  left: 546px;
}
.footprint-02:after {
  width: 24px;
  height: 45px;
  background-position: -97px -5px;
  top: -78px;
  left: 568px;
}

@media screen and (max-width: 812px) {
  .footprint-02:before {
    width: 17.5px;
    height: 44.5px;
    background-position: -139.5px -2.5px;
    top: -117px;
    left: 50%;
    margin-left: -58px;
  }
  .footprint-02:after {
    width: 18px;
    height: 41px;
    background-position: -162px -2.5px;
    top: -57px;
    left: 50%;
    margin-left: -25px;
  }
}


/* Footprint 03
---------------------------- */
.footprint-03:before {
  width: 22px;
  height: 46px;
  background-position: -131px -5px;
  top: -150px;
  left: 180px;
}
.footprint-03:after {
  width: 18px;
  height: 47px;
  background-position: -163px -5px;
  top: -88px;
  left: 220px;
}

@media screen and (max-width: 812px) {
  .footprint-03:before {
    width: 20.5px;
    height: 44px;
    background-position: -185px -2.5px;
    top: -120px;
    left: 50%;
    margin-left: 50px;
  }
  .footprint-03:after {
    width: 19.5px;
    height: 41px;
    background-position: -210.5px -2.5px;
    top: -54px;
    left: 50%;
    margin-left: 63px;
  }
}
