@charset "UTF-8";
/* フェードインのキーフレーム定義 */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px); /* 開始：右30px */
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); /* 終了：元の位置 */
  }
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px); /* 開始：右30px */
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); /* 終了：元の位置 */
  }
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); /* 開始：右30px */
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); /* 終了：元の位置 */
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); /* 開始：右30px */
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); /* 終了：元の位置 */
  }
}
@-webkit-keyframes heartbeat {
  0%, 10% {
    -webkit-transform: scale(1);
            transform: scale(1);
  } /* 10%まで静止 */
  15% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  } /* 1回目：少し拡大（どく） */
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  } /* 戻る */
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  } /* 2回目：少し拡大（どく） */
  30% {
    -webkit-transform: scale(1);
            transform: scale(1);
  } /* 戻る */
  /* ここから後半（30%〜100%）は、transformを1（元のサイズ）のまま維持 */
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes heartbeat {
  0%, 10% {
    -webkit-transform: scale(1);
            transform: scale(1);
  } /* 10%まで静止 */
  15% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  } /* 1回目：少し拡大（どく） */
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  } /* 戻る */
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  } /* 2回目：少し拡大（どく） */
  30% {
    -webkit-transform: scale(1);
            transform: scale(1);
  } /* 戻る */
  /* ここから後半（30%〜100%）は、transformを1（元のサイズ）のまま維持 */
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); /* 上に15px動く */
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置に戻る */
  }
}
@keyframes floating {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px); /* 上に15px動く */
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 元の位置に戻る */
  }
}
@-webkit-keyframes fadeInScale {
  0% {
    /* 開始：透明、1.2倍 */
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    /* 終了：不透明(1)、元のサイズ(1) */
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes fadeInScale {
  0% {
    /* 開始：透明、1.2倍 */
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    /* 終了：不透明(1)、元のサイズ(1) */
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes poundIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-500px) scaleY(1.3);
            transform: translateY(-500px) scaleY(1.3);
  }
  /* 最初の着地：急激に落下させる(10%で着地)
     ここでフェードイン完了 */
  25% {
    opacity: 1;
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1); /* 地面に衝突：縦に潰れる */
  }
  /* 1回目の「トントン」：少しだけ浮く
     (10%から15%で、ほんの少し浮く) */
  35% {
    -webkit-transform: translateY(-30px) scaleY(1);
            transform: translateY(-30px) scaleY(1); /* 少し浮いて、縦に伸びる */
  }
  /* 2回目の衝突：ピタッと止める
     (15%から20%で、再び衝突) */
  45% {
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1); /* 再び衝突：少しだけ潰れる */
  }
  /* 2回目の「トントン」：さらに少しだけ浮く
     (20%から23%で、ほんの少し浮く) */
  /* 残りの時間（25%〜100%）は、transformを1（元のサイズ）のまま維持
     （5秒に1回動くハートビートと同じロジック） */
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1);
  }
}
@keyframes poundIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-500px) scaleY(1.3);
            transform: translateY(-500px) scaleY(1.3);
  }
  /* 最初の着地：急激に落下させる(10%で着地)
     ここでフェードイン完了 */
  25% {
    opacity: 1;
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1); /* 地面に衝突：縦に潰れる */
  }
  /* 1回目の「トントン」：少しだけ浮く
     (10%から15%で、ほんの少し浮く) */
  35% {
    -webkit-transform: translateY(-30px) scaleY(1);
            transform: translateY(-30px) scaleY(1); /* 少し浮いて、縦に伸びる */
  }
  /* 2回目の衝突：ピタッと止める
     (15%から20%で、再び衝突) */
  45% {
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1); /* 再び衝突：少しだけ潰れる */
  }
  /* 2回目の「トントン」：さらに少しだけ浮く
     (20%から23%で、ほんの少し浮く) */
  /* 残りの時間（25%〜100%）は、transformを1（元のサイズ）のまま維持
     （5秒に1回動くハートビートと同じロジック） */
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scaleY(1);
            transform: translateY(0) scaleY(1);
  }
}
#page-vr {
  background-color: rgb(252, 200, 0);
  margin-bottom: -230px;
}
@media (max-width: 768px) {
  #page-vr {
    margin-bottom: 0;
  }
}
#page-vr .ani {
  opacity: 0;
}
#page-vr .ani.active.img-ani {
  -webkit-animation: fadeInScale 1.2s ease-out 0s forwards;
          animation: fadeInScale 1.2s ease-out 0s forwards;
}
#page-vr .ani.active.fadeIn {
  -webkit-animation: fadeIn 0.6s ease-out;
          animation: fadeIn 0.6s ease-out;
}
#page-vr .ani.active.aniDown {
  -webkit-animation: poundIn 1.2s linear forwards;
          animation: poundIn 1.2s linear forwards;
}
#page-vr .ani.active.slideLeft {
  -webkit-animation: slideLeft 0.6s ease-out;
          animation: slideLeft 0.6s ease-out;
  opacity: 1;
}
#page-vr .ani.active.fadeUp {
  -webkit-animation: fadeUp 0.6s ease-out;
          animation: fadeUp 0.6s ease-out;
  opacity: 1;
}
#page-vr .ani.active.pop {
  -webkit-animation: fadeIn 1s ease-out 1s forwards, heartbeat 2.5s linear 3.5s infinite;
          animation: fadeIn 1s ease-out 1s forwards, heartbeat 2.5s linear 3.5s infinite;
}
#page-vr .ani.active.fadeInFloat {
  -webkit-animation: fadeIn 1s ease-out forwards, floating 3s ease-in-out 1s infinite;
          animation: fadeIn 1s ease-out forwards, floating 3s ease-in-out 1s infinite;
}
#page-vr .ani.active.fadeIn {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 1;
}
#page-vr img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
#page-vr .absol-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#page-vr .absol-img .item {
  position: absolute;
}
#page-vr .container {
  max-width: 1600px;
  padding: 0;
  margin: auto;
  width: 90%;
}
#page-vr .vr-mv {
  padding-top: 200px;
}
@media (max-width: 768px) {
  #page-vr .vr-mv {
    padding-top: 100px;
  }
}
#page-vr .vr-mv .ani.active.ani-img {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#page-vr .vr-mv .ani.active.slideLeft {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
#page-vr .vr-mv .ani.active.fadeInFloat {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
#page-vr .vr-mv .ani.active.pop {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#page-vr .vr-mv .ani.active.aniDown {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
#page-vr .vr-mv .ani.active.fadeIn {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
#page-vr .vr-mv .inner {
  border-radius: 100px;
  position: relative;
  max-height: 800px;
  aspect-ratio: 2/1;
}
@media (max-width: 768px) {
  #page-vr .vr-mv .inner {
    aspect-ratio: 1/1;
  }
}
#page-vr .vr-mv .inner .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 100px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #page-vr .vr-mv .inner .bg-img {
    border-radius: 40px;
  }
}
#page-vr .vr-mv .inner .bg-img img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  -o-object-position: top;
     object-position: top;
}
#page-vr .vr-mv .inner .content {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 3;
}
#page-vr .vr-mv .inner .content h1 {
  font-style: italic;
  font-size: min(20.8791208791vw, 380px);
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  mix-blend-mode: multiply;
  color: rgba(0, 99, 229, 0.6);
}
@media (max-width: 768px) {
  #page-vr .vr-mv .inner .content h1 {
    font-size: min(19.53125vw, 150px);
  }
}
#page-vr .vr-mv .inner .content .sub-txt {
  color: #fff;
  font-size: clamp(20px, 1.3186813187vw, 24px);
  position: relative;
  margin-top: -100px;
  padding-left: 15%;
}
@media (max-width: 768px) {
  #page-vr .vr-mv .inner .content .sub-txt {
    margin-top: -50px;
    text-align: center;
    padding-left: 0;
  }
}
#page-vr .vr-mv .absol-img {
  height: 100%;
}
#page-vr .vr-mv .absol-img .item {
  width: 100px;
}
#page-vr .vr-mv .absol-img .item:nth-child(1) {
  max-width: 169px;
  width: 10%;
  left: 5%;
  bottom: 10%;
}
@media (max-width: 768px) {
  #page-vr .vr-mv .absol-img .item:nth-child(1) {
    width: 20%;
    bottom: 5%;
  }
}
#page-vr .vr-mv .absol-img .item:nth-child(2) {
  max-width: 264px;
  width: 18%;
  right: -3%;
  bottom: 10%;
  z-index: 4;
}
@media (max-width: 768px) {
  #page-vr .vr-mv .absol-img .item:nth-child(2) {
    width: 23%;
    right: -5%;
    bottom: 35%;
  }
}
#page-vr .vr-mv .absol-img .item:nth-child(3) {
  max-width: 264px;
  width: 18%;
  right: 4%;
  bottom: -10%;
  z-index: 4;
}
@media (max-width: 768px) {
  #page-vr .vr-mv .absol-img .item:nth-child(3) {
    width: 23%;
    right: 5%;
    bottom: 25%;
  }
}
#page-vr .vr-mv .absol-img .item:nth-child(4) {
  max-width: 264px;
  width: 18%;
  left: 15%;
  bottom: 5%;
  z-index: 4;
}
@media (max-width: 768px) {
  #page-vr .vr-mv .absol-img .item:nth-child(4) {
    width: 23%;
    left: 0%;
    bottom: 35%;
  }
}
#page-vr .vr-mv .absol-img .item:nth-child(5) {
  max-width: 305px;
  width: 20%;
  left: 30%;
  bottom: -10%;
  z-index: 4;
}
@media (max-width: 768px) {
  #page-vr .vr-mv .absol-img .item:nth-child(5) {
    width: 25%;
    left: 15%;
    bottom: 25%;
  }
}
#page-vr .vr-mv .absol-img .item:nth-child(6) {
  max-width: 345px;
  width: 22%;
  right: 20%;
  bottom: 0%;
  z-index: 4;
}
@media (max-width: 768px) {
  #page-vr .vr-mv .absol-img .item:nth-child(6) {
    width: 25%;
    right: 15%;
    bottom: 15%;
  }
}
#page-vr .vr-mv .absol-img .item:nth-child(7) {
  max-width: 896px;
  width: 54%;
  right: 20%;
  bottom: -20%;
  z-index: 2;
}
@media (max-width: 768px) {
  #page-vr .vr-mv .absol-img .item:nth-child(7) {
    width: 70%;
    left: 15%;
    bottom: 10%;
  }
}
#page-vr .content-item {
  position: relative;
}
#page-vr section .sec-ttl {
  position: relative;
}
#page-vr section .sec-ttl .miru {
  position: absolute;
  width: 282px;
  margin-top: -30px;
  left: 20%;
}
@media (max-width: 768px) {
  #page-vr section .sec-ttl .miru {
    width: 30%;
  }
}
#page-vr section .sec-ttl .h2-ttl {
  width: 100%;
  padding: 44px 0;
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  background-color: rgb(0, 105, 212);
  border-radius: 100px;
  line-height: 1;
  font-size: clamp(30px, 3.5164835165vw, 64px);
}
@media (max-width: 768px) {
  #page-vr section .sec-ttl .h2-ttl {
    padding: 20px 0;
    font-size: clamp(25px, 3.90625vw, 30px);
  }
}
#page-vr section .content-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 80px;
  max-width: 1500px;
  width: 95%;
  margin: 80px auto;
}
#page-vr section .content-item {
  padding: 40px 48px;
  background-image: url(../img/vr/content-bg.png);
  background-repeat: repeat;
  border: 20px solid rgb(242, 157, 0);
  border-radius: 16px;
}
@media (max-width: 768px) {
  #page-vr section .content-item {
    padding: 5%;
  }
}
#page-vr section .content-item .ani.active.pop {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
#page-vr section .content-item .ani.active.aniDown {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
#page-vr section .content-item h3 {
  text-align: center;
  font-size: clamp(25px, 3.5164835165vw, 64px);
  font-weight: 900;
  color: rgb(0, 105, 212);
}
#page-vr section .content-item .content {
  margin-top: 50px;
}
#page-vr section .content-item .bg-content {
  aspect-ratio: 1334/463;
  background-image: url(../img/vr/content-bg.jpg);
  border-radius: 40px;
  background-size: cover;
  background-position: top;
}
@media (max-width: 768px) {
  #page-vr section .content-item .bg-content {
    aspect-ratio: 3/2;
  }
}
#page-vr section .content-item .bg-content .w-txt {
  color: #fff;
  padding-top: 10%;
  text-align: center;
  font-weight: 900;
}
#page-vr section .content-item .btn-wrap {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  #page-vr section .content-item .btn-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#page-vr section .content-item .btn-wrap a {
  background-image: url(../img/vr/icon_more.png);
  background-size: cover;
  background-position: center;
  border-width: 8px;
  width: 80%;
  max-width: 350px;
}
@media (max-width: 768px) {
  #page-vr section .content-item .btn-wrap a {
    width: 100%;
  }
}
#page-vr section .content-item .btn-wrap a span {
  color: #fff;
  font-size: clamp(20px, 1.6483516484vw, 30px);
}
#page-vr section .content-item .btn-wrap a span::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2265%22%20height%3D%2218%22%20viewBox%3D%220%200%2065%2018%22%20fill%3D%22none%22%3E%3Cg%20clip-path%3D%22url(%23clip0_3002_9289)%22%3E%3Cpath%20d%3D%22M1%206.30078C1%206.30078%2010.63%2014.9308%2030.54%2014.9308C50.45%2014.9308%2062.72%206.30078%2062.72%206.30078%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%223%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M53.0996%201.32812L62.7196%206.29813L59.3496%2017.0881%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%223%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_3002_9289%22%3E%3Crect%20width%3D%2264.22%22%20height%3D%2217.54%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}
#page-vr #sdgs {
  margin-top: 200px;
}
@media (max-width: 768px) {
  #page-vr #sdgs {
    margin-top: 100px;
  }
}
#page-vr #sdgs .content-item:nth-child(1) .item {
  width: 50%;
  bottom: -10%;
  left: -5%;
}
@media (max-width: 768px) {
  #page-vr #sdgs .content-item:nth-child(1) .item {
    width: 55%;
    bottom: 25%;
  }
}
#page-vr #sdgs .content-item:nth-child(2) .content {
  margin-top: 30px;
}
#page-vr #sdgs .content-item:nth-child(2) .content img {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  display: block;
}
#page-vr #sdgs .content-item:nth-child(2) .item:nth-child(1) {
  width: 20%;
  bottom: 5%;
  left: 0%;
}
@media (max-width: 768px) {
  #page-vr #sdgs .content-item:nth-child(2) .item:nth-child(1) {
    width: 30%;
    bottom: 25%;
    left: -5%;
  }
}
#page-vr #sdgs .content-item:nth-child(2) .item:nth-child(2) {
  width: 18%;
  top: -5%;
  right: 0%;
}
@media (max-width: 768px) {
  #page-vr #sdgs .content-item:nth-child(2) .item:nth-child(2) {
    width: 25%;
    top: 10%;
    right: -5%;
  }
}
#page-vr #service {
  margin-top: 300px;
}
@media (max-width: 768px) {
  #page-vr #service {
    margin-top: 150px;
  }
}
#page-vr #service .content-item .content.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 70px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  #page-vr #service .content-item .content.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
#page-vr #service .content-item .content .content-inner {
  width: 50%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #page-vr #service .content-item .content .content-inner {
    width: 100%;
    max-width: 400px;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  #page-vr #service .content-item .content .btn-wrap {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#page-vr #service .content-item .content .btn-wrap a {
  width: 100%;
}
#page-vr #service .content-item .item:nth-child(1) {
  width: 30%;
  left: -7%;
  top: 5%;
}
@media (max-width: 768px) {
  #page-vr #service .content-item .item:nth-child(1) {
    top: 30%;
    width: 45%;
  }
}
#page-vr #service .content-item .item:nth-child(2) {
  width: 24%;
  right: 20%;
  top: 27%;
}
@media (max-width: 768px) {
  #page-vr #service .content-item .item:nth-child(2) {
    top: 45%;
    width: 35%;
    right: 0;
  }
}
#page-vr #service .content-item .item:nth-child(3) {
  width: 25%;
  right: -3%;
  top: -15%;
}
@media (max-width: 768px) {
  #page-vr #service .content-item .item:nth-child(3) {
    top: 0%;
    width: 35%;
    right: -5%;
  }
}
#page-vr #vr-bottom {
  margin-top: 200px;
}
@media (max-width: 768px) {
  #page-vr #vr-bottom {
    margin-top: 100px;
  }
}
#page-vr #vr-bottom .banner {
  max-width: 1500px;
  width: 95%;
  margin: auto;
}
#page-vr #vr-bottom .sec-frame {
  max-width: 800px;
  margin: 150px auto;
  background-color: #fff;
  border: 2px solid var(--black, rgb(0, 0, 0));
  padding: 80px 0;
  border-radius: 0 40px 0 0;
}
@media (max-width: 768px) {
  #page-vr #vr-bottom .sec-frame {
    margin-top: 60px;
    padding: 40px 0;
  }
}
#page-vr #vr-bottom .sec-frame .sec-frame-list {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  #page-vr #vr-bottom .sec-frame .sec-frame-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#page-vr #vr-bottom .sec-frame .sec-frame-list a {
  width: 245px;
  padding-left: 0;
  padding-right: 0;
}

.float-btn-vr {
  position: fixed;
  right: 50px;
  bottom: 50px;
  max-width: 169px;
  width: 10%;
  z-index: 99;
}
.float-btn-vr img {
  width: 100%;
}
@media (max-width: 768px) {
  .float-btn-vr {
    width: 100px;
    right: 10px;
    bottom: 10px;
  }
}

.vr-modal-wrapper {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  top: 0;
  z-index: -1;
  opacity: 0;
  background-color: #fff;
  padding: 50px 0 150px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: fixed;
}
.vr-modal-wrapper.fixed {
  z-index: 9999;
  opacity: 1;
}
.vr-modal-wrapper .container {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .container {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .vr-modal-wrapper .desktop-only {
    display: none !important;
  }
}
.vr-modal-wrapper .mobile-only {
  display: none !important;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .mobile-only {
    display: block !important;
  }
}
.vr-modal-wrapper .header {
  background-color: #0069d4;
  padding: 10px;
  width: 500px;
  margin: 0 auto -32px;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .header {
    width: 197px;
    margin: 0 auto -24px;
  }
}
.vr-modal-wrapper .header h1 {
  font-size: 40px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .header h1 {
    font-size: 21px;
  }
}
.vr-modal-wrapper .main-content {
  background: white;
  border: 15px solid #0069d4;
  border-radius: 80px;
  padding: 80px 80px 160px;
  position: relative;
  z-index: 1;
  margin-top: -32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .vr-modal-wrapper .main-content {
    padding: 5%;
  }
}
@media (max-width: 768px) {
  .vr-modal-wrapper .main-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-width: 8px;
    border-radius: 40px;
    padding: 40px 0 40px;
    margin-top: -24px;
  }
}
.vr-modal-wrapper .top-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  margin-bottom: 80px;
}
.vr-modal-wrapper .circle-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.vr-modal-wrapper .circle {
  width: 117px;
  height: 117px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.vr-modal-wrapper .circle span {
  font-size: 19px;
  font-weight: 700;
  color: white;
  text-align: center;
  line-height: 1.5;
}
.vr-modal-wrapper .circle.circle-blue {
  background-color: #0069d4;
}
.vr-modal-wrapper .circle.circle-gray {
  background-color: #666666;
}
.vr-modal-wrapper .circle.circle-navy {
  background-color: #00568c;
}
.vr-modal-wrapper .arrow {
  width: 0;
  height: 0;
  border-left: 11.26px solid transparent;
  border-right: 11.26px solid transparent;
  border-top: 19.5px solid;
}
.vr-modal-wrapper .arrow.arrow-blue {
  border-top-color: #0069d4;
}
.vr-modal-wrapper .arrow.arrow-gray {
  border-top-color: #666666;
}
.vr-modal-wrapper .arrow.arrow-navy {
  border-top-color: #00568c;
}
.vr-modal-wrapper .accordion-section {
  min-width: 30%;
  max-width: 1220px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .accordion-section {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .vr-modal-wrapper .accordion-trigger {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
}
@media (max-width: 768px) {
  .vr-modal-wrapper .accordion-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-out;
    transition: max-height 0.3s ease-out;
  }
}
@media (min-width: 769px) {
  .vr-modal-wrapper .accordion-content {
    display: block !important;
    max-height: none !important;
  }
}
@media (max-width: 768px) {
  .vr-modal-wrapper .accordion-section.active .accordion-content {
    max-height: 1000px;
    -webkit-transition: max-height 0.5s ease-in;
    transition: max-height 0.5s ease-in;
  }
}
@media (max-width: 768px) {
  .vr-modal-wrapper .accordion-section.active .toggle-btn::after {
    -webkit-transform: translate(-50%, -50%) rotate(-135deg) scaleY(-1);
            transform: translate(-50%, -50%) rotate(-135deg) scaleY(-1);
    top: 55%;
  }
}
.vr-modal-wrapper .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 24px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 1220px;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .section-header {
    gap: 10px;
    margin-bottom: 0;
    padding: 20px 15px;
    max-width: 100%;
  }
}
.vr-modal-wrapper .section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.vr-modal-wrapper .section-title .bar {
  width: 18px;
  height: 30px;
}
.vr-modal-wrapper .section-title .bar.bar-blue {
  background-color: #0069d4;
}
.vr-modal-wrapper .section-title .bar.bar-gray {
  background-color: #666666;
}
.vr-modal-wrapper .section-title .bar.bar-navy {
  background-color: #00568c;
}
.vr-modal-wrapper .section-title h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .section-title h2 {
    font-size: 21px;
  }
}
.vr-modal-wrapper .toggle-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid;
  background: white;
  cursor: pointer;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.vr-modal-wrapper .toggle-btn::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scaleY(-1);
          transform: translate(-50%, -50%) rotate(45deg) scaleY(-1);
  width: 10px;
  height: 10px;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.vr-modal-wrapper .toggle-btn.toggle-btn-blue {
  border-color: #0069d4;
}
.vr-modal-wrapper .toggle-btn.toggle-btn-blue::after {
  border-color: #0069d4;
}
.vr-modal-wrapper .toggle-btn.toggle-btn-gray {
  border-color: #666666;
}
.vr-modal-wrapper .toggle-btn.toggle-btn-gray::after {
  border-color: #666666;
}
.vr-modal-wrapper .toggle-btn.toggle-btn-navy {
  border-color: #00568c;
}
.vr-modal-wrapper .toggle-btn.toggle-btn-navy::after {
  border-color: #00568c;
}
.vr-modal-wrapper .operations-list {
  width: 100%;
  max-width: 1220px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .operations-list {
    max-width: 100%;
    padding: 0 24px 24px;
    margin-bottom: 0;
  }
}
.vr-modal-wrapper .operations-list ul {
  list-style: none;
  font-size: 21px;
  line-height: 1;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .operations-list ul {
    font-size: 16px;
  }
}
.vr-modal-wrapper .operations-list ul li {
  margin-bottom: 15px;
  line-height: 1;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .operations-list ul li {
    margin-bottom: 16px;
  }
}
@media (min-width: 769px) {
  .vr-modal-wrapper .operations-list.operations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
.vr-modal-wrapper .section-title-large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .section-title-large {
    gap: 10px;
    margin-bottom: 40px;
  }
}
.vr-modal-wrapper .section-title-large .bar {
  width: 18px;
  height: 30px;
}
.vr-modal-wrapper .section-title-large .bar.bar-blue {
  background-color: #0069d4;
}
.vr-modal-wrapper .section-title-large .bar.bar-gray {
  background-color: #666666;
}
.vr-modal-wrapper .section-title-large .bar.bar-navy {
  background-color: #00568c;
}
.vr-modal-wrapper .section-title-large h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .section-title-large h2 {
    font-size: 21px;
  }
}
.vr-modal-wrapper .instruction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 145px 40px;
  position: relative;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .instruction-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.vr-modal-wrapper .instruction-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .instruction-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .vr-modal-wrapper .instruction-card.expandable-content {
    display: none;
  }
}
@media (max-width: 768px) {
  .vr-modal-wrapper .instruction-card.expandable-content.visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 769px) {
  .vr-modal-wrapper .instruction-card.expandable-content {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.vr-modal-wrapper .instruction-card .card-image {
  width: 300px;
  height: 225px;
}
.vr-modal-wrapper .instruction-card .card-image img {
  width: 100%;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .instruction-card .card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
.vr-modal-wrapper .instruction-card .card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 280px;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .instruction-card .card-content {
    width: 100%;
  }
}
.vr-modal-wrapper .instruction-card .card-content .card-title {
  background-color: #0069d4;
  color: white;
  font-size: 21px;
  font-weight: 500;
  padding: 16px;
  text-align: center;
  line-height: 1;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .instruction-card .card-content .card-title {
    font-size: 18px;
    padding: 14px;
  }
}
.vr-modal-wrapper .instruction-card .card-content p {
  font-size: 19px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .instruction-card .card-content p {
    font-size: 16px;
  }
}
.vr-modal-wrapper .menu-grid {
  gap: 100px;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .menu-grid {
    gap: 50px;
  }
}
.vr-modal-wrapper .menu-grid .card-image {
  width: unset;
  height: 110px;
}
.vr-modal-wrapper .menu-grid .card-image img {
  height: 100%;
  width: auto;
}
.vr-modal-wrapper .menu-grid .bar {
  width: 50px;
  height: 3px;
  background-color: rgb(102, 102, 102);
}
.vr-modal-wrapper .menu-grid .instruction-card {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.vr-modal-wrapper .menu-grid .card-content.huki {
  width: 400px;
}
.vr-modal-wrapper .menu-grid .card-content.huki img {
  width: 117px;
}
.vr-modal-wrapper .menu-grid .card-content {
  width: unset;
  max-width: 400px;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .read-more-btn {
    display: block;
    margin: auto;
  }
}
@media (min-width: 769px) {
  .vr-modal-wrapper .read-more-btn {
    display: none;
  }
}
.vr-modal-wrapper .read-more-btn:hover {
  background-color: #005bb5;
}
.vr-modal-wrapper .read-more-btn.hidden {
  display: none;
}
.vr-modal-wrapper .menu-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin: 30px auto 60px;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .menu-description {
    gap: 30px;
    width: 100%;
    margin-bottom: 40px;
  }
}
.vr-modal-wrapper .menu-description .menu-intro {
  font-size: 19px;
  line-height: 1.8;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .menu-description .menu-intro {
    font-size: 16px;
  }
}
.vr-modal-wrapper .menu-description .menu-image {
  width: 1077px;
  aspect-ratio: 2/1;
  max-width: 100%;
}
.vr-modal-wrapper .menu-description .menu-image img {
  width: 100%;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .menu-description .menu-image {
    height: auto;
    aspect-ratio: 1077/505;
  }
}
.vr-modal-wrapper .recommendation-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .recommendation-section {
    margin-bottom: 40px;
  }
}
.vr-modal-wrapper .recommendation-section .recommendation-circle {
  width: 117px;
  height: 117px;
  border-radius: 50%;
  background-color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .recommendation-section .recommendation-circle {
    width: 80px;
    height: 80px;
  }
}
.vr-modal-wrapper .recommendation-section .recommendation-circle span {
  font-size: 19px;
  font-weight: 700;
  color: white;
  text-align: center;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .recommendation-section .recommendation-circle span {
    font-size: 16px;
  }
}
.vr-modal-wrapper .close-btn {
  position: absolute;
  top: -40px;
  right: -30px;
  background: white;
  border: none;
  border-radius: 4px;
  padding: 6px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .close-btn {
    top: -40px;
    right: 0px;
  }
}
.vr-modal-wrapper .close-btn:hover {
  background-color: #f5f5f5;
}
.vr-modal-wrapper .detailed-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 768px) {
  .vr-modal-wrapper .detailed-section {
    padding: 0;
  }
}
.vr-modal-wrapper .intro-info {
  max-width: 1000px;
  margin: 50px auto;
  font-size: 19px;
}
.vr-modal-wrapper .intro-info img {
  width: 100%;
  margin-top: 90px;
}
.vr-modal-wrapper .house-grid .card-content .card-title {
  background-color: rgb(0, 86, 140);
  padding-left: 0;
  padding-right: 0;
}/*# sourceMappingURL=vr.css.map */