@charset "UTF-8";
@-webkit-keyframes tiktok {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}
@keyframes tiktok {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}
@-webkit-keyframes toktik {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}
@keyframes toktik {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}
@-webkit-keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleIn {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes scaleAni {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleAni {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes revealLeft {
  0% {
    /* マスクを左側（要素の外）に完全に隠す */
    mask-position: 100% 0;
    -webkit-mask-position: 100% 0;
  }
  100% {
    /* マスクを右側へ移動させ、要素をすべて見せる */
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
}
@keyframes revealLeft {
  0% {
    /* マスクを左側（要素の外）に完全に隠す */
    mask-position: 100% 0;
    -webkit-mask-position: 100% 0;
  }
  100% {
    /* マスクを右側へ移動させ、要素をすべて見せる */
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
}
@-webkit-keyframes bounceUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px) scale(0.8);
            transform: translateY(100px) scale(0.8);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(-50px) scale(1.05);
            transform: translateY(-50px) scale(1.05); /* 一度通り過ぎる */
  }
  85% {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1.05);
            transform: translateY(0px) scale(1.05); /* 一度通り過ぎる */
  }
  95% {
    opacity: 1;
    -webkit-transform: translateY(-20px) scale(1.05);
            transform: translateY(-20px) scale(1.05); /* 一度通り過ぎる */
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1); /* 戻る */
  }
}
@keyframes bounceUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px) scale(0.8);
            transform: translateY(100px) scale(0.8);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(-50px) scale(1.05);
            transform: translateY(-50px) scale(1.05); /* 一度通り過ぎる */
  }
  85% {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1.05);
            transform: translateY(0px) scale(1.05); /* 一度通り過ぎる */
  }
  95% {
    opacity: 1;
    -webkit-transform: translateY(-20px) scale(1.05);
            transform: translateY(-20px) scale(1.05); /* 一度通り過ぎる */
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1); /* 戻る */
  }
}
.ani .revealLeft {
  /* 左から右へ流れるグラデーションマスクを作成 */
  /* [透明, 透明, 不透明, 不透明] の順に並べることで「境界線」を作ります */
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #000), color-stop(50%, transparent));
  -webkit-mask-image: linear-gradient(to right, #000 50%, transparent 50%);
  mask-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #000), color-stop(50%, transparent));
  mask-image: linear-gradient(to right, #000 50%, transparent 50%);
  /* マスクのサイズを2倍にして、最初は透明な半分が重なるようにする */
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
  /* 初期位置 */
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
}

/* --- アニメーションの定義 --- */
@-webkit-keyframes scaleInBounce {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  /* 70%の地点で少しだけ1倍を通り過ぎる（バウンス） */
  70% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleInBounce {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
  }
  /* 70%の地点で少しだけ1倍を通り過ぎる（バウンス） */
  70% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* --- 初期状態 --- */
.ani .scaleIn {
  opacity: 0;
  -webkit-transform: scale(0.1);
          transform: scale(0.1);
  visibility: hidden;
}

/* --- 親要素に .active がついた時の実行処理 --- */
.ani.active .scaleIn {
  visibility: visible;
  /* 0.4sかけて実行。ベジェ曲線でさらになめらかに */
  -webkit-animation: scaleInBounce 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.17) forwards;
          animation: scaleInBounce 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.17) forwards;
}

.ani .bounceUp {
  opacity: 0;
}

.ani.active .scaleAni {
  -webkit-animation: scaleAni 0.6s ease-out forwards;
          animation: scaleAni 0.6s ease-out forwards;
}
.ani.active .revealLeft {
  -webkit-animation: revealLeft 0.4s ease-out forwards;
          animation: revealLeft 0.4s ease-out forwards;
}
.ani.active .bounceUp {
  -webkit-animation: bounceUp 0.6s ease-out forwards;
          animation: bounceUp 0.6s ease-out forwards;
}
.ani.active .animate-tiktok {
  /* [名前] [再生時間] [タイミング] [遅延] [回数] */
  -webkit-animation: scaleInBounce 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.17) forwards, tiktok 1s steps(2) 0.4s infinite;
          animation: scaleInBounce 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.17) forwards, tiktok 1s steps(2) 0.4s infinite;
}

.vr a:hover {
  text-decoration: unset;
}
.vr .sp {
  display: none !important;
}
@media print, screen and (max-width: 768px) {
  .vr .sp {
    display: block !important;
  }
}
.vr .pc {
  display: block !important;
}
@media print, screen and (max-width: 768px) {
  .vr .pc {
    display: none !important;
  }
}
.vr .s-sp {
  display: none !important;
}
@media only screen and (max-width: 490px) {
  .vr .s-sp {
    display: block !important;
  }
}
@media only screen and (max-width: 490px) {
  .vr .s-sp-hidden {
    display: none !important;
  }
}
.vr .content {
  max-width: 1750px;
  width: 95%;
  margin: auto;
  padding: 0;
}
.vr .txt {
  font-size: 16px;
  color: rgb(0, 0, 0);
  line-height: 2;
}
.vr .absol-txt {
  font-family: "Erica One", sans-serif;
  color: transparent;
  -webkit-text-stroke: 5px rgb(237, 181, 217);
  text-stroke: 5px rgb(237, 181, 217);
  paint-order: stroke;
  font-size: clamp(50px, 5.2083333333vw, 100px);
  position: absolute;
  -webkit-writing-mode: vertical-rl; /* Safari用 */
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
}
@media print, screen and (max-width: 768px) {
  .vr .absol-txt {
    display: none;
  }
}
.vr .absol-txt.right-top {
  right: 0;
  top: 0;
}
.vr .absol-txt.left-bottom {
  left: 0;
  bottom: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.vr .vr-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 20px;
}
.vr .vr-btn .btn {
  background: linear-gradient(125.62deg, #8CCBDE 2.75%, #EDB5D9 58.86%, #FFF9FD 100%);
  border: 1px solid rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 20px;
  color: #fff;
  padding: 21px 0;
  max-width: 713px;
  width: 80%;
  line-height: 1;
}
@media print, screen and (max-width: 768px) {
  .vr .vr-btn .btn {
    width: 100%;
    max-width: 400px;
    font-size: 16px;
    padding: 10px 0;
  }
}
.vr .vr-btn .btn .hover {
  display: none;
}
.vr .vr-btn .btn:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: linear-gradient(125.62deg, rgba(140, 203, 222, 0.3) 2.75%, rgba(237, 181, 217, 0.3) 58.86%, rgba(255, 249, 253, 0.3) 100%);
}
.vr .vr-btn .btn:hover span {
  background: linear-gradient(135.74deg, #8CCBDE 2.86%, #EDB5D9 57.22%, #FFF9FD 126.26%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: unset;
}
.vr .vr-btn .btn:hover .hover {
  display: inline;
}
.vr .vr-btn .btn:hover .normal {
  display: none;
}
.vr .vr-btn .btn span {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.vr .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.vr .dela-gothic-one-regular {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.vr .erica-one-regular {
  font-family: "Erica One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.vr img {
  width: 100%;
}
.vr .item-img {
  position: absolute;
  z-index: 0;
}
.vr .fixed-menu .flex {
  position: fixed;
  z-index: 99;
  bottom: 10%;
  max-width: 240px;
  right: 20px;
}
@media print, screen and (max-width: 768px) {
  .vr .fixed-menu .flex {
    min-width: 60px;
    width: 20%;
    right: 20px;
  }
}
@media print, screen and (max-width: 768px) {
  .vr .fixed-menu .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.vr .fixed-menu .menu-item {
  width: 48%;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .vr .fixed-menu .menu-item {
    width: 100%;
  }
}
.vr #vr-mv {
  background-image: url(../images/vr/bg-01.png);
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-mv {
    padding-top: 20vw;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-mv {
    background-image: url(../images/vr/bg-01_sp.png);
    background-size: 100% auto;
  }
}
.vr #vr-mv .item-img-01 {
  top: 30px;
  max-width: 230px;
  width: 17vw;
  left: 0;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-mv .item-img-01 {
    right: 0;
    left: unset;
    width: 20vw;
  }
}
.vr #vr-mv .item-img-02 {
  top: 20px;
  max-width: 220px;
  width: 16vw;
  right: 0;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-mv .item-img-02 {
    left: 0;
    right: unset;
    width: 20vw;
  }
}
.vr #vr-mv .heading-txt {
  max-width: 1700px;
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-mv .heading-txt {
    width: 98%;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-mv .heading-txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.vr #vr-mv .heading {
  font-family: "Dela Gothic One", sans-serif;
  line-height: 1;
}
.vr #vr-mv .left .heading {
  font-size: clamp(100px, 10.4166666667vw, 200px);
  font-size: italic;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-mv .left .heading {
    font-size: clamp(40px, 17.5vw, 200px);
  }
}
.vr #vr-mv .right {
  position: relative;
}
.vr #vr-mv .right .heading {
  font-size: clamp(50px, 5.2083333333vw, 100px);
}
@media print, screen and (max-width: 768px) {
  .vr #vr-mv .right .heading {
    font-size: clamp(30px, 11.75vw, 100px);
  }
}
.vr #vr-mv .right .hukidashi {
  max-height: 63px;
  max-width: 240px;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-mv .right .hukidashi {
    position: absolute;
    right: 0;
    top: -30px;
    height: 50%;
  }
}
.vr #vr-mv .right .hukidashi img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-mv .right .hukidashi img {
    width: auto;
  }
}
.vr #vr-mv .mv-slider-wrapper {
  margin-top: 30px;
}
.vr {
  /* 画像を重ねて配置 */
}
.vr .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  -webkit-box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.35);
}
@media print, screen and (max-width: 768px) {
  .vr .swiper-slide {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.vr .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease; /* 切り替わりの速度を調整 */
  -o-object-fit: contain;
     object-fit: contain;
}
.vr .swiper-slide img.img-active {
  height: 100%;
}
.vr {
  /* 通常時の画像：デフォルトは表示 */
}
.vr .img-normal {
  opacity: 1;
}
.vr {
  /* アクティブ用画像：デフォルトは透明にして重ねる */
}
.vr .img-active {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.vr {
  /* --- アクティブなスライドの時のスタイル --- */
}
.vr .swiper-slide-active {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.vr {
  /* アクティブ時は通常用を消す */
}
.vr .swiper-slide-active .img-normal {
  opacity: 0;
}
.vr {
  /* アクティブ時はアクティブ用を出す */
}
.vr .swiper-slide-active .img-active {
  opacity: 1;
  border-radius: 0px;
}
.vr {
  /* スクロールバー全体の背景（レール） */
}
.vr .bar-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.vr .swiper-scrollbar {
  background: #f0f0f0;
  height: 3px; /* 太さの調整 */
  bottom: 0 !important; /* 位置の微調整 */
  max-width: 290px;
  margin: 20px auto;
  position: relative;
}
.vr {
  /* 動くバー（つまみ）の部分 */
}
.vr .swiper-scrollbar-drag {
  background: rgb(1, 166, 221); /* バーの色 */
  cursor: -webkit-grab;
  cursor: grab;
}
.vr {
  /* スライダー本体との余白を調整 */
}
.vr .swiper {
  padding-bottom: 20px;
}
.vr #vr-what {
  background-image: url(../images/vr/bg-02.png);
  background-size: cover;
  background-position: center;
  padding: min(10%, 111px) 0;
  overflow: hidden;
}
.vr #vr-what.active.ani .visual .scaleIn {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.vr #vr-what.active.ani .visual .bounceUp, .vr #vr-what.active.ani .visual .revealLeft {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.vr #vr-what.active.ani .what-content .revealLeft {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-what {
    padding: 40vw 0 80px;
    background-image: url(../images/vr/bg-02_sp.png);
    background-size: 100% 100%;
  }
}
.vr #vr-what .content {
  position: relative;
}
.vr #vr-what .inner-content {
  max-width: 1112px;
  width: 80%;
  margin: auto;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-what .inner-content {
    max-width: 450px;
    width: 90%;
  }
}
.vr #vr-what .visual {
  background-image: url(../images/vr/img-01.jpg);
  aspect-ratio: 2/1;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-what .visual {
    aspect-ratio: 7/5;
  }
}
.vr #vr-what .visual .inner {
  padding-top: 30px;
}
.vr #vr-what .visual .inner .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-what .visual .inner .flex {
    gap: 3%;
  }
}
.vr #vr-what .visual .inner .left-txt {
  max-width: 350px;
  width: 30%;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-what .visual .inner .left-txt {
    width: 43%;
  }
}
.vr #vr-what .visual .inner .right-txt {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(30px, 2.6041666667vw, 50px);
}
@media print, screen and (max-width: 768px) {
  .vr #vr-what .visual .inner .right-txt {
    font-size: clamp(16px, 4.5vw, 20px);
  }
}
.vr #vr-what .visual .inner .right-txt span {
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  padding: 5px;
  background: linear-gradient(125.62deg, #8CCBDE 2.75%, #EDB5D9 58.86%, #FFF9FD 100%);
  display: inline-block;
  margin-bottom: 0px;
  line-height: 1;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-what .visual .inner .right-txt span {
    margin-bottom: 2px;
    padding: 1px 5px;
  }
}
.vr #vr-what .what-content {
  margin-top: 40px;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-what .what-content .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.vr #vr-what .what-content .item {
  width: 33%;
  padding: 20px 30px;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-what .what-content .item {
    width: 100%;
    padding: 20px 0;
  }
}
.vr #vr-what .what-content .item:nth-child(2) {
  border-left: 1px solid rgb(0, 0, 0);
  border-right: 1px solid rgb(0, 0, 0);
}
@media print, screen and (max-width: 768px) {
  .vr #vr-what .what-content .item:nth-child(2) {
    border-left: unset;
    border-right: unset;
    border-top: 1px solid rgb(0, 0, 0);
    border-bottom: 1px solid rgb(0, 0, 0);
  }
}
.vr #vr-what .what-content .item:first-child {
  padding-left: 0;
}
.vr #vr-what .what-content .item:last-child {
  padding-right: 0;
}
.vr #vr-what .what-content .item .ttl {
  background: linear-gradient(125.62deg, #8CCBDE 2.75%, #EDB5D9 58.86%, #FFF9FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(24px, 1.6666666667vw, 32px);
  -webkit-text-stroke: 1px rgb(0, 36, 104);
  text-stroke: 1px rgb(0, 36, 104);
  paint-order: stroke;
  margin-bottom: 15px;
}
.vr #vr-what .item-img-03 {
  top: -30px;
  max-width: 220px;
  width: 15vw;
  left: -12vw;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-what .item-img-03 {
    top: -22vw;
    max-width: 150px;
    width: 30vw;
    left: 0;
  }
}
.vr #vr-what .item-img-04 {
  bottom: -10%;
  max-width: 180px;
  width: 13vw;
  left: -5vw;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-what .item-img-04 {
    top: -20vw;
    max-width: 130px;
    width: 25vw;
    right: 0vw;
    left: unset;
  }
}
.vr #vr-what .item-img-05 {
  bottom: 0;
  max-width: 220px;
  width: 15vw;
  right: -13vw;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-what .item-img-05 {
    top: -27vw;
    max-width: 170px;
    width: 30vw;
    left: min(30vw, 140px);
    z-index: 2;
  }
}
.vr .sec-head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 5px 1px max((100vw - 1300px) / 2, 5%);
  background-color: #fff;
}
@media print, screen and (max-width: 768px) {
  .vr .sec-head {
    padding-bottom: 0;
    padding-right: 5%;
  }
}
.vr .sec-head .ttl {
  background: linear-gradient(125.62deg, #8CCBDE 2.75%, #EDB5D9 58.86%, #FFF9FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(40px, 3.125vw, 60px);
  -webkit-text-stroke: 1px rgb(0, 36, 104);
  text-stroke: 1px rgb(0, 36, 104);
  paint-order: stroke;
  margin-bottom: 5px;
  line-height: 1;
}
@media print, screen and (max-width: 768px) {
  .vr .sec-head .ttl {
    font-size: clamp(25px, 7.5vw, 50px);
    -webkit-text-stroke: 2px rgb(0, 36, 104);
    text-stroke: 2px rgb(0, 36, 104);
    line-height: 0.9;
  }
}
.vr .tup-txt-wrap {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-left: 5%;
  margin-top: 20px;
}
.vr .tup-txt-wrap .icon {
  width: clamp(19px, 4.75vw, 30px);
}
.vr .tup-txt-wrap .icon svg {
  width: 100%;
}
.vr .tup-txt-wrap .tup-txt {
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(16px, 4vw, 40px);
}
.vr #vr-staff {
  overflow-y: visible;
}
.vr #vr-staff .item-img-wrapper {
  position: absolute;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  top: 0;
}
.vr #vr-staff .vr-staff-wrapper {
  background-image: url(../images/vr/bg-03.png);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  overflow: visible;
  position: relative;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-staff .vr-staff-wrapper {
    background-image: url(../images/vr/bg-03_sp.png);
    background-size: 100% 100%;
    padding-bottom: 60px;
  }
}
.vr #vr-staff.active.ani .sec-head {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.vr #vr-staff.active.ani .staff-content .scaleIn {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.vr #vr-staff .content {
  position: relative;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-staff .content {
    width: 100%;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-staff .content {
    max-width: 500px;
  }
}
.vr #vr-staff .staff-content {
  max-width: 1440px;
  width: 85%;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-staff .staff-content {
    width: 100%;
  }
}
.vr #vr-staff .item-img-06 {
  top: calc(-100px - min(14vw, 200px));
  max-width: 200px;
  width: 14vw;
  right: 20%;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-staff .item-img-06 {
    width: 30vw;
    right: 8vw;
    top: -40vw;
  }
}
.vr #vr-staff .item-img-07 {
  top: 20%;
  max-width: 170px;
  width: 12vw;
  left: -3vw;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-staff .item-img-07 {
    width: 30%;
    top: unset;
    bottom: 0vw;
    left: unset;
    right: 0;
  }
}
.vr #vr-staff .item-img-08 {
  bottom: 0%;
  max-width: 200px;
  width: 14vw;
  right: -4vw;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-staff .item-img-08 {
    width: 23%;
    top: unset;
    bottom: 8vw;
    left: unset;
    right: 23%;
  }
}
.vr #vr-staff .absol-txt {
  -webkit-text-stroke: 5px #fff;
  text-stroke: 5px #fff;
}
.vr #vr-staff .absol-txt.right-top {
  top: -100px;
}
.vr #vr-staff .absol-txt.left-bottom {
  bottom: -50px;
}
.vr #vr-staff .content {
  margin-top: 50px;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-staff .content {
    margin-top: 20px;
  }
}
.vr #vr-staff .content .flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-staff .content .flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.vr #vr-staff .content .item {
  width: 33%;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-staff .content .item {
    width: 50%;
  }
}
.vr #vr-staff .content .item a .hover {
  display: none;
}
.vr #vr-staff .content .item a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.vr #vr-staff .content .item a:hover .hover {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.vr #vr-staff .content .item a:hover .normal {
  display: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.vr #vr-floor {
  /* --- 共通のなめらか設定 --- */
  overflow: hidden;
}
.vr #vr-floor .tab-area .item,
.vr #vr-floor .tab-content .item,
.vr #vr-floor .tab-txt-wrap > div {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}
.vr #vr-floor {
  /* --- 1. 右側コンテンツ (.tab-content) のフェード切り替え --- */
}
.vr #vr-floor .tab-content .item {
  display: none; /* 基本非表示 */
  opacity: 0;
}
.vr #vr-floor .tab-content .item.is-active {
  display: block; /* 表示 */
  opacity: 1;
}
.vr #vr-floor {
  /* --- 2. 左側画像 (.img-wrap) の出し分け --- */
  /* 選択階より「上」：透過50% */
}
.vr #vr-floor .img-wrap .item.is-above {
  opacity: 0.2;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.vr #vr-floor .img-wrap .item.is-above .active {
  display: none;
}
.vr #vr-floor {
  /* 選択階：色つき（通常） */
}
.vr #vr-floor .img-wrap .item.is-active {
  opacity: 1;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.vr #vr-floor .img-wrap .item.is-active .active {
  display: block;
}
.vr #vr-floor .img-wrap .item.is-active .normal {
  display: none;
}
.vr #vr-floor {
  /* 選択階より「下」：白黒 */
}
.vr #vr-floor .img-wrap .item.is-below {
  opacity: 1;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.vr #vr-floor .img-wrap .item.is-below .active {
  display: none;
}
.vr #vr-floor {
  /* --- 3. タブボタン (.tab-txt-wrap) の背景グラデーション --- */
}
.vr #vr-floor .tab-txt-wrap > div.is-active {
  color: #fff; /* 文字色を白に */
}
.vr #vr-floor .absol-txt {
  -webkit-text-stroke: 5px #fff;
  text-stroke: 5px #fff;
  bottom: 5%;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .absol-txt {
    bottom: unset;
    top: 0px;
    right: -3vw;
    left: unset;
    display: block;
  }
}
.vr #vr-floor .sec-head {
  padding-left: max((100vw - 1950px) / 2, 5vw);
}
.vr #vr-floor .left, .vr #vr-floor .right {
  width: 50vw;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .left, .vr #vr-floor .right {
    width: 100%;
  }
}
.vr #vr-floor .left {
  background-color: rgb(75, 204, 190);
  padding: 50px 0;
  position: relative;
}
.vr #vr-floor .left .absol-txt {
  left: 0;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .floor-inner > .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.vr #vr-floor .tab-area {
  position: relative;
  z-index: 0;
}
.vr #vr-floor .tab-area .img-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-floor .tab-area .img-wrap {
    z-index: 2;
  }
}
.vr #vr-floor .tab-area .img-wrap .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  left: 10vw;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .tab-area .img-wrap .item {
    width: 50vw;
    right: -10vw;
    left: unset;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-floor .tab-area .img-wrap .item {
    right: -5vw;
    width: 60vw;
  }
}
@media only screen and (max-width: 490px) {
  .vr #vr-floor .tab-area .img-wrap .item {
    width: 75vw;
  }
}
.vr #vr-floor .tab-area .img-wrap .item:nth-child(1) {
  top: 0vw;
  z-index: 5;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(1) {
    top: -10vw;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(1) {
    top: -20vw;
  }
}
.vr #vr-floor .tab-area .img-wrap .item:nth-child(2) {
  top: 6vw;
  z-index: 4;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(2) {
    top: -4vw;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(2) {
    top: -10vw;
  }
}
@media only screen and (max-width: 490px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(2) {
    top: -5vw;
  }
}
.vr #vr-floor .tab-area .img-wrap .item:nth-child(3) {
  top: 12vw;
  z-index: 3;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(3) {
    top: 2vw;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(3) {
    top: 0vw;
  }
}
@media only screen and (max-width: 490px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(3) {
    top: 12vw;
  }
}
.vr #vr-floor .tab-area .img-wrap .item:nth-child(4) {
  top: 18vw;
  z-index: 2;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(4) {
    top: 8vw;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(4) {
    top: 10vw;
  }
}
@media only screen and (max-width: 490px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(4) {
    top: 26vw;
  }
}
.vr #vr-floor .tab-area .img-wrap .item:nth-child(5) {
  top: 27vw;
  z-index: 1;
  scale: 1.2;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(5) {
    top: 17vw;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(5) {
    top: 20vw;
    scale: 1.1;
  }
}
@media only screen and (max-width: 490px) {
  .vr #vr-floor .tab-area .img-wrap .item:nth-child(5) {
    top: 40vw;
  }
}
.vr #vr-floor .right {
  z-index: 3;
}
.vr #vr-floor .right .item {
  padding: 5%;
  position: relative;
}
@media only screen and (max-width: 490px) {
  .vr #vr-floor .right .item {
    padding-top: 50px;
  }
}
.vr #vr-floor .right .item:nth-child(1) {
  background-color: rgb(102, 204, 230);
}
.vr #vr-floor .right .item:nth-child(1) .more-btn {
  background-color: rgb(102, 204, 230);
}
.vr #vr-floor .right .item:nth-child(1) .item-img {
  width: 22%;
  right: 3%;
  top: 3%;
}
.vr #vr-floor .right .item:nth-child(2) {
  background-color: rgb(237, 181, 217);
}
.vr #vr-floor .right .item:nth-child(2) .more-btn {
  background-color: rgb(237, 181, 217);
}
.vr #vr-floor .right .item:nth-child(2) .item-img {
  width: 20%;
  right: 3%;
  top: 3%;
}
.vr #vr-floor .right .item:nth-child(3) {
  background-color: rgb(178, 214, 153);
}
.vr #vr-floor .right .item:nth-child(3) .more-btn {
  background-color: rgb(178, 214, 153);
}
.vr #vr-floor .right .item:nth-child(3) .item-img {
  width: 20%;
  right: 0%;
  top: 1%;
}
.vr #vr-floor .right .item:nth-child(4) {
  background-color: rgb(217, 217, 217);
}
.vr #vr-floor .right .item:nth-child(4) .more-btn {
  background-color: rgb(217, 217, 217);
}
.vr #vr-floor .right .item {
  /* もっと見るボタン */
}
.vr #vr-floor .right .item .more-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff; /* 背景と合わせる */
  color: rgb(103, 103, 103);
  font-weight: 500;
  font-size: 14px !important;
  padding-left: 10px;
  cursor: pointer;
  /* 「...」を自前でつける */
}
.vr #vr-floor .right .item .more-btn::before {
  content: "...";
  margin-right: 4px;
  color: rgb(103, 103, 103); /* テキストの色に合わせる */
}
.vr #vr-floor .right .item .item-img {
  width: 25%;
  right: 0%;
  top: 0%;
}
@media only screen and (max-width: 490px) {
  .vr #vr-floor .right .item .item-img {
    width: 20%;
    top: 0%;
    z-index: 2;
  }
}
.vr #vr-floor .right .item h4 {
  padding: 5px 15px;
  background-color: rgb(0, 36, 104);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.vr #vr-floor .right .item h4 span {
  line-height: 1;
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(30px, 2.6041666667vw, 50px);
  background: linear-gradient(125.62deg, #8CCBDE 2.75%, #EDB5D9 58.86%, #FFF9FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.vr #vr-floor .right .item h4 span.small {
  font-size: clamp(17px, 1.3815789474vw, 21px);
}
.vr #vr-floor .right .item .txt {
  width: 78%;
  line-height: 1.6;
  overflow: hidden;
}
@media only screen and (max-width: 490px) {
  .vr #vr-floor .right .item .txt {
    width: 100%;
  }
}
.vr #vr-floor .right .item .txt span {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .vr #vr-floor .right .item .txt {
    position: relative;
    line-height: 1.6;
    max-height: 6.4em; /* 4行分の高さ */
    overflow: hidden;
    text-align: justify; /* 両端揃えにすると末尾の処理が綺麗です */
    /* 4行目の右下に空白を作るためのダミー要素 */
  }
  .vr #vr-floor .right .item .txt.is-clamped::before {
    content: "";
    float: right;
    height: 4.8em; /* 3行分はスルー */
    width: 0;
  }
  .vr #vr-floor .right .item .txt.is-clamped::after {
    content: "";
    float: right;
    height: 1.6em; /* 4行目に空間を作る */
    width: 5em; /* 6文字分くらいの幅を削る */
  }
}
.vr #vr-floor .right .item .movie {
  width: 100%;
  aspect-ratio: 5/2;
  margin-top: 30px;
}
.vr #vr-floor .right .item .movie video {
  width: 100%;
  height: 100%;
}
.vr #vr-floor .right .item .img-container {
  margin-top: 30px;
  margin-bottom: 50px;
}
.vr #vr-floor .right .item .img-container .flex {
  gap: 4%;
}
.vr #vr-floor .tab-area {
  height: 100%;
}
.vr #vr-floor .tab-area .flex {
  height: 80%;
  padding-right: 5%;
  gap: -25vw;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .tab-area .flex {
    max-width: 600px;
    margin: 50px auto;
  }
}
.vr #vr-floor .tab-area .flex .img-wrap-inner {
  width: 120%;
  margin-left: 8vw;
  position: relative;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .tab-area .img-wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 1%;
  }
}
.vr #vr-floor .tab-txt-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  height: 99%;
  position: relative;
  z-index: 3;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .tab-txt-wrap {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    gap: 30px;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-floor .tab-txt-wrap {
    z-index: 1;
  }
}
.vr #vr-floor .tab-txt-wrap .looftop-link {
  max-width: 300px;
  width: 14vw;
  aspect-ratio: 1/1;
  display: block;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .tab-txt-wrap .looftop-link {
    display: none;
  }
}
.vr #vr-floor .tab-txt-wrap .looftop-link img {
  display: none;
}
.vr #vr-floor .tab-txt-wrap .looftop-link.visible img {
  display: block !important;
}
.vr #vr-floor .tab-txt-wrap .floor-link {
  margin-left: 20%;
  background-color: rgb(201, 201, 201);
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(30px, 2.6041666667vw, 50px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 5px;
  line-height: 1;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-floor .tab-txt-wrap .floor-link {
    margin-left: 15%;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-floor .tab-txt-wrap .floor-link {
    margin-left: 10%;
  }
}
.vr #vr-floor .tab-txt-wrap .floor-link span {
  color: #fff;
}
.vr #vr-floor .tab-txt-wrap .floor-link.is-active {
  background-color: rgb(0, 36, 104);
}
@media print, screen and (max-width: 768px) {
  .vr #vr-floor .tab-txt-wrap .floor-link.is-active {
    width: 60%;
  }
}
.vr #vr-floor .tab-txt-wrap .floor-link.is-active span {
  background: linear-gradient(125.62deg, #8CCBDE 2.75%, #EDB5D9 58.86%, #FFF9FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vr #vr-recruit {
  padding: 50px 0;
  background-image: url(../images/vr/video-bg.png);
  background-size: cover;
  background-position: center;
  aspect-ratio: 3/1;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-recruit {
    aspect-ratio: 2/1;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-recruit {
    aspect-ratio: unset;
  }
}
.vr #vr-recruit.active.ani .item-img.scaleIn, .vr #vr-recruit.active.ani .revealLeft {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.vr #vr-recruit.active.ani .youtube-wrap.scaleIn {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.vr #vr-recruit .content {
  position: relative;
}
.vr #vr-recruit .item-img-13 {
  top: 50px;
  max-width: 170px;
  width: 12vw;
  left: 0vw;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-recruit .item-img-13 {
    left: -5vw;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-recruit .item-img-13 {
    width: 20vw;
    left: unset;
    right: 0;
    top: -40px;
    z-index: 2;
  }
}
.vr #vr-recruit .item-img-14 {
  top: -180px;
  max-width: 180px;
  width: 13vw;
  left: 35vw;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-recruit .item-img-14 {
    width: 17vw;
    left: unset;
    right: 17vw;
    top: -15vw;
    z-index: 2;
  }
}
.vr #vr-recruit .item-img-15 {
  top: -160px;
  max-width: 200px;
  width: 15vw;
  right: 10vw;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-recruit .item-img-15 {
    width: 17vw;
    right: unset;
    left: 13vw;
    bottom: -6vw;
    top: unset;
    z-index: 2;
  }
}
.vr #vr-recruit .item-img-16 {
  top: 100px;
  max-width: 170px;
  width: 13vw;
  right: 0vw;
}
@media print, screen and (max-width: 1024px) {
  .vr #vr-recruit .item-img-16 {
    right: -5vw;
  }
}
@media print, screen and (max-width: 768px) {
  .vr #vr-recruit .item-img-16 {
    width: 17vw;
    right: unset;
    left: -3vw;
    bottom: 0vw;
    top: unset;
    z-index: 2;
  }
}
.vr #vr-recruit .content-wrapper {
  width: 100%;
}
.vr #vr-recruit .inner-content {
  max-width: 1120px;
  width: 80%;
  margin: 80px auto 0;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-recruit .inner-content {
    aspect-ratio: 2/1.2;
    margin-top: 40px;
  }
}
.vr #vr-recruit .inner-content .youtube-wrap {
  position: absolute;
  max-width: 1120px;
  width: 80%;
  aspect-ratio: 2/1;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-recruit .inner-content .youtube-wrap {
    aspect-ratio: 2/1.2;
  }
}
.vr #vr-recruit .youtube-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9; /* 動画の比率 */
  border-radius: 40px; /* 画像のように角を丸く */
  overflow: hidden;
  cursor: pointer;
}
.vr #vr-recruit {
  /* カスタム再生ボタンの中央配置 */
}
.vr #vr-recruit .custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  pointer-events: none; /* クリックは親要素に任せる */
}
.vr #vr-recruit {
  /* 再生アイコン（▶）のグラデーション */
}
.vr #vr-recruit .play-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(125.62deg, #8CCBDE 2.75%, #EDB5D9 58.86%, #FFF9FD 100%);
  -webkit-clip-path: polygon(20% 10%, 90% 50%, 20% 90%);
          clip-path: polygon(20% 10%, 90% 50%, 20% 90%); /* 三角形に切り抜き */
  margin: 0 auto 10px;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-recruit .play-icon {
    width: 50px;
    height: 50px;
  }
}
.vr #vr-recruit {
  /* PLAYテキスト */
}
.vr #vr-recruit .play-text {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 50px;
  background: linear-gradient(125.62deg, #8CCBDE 2.75%, #EDB5D9 58.86%, #FFF9FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* ボタンと同じくtext-shadowを指定 */
  -webkit-text-stroke: 1px rgb(0, 36, 104);
  text-stroke: 1px rgb(0, 36, 104);
  paint-order: stroke;
}
@media print, screen and (max-width: 768px) {
  .vr #vr-recruit .play-text {
    font-size: 30px;
  }
}
.vr #vr-recruit {
  /* サムネイル画像 */
}
.vr #vr-recruit .thumb-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.vr #vr-recruit .youtube-wrap:hover .thumb-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05); /* ホバーで少し拡大 */
}
.vr #vr-recruit {
  /* 動画再生が始まったら要素を消すためのクラス */
}
.vr #vr-recruit .is-playing .custom-play-btn,
.vr #vr-recruit .is-playing .thumb-img {
  display: none;
}
@media print, screen and (max-width: 768px) {
  .vr #toTop {
    display: none;
  }
}
.vr {
  /* モーダル背景（最初は非表示） */
}
.vr .modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/vr/bg-04.png);
  background-size: cover;
  background-position: center;
  z-index: 1000; /* side-menu(10)より上に表示 */
  overflow-y: auto; /* 画像が長い場合にスクロール可能にする */
}
.vr {
  /* モーダルのコンテンツ容器 */
}
.vr .modal-content {
  position: relative;
  padding: 40px 0;
  width: 100%;
  border-radius: unset;
  background-image: unset;
}
.vr .modal-content .tl-wrap .ttl-img-wrap {
  max-width: 350px;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .tl-wrap .ttl-img-wrap {
    width: 50%;
  }
}
.vr .modal-content .tl-wrap .modal-ttl {
  margin: 30px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  padding: 5px 20px;
}
.vr .modal-content .tl-wrap .modal-ttl span {
  background: linear-gradient(125.62deg, #8CCBDE 2.75%, #EDB5D9 58.86%, #FFF9FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(30px, 3.125vw, 60px);
  -webkit-text-stroke: 1px rgb(0, 36, 104);
  text-stroke: 1px rgb(0, 36, 104);
  line-height: 1;
}
.vr .modal-content .gamen {
  position: relative;
  max-width: 900px;
  width: 65%;
  margin: auto;
  margin-bottom: 100px;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .gamen {
    max-width: 500px;
  }
}
.vr .modal-content .gamen .vr-image-container {
  margin-top: 30px;
  position: relative;
}
.vr .modal-content .gamen .vr-image-container .spot {
  position: absolute;
}
.vr .modal-content .gamen .vr-image-container .spot:nth-child(2) {
  top: 87%;
  left: 5%;
}
.vr .modal-content .gamen .vr-image-container .spot:nth-child(3) {
  top: 65%;
  left: 25%;
}
.vr .modal-content .gamen .vr-image-container .spot:nth-child(4) {
  top: 87%;
  left: 25%;
}
.vr .modal-content .gamen .vr-image-container .spot:nth-child(5) {
  top: 50%;
  right: 5%;
}
.vr .modal-content .gamen .vr-image-container .spot:nth-child(6) {
  top: 3%;
  right: 3%;
}
.vr .modal-content .gamen .img-gamen-wrap {
  position: relative;
}
.vr .modal-content .gamen .hukidashi {
  position: absolute;
}
.vr .modal-content .gamen .hukidashi-1 {
  width: 170px;
  left: -120px;
  bottom: 13%;
}
.vr .modal-content .gamen .hukidashi-2 {
  width: 200px;
  left: 3%;
  bottom: -380px;
}
.vr .modal-content .gamen .hukidashi-3 {
  width: 190px;
  left: 40%;
  bottom: 50px;
}
.vr .modal-content .gamen .hukidashi-4 {
  width: 170px;
  left: 75%;
  bottom: 10%;
}
.vr .modal-content .gamen .hukidashi-5 {
  width: 170px;
  right: -160px;
  top: -10%;
}
.vr .modal-content .gamen .desc-wrap {
  padding-left: 30%;
}
.vr .modal-content .gamen .desc-wrap .tool-wrap {
  width: 35%;
}
.vr .modal-content .gamen .desc-wrap .tool-wrap .item:nth-child(1) {
  scale: 1.2;
}
.vr .modal-content .gamen .desc-wrap .tool-wrap .item:nth-child(2) {
  scale: 0.8;
}
.vr .modal-content .gamen .desc-wrap .images {
  width: 80%;
}
.vr .modal-content .gamen .desc-wrap .images .item {
  margin-top: 20px;
}
.vr .modal-content .button-content {
  max-width: 900px;
  width: 90%;
  margin: auto;
  margin-bottom: 150px;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .button-content {
    margin-bottom: 50px;
  }
}
.vr .modal-content .button-content .flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .button-content .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.vr .modal-content .button-content .left {
  width: 40%;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .button-content .left {
    width: 100%;
  }
}
.vr .modal-content .button-content .left .img-wrap {
  max-width: 371px;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .button-content .left .img-wrap {
    max-width: 300px;
    width: 70%;
    margin: auto;
  }
}
.vr .modal-content .button-content .right {
  width: 60%;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .button-content .right {
    width: 100%;
  }
}
.vr .modal-content .button-content .right .flex {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .button-content .right .flex {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}
.vr .modal-content .button-content .right .item {
  width: 35%;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .button-content .right .item {
    width: 45%;
  }
}
.vr .modal-content .button-content .right .item .txt {
  line-height: 1.3;
  text-align: center;
}
.vr .modal-content .button-content .right .main-img-wrap .txt {
  text-align: center;
}
.vr .modal-content .ope-content {
  margin-top: 50px;
  max-width: 1092px;
  margin: auto;
  width: 95%;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .ope-content {
    max-width: 400px;
  }
}
.vr .modal-content .ope-content .flex {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .ope-content .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.vr .modal-content .ope-content .item {
  max-width: 270px;
  width: 30%;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .ope-content .item {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
}
.vr .modal-content .ope-content .item .icon-wrap {
  height: 280px;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .ope-content .item .icon-wrap {
    height: unset;
    margin-top: 25px;
  }
}
.vr .modal-content .ope-content .item .icon-wrap img {
  width: 85%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .ope-content .item .icon-wrap img {
    margin: auto;
    width: 80%;
  }
}
.vr .modal-content .ope-content .item:nth-child(2) .icon-wrap img {
  width: 70%;
}
@media print, screen and (max-width: 768px) {
  .vr .modal-content .ope-content .item:nth-child(2) .icon-wrap img {
    width: 80%;
  }
}
.vr .modal-content .ope-content .item .txt-wrap .ttl {
  background: linear-gradient(125.62deg, #8CCBDE 2.75%, #EDB5D9 58.86%, #FFF9FD 100%);
  text-align: center;
}
.vr .modal-content .ope-content .item .txt-wrap .ttl span {
  color: #fff;
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(20px, 1.25vw, 24px);
  -webkit-text-stroke: 1px rgb(0, 36, 104);
  text-stroke: 1px rgb(0, 36, 104);
  line-height: 2.5;
}
.vr .modal-content .ope-content .item .txt-wrap .txt {
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  background-color: #fff;
  line-height: 1.3;
}
.vr .second-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.555);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 常に flex にしておく */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 初期状態は「透明」かつ「クリックに反応しない」 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s;
  transition: opacity 0.4s ease, visibility 0.4s;
  z-index: 1000;
}
.vr .second-modal-overlay .close-btn {
  width: 62px;
}
.vr .second-modal-overlay .second-modal-content {
  position: relative;
  max-width: 300px;
  width: 95%;
  margin: auto;
  padding: 30px 3% 50px;
  background-color: #fff;
  border-radius: 30px;
  color: rgb(0, 0, 0);
  background: linear-gradient(125.62deg, #8CCBDE 2.75%, #EDB5D9 58.86%, #FFF9FD 100%);
  position: relative;
}
.vr .second-modal-overlay .second-modal-content::after {
  position: absolute;
  content: "";
  left: 4px;
  top: 4px;
  z-index: 1;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background-color: #fff;
  border-radius: 30px;
}
.vr .second-modal-overlay .second-modal-content .inner {
  z-index: 2;
  position: relative;
}
.vr .second-modal-overlay .second-modal-content .inner .num {
  margin: auto;
  text-align: center;
}
.vr .second-modal-overlay .second-modal-content .inner .ttl {
  text-align: center;
}
.vr .second-modal-overlay .second-modal-content .inner .ttl .txt {
  margin-top: 0;
}
.vr .second-modal-overlay .second-modal-content .inner .txt {
  font-size: clamp(16px, 5.5vw, 22px);
  line-height: 1.3;
  margin-top: 20px;
}
.vr .second-modal-overlay .second-modal-content .inner .img-wrap {
  margin-top: 5px;
}
.vr .second-modal-overlay .second-modal-content .inner .img-wrap .modal-child-2 {
  width: 95%;
}
.vr .second-modal-overlay .second-modal-content .inner .img-wrap .modal-child-3 {
  width: 80%;
}
.vr .second-modal-overlay .second-modal-content .inner h4 {
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(22px, 6.75vw, 27px);
}
.vr .second-modal-overlay .second-modal-content .inner .bar {
  width: 60%;
  height: 4.6px;
  margin: 15px auto;
  border-radius: 10px;
  background: linear-gradient(90.03deg, #8CCBDE -0.73%, #EDB5D9 101.34%);
  display: block;
}
.vr .second-modal-overlay .second-modal-content .close-btn {
  top: -20px;
  right: -20px;
  z-index: 4;
}
.vr .second-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* クリックを有効化 */
}
.vr {
  /* 画像のスタイル */
}
.vr .modal-image {
  width: 100%;
  height: auto;
  display: block;
}
.vr {
  /* 閉じるボタン（右上の×印） */
}
.vr .close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  max-width: 100px;
}
@media only screen and (max-width: 640px) {
  .vr .close-btn {
    width: 20%;
    min-width: 62px;
    right: 10px;
    top: 10px;
  }
}
.vr {
  /* 表示状態にするためのクラス */
}
.vr .modal-overlay.is-open {
  display: block;
}/*# sourceMappingURL=vr.css.map */