@charset "UTF-8";
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

body * {
  min-height: 0%;
  box-sizing: border-box;
}

img {
  vertical-align: top;
}

a {
  text-decoration: none;
  transition: .4s;
}

a:hover {
  opacity: .8;
}

ul {
  list-style: none;
}

/*main*/
.tour-attractionBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1280px;
  width: 100%;
  height: 538px;
  margin: 0 auto 100px;
}

.tour-elevator {
  position: relative;
  max-width: 430px;
  width: 100%;
  height: 538px;
  background-color: #EACD7F;
  overflow: hidden;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 5px);
  }
  100% {
    transform: translate(0, -5px);
  }
}

.tour-elevator-btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EFA365;
  height: 40px;
  width: 100%;
  left: 0;
  z-index: 1;
  cursor: pointer;
  transition: .4s;
}

.tour-elevator-btn:hover {
  opacity: .7;
}

.tour-elevator-btn img {
  animation-name: fuwafuwa;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1s;
}

.tour-elevator-btn--up {
  top: 0;
}

.tour-elevator-btn--up.f8 {
  background-color: #ccc;
  cursor: inherit;
}

.tour-elevator-btn--up.f8:hover {
  opacity: 1;
}

.tour-elevator-btn--down {
  bottom: 0;
  transform: rotate(180deg);
}

.tour-elevator-btn--down.f1 {
  background-color: #ccc;
  cursor: inherit;
}

.tour-elevator-btn--down.f1:hover {
  opacity: 1;
}

.tour-elevator-levelWrap {
  transition: 1s;
}

.tour-elevator-levelWrap.f1 {
  transform: translateY(-3766px);
}

.tour-elevator-levelWrap.f2 {
  transform: translateY(-3228px);
}

.tour-elevator-levelWrap.f3 {
  transform: translateY(-2690px);
}

.tour-elevator-levelWrap.f4 {
  transform: translateY(-2152px);
}

.tour-elevator-levelWrap.f5 {
  transform: translateY(-1614px);
}

.tour-elevator-levelWrap.f6 {
  transform: translateY(-1076px);
}

.tour-elevator-levelWrap.f7 {
  transform: translateY(-538px);
}

.tour-elevator-levelWrap.f8 {
  transform: translateY(0px);
}

.tour-elevator-level {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 538px;
}

.tour-elevator-level--8 .tour-elevator-f img {
  margin-left: 20px;
}

.tour-elevator-txt {
  padding: 0 20px;
}

.tour-building {
  position: relative;
  max-width: 836px;
  width: 100%;
  height: 538px;
  overflow: hidden;
}

.tour-building img {
  position: absolute;
  transition: 1s;
  left: 50%;
  transform: translateX(-50%);
}

.tour-building img.blind-up {
  top: 0;
  z-index: 2;
  opacity: .8;
  width: 790px;
  left: calc(50% + 1px);
}

.tour-building img.building {
  bottom: 48px;
  z-index: 1;
}

.tour-building img.blind-down {
  bottom: 0;
  z-index: 2;
  opacity: .8;
  width: 790px;
  left: calc(50% + 1px);
}

.tour-building.f1 .blind-bg-down {
  opacity: 0;
}

.tour-building.f1 img.blind-down {
  opacity: 0;
}

.tour-building.f2 img.building {
  bottom: -104px;
}

.tour-building.f3 img.building {
  bottom: -256px;
}

.tour-building.f4 img.building {
  bottom: -409px;
}

.tour-building.f5 img.building {
  bottom: -562px;
}

.tour-building.f6 img.building {
  bottom: -716px;
}

.tour-building.f7 img.building {
  bottom: -868px;
}

.tour-building.f8 .blind-bg-up {
  opacity: 0;
}

.tour-building.f8 img.building {
  bottom: -1029px;
}

.tour-building.f8 img.blind-up {
  opacity: 0;
}

.blind-bg-up {
  position: relative;
  background: linear-gradient(198deg, rgba(0, 0, 0, 0.6) 64%, transparent 64%);
  width: 54.7%;
  height: 49.4%;
  z-index: 2;
  margin-left: 2.9%;
  opacity: 1;
  transition: .4s;
}

.blind-bg-up::after {
  position: absolute;
  top: 0;
  left: 100%;
  content: '';
  background: linear-gradient(159.5deg, rgba(0, 0, 0, 0.6) 67.7%, transparent 50%);
  width: 73.3%;
  height: 100%;
  z-index: 2;
}

.blind-bg-down {
  position: relative;
  background: linear-gradient(18deg, rgba(0, 0, 0, 0.6) 62%, transparent 50%);
  width: 54.7%;
  height: 50.6%;
  z-index: 2;
  margin-left: 2.9%;
  opacity: 1;
  transition: .4s;
}

.blind-bg-down::after {
  position: absolute;
  top: 0;
  left: 100%;
  content: '';
  background: linear-gradient(339.5deg, rgba(0, 0, 0, 0.6) 60%, transparent 50%);
  width: 73.3%;
  height: 100%;
  z-index: 2;
}

.tour-attention {
  width: 100%;
  margin: 5px 5px 0 0;
  font-size: 12px;
  text-align: right;
  color: #999;
}

.tour-youtube {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.tour-back {
  margin: 100px 0;
  text-align: center;
}

.tour-back a {
  display: inline-block;
}

/*footer*/
.int-footer {
  padding: 100px 0;
  background-color: #A3C2C3;
  color: #fff;
}

.int-footer a {
  color: #fff;
}

.int-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 606px;
  margin: auto;
}

.int-sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 196px;
}

.int-sns a img {
  height: 36px;
  width: auto;
}

.int-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 330px;
}

.int-links a img {
  margin-right: 5px;
}

.int-hobonichi {
  padding-top: 100px;
  font-size: 14px;
  text-align: center;
}

/*common*/
.int-cmnHeaderBlock {
  width: 100%;
  padding-bottom: 50px;
  text-align: center;
}

.int-cmnHeaderBlock > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 87px;
  padding: 0 5%;
  background-color: #A3C2C3;
}

.int-cmnHeaderBlock > a img {
  max-height: 50px;
  width: auto;
}

.int-cmnHeaderBlock > div {
  padding: 0 5%;
}

.int-cmnHeaderBlock > div:nth-of-type(1) {
  padding-top: 20px;
}

.int-cmnHeaderBlock > div:nth-of-type(2) {
  padding-top: 20px;
}

.int-cmnHeaderBlock > div:nth-of-type(3) {
  padding-top: 20px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.inlineB {
  display: inline-block;
}

@media screen and (max-width: 1280px) {
  .tour-building img {
    position: absolute;
    transition: 1s;
    left: 50%;
    transform: translateX(-50%);
  }
  .tour-building img.blind-up {
    width: 94%;
    top: 19%;
  }
  .tour-building img.building {
    width: 100%;
    bottom: 7%;
  }
  .tour-building img.blind-down {
    width: 94%;
  }
  .tour-building.f1 .blind-bg-down {
    opacity: 0;
  }
  .tour-building.f2 img.building {
    bottom: -16%;
  }
  .tour-building.f3 img.building {
    bottom: -39%;
  }
  .tour-building.f4 img.building {
    bottom: -62%;
  }
  .tour-building.f5 img.building {
    bottom: -85%;
  }
  .tour-building.f6 img.building {
    bottom: -108.5%;
  }
  .tour-building.f7 img.building {
    bottom: -131.5%;
  }
  .tour-building.f8 img.building {
    bottom: -155.5%;
  }
  .blind-bg-up {
    height: 59.2%;
    background: linear-gradient(198deg, rgba(0, 0, 0, 0.6) 72.3%, transparent 64%);
  }
  .blind-bg-up::after {
    background: linear-gradient(159.5deg, rgba(0, 0, 0, 0.6) 75.7%, transparent 50%);
  }
  .blind-bg-down {
    height: 40.8%;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1280px) {
  /*main*/
  .tour-attractionBlock {
    max-width: 1000px;
  }
  .tour-elevator {
    max-width: 300px;
  }
  .tour-building {
    max-width: 680px;
  }
}

@media screen and (min-width: 900px) and (max-width: 999px) {
  /*main*/
  .tour-attractionBlock {
    max-width: 900px;
  }
  .tour-elevator {
    max-width: 250px;
  }
  .tour-building {
    max-width: 630px;
  }
  .tour-building.f2 img.building {
    bottom: -14%;
  }
  .tour-building.f3 img.building {
    bottom: -36%;
  }
  .tour-building.f4 img.building {
    bottom: -57%;
  }
  .tour-building.f5 img.building {
    bottom: -78.5%;
  }
  .tour-building.f6 img.building {
    bottom: -100%;
  }
  .tour-building.f7 img.building {
    bottom: -121.4%;
  }
  .tour-building.f8 img.building {
    bottom: -144%;
  }
  .blind-bg-up {
    height: 61.6%;
    background: linear-gradient(198deg, rgba(0, 0, 0, 0.6) 74.5%, transparent 64%);
  }
  .blind-bg-up::after {
    background: linear-gradient(159.5deg, rgba(0, 0, 0, 0.6) 77.7%, transparent 50%);
  }
  .blind-bg-down {
    height: 38.4%;
  }
}

@media screen and (min-width: 800px) and (max-width: 899px) {
  /*main*/
  .tour-attractionBlock {
    max-width: 800px;
  }
  .tour-elevator {
    max-width: 220px;
  }
  .tour-building {
    max-width: 538px;
  }
  .tour-building.f2 img.building {
    bottom: -11.7%;
  }
  .tour-building.f3 img.building {
    bottom: -30%;
  }
  .tour-building.f4 img.building {
    bottom: -48.3%;
  }
  .tour-building.f5 img.building {
    bottom: -66.8%;
  }
  .tour-building.f6 img.building {
    bottom: -84.9%;
  }
  .tour-building.f7 img.building {
    bottom: -103.2%;
  }
  .tour-building.f8 img.building {
    bottom: -122.5%;
  }
  .blind-bg-up {
    height: 66.5%;
    background: linear-gradient(198deg, rgba(0, 0, 0, 0.6) 78.8%, transparent 64%);
  }
  .blind-bg-up::after {
    background: linear-gradient(159.5deg, rgba(0, 0, 0, 0.6) 81.5%, transparent 50%);
  }
  .blind-bg-down {
    height: 33.5%;
  }
  .tour-elevator-txt {
    font-size: 15px;
  }
}

@media screen and (max-width: 799px) {
  /*main*/
  .tour-attractionBlock {
    height: inherit;
    flex-direction: column-reverse;
    margin-bottom: 10px;
  }
  .tour-elevator {
    max-width: 100%;
    height: 300px;
  }
  .tour-elevator-levelWrap.f1 {
    transform: translateY(-2100px);
  }
  .tour-elevator-levelWrap.f2 {
    transform: translateY(-1800px);
  }
  .tour-elevator-levelWrap.f3 {
    transform: translateY(-1500px);
  }
  .tour-elevator-levelWrap.f4 {
    transform: translateY(-1200px);
  }
  .tour-elevator-levelWrap.f5 {
    transform: translateY(-900px);
  }
  .tour-elevator-levelWrap.f6 {
    transform: translateY(-600px);
  }
  .tour-elevator-levelWrap.f7 {
    transform: translateY(-300px);
  }
  .tour-elevator-levelWrap.f8 {
    transform: translateY(0px);
  }
  .tour-elevator-level {
    height: 300px;
    flex-direction: row;
    align-items: center;
    justify-content: inherit;
  }
  .tour-elevator-level--8 .tour-elevator-f img {
    margin: 0 10px;
  }
  .tour-elevator-f img {
    width: 80px;
  }
  .tour-elevator-txt {
    font-size: 14px;
    padding: 0 10px 0 0;
  }
  .tour-building {
    height: 240px;
    width: 500px;
    margin: auto;
  }
  .tour-building img {
    width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
  .tour-building img.blind-up {
    width: 472px;
    top: -15px;
  }
  .tour-building img.building {
    bottom: -37px;
  }
  .tour-building img.blind-down {
    width: 472px;
    bottom: -66px;
  }
  .tour-building.f2 img.building {
    bottom: -129px;
  }
  .tour-building.f3 img.building {
    bottom: -220px;
  }
  .tour-building.f4 img.building {
    bottom: -312px;
  }
  .tour-building.f5 img.building {
    bottom: -403px;
  }
  .tour-building.f6 img.building {
    bottom: -495px;
  }
  .tour-building.f7 img.building {
    bottom: -586px;
  }
  .tour-building.f8 img.building {
    bottom: -682px;
  }
  .tour-building.f8 img.blind-up {
    opacity: 0;
  }
  .blind-bg-up {
    background: linear-gradient(198deg, rgba(0, 0, 0, 0.6) 61.5%, transparent 50%);
  }
  .blind-bg-up::after {
    background: linear-gradient(159.5deg, rgba(0, 0, 0, 0.6) 65.7%, transparent 50%);
  }
  .blind-bg-down {
    background: linear-gradient(18deg, rgba(0, 0, 0, 0.6) 47.7%, transparent 40%);
  }
  .blind-bg-down::after {
    background: linear-gradient(339.5deg, rgba(0, 0, 0, 0.6) 43.4%, transparent 40%);
  }
  .tour-attention {
    margin-bottom: 50px;
    text-align: center;
  }
  .tour-youtube {
    padding: 0 5%;
  }
  .tour-youtube iframe {
    height: 200px;
  }
  .tour-back {
    margin: 50px 0;
  }
  .tour-back a img {
    width: 90%;
  }
  /*footer*/
  .int-footer {
    padding: 0 0 50px;
  }
  .int-footer a {
    margin-top: 50px;
  }
  .int-footer__inner {
    width: 100%;
    flex-direction: column;
  }
  .int-links {
    flex-direction: column;
    width: 100%;
  }
  .int-hobonichi {
    padding-top: 50px;
  }
  /*common*/
  .int-cmnHeaderBlock {
    padding-bottom: 20px;
  }
  br {
    display: none;
  }
  br.keep {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .tour-elevator {
    height: 275px;
  }
  .tour-elevator-levelWrap.f1 {
    transform: translateY(-1925px);
  }
  .tour-elevator-levelWrap.f2 {
    transform: translateY(-1650px);
  }
  .tour-elevator-levelWrap.f3 {
    transform: translateY(-1375px);
  }
  .tour-elevator-levelWrap.f4 {
    transform: translateY(-1100px);
  }
  .tour-elevator-levelWrap.f5 {
    transform: translateY(-825px);
  }
  .tour-elevator-levelWrap.f6 {
    transform: translateY(-550px);
  }
  .tour-elevator-levelWrap.f7 {
    transform: translateY(-275px);
  }
  .tour-elevator-levelWrap.f8 {
    transform: translateY(0px);
  }
  .tour-elevator-level {
    height: 275px;
  }
  .tour-building {
    height: 300px;
    width: 440px;
  }
  .tour-building img {
    width: 300px;
  }
  .tour-building img.blind-up {
    width: 286px;
    top: -7px;
  }
  .tour-building img.building {
    bottom: 0;
  }
  .tour-building img.blind-down {
    width: 286px;
    bottom: -39px;
  }
  .tour-building.f2 img.building {
    bottom: -79px;
  }
  .tour-building.f3 img.building {
    bottom: -160px;
  }
  .tour-building.f4 img.building {
    bottom: -241px;
  }
  .tour-building.f5 img.building {
    bottom: -322px;
  }
  .tour-building.f6 img.building {
    bottom: -403px;
  }
  .tour-building.f7 img.building {
    bottom: -482px;
  }
  .tour-building.f8 img.building {
    bottom: -566px;
  }
  .blind-bg-up {
    height: 182px;
    background: linear-gradient(198deg, rgba(0, 0, 0, 0.6) 172px, transparent 0);
  }
  .blind-bg-up::after {
    height: 182px;
    background: linear-gradient(159.5deg, rgba(0, 0, 0, 0.6) 169.5px, transparent 0);
  }
  .blind-bg-down {
    background: linear-gradient(18deg, rgba(0, 0, 0, 0.6) 111px, transparent 0);
  }
  .blind-bg-down::after {
    background: linear-gradient(339.5deg, rgba(0, 0, 0, 0.6) 98.5px, transparent 0);
  }
}

@media screen and (max-width: 450px) {
  .tour-building {
    width: 400px;
  }
  .tour-building.f2 img.building {
    bottom: -73px;
  }
  .tour-building.f3 img.building {
    bottom: -146px;
  }
  .tour-building.f4 img.building {
    bottom: -219px;
  }
  .tour-building.f5 img.building {
    bottom: -292px;
  }
  .tour-building.f6 img.building {
    bottom: -365px;
  }
  .tour-building.f7 img.building {
    bottom: -438px;
  }
  .tour-building.f8 img.building {
    bottom: -515px;
  }
  .blind-bg-up {
    height: 192px;
    background: linear-gradient(198deg, rgba(0, 0, 0, 0.6) 183px, transparent 0);
  }
  .blind-bg-up::after {
    height: 192px;
    background: linear-gradient(159.5deg, rgba(0, 0, 0, 0.6) 179.5px, transparent 0);
  }
  .blind-bg-down::after {
    background: linear-gradient(339.5deg, rgba(0, 0, 0, 0.6) 99.5px, transparent 0);
  }
}

@media screen and (max-width: 400px) {
  .tour-building {
    width: 360px;
  }
  .tour-building.f2 img.building {
    bottom: -66px;
  }
  .tour-building.f3 img.building {
    bottom: -132px;
  }
  .tour-building.f4 img.building {
    bottom: -198px;
  }
  .tour-building.f5 img.building {
    bottom: -264px;
  }
  .tour-building.f6 img.building {
    bottom: -330px;
  }
  .tour-building.f7 img.building {
    bottom: -395.5px;
  }
  .tour-building.f8 img.building {
    bottom: -464.5px;
  }
  .blind-bg-up {
    height: 204px;
    background: linear-gradient(198deg, rgba(0, 0, 0, 0.6) 193px, transparent 0);
  }
  .blind-bg-up::after {
    height: 204px;
    background: linear-gradient(159.5deg, rgba(0, 0, 0, 0.6) 190.5px, transparent 0);
  }
  .blind-bg-down::after {
    background: linear-gradient(339.5deg, rgba(0, 0, 0, 0.6) 100.5px, transparent 0);
  }
}

@media screen and (max-width: 360px) {
  .tour-building {
    width: 320px;
  }
  .tour-building.f2 img.building {
    bottom: -58px;
  }
  .tour-building.f3 img.building {
    bottom: -116px;
  }
  .tour-building.f4 img.building {
    bottom: -175px;
  }
  .tour-building.f5 img.building {
    bottom: -234px;
  }
  .tour-building.f6 img.building {
    bottom: -293px;
  }
  .tour-building.f7 img.building {
    bottom: -351px;
  }
  .tour-building.f8 img.building {
    bottom: -413px;
  }
  .blind-bg-up {
    height: 214px;
    background: linear-gradient(198deg, rgba(0, 0, 0, 0.6) 203px, transparent 0);
  }
  .blind-bg-up::after {
    height: 214px;
    background: linear-gradient(159.5deg, rgba(0, 0, 0, 0.6) 199.5px, transparent 0);
  }
  .blind-bg-down {
    background: linear-gradient(18deg, rgba(0, 0, 0, 0.6) 112px, transparent 0);
  }
  .blind-bg-down::after {
    background: linear-gradient(339.5deg, rgba(0, 0, 0, 0.6) 102.5px, transparent 0);
  }
}
