@charset "UTF-8";
:root {
  --color-white: #FFFFFF;
  --color-black: #0D0D0D;
  --color-black_text: #333333;
  --color-hp_text: #526D7B;
  --color-main_yellow: #FABE00;
  --color-main_gray: #738792;
  --color-link_blue: #0000EE;
  --color-deep_blue: #133664;
  --color-green: #01A13F;
  --color-gray: #B7B7B7;
  --animation-easing: cubic-bezier(0.77, 0, 0.175, 1);
  --animation-transition: 0.3s;
}

/* ============== 
	要素指定
============== */
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  min-width: 390px;
}
html.no-scroll {
  overflow: hidden;
}

body {
  position: relative;
  overflow: inherit;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Meiryo UI, "メイリオ", Meiryo, sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.04rem;
  color: var(--color-black_text);
}
body .mainimg {
  z-index: 0;
}

a,
button {
  transition: opacity var(--animation-transition) var(--animation-easing);
  cursor: pointer;
}
a:hover,
button:hover {
  opacity: 0.7 !important;
}

/* ============== 
	フォント個別指定用
============== */
.font-en {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.01rem;
}

.font-jp {
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Meiryo UI, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.04rem;
}

/* ============== 
	テンプレート上書き
============== */
#top {
  overflow: visible;
}

.businessPage {
  position: relative;
  padding-top: 0 !important;
  padding-bottom: 20px !important;
}
.businessPage > * {
  position: relative;
  z-index: 1;
}

.companyInfo__wrapper {
  width: 100%;
  background: var(--color-white);
}

.commonTaxText {
  color: var(--color-black_text);
}

/* ============== 
	ハンバーガーメニュー
============== */
#hamburger-menu {
  position: relative;
  top: 0;
  right: 0;
  z-index: 999;
}
#hamburger-menu.active::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
#hamburger-menu.active #hamburger-menu-button span {
  background: var(--color-white);
}
#hamburger-menu.active #hamburger-menu-button span:nth-of-type(1) {
  transform: translateY(14px) rotate(-45deg);
}
#hamburger-menu.active #hamburger-menu-button span:nth-of-type(2) {
  opacity: 0;
}
#hamburger-menu.active #hamburger-menu-button span:nth-of-type(3) {
  transform: translateY(-13.5px) rotate(45deg);
}
#hamburger-menu.active #hamburger-menu-content {
  transform: translateX(0);
}
#hamburger-menu-button {
  position: fixed;
  top: 50px;
  right: 20px;
  translate: 0 -50%;
  display: inline-block;
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 9999;
}
#hamburger-menu-button span {
  position: absolute;
  left: 0;
  display: inline-block;
  transition: all var(--animation-transition) var(--animation-easing);
  box-sizing: border-box;
  width: 100%;
  height: 3px;
  background-color: #133664;
  border-radius: 4px;
}
#hamburger-menu-button span:nth-of-type(1) {
  top: 0;
}
#hamburger-menu-button span:nth-of-type(2) {
  top: 50%;
  translate: 0 -50%;
}
#hamburger-menu-button span:nth-of-type(3) {
  bottom: 0;
}
#hamburger-menu-content {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  height: 100%;
  background-color: var(--color-hp_text);
  transform: translateX(100%);
  transition: transform var(--animation-transition) var(--animation-easing);
  z-index: 99;
}
@media print, screen and (max-width: 768px) {
  #hamburger-menu-content {
    max-width: none;
  }
}
#hamburger-menu-content ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#hamburger-menu-content ul li {
  width: 100%;
  max-width: 292px;
  border-bottom: 1px solid var(--color-white);
}
#hamburger-menu-content ul li a {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 24px 0;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 100%;
  color: var(--color-white);
}
#hamburger-menu-content ul li a span {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 100%;
}

/* ============== 
	メインビジュアル
============== */
.mainimg {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: calc(100% - 80px);
  height: 760px;
  padding: 92px 40px 0;
  background: #FFFBF3;
  overflow: hidden;
}
@media print, screen and (max-width: 1100px) {
  .mainimg {
    width: calc(100% - 130px);
    height: 700px;
    padding: 92px 65px 0;
  }
}
@media print, screen and (max-width: 600px) {
  .mainimg {
    width: calc(100% - 64px);
    height: 560px;
    padding: 92px 32px 0;
  }
}
.mainimg::after {
  content: "";
  position: absolute;
  bottom: -152px;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  width: 236px;
  height: 470px;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/img_mainimg_skin.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
  z-index: 0;
}
@media print, screen and (max-width: 1100px) {
  .mainimg::after {
    bottom: -102px;
    width: 154px;
    height: 306px;
  }
}
@media print, screen and (max-width: 600px) {
  .mainimg::after {
    bottom: -102px;
    left: 10%;
    translate: 0 0;
    width: 139px;
    height: 277px;
  }
}
.mainimg > * {
  z-index: 1;
}
.mainimg .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 1120px;
  padding-top: 87px;
}
@media print, screen and (max-width: 1100px) {
  .mainimg .inner {
    max-width: 638px;
    padding-top: 67px;
  }
}
@media print, screen and (max-width: 600px) {
  .mainimg .inner {
    padding-top: 32px;
  }
}
.mainimg h1 {
  width: 100%;
  margin-bottom: 40px;
  font-size: inherit;
}
@media print, screen and (max-width: 1100px) {
  .mainimg h1 {
    margin-bottom: 24px;
  }
}
@media print, screen and (max-width: 600px) {
  .mainimg h1 {
    margin-bottom: 16px;
  }
}
.mainimg h1 img {
  width: 610px;
  height: 199px;
}
@media print, screen and (max-width: 1100px) {
  .mainimg h1 img {
    width: 465px;
    height: 152px;
  }
}
@media print, screen and (max-width: 600px) {
  .mainimg h1 img {
    width: 321px;
    height: 104px;
  }
}
.mainimg p {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0.1rem;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.6));
}
@media print, screen and (max-width: 1100px) {
  .mainimg p {
    font-size: 2rem;
  }
}
@media print, screen and (max-width: 600px) {
  .mainimg p {
    font-size: 1.6rem;
    font-weight: 400;
  }
}
.mainimg p span {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 44px;
  padding: 0 20px 2px;
  border: 2px solid var(--color-white);
  background: var(--color-black);
}
@media print, screen and (max-width: 1100px) {
  .mainimg p span {
    height: 38px;
    padding: 0 16px 2px;
  }
}
@media print, screen and (max-width: 600px) {
  .mainimg p span {
    height: 26px;
    padding: 0 12px 2px;
    border-width: 1.5px;
  }
}
.mainimg a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 180px !important;
  height: 180px;
  padding-top: 25px;
  box-sizing: border-box;
  background: rgba(250, 190, 0, 0.94);
  border-radius: 100px;
  transform: translateZ(0);
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
}
.mainimg a:hover {
  opacity: 0.9;
}
@media print, screen and (max-width: 1100px) {
  .mainimg a {
    gap: 17px;
    width: 132px !important;
    height: 132px;
    margin-top: 90px;
    padding-top: 16px;
    font-size: 1.9rem;
  }
}
@media print, screen and (max-width: 600px) {
  .mainimg a {
    margin-top: 88px;
  }
}
.mainimg a::after {
  content: "";
  display: block;
  width: 19px;
  height: 14px;
  background: var(--color-white);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media print, screen and (max-width: 1100px) {
  .mainimg a::after {
    width: 14px;
    height: 10px;
  }
}
.mainimg a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 155px;
  height: 155px;
  animation: spin 15s linear infinite;
}
@media print, screen and (max-width: 1100px) {
  .mainimg a svg {
    width: 115px;
    height: 115px;
  }
}
.mainimg a svg text {
  fill: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  text-anchor: middle;
}
@media print, screen and (max-width: 1100px) {
  .mainimg a svg text {
    font-size: 1.2rem;
  }
}
@keyframes spin {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}
.mainimg .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 92px);
  z-index: 0;
  background-color: #FFFBF3;
  background-position: center;
  background-size: cover;
}
.mainimg .bg span {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/bg_mainimg_01.webp);
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation: fadeZoomLoop 30s linear both infinite;
}
.mainimg .bg span:nth-of-type(1) {
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/bg_mainimg_01.webp);
  animation-delay: 0s;
}
.mainimg .bg span:nth-of-type(2) {
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/bg_mainimg_02.webp);
  animation-delay: 5s;
}
.mainimg .bg span:nth-of-type(3) {
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/bg_mainimg_03.webp);
  animation-delay: 10s;
}
.mainimg .bg span:nth-of-type(4) {
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/bg_mainimg_04.webp);
  animation-delay: 15s;
}
.mainimg .bg span:nth-of-type(5) {
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/bg_mainimg_05.webp);
  animation-delay: 20s;
}
.mainimg .bg span:nth-of-type(6) {
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/bg_mainimg_06.webp);
  animation-delay: 25s;
}
@keyframes fadeZoomLoop {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  15% {
    opacity: 1;
    transform: scale(1.05);
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* ============== 
	コンテンツ共通スタイル
============== */
.contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 80px);
  padding: 200px 40px;
  background: #FFFBF3;
  overflow: hidden;
}
@media print, screen and (max-width: 1100px) {
  .contents {
    width: calc(100% - 130px);
    padding: 120px 65px;
  }
}
@media print, screen and (max-width: 600px) {
  .contents {
    width: calc(100% - 64px);
    padding: 120px 32px;
  }
}
.contents > .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.contents__title {
  margin-bottom: 27px;
  color: var(--color-main_yellow);
  font-size: 9rem;
  font-weight: 900;
  line-height: 75%;
  text-align: center;
}
@media print, screen and (max-width: 1100px) {
  .contents__title {
    font-size: 5.8rem;
    margin-bottom: 24px;
  }
}
@media print, screen and (max-width: 600px) {
  .contents__title {
    font-size: 4rem;
  }
}
.contents__lead {
  margin: 0 0 72px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
@media print, screen and (max-width: 1100px) {
  .contents__lead {
    font-size: 2rem;
  }
}
@media print, screen and (max-width: 600px) {
  .contents__lead {
    font-size: 1.8rem;
  }
}

/* ============== 
	DATA CENTER VIRTUAL TOUR
============== */
.about {
  position: relative;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  overflow: visible;
}
.about::before {
  content: "";
  position: absolute;
  top: -21px;
  left: 0;
  width: 100%;
  height: 63px;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/bg_about.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
}
@media print, screen and (max-width: 1100px) {
  .about::before {
    height: 48px;
  }
}
@media print, screen and (max-width: 600px) {
  .about::before {
    height: 35px;
  }
}
.about > .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 80px);
  max-width: none;
  padding: 184px 40px 200px;
  overflow: hidden;
}
@media print, screen and (max-width: 1100px) {
  .about > .inner {
    width: calc(100% - 130px);
    max-width: 638px;
    padding: 103px 65px 511px;
  }
}
@media print, screen and (max-width: 600px) {
  .about > .inner {
    width: calc(100% - 64px);
    max-width: none;
    padding: 96px 32px 540px;
  }
}
.about .contents__title {
  width: 100%;
  max-width: 1120px;
  margin-bottom: 32px;
  line-height: 100%;
  text-align: start;
}
@media print, screen and (max-width: 1100px) {
  .about .contents__title {
    margin-bottom: 24px;
  }
}
.about .contents__lead {
  width: 100%;
  max-width: 1120px;
  margin-bottom: 48px;
  text-align: start;
}
@media print, screen and (max-width: 1100px) {
  .about .contents__lead {
    margin-bottom: 32px;
  }
}
.about .textbox {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 1120px;
}
@media print, screen and (max-width: 1100px) {
  .about .textbox {
    gap: 0;
  }
}
.about .textbox p {
  width: 50%;
  max-width: 541px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 200%;
}
@media print, screen and (max-width: 1100px) {
  .about .textbox p {
    width: 100%;
    max-width: 340px;
    font-size: 1.4rem;
    line-height: 170%;
  }
}
@media print, screen and (max-width: 600px) {
  .about .textbox p {
    max-width: none;
  }
}
.about .bg {
  position: absolute;
  top: 120px;
  right: 50%;
  translate: 100% 0;
  width: 729px;
  height: 659px;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/img_about_skin.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}
@media print, screen and (max-width: 1100px) {
  .about .bg {
    top: 360px;
    translate: 74% 0;
    width: 583px;
    height: 527px;
  }
}
@media print, screen and (max-width: 600px) {
  .about .bg {
    top: auto;
    bottom: 100px;
    translate: 56% 0;
    width: 435px;
    height: 388px;
  }
}
.about .bg span {
  position: absolute;
  bottom: 210px;
  left: 40px;
  width: 250px;
  height: 80px;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/img_about_fukidashi_pc.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
}
@media print, screen and (max-width: 1100px) {
  .about .bg span {
    bottom: 170px;
    left: 30px;
    width: 200px;
    height: 64px;
  }
}
@media print, screen and (max-width: 600px) {
  .about .bg span {
    bottom: 122px;
    left: 35px;
    width: 192px;
    height: 62px;
    background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/img_about_fukidashi_sp.png);
  }
}

/* ============== 
	5 KEY POINTS
============== */
.five-key-points {
  padding: 200px 40px;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/bg_5keypoints.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
@media print, screen and (max-width: 1115px) {
  .five-key-points {
    padding-bottom: 600px;
  }
}
@media print, screen and (max-width: 1100px) {
  .five-key-points {
    width: calc(100% - 64px);
    padding: 120px 32px 435px;
  }
}
@media print, screen and (max-width: 600px) {
  .five-key-points {
    padding-bottom: 463px;
  }
}
.five-key-points .contents__lead {
  color: var(--color-white);
}
.five-key-points .swiper {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}
@media print, screen and (max-width: 900px) {
  .five-key-points .swiper {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
.five-key-points .swiper-controls {
  display: none;
}
@media print, screen and (max-width: 900px) {
  .five-key-points .swiper-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    z-index: 1;
  }
}
.five-key-points .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  list-style: none;
  z-index: 1;
}
.five-key-points .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #D9D9D9;
  border-radius: 100px;
  transition: background var(--animation-transition) var(--animation-easing);
}
.five-key-points .swiper-pagination-bullet-active {
  background: var(--color-main_yellow);
}
.five-key-points .swiper-button-prev, .five-key-points .swiper-button-next {
  position: relative;
  width: 40px;
  height: 40px;
}
.five-key-points .swiper-button-prev::after, .five-key-points .swiper-button-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-white);
  border-top: none;
  border-right: none;
}
.five-key-points .swiper-button-prev svg, .five-key-points .swiper-button-next svg {
  display: none;
}
.five-key-points .swiper-button-prev::after {
  translate: -30% -50%;
  rotate: 45deg;
}
.five-key-points .swiper-button-next::after {
  translate: -70% -50%;
  rotate: 225deg;
}
.five-key-points ul.swiper-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 48px 32px;
  width: 100%;
  max-width: 1036px;
}
@media print, screen and (max-width: 1115px) {
  .five-key-points ul.swiper-wrapper {
    justify-content: center;
    max-width: 680px;
  }
}
@media print, screen and (max-width: 900px) {
  .five-key-points ul.swiper-wrapper {
    justify-content: inherit;
    flex-wrap: nowrap;
    gap: inherit;
    max-width: none;
    margin-bottom: 48px;
  }
}
@media print, screen and (max-width: 600px) {
  .five-key-points ul.swiper-wrapper {
    margin-bottom: 64px;
  }
}
.five-key-points ul.swiper-wrapper li {
  display: flex;
  flex-direction: column;
  width: 324px;
  height: 490px;
  border-radius: 8px;
  background: var(--color-white);
  overflow: hidden;
}
.five-key-points ul.swiper-wrapper li .number {
  position: absolute;
  top: -40px;
  left: 12px;
  width: 76px;
  height: 80px;
  padding: 37px 0 0;
  box-sizing: border-box;
  background: var(--color-main_yellow);
  border-radius: 100px;
  color: var(--color-white);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
.five-key-points ul.swiper-wrapper li .inner {
  flex-grow: 1;
  padding: 22px;
}
.five-key-points ul.swiper-wrapper li .inner .thumbnail {
  width: 100%;
  height: 160px;
  margin-bottom: 20px;
  background: var(--color-gray);
}
.five-key-points ul.swiper-wrapper li .inner .title {
  margin-bottom: 10px;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 100%;
}
.five-key-points ul.swiper-wrapper li .inner .lead {
  padding: 0;
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 100%;
}
.five-key-points ul.swiper-wrapper li .inner .detail {
  padding: 0;
  font-size: 1.4rem;
  line-height: 170%;
}
.five-key-points ul.swiper-wrapper li .tourspot {
  display: flex;
  height: 60px;
  flex-grow: 0;
}
.five-key-points ul.swiper-wrapper li .tourspot p {
  display: flex;
  justify-content: center;
  height: 100%;
  color: var(--color-white);
  line-height: 120%;
  padding: 0;
}
.five-key-points ul.swiper-wrapper li .tourspot p:first-of-type {
  flex-shrink: 0;
  align-items: center;
  width: 77px;
  background: var(--color-deep_blue);
  font-size: 1.2rem;
  font-weight: 700;
}
.five-key-points ul.swiper-wrapper li .tourspot p:nth-of-type(2) {
  flex-shrink: 1;
  flex-direction: column;
  align-items: start;
  gap: 4px;
  width: 100%;
  padding-left: 40px;
  background: #4688A9;
  font-size: 1.4rem;
  font-weight: 500;
}
.five-key-points ul.swiper-wrapper li .tourspot p span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.five-key-points ul.swiper-wrapper li .tourspot p span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/icon_checkbox.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}
.five-key-points .lets-go-vrtour {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  position: absolute;
  bottom: 200px;
  left: 50%;
  translate: 90% 0;
}
@media print, screen and (max-width: 1115px) {
  .five-key-points .lets-go-vrtour {
    bottom: 120px;
    translate: -50% 0;
  }
}
@media print, screen and (max-width: 600px) {
  .five-key-points .lets-go-vrtour {
    bottom: 140px;
    gap: 12px;
  }
}
.five-key-points .lets-go-vrtour::after {
  content: "";
  display: block;
  width: 194px;
  height: 300px;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/img_5keypoints_skin.png);
  background-position: center;
  background-size: auto 100%;
  z-index: 0;
}
@media print, screen and (max-width: 1100px) {
  .five-key-points .lets-go-vrtour::after {
    width: 116px;
    height: 180px;
  }
}
@media print, screen and (max-width: 600px) {
  .five-key-points .lets-go-vrtour::after {
    width: 113px;
    height: 175px;
  }
}
.five-key-points .lets-go-vrtour img {
  display: block;
  width: 260px;
  height: 80px;
}
@media print, screen and (max-width: 1100px) {
  .five-key-points .lets-go-vrtour img {
    width: 179px;
    height: 64px;
  }
}

/* ============== 
	VR TOUR
============== */
.vr-tour {
  padding-top: 240px;
}
@media print, screen and (max-width: 1100px) {
  .vr-tour {
    padding-top: 144px;
    width: calc(100% - 64px);
    padding: 144px 32px 120px;
  }
}
.vr-tour::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  width: 100%;
  height: 70px;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/img_vrtour_scroll.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
  animation: loop-animation-text 24s linear infinite;
}
@media print, screen and (max-width: 1100px) {
  .vr-tour::before {
    height: 35px;
  }
}
.vr-tour .contents__lead {
  margin-bottom: 36px;
}
.vr-tour button.show-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 21px;
  width: 200px;
  height: 50px;
  margin-bottom: 64px;
  border: none;
  background: var(--color-deep_blue);
  border-radius: 100px;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 600;
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.3));
}
.vr-tour button.show-overlay::before {
  content: "？";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 100px;
  background: var(--color-white);
  color: var(--color-deep_blue);
  font-size: 1.5rem;
}
.vr-tour .skin {
  position: absolute;
  top: 175px;
  left: 50%;
  translate: -280% 0;
  z-index: 1;
  width: 252px;
  height: 345px;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/img_vrtour_skin.png);
  background-position: center;
  background-size: cover;
}
@media print, screen and (max-width: 1300px) {
  .vr-tour .skin {
    left: -58px;
    translate: 0;
  }
}
@media print, screen and (max-width: 1100px) {
  .vr-tour .skin {
    top: 100px;
    left: 50%;
    translate: -250% 0;
    width: 144px;
    height: 200px;
  }
}
@media print, screen and (max-width: 600px) {
  .vr-tour .skin {
    top: 80px;
    left: -60px;
    translate: 0;
  }
}
.vr-tour #pano-wrap {
  width: calc(100% + 80px);
  max-width: 1440px;
  height: calc(90vh - 100px);
  max-height: 700px;
  min-height: 400px;
  margin-left: -40px;
  box-sizing: border-box;
  border: 2px solid var(--color-gray);
  border-radius: 2px;
  background: var(--color-gray);
  overflow: hidden;
}
@media print, screen and (min-width: 1440px) {
  .vr-tour #pano-wrap {
    width: 1440px;
    margin-left: calc((100% - 1440px) / 2);
  }
}
@media print, screen and (max-width: 1100px) {
  .vr-tour #pano-wrap {
    max-height: 600px;
  }
}

/* ============== 
	MOVIE
============== */
.movie {
  background: var(--color-main_yellow);
  overflow: hidden;
}
@media print, screen and (max-width: 1100px) {
  .movie {
    width: calc(100% - 64px);
    padding: 120px 32px;
  }
}
@media print, screen and (max-width: 768px) {
  .movie {
    width: calc(100% - 32px);
    padding: 120px 16px;
  }
}
.movie::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 462px;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/bg_movie.png);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
  z-index: 0;
}
@media print, screen and (max-width: 1100px) {
  .movie::before {
    height: 277px;
  }
}
.movie .skin {
  position: absolute;
  top: 170px;
  right: 50%;
  translate: 310% 0;
  z-index: 1;
  width: 214px;
  height: 300px;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/img_movie_skin.png);
  background-position: center;
  background-size: cover;
}
@media print, screen and (max-width: 1300px) {
  .movie .skin {
    right: -13px;
    translate: 0;
  }
}
@media print, screen and (max-width: 1100px) {
  .movie .skin {
    top: 60px;
    right: 50%;
    translate: 270% 0;
    width: 125px;
    height: 175px;
  }
}
@media print, screen and (max-width: 600px) {
  .movie .skin {
    top: 25px;
    right: -20px;
    translate: 0;
  }
}
.movie > * {
  z-index: 1;
}
.movie .contents__title {
  color: var(--color-white);
  margin-bottom: 40px;
}
@media print, screen and (max-width: 1100px) {
  .movie .contents__title {
    margin-bottom: 24px;
  }
}
@media print, screen and (max-width: 1100px) {
  .movie .contents__lead {
    margin-bottom: 38px;
  }
}
.movie__wrapper {
  max-width: 880px;
  width: 100%;
}
@media print, screen and (max-width: 768px) {
  .movie__wrapper {
    max-width: 540px;
  }
}
.movie__container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--color-gray);
}
.movie__container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ============== 
	INFORMATION
============== */
.information {
  padding-bottom: 100px;
}
@media print, screen and (max-width: 1100px) {
  .information {
    padding-bottom: 333px;
  }
}
@media print, screen and (max-width: 600px) {
  .information {
    padding-bottom: 292px;
  }
}
.information .contents__title {
  margin-bottom: 56px;
}
@media print, screen and (max-width: 1100px) {
  .information .contents__title {
    margin-bottom: 36px;
  }
}
.information .contents__lead {
  margin-bottom: 56px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 190%;
}
@media print, screen and (max-width: 1100px) {
  .information .contents__lead {
    margin-bottom: 48px;
    font-size: 1.4rem;
  }
}
.information .button-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
  margin-bottom: 72px;
}
@media print, screen and (max-width: 1100px) {
  .information .button-list {
    margin-bottom: 64px;
  }
}
@media print, screen and (max-width: 600px) {
  .information .button-list {
    gap: 24px;
  }
}
.information .button-list li {
  width: 100%;
  max-width: 406px;
  height: 70px;
}
@media print, screen and (max-width: 1100px) {
  .information .button-list li {
    max-width: 340px;
    height: 60px;
  }
}
@media print, screen and (max-width: 600px) {
  .information .button-list li {
    max-width: 326px;
  }
}
.information .button-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: var(--color-deep_blue);
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.3));
  transform: translateZ(0);
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 600;
}
@media print, screen and (max-width: 1100px) {
  .information .button-list li a {
    font-size: 1.6rem;
  }
}
@media print, screen and (max-width: 600px) {
  .information .button-list li a {
    font-size: 1.4rem;
  }
}
.information .share,
.information .copyright {
  width: 100%;
  text-align: center;
}
.information .share .title,
.information .copyright .title {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 600;
}
@media print, screen and (max-width: 1100px) {
  .information .share .title,
  .information .copyright .title {
    font-size: 1.6rem;
  }
}
.information .share {
  margin-bottom: 80px;
}
@media print, screen and (max-width: 1100px) {
  .information .share {
    margin-bottom: 64px;
  }
}
.information .share ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
@media print, screen and (max-width: 1100px) {
  .information .share ul {
    gap: 38px;
  }
}
.information .share ul li {
  width: 45px;
  height: 45px;
}
@media print, screen and (max-width: 1100px) {
  .information .share ul li {
    width: 36px;
    height: 36px;
  }
}
.information .share ul li a,
.information .share ul li img {
  display: block;
  width: 100%;
  height: 100%;
}
.information .copyright .detail {
  padding: 0;
  font-size: 1.2rem;
  font-weight: 500;
}
@media print, screen and (max-width: 1100px) {
  .information .copyright .detail {
    font-weight: 400;
  }
}
.information .thankyou {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -230% 0;
}
@media print, screen and (max-width: 1100px) {
  .information .thankyou {
    gap: 0;
    translate: -50% 0;
  }
}
.information .thankyou::after {
  content: "";
  display: block;
  width: 104px;
  height: 206px;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/img_information_skin.png);
  background-position: center;
  background-size: auto 100%;
  z-index: 0;
}
@media print, screen and (max-width: 1100px) {
  .information .thankyou::after {
    width: 84px;
    height: 168px;
  }
}
@media print, screen and (max-width: 600px) {
  .information .thankyou::after {
    width: 70px;
    height: 140px;
  }
}
.information .thankyou img {
  display: block;
  width: 234px;
  height: 92px;
}
@media print, screen and (max-width: 1100px) {
  .information .thankyou img {
    width: 252px;
    height: 98px;
  }
}
@media print, screen and (max-width: 600px) {
  .information .thankyou img {
    width: 210px;
    height: 82px;
  }
}

/* ============== 
	animation
============== */
/* text loop animation */
@keyframes loop-animation-text {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1569px 0;
  }
}
@media print, screen and (max-width: 1100px) {
  @keyframes loop-animation-text {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -735px 0;
    }
  }
}
/* text jump animation */
.animation-text {
  overflow: hidden;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.animation-text.is-active {
  --y: 0;
}
.animation-text .char {
  display: inline-block;
  transform: translateY(var(--y, 110%));
  transition: transform var(--animation-transition) var(--animation-easing);
  transition-delay: calc(0.04s * var(--char-index));
}

/* bounce animation */
.animation-bounce {
  transform: translateY(10px) scale(0);
}
.animation-bounce.is-active {
  animation: bounce 0.6s var(--animation-easing) forwards;
}

@keyframes bounce {
  0% {
    transform: translateY(10px) scale(0);
  }
  50% {
    transform: translateY(-10px) scale(1.1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
/* appear animation */
.animation-appear-from-left {
  opacity: 0;
  transform: translate(-150px, 80px);
}
.animation-appear-from-left.is-active {
  animation: appear-from-left 0.3s var(--animation-easing) forwards;
}

@keyframes appear-from-left {
  from {
    opacity: 0;
    transform: translate(-150px, 80px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.animation-appear-from-right {
  opacity: 0;
  transform: translate(150px, 80px);
}
.animation-appear-from-right.is-active {
  animation: appear-from-right 0.3s var(--animation-easing) forwards;
}

@keyframes appear-from-right {
  from {
    opacity: 0;
    transform: translate(150px, 80px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
/* fade-in animation */
.animation-fade-in-bottom {
  transform: translateY(30px);
}

.animation-fade-in-left {
  transform: translateX(30px);
}

.animation-fade-in-right {
  transform: translateX(-30px);
}

.animation-fade-in-bottom,
.animation-fade-in-left,
.animation-fade-in-right {
  opacity: 0;
  transition: opacity 0.8s var(--animation-easing), transform 0.8s var(--animation-easing);
  pointer-events: none;
}
.animation-fade-in-bottom.is-active,
.animation-fade-in-left.is-active,
.animation-fade-in-right.is-active {
  opacity: 1;
  transform: translate(0);
  pointer-events: auto;
}

/* ============== 
	pano.css 
============== */
#pano {
  width: 100%;
  height: 100%;
}
#pano.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  z-index: 99999;
}

#side-nav {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 20;
  width: 168px;
  background: rgba(0, 0, 0, 0.72);
  border-left: 4px solid #FABE00;
  border-radius: 0 4px 4px 0;
  padding: 11px 11px 15px;
  color: #fff;
}
@media screen and (max-width: 600px) {
  #side-nav {
    width: 50%;
    max-width: 168px;
    background: transparent !important;
    box-shadow: none;
  }
}
#side-nav .location_ttl {
  margin: 0 0 12px 0;
  font-size: 12px;
  font-weight: 700;
  color: #FABE00;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 8px;
}

#side-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-link-item {
  font-size: 11px;
  cursor: pointer;
  transition: all var(--animation-transition);
  padding: 0px 8px;
  margin-bottom: 5px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.side-link-item::before {
  content: "▶";
  font-size: 6px;
  margin-right: 8px;
  color: #50C878;
}
.side-link-item:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #FABE00;
  transform: translateX(5px);
}

#current-title {
  padding: 15px;
  pointer-events: auto;
  border: 2px solid #FABE00;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  transition: all var(--animation-transition) var(--animation-easing);
  color: #ffffff;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  #current-title {
    background: rgba(0, 0, 0, 0.85); /* 背景色を少し濃くしてボタン感を出す */
    border: 2px solid #FABE00;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none; /* テキスト選択を防ぐ */
    pointer-events: auto; /* 🔹 ボタン部分だけはクリックに反応させる */
    -webkit-tap-highlight-color: transparent; /* タップ時の青枠を消す */
  }
}

#current-title-container {
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20; /* navより手前か同等に */
  pointer-events: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--animation-transition) var(--animation-easing);
  width: auto;
}
@media screen and (max-width: 768px) {
  #current-title-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100; /* 🔹 他の要素より前面に出す */
    pointer-events: none;
    cursor: pointer;
    padding: 10px; /* 🔹 タップしやすいように遊びを作る */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto; /* 幅を自動に */
  }
}
#current-title-container.closed {
  bottom: 20px;
}
@media screen and (max-width: 768px) {
  #current-title-container.closed {
    bottom: 10px; /* 🔹 閉じた時の位置 */
  }
}
#current-title-container.closed #thumb-toggle-icon {
  transform: rotate(180deg); /* 閉じている時は下向きに */
}

/* 矢印アイコンのスタイル */
#thumb-toggle-icon {
  color: #FABE00;
  font-size: 10px;
  margin-top: 2px;
  transition: transform var(--animation-transition) var(--animation-easing);
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  #thumb-toggle-icon {
    pointer-events: auto; /* 🔹 追加：矢印もクリック可能に */
  }
}

/* --- サムネイルバー（改行禁止・横スクロール強制版） --- */
.thumbs {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 15px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 10px 15px;
  border-radius: 8px;
  box-sizing: border-box;
  z-index: 10;
  width: calc(100% - 40px);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
  transition: all var(--animation-transition) var(--animation-easing);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .thumbs {
    /* 🔹 サムネイルの開閉アニメーション設定 */
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.thumbs.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(100px); /* 下に消える */
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .thumbs.hidden {
    transform: translateX(-50%) translateY(150px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.thumbs::-webkit-scrollbar {
  /* カスタムスクロールバー */
  height: 16px;
}
.thumbs::-webkit-scrollbar-track {
  /* スクロールバーのレール */
  background: rgba(40, 30, 0, 0.5); /* ほんのり茶色が入った黒透過 */
  border-radius: 10px;
  margin: 0 10px;
  border: 1px solid rgba(255, 215, 0, 0.1); /* 薄い金の縁取り */
}
.thumbs::-webkit-scrollbar-thumb {
  /* スクロールバーのつまみ */
  background: linear-gradient(to bottom, #FABE00, #B8860B); /* 金のグラデーション（上から下へ） */
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4); /* 外側にハイライト */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 10px rgba(218, 165, 32, 0.4); /* 周囲への淡い光 */
}
.thumbs::-webkit-scrollbar-thumb:hover {
  /* つまみをホバーした時 */
  background: linear-gradient(to bottom, #FFF060, #DAA520); /* より明るい金に */
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); /* 発光を強く */
  cursor: pointer;
}

/* 🔹 スクロール中、サムネイルが潰れないように固定 */
.thumb-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  pointer-events: auto;
}
.thumb-item img {
  width: 180px;
  height: 100px;
  border: 2px solid #B7B7B7;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  contain: paint;
  image-rendering: -webkit-optimize-contrast;
}
.thumb-item.active img {
  border-color: #FABE00;
}

.thumb-title {
  position: absolute;
  top: 10px;
  left: 0;
  padding: 8px 10px;
  background: #FABE00;
  border-radius: 0 100px 100px 0;
  font-size: 11px;
  font-weight: 600;
  color: #000;
  pointer-events: none;
}

#guide-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  border: 2px solid #A8A8B3;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  text-shadow: 1px 1px 0 #000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 4px rgba(168, 168, 179, 0.3);
  transition: all var(--animation-transition) var(--animation-easing);
}
@media screen and (max-width: 768px) {
  #guide-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

/* --- ホットスポット --- */
.hotspot.info-type {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #FABE00;
  border-radius: 4px;
  padding: 15px;
  transition: all var(--animation-transition) var(--animation-easing);
  color: #ffffff;
  font-size: 13px;
}
.hotspot.info-type:hover {
  transform: scale(1.1);
}
.hotspot.move-type {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: all var(--animation-transition) var(--animation-easing);
}
.hotspot.move-type img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.8));
}
@media screen and (max-width: 768px) {
  .hotspot.move-type {
    width: 60px;
    height: 60px;
  }
}
.hotspot.move-type:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.8));
}

/* --- ポップアップオーバーレイ --- */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  color: white;
}

.modal-content {
  position: relative;
  background: #222;
  padding: 80px 80px;
  border-radius: 10px;
  text-align: center;
  width: 85%;
  max-width: 840px;
  height: 85%;
  border: 2px solid #B7B7B7;
  box-sizing: border-box;
  overflow-x: scroll;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .modal-content {
    width: 90%;
    padding: 80px 64px;
  }
}
@media screen and (max-width: 600px) {
  .modal-content {
    padding: 80px 24px;
  }
}
.modal-content > p {
  color: #FABE00;
  font-size: 24px;
  font-weight: 600;
  line-height: 170%;
  margin-bottom: 48px;
}
.modal-content > p > br {
  display: none;
}
@media screen and (max-width: 768px) {
  .modal-content > p > br {
    display: block;
  }
}

.modal-body {
  /* max-height: 70vh;
  padding-right: 15px; */
  text-align: left;
}
@media screen and (max-width: 768px) {
  .modal-body {
    font-size: 16px;
  }
}
.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 10px;
}
.modal-body p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 170%;
}
.modal-body ul {
  margin: 10px 0;
  padding-left: 22px;
}
.modal-body li {
  list-style: disc;
  line-height: 170%;
}

.close-btn {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 64px;
  height: 64px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 1px solid #D9D9D9;
  border-radius: 100px;
  transition: all var(--animation-transition) var(--animation-easing);
}
@media screen and (max-width: 768px) {
  .close-btn {
    top: 22px;
    right: 20px;
    width: 36px;
    height: 36px;
  }
}
.close-btn::before, .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 42px;
  background: #D9D9D9;
  border-radius: 100px;
  transition: all var(--animation-transition) var(--animation-easing);
}
@media screen and (max-width: 768px) {
  .close-btn::before, .close-btn::after {
    width: 2px;
    height: 23px;
  }
}
.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.close-btn:hover {
  background: #FABE00;
}
.close-btn:hover::before, .close-btn:hover:after {
  background: #000;
}

/* --- フルスクリーンボタン --- */
#fullscreen-toggle-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
  border: 2px solid #A8A8B3;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all var(--animation-transition) var(--animation-easing);
}
#fullscreen-toggle-icon::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/icon_fullscreen_open.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}
#fullscreen-toggle-icon.open::before {
  background-image: url(/business/service/datacenter/location/sonezaki/vrtour/img/icon_fullscreen_close.png);
}

body.ios-fullscreen header,
body.ios-fullscreen #hamburger-menu,
body.ios-fullscreen .footer-wrap,
body.ios-fullscreen .footer-wrap .pageTop {
  z-index: 0 !important;
}
body.ios-fullscreen main {
  z-index: 1 !important;
}
body.ios-fullscreen main section {
  z-index: 0 !important;
}
body.ios-fullscreen main section.vr-tour {
  z-index: 1 !important;
}
body.ios-fullscreen #pano-wrap {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  max-width: none !important;
  height: 100vh !important;
  max-height: none !important;
  min-height: none !important;
  z-index: 99999 !important;
  margin: 0 !important;
  padding: 0 !important;
}/*# sourceMappingURL=style.css.map */