:root {
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
}
body {
    font-family:  "Helvetica","Helvetica Neue", "Hiragino Kaku Gothic ProN",  "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  }

  html {
    font-family: "Helvetica", "Helvetica Neue","Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.03em;
    }
  @media screen and (max-width: 850px) {
    html{
        font-size: 15px;
    }
  }

*{
    box-sizing: border-box;
}
.a-enter-vr.fullscreen{
    display: none;
}
a {
    word-break: break-all;
}
img{
    max-width: 100%;
}
ul{
    padding: 0;
}
/* intro  */
.intro{
   
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: opacity .8s  ;
    opacity: 1;
    visibility: visible;

}
.intro.close{
    opacity: 0;
    visibility: hidden;
    pointer-events:none;
    z-index: -1;
}
.intro__base{
    position: relative;
    width: 100%;
    height: 100%;
    
}
.intro__overlay{
    position: absolute;
    background-color: rgba(255,255,255,1);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition:  .3s;
    opacity: 1;
    visibility: visible;
}
.intro__overlay.close{
    opacity: 0;
    visibility: hidden;
}
.intro__inner{
    position: relative;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.intro__contents{
        max-width: 500px;
    width: 90%;
    margin: 0 auto;
    padding: 30px 5%;
}

.intro__maker{
    position: absolute;
    bottom: 10px;
    z-index: 3;
    max-width: 140px;
    left: 50%;
    transform: translate(-50%, 0px);
}

/* menu icon */
.ui-icon{
    position:fixed;
    z-index: 20;
}
.ui-icon__close{
    top: 20px;
    right: 15px;
    width: 120px;
    height: 30px;
    z-index: 5000;
}
.ui-icon__close__inner{
    position: relative;
    width: 100%;
    height: 100%;
}
.icon-close{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
}
.icon-close img{
    width: 20px;
    height: 20px;
}
.icon-close-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 120px;
    /* height: 20px; */
    font-size: 1rem;
    font-weight: 700;
    background: blue;
    padding: 8px 0;
    text-align: center;
    color: #fff;
    border-radius: 20px;
   
}

.ui-icon__map{
    bottom: 30px;
    right: 30px;
    cursor: pointer;
}
.icon-map{
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 10px;
    padding-bottom: 5px;
}
.icon-map img{
    width: 25px;
}
.modal__close {
    z-index: 5001 !important;
}

/* ai  */

.ui-icon__ai {
    position: fixed;
    bottom: 5px;
    left: 15px;
    /* cursor: pointer; */
    z-index: 5;
}
.icon-ai img{
    width: 150px;
}
@media screen and (max-width: 500px) {
    .ui-icon__ai {
        bottom: -6px;
        left: 5px;
    }
    .icon-ai img{
        width: 130px;
    }

}
/* modal */
.modal{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    /* 新しめ: UI込みの“今この瞬間”の高さ */
  height: 100dvh;              /* 最優先 */
  /* フォールバック: 最小/最大の安定単位 */
  height: 100lvh;              /* 次点: 最大（アドレスバー消えた状態） */
  height: 100svh;              /* さらに次点: 最小（アドレスバー出た状態） */

  padding-top: var(--safe-top);
  padding-bottom: var(--safe-bottom);
    z-index: 400;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: .5s;
}
.modal.open{
    visibility: visible;
    opacity: 1;
    z-index: 400;
}
.modal__base{
    position: relative;
    width: 100%;
    height: 100%;
}
.modal__contents{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: #fff;
    padding: 25px 10px 30px;
    border-radius: 30px;
    width: 98%;
    max-width: 1200px;
    max-height: 80%;
    overflow-y: scroll;
}
.modal__overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0,0,0,0.4);
}
.modal__tour .modal__contents,
.modal__polls .modal__contents{
    max-width: 500px;
}
.modal__polls.open{
    z-index: 5555 !important;
}
/* js_modal-thanksモーダルのz-index設定 */
#js_modal-thanks.open {
    z-index: 6666 !important;
}
.modal__heading{
    font-size: 1.25rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}
.modal__item{
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: center;
}
.modal__item > *{
    display: inline-block;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    min-width: 120px;
    cursor: pointer;
    font-size:1rem;
}
.btn_primary{
    background-color: rgb(0, 152, 216);
    color: #fff;
}
.modal__contents_exit{
    /* max-height: 300px; */
}
.modal__contents_map{
    top: 80px;
    transform: translate(-50%, 0);
    background: none;
}
.modal__map .modal__heading{
    color:#fff;
}
.modal__map .modal__item{
    text-align: left;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: .3s;
    padding: 10px;
}
.modal__map .modal__item:hover{
    background: rgba(255,255,255,0.5);
}
.modal__map .modal__item > *{
    color: #fff;
}

/* js_modal-tour-canselモーダルのz-index設定 */
#js_modal-tour-cansel.open {
    z-index: 4444 !important;
}

/* ====================
シーンロックモーダル専用スタイル
==================== */
#js_modal-lock {
    z-index: 5000;
}

#js_modal-lock.open {
    z-index: 5000 !important;
}

/* シーンロックモーダルのコンテンツスタイル */
#js_modal-lock .modal__contents {
    max-width: 400px;
    width: 90%;
    padding: 30px 20px;
    text-align: center;
}

/* シーンロックモーダルのヘッダー */
#js_modal-lock .modal__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* シーンロックモーダルの説明文 */
#js_modal-lock .modal__desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* シーンロックモーダルのフォームエリア */
#js_modal-lock .modal__form {
    margin-bottom: 2rem;
}

/* パスワード入力フィールド */
#js_lock-password {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #333;
}

#js_lock-password:focus {
    outline: none;
    border-color: #38A4FF;
    box-shadow: 0 0 0 3px rgba(56, 164, 255, 0.1);
}

#js_lock-password::placeholder {
    color: #a0aec0;
}

/* エラーメッセージ */
#js_lock-error {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* シーンロックモーダルのボタンエリア */
#js_modal-lock .modal_list_vertical {
    gap: 12px;
    justify-content: center;
}

#js_modal-lock .modal__item__btn {
    min-width: 100px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

/* OKボタン */
#js_lock-ok {
    background: linear-gradient(135deg, #38A4FF 0%, #0098d8 100%);
    color: #fff;
    border-color: #38A4FF;
}

#js_lock-ok:hover {
    background: linear-gradient(135deg, #0098d8 0%, #38A4FF 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 164, 255, 0.3);
}

#js_lock-ok:active {
    transform: translateY(0);
}

/* キャンセルボタン */
#js_lock-cancel {
    background: #fff;
    color: #666;
    border-color: #e2e8f0;
}

#js_lock-cancel:hover {
    background: #f8f9fa;
    color: #333;
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#js_lock-cancel:active {
    transform: translateY(0);
}

/* レスポンシブ対応 */
@media screen and (max-width: 850px) {
    #js_modal-lock .modal__contents {
        max-width: 350px;
        padding: 25px 15px;
    }
    
    #js_modal-lock .modal__heading {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    #js_modal-lock .modal__desc {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    #js_lock-password {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    #js_modal-lock .modal__item__btn {
        min-width: 80px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    #js_modal-lock .modal_list_vertical {
        gap: 8px;
    }
}

@media screen and (max-width: 500px) {
    #js_modal-lock .modal__contents {
        max-width: 300px;
        padding: 20px 12px;
    }
    
    #js_modal-lock .modal__heading {
        font-size: 1rem;
    }
    
    #js_modal-lock .modal__desc {
        font-size: 0.85rem;
    }
    
    #js_lock-password {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    #js_modal-lock .modal__item__btn {
        min-width: 70px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}


.modal-panel__icon-close{
    top: 30px;
    right: 15px;
    left: auto;
    }




.modal__list_map{
    height: 60vh !important;
    overflow-y: scroll;
    display: block;
}
.tour-start__speed-select-area{


    margin-right: auto;
    margin-left: auto;
}
.modal_list_vertical{
        display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 4px;
    flex-wrap: wrap;
 
}
.modal_list_vertical button{
    min-width: 60px;
}
.tour-start__text{
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-size: .85rem;
}

.no-bar{

  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}

/*Google Chrome、Safariへの対応*/
.no-bar::-webkit-scrollbar{
    display: none;
}
.a-loader-title{
    display: none !important;
}

.ui-pos-label{

    position: fixed;
    top: 15px;
    left: 15px;

    min-width: 200px;
}

.pos-label{
    background: rgba(255, 255, 255, 0.7);
}
.pos-label__inner{
    padding: 8px;
}
.pos-label__label{
    margin: 0;
    font-weight: 500;
}

.ui-point-map{
    position:fixed;
    top: 15px;
    right: 15px;

    max-width: 340px;

}

.ui-point-map{
    position:fixed;
    top: 15px;
    right: 15px;

    max-width: 340px;
    width: 45%;
    z-index: 30;
}
.ui-point-map__inner{
  
}
.ui-point-map__base{
    position:relative;
}
.ui-point-map__floor{
    position: relative;
}
.point-map__point{
    position:absolute;
    display: block;
    width: 12px;
    height: 12px;

    display:none;
    width: 31px;
    height: 51px;
    transform: scale(0.7) translate(-50%, -100%);
    transform-origin: top left;
    background-size: contain;
    background-repeat: no-repeat;
}
.point-map__point.active{
    display:block;
}
.ui-point-map__floor{
    visibility:hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;

}
.ui-point-map__floor img{
    opacity: 0.7;
}
.ui-point-map__floor.active{
    visibility: visible;
    opacity: 1;
}

.ui-enter-back{
    text-align: right;
}
.btn-enter-back{
    display: inline-block;
    background: #fff;
    padding: 10px 15px;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    border: 1px solid #333;
    font-size: 0.85rem;
    transition: .4s;
}
.btn-enter-back:hover{
    background: #ed6c00;
    color: #fff;
    border-color:#ed6c00;
}
.btn-enter-back.hide{
    display:none;
}
@media screen and (max-width: 850px) {
    .point-map__point{
	transform: scale(0.45) translate(-50%, -100%);
    }
}
.point-map__point[data-point="entrance-1"]{
    top: 81%;
    left: 24.5%;
}
.point-map__point[data-point="entrance-2"]{
    top: 65%;
    left: 36.5%;
}
    .point-map__point[data-point="room-1"]{
	top: 23%;
	left: 46%;
    }
    .point-map__point[data-point="room-2"]{
	top: 23%;
	left: 56%;
    }
    .point-map__point[data-point="room-3"]{
	top: 23%;
	left: 66%;
    }
    .point-map__point[data-point="room-4"]{
	top: 23%;
	left: 75%;
    }
    .point-map__point[data-point="training-room-1"]{
	top: 23%;
	left: 89%;
    }
    .point-map__point[data-point="training-room-2"]{
	top: 70%;
	left: 89%;
    }
.point-map__point[data-point="pc-room-1"]{
    top: 68%;
    left: 78%;
}
.point-map__point[data-point="pc-room-2"]{
    top: 68%;
    left: 72%;
}
.point-map__point[data-point="pc-room-3"]{
    top: 55%;
    left: 78%;
}
    .point-map__point[data-point="booth-1"]{
	top: 60%;
	left: 28%;
    }
    .point-map__point[data-point="booth-2"]{
	top: 60%;
	left: 20%;
    }
    .point-map__point[data-point="booth-3"]{
	top: 60%;
	left: 12%;
    }
    .point-map__point[data-point="booth-4"]{
	top: 60%;
	left: 4%;
    }
    .point-map__point[data-point="open-space-1"]{
	top: 70%;
	left: 46%;
    }
    .point-map__point[data-point="open-space-2"]{
	top: 70%;
	left: 54%;
    }
    .point-map__point[data-point="open-space-3"]{
	top: 70%;
	left: 62%;
    }
    .point-map__point[data-point="hallway-1"]{
	top: 42%;
	left: 9%;
    }
    .point-map__point[data-point="hallway-2-1"]{
	top: 42%;
	left: 9%;
    }
    .point-map__point[data-point="hallway-2-1"]{
	top: 42%;
	left: 26%;
    }
    .point-map__point[data-point="hallway-2-2"]{
	top: 42%;
	left: 15%;
    }
.point-map__point[data-point="hallway-3-1"]{
    top: 42%;
    left: 36.5%;
}
    .point-map__point[data-point="hallway-3-2"]{
	top: 42%;
	left: 45%;
    }
    .point-map__point[data-point="hallway-4-1"]{
	top: 42%;
	left:63%;
    }

    .point-map__point[data-point="hallway-4-2"]{
	top: 42%;
	left: 51%;
    }
    .point-map__point[data-point="hallway-5"]{
	top: 42%;
	left: 80%;
    }
[data-modal="modal-hallway-3-1-person-1"] .modal__contents,
[data-modal="modal-hallway-3-1-person-2"] .modal__contents{
	    background: #ed6c00;
    color: #fff;
}
/* start loading  */
 
 #start-loading-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(242, 242, 242, 1);
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 9999;
   visibility: visible;
   opacity: 1;
   transition: opacity .4s, visibility .4s ;
 }
 #start-loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
  }
 
  #start-loading-overlay .form-loading-content {
   text-align: center;
 }
 
 #start-loading-overlay .form-loading-dots {
   display: flex;
   justify-content: center;
 }
 
 #start-loading-overlay .dot {
   width: 10px;
   height: 10px;
   background-color: rgb(77, 77, 77);
   border-radius: 50%;
   margin: 0 5px;
   animation: bounce 1.4s infinite ease-in-out both;
 }
 
 #start-loading-overlay .dot:nth-child(1) {
   animation-delay: -0.32s;
 }
 
 #start-loading-overlay .dot:nth-child(2) {
   animation-delay: -0.16s;
 }
 
 #start-loading-overlay .form-loading-text {
   color: rgb(77, 77, 77);
   margin-top: 10px;
   font-size: 18px;
 }
  @keyframes bounce {
    0%, 80%, 100% { 
      transform: scale(0);
    } 40% { 
      transform: scale(1.0);
    }
  }

/*  #Telop */
.ui-telop{
    position: fixed;
    bottom: 15px;
    left: 15px;
    max-width: 40%;

    font-size: .85rem;
}
.ui-telop__item{
    padding: 0 10px;
}
.ui-telop__item.hide {
    display: none;
}
@media screen and (max-width: 850px) {
    .ui-telop{
	max-width: 65%;
    }
    }

/*  #Popup Telop */
.popup-telop{
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 80%;
    z-index: 401;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.popup-telop.active{
    opacity: 1;
    visibility: visible;
}
.popup-telop__inner{
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
}
.popup-telop__contents{
    display: flex;
    align-items: center;
        gap: 8px;
}
.popup-telop__contents p{
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.popup-telop__voice-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
}

.popup-telop__voice-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #38a0ea;
    background-color: #fff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-telop__voice-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.popup-telop__voice-name {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
}
@media screen and (max-width: 1000px) {
    .popup-telop {
        max-width: 40%;
        /* right: 15px; */
        left: 15px;
        transform: translate(0px, 0px);
        max-width: 65%;
    }
}
@media screen and (max-width: 950px) {
    
    
}
@media screen and (max-width: 850px) {
    
    .popup-telop__contents p{
	font-size: 0.9rem;
    }
    .popup-telop__inner{
        padding: 10px 10px;
    }
    .popup-telop__voice-icon {
        width: 60px;
        height: 60px;
        padding: 0;
    }
    .popup-telop__voice-name{
        font-size: 0.75rem;
    }
    .popup-telop-voice-info{
        max-width: 60px !important;
    }
    }
    @media screen and (max-width: 600px) {
        .popup-telop{
            max-width: 90%;
            width: 100%;
            bottom: 60px;
            left: 50%;
            transform: translate(-50%, 0);
        }
    }

    @media screen and (max-height: 500px) { 
        .tour-modal--video .modal__contents,
        .tour-modal--youtube .modal__contents{
            top: 0px;
            transform: translate(-50%, 0);
        }
        .tour-modal--video video{
            min-height: 60vh;
        }
    }

/* TOUR  */
.tour-ui{
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}
.tour-ui.active{
   opacity: 1;
    visibility: visible; 
}
.tour-ui__left-area{
    position: fixed;
    top: 40px;
    left: 39px;
    width: 25%;
    min-width: 125px;
    display: flex;
    gap: 24px;
    align-items: center;
}
.tour-ui__right-area{
       position: fixed;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    width: 25%;
    display: flex;
    align-items: end;
    justify-content: end;

}
.tour-ui__message-area{
    position: fixed;
    bottom: -100px;
    left: 50%;
    /* right: 15px; */
    width: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0);
    transition: 1s;
    z-index: 500;
}
.tour-ui__message-area.active{
    bottom: 15px;
    opacity: 1;
    visibility: visible;

}
.tour-ui__icon-close{
        position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: #fff;
}
.tour-ui-close{
    background: #dbdbdb87;
    border: 2px solid #fff;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;

}
.tour-ui__active-rec{
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.tour-ui__active-rec__circle {
    width: 30px;
    height: 30px;
    background: red;
    border-radius: 50%;
    animation: subtleIconPulse 2.5s ease-in-out infinite;
}
.tour-ui__active-rec__text {
    margin: 0;
    font-size: 1.125rem;
    color: #fff;
    letter-spacing: .05em;
    font-weight: 700;
}
/* ====================
tour ui modal
==================== */
.modal-tour{

}
.modal-tour__base{
        position: relative;
    width: 100%;
    height: 100%;
}
.modal-tour__inner{
    position: relative;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-tour__contents{
max-width: 500px;
    width: 90%;
    margin: 0 auto;
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.modal-tour__heading{
font-size: 1.25rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
        line-height: 1.5;
    letter-spacing: .05em;
}
.modal-tour__icon .subtle-ripple{
    width: 60px;
    height: 60px;
}
.modal-tour__icon .subtle-ripple img{
    width: 24px;
    
}
.modal-tour__loading{
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: .05em;
    color: #ffffff;
}

/* ツアー終了モーダルのアクションエリア */
.modal-tour__action {
    margin-top: 2rem;
    text-align: center;
}

.modal-tour__action .modal__item__btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.modal-tour__action .modal__item__btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 164, 255, 0.3);
}

@media screen and (max-width: 850px) {
    .modal-tour__action {
        margin-top: 1.5rem;
    }
    
    .modal-tour__action .modal__item__btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* サンクスモーダル */
/* .modal-thanks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-thanks.open {
    opacity: 1;
    visibility: visible;
} */
 .tour-modal .modal-panel__icon-close{
/*     display: none !important; */
 }

.modal-thanks__base {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-thanks__inner {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-thanks.open .modal-thanks__inner {
    transform: translateY(0);
}

.modal-thanks__contents {
    position: relative;
    z-index: 2;
}

.modal-thanks__heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.modal-thanks__icon {
    margin-bottom: 2rem;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: thanksIconPulse 2s ease-in-out infinite;
}

.thanks-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

@keyframes thanksIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.modal-thanks__action {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.modal-thanks__action .modal__item__btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    min-width: 200px;
}

.modal-thanks__action .btn_primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.modal-thanks__action .btn_primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 164, 255, 0.3);
}

.modal-thanks__action .btn_secondary {
    background: white;
    color: #666;
    border-color: #ddd;
}

.modal-thanks__action .btn_secondary:hover {
    background: #f8f9fa;
    color: #333;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-thanks__overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: .3s;
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 850px) {
    .modal-thanks__inner {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .modal-thanks__heading {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .thanks-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .thanks-icon img {
        width: 30px;
        height: 30px;
    }
    
    .check-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .check-icon::after {
        width: 24px;
        height: 15px;
        border-width: 2px;
    }
    
    .modal-thanks__action {
        gap: 0.75rem;
    }
    
    .modal-thanks__action .modal__item__btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
}
.modal-tour__overlay{
        position: absolute;
       background-color: rgba(255, 255, 255, 0.95);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: .3s;
    opacity: 1;
    visibility: visible;
}

/* ====================
tour ui progress
==================== */
.progress-container {
            position: relative;
            width: 20px;
            height: 20px;
           
        }

        .progress-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(
                #2196F3 0deg,
                #2196F3 var(--progress-deg, 0deg),
                white var(--progress-deg, 0deg),
                white 360deg
            );
            transition: --progress-deg 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }

        .controls {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .slider-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        input[type="range"] {
            width: 300px;
            height: 6px;
            border-radius: 3px;
            background: #ddd;
            outline: none;
            -webkit-appearance: none;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #2196F3;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

        input[type="range"]::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #2196F3;
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

/* ====================
tour ui shape-line circle
==================== */

 .shape-container {
            display: flex;
            align-items: center;
            gap: 0;
        }

         .shape-container  .circle {
            width: 20px;
            height: 20px;
            background-color: #fff;
            border-radius: 50%;
            position: relative;
            z-index: 2;
        }

          .shape-container  .line {
            width: 50px;
            height: 4px;
            background-color: #fff;
            position: relative;
            z-index: 1;
        }
        .shape-container  .circle.done {
            background-color: #2196F3;
        }
         .shape-container  .line.done {
            background-color: #2196F3;
         }

/* ====================
tour ui Card
==================== */
        .card {
            background-color: transparent;
            border-radius: 8px;
            width: 100%;
            /* max-width: 500px; */
            border: 1px solid #d0d0d0;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.2);
        }

        .card-header {
            background-color: #e8e8e8;
                padding: 12px 16px;
                display: flex;
                align-items: center;
            gap: 12px;
            justify-content: space-between;
        }

        .card-title {
            font-size: 1.125rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    letter-spacing: .02em;
        }

        .card-content {
           background-color: transparent;
                padding: 12px 16px;
            border: none;
                min-height: 60px;
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                height: 100%;
                position: relative;
        }

        .card-content__bubble {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 12px 16px;
            border-radius: 13px;
    border-bottom-right-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            max-width: calc(100% - 60px);
            position: relative;
            flex: 1;
            margin-right: 2px;
            transform: translateY(100%) scale(0.8);
            opacity: 0;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease-out;
            transform-origin: bottom right;
        }

        .card-content__bubble.show {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        /* .card-content__bubble::after {
            content: '';
            position: absolute;
            top: 18px;
            right: -12px;
            width: 0;
            height: 0;
            border: 12px solid transparent;
            border-left: 18px solid rgba(255, 255, 255, 0.9);
            border-right: 0;
            transform: scale(0);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-origin: bottom left;
        }

        .card-content__bubble.show::after {
            transform: scale(1);
        }

        .card-content__bubble::before {
            content: '';
            position: absolute;
            top: 17px;
            right: -13px;
            width: 0;
            height: 0;
            border: 13px solid transparent;
            border-left: 19px solid rgba(0, 0, 0, 0.1);
            border-right: 0;
            z-index: -1;
            transform: scale(0);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-origin: bottom left;
        }

        .card-content__bubble.show::before {
            transform: scale(1);
        } */

        .card-content__avatar {
            flex-shrink: 0;
            width: 78px;
            height: 78px;
            border-radius: 50%;
            overflow: hidden;
            /* border: 2px solid rgba(255, 255, 255, 0.8); */
            /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); */
        }

        .avatar-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .avatar-placeholder {
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, #38A4FF 0%, #667eea 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
.avatar-placeholder img{
	width:72%;
}

        .avatar-initial {
            color: white;
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* レスポンシブ対応 */
        @media screen and (max-width: 850px) {
            .card-content{
                padding: 12px 5px;
            }
            .card-content__bubble {
                max-width: calc(100% - 50px);
                margin-right: 8px;
                padding: 10px 14px;
                transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease-out;
            }

            .card-content__bubble::after {
                top: 15px;
                right: -10px;
                border: 10px solid transparent;
                border-left: 15px solid rgba(255, 255, 255, 0.9);
                transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            }

            .card-content__bubble::before {
                top: 14px;
                right: -22px;
                border: 11px solid transparent;
                border-left: 16px solid rgba(0, 0, 0, 0.1);
                transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            }

            .card-content__avatar {
                width: 70px;
                height: 70px;
            }

            .avatar-initial {
                font-size: 16px;
            }
        }

        .main-text {
                font-size: 1.125rem;
                font-weight: 700;
                text-align: center;
    color: #333;
    line-height: 1.6;
    margin: 0 0 16px 0;
    margin: 0;
    letter-spacing: .05em;
        }

        .dots {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .dot {
            width: 6px;
            height: 6px;
            background-color: #666;
            border-radius: 50%;
        }

        .tour-ui-mark img{
            width: 18px;
        }
        /* 基本カラー設定 */
        :root {
            --primary-color: #38A4FF;
            --primary-light: #38A4FF40;
            --primary-lighter: #38A4FF20;
        }

        /* 1. 控えめな単一波紋（動きあり） */
        .subtle-ripple {
            position: relative;
            width: 48px;
            height: 48px;

        }

        .subtle-ripple-icon {
            width: 100%;
            height: 100%;
            background: var(--primary-color);
            border-radius: 50%;
            position: relative;
                display: flex;
    justify-content: center;
    align-items: center;
            animation: subtleIconPulse 2.5s ease-in-out infinite;
        }

        .subtle-ripple-icon::before {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            border: 1px solid var(--primary-color);
            border-radius: 50%;
            animation: subtleRipple 2.5s ease-out infinite;
        }

        .subtle-ripple-icon::after {
            content: '';
            position: absolute;
            top: -12px;
            left: -12px;
            right: -12px;
            bottom: -12px;
            border: 1px solid var(--primary-light);
            border-radius: 50%;
            animation: subtleRippleSecond 2.5s ease-out infinite;
            animation-delay: 0.8s;
        }

        @keyframes subtleIconPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            /* 30% {
                transform: scale(1.08);
                opacity: 1;
            } */
            50% {
                transform: scale(1.28);
                opacity: 1;
            }
        }

        @keyframes subtleRipple {
            0% {
                transform: scale(0.8);
                opacity: 0.6;
            }
            40% {
                opacity: 0.4;
            }
            80% {
                transform: scale(1.4);
                opacity: 0.1;
            }
            100% {
                transform: scale(1.6);
                opacity: 0;
            }
        }

        @keyframes subtleRippleSecond {
            0% {
                transform: scale(0.7);
                opacity: 0.3;
            }
            50% {
                opacity: 0.2;
            }
            100% {
                transform: scale(1.8);
                opacity: 0;
            }
        }
        #js_modal-polls-close{
            display: none;
        }
.polls-title{
    text-align: center;
    border-bottom: 1px solid #a4a4a4;
    line-height: 1.5;
    padding-bottom: .5em;
    margin-bottom: 2rem;
}

.wp-polls-loading{
    display: none;
}
.wp-polls .Buttons{
        padding: 10px 15px;
    border-radius: 6px;
}
.wp-polls{
    display: none !important;
}
.wp-polls.active{
    display: block !important;
}
.wp-polls-loading{
    display: none !important;
}
a[href="#ViewPollResults"]{
    display: none;
}

.wp-polls-ul{
    min-height: 140px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    margin-bottom: 2rem;
}
.wp-polls-ul li{
    position: relative;
    cursor: pointer;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wp-polls-ul li:hover {
    border-color: #38A4FF;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 164, 255, 0.15);
}

.wp-polls-ul li input[type="radio"] {
    margin: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    /* accent-color: #38A4FF; */
}

.wp-polls-ul li label {
    cursor: pointer;
    flex: 1;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    user-select: none;
}

/* 選択された状態のスタイル */
.wp-polls-ul li.selected {
    border-color: #38A4FF !important;
    background: #f0f8ff !important;
    box-shadow: 0 4px 12px rgba(56, 164, 255, 0.2) !important;
}

.wp-polls-ul li.selected label {
    color: #1a365d;
    font-weight: 600;
}

/* アクセシビリティの向上 */
.wp-polls-ul li:focus-within {
    outline: 2px solid #38A4FF;
    outline-offset: 2px;
}
.wp-polls-form strong{
        font-size: 1.125rem;
    margin-bottom: 1rem;
    display: inline-block;
}
.wp-polls .Buttons{
        background: linear-gradient(135deg, #90adff 0%, #38A4FF 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    min-width: 150px;
}

.check-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
            animation: checkBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both;
            position: relative;
            overflow: hidden;
        }

        .check-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
            border-radius: 50%;
            transform: scale(0);
            animation: checkShine 0.6s ease-out 1s both;
        }

        @keyframes checkBounce {
            0% {
                opacity: 0;
                transform: scale(0) rotate(-180deg);
            }
            50% {
                transform: scale(1.15) rotate(-90deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        @keyframes checkShine {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: scale(1);
                opacity: 0;
            }
        }

        .check-icon::after {
            content: '';
            width: 32px;
            height: 20px;
            border: 3px solid white;
            border-top: none;
            border-right: none;
            transform: rotate(-45deg) scale(0);
            animation: checkDraw 0.6s ease-out 0.8s both;
            position: relative;
            z-index: 1;
        }

        @keyframes checkDraw {
            0% {
                transform: rotate(-45deg) scale(0);
                opacity: 0;
            }
            50% {
                transform: rotate(-45deg) scale(1.2);
                opacity: 1;
            }
            100% {
                transform: rotate(-45deg) scale(1);
                opacity: 1;
            }
        }

        .main-title {
                font-size: 1.25rem;
    text-align: center;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.3;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    margin-bottom: 2rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .subtitle {
            font-size: 18px;
            color: #718096;
            margin-bottom: 40px;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease-out 0.7s both;
        }

        .message-box {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            border-left: 4px solid #667eea;
            animation: fadeInUp 0.8s ease-out 0.9s both;
        }

        .message-text {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 15px;
        }

.btn_grade{
 background: linear-gradient(135deg, #90adff 0%, #38A4FF 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    min-width: 150px;
}
.fnish-anc-btn{
    margin-top: 2rem;
}


.tour-modal--video .modal__contents,
.tour-modal--youtube .modal__contents{
    background: none;
    overflow-y: visible;
}


.tour-modal--youtube .modal__contents-inner{
    background: #fff;
    padding: 10px 15px;
    border-radius: 15px;
}
.tour-modal--video video{
    background: #fff;
    padding: 10px 15px;
}


.tour-ui__frame{
    position: fixed;
    width: 70px;
    height: 70px;
        z-index: 2;
}
.tour-ui__frame_left-top{
    top:20px;
    left: 20px;
    border-top: 6px solid #fff;
    border-left: 6px solid #fff;
}
.tour-ui__frame_left-bottom{
    bottom:20px;
    left: 20px;
    border-bottom: 6px solid #fff;
    border-left: 6px solid #fff;
}

.tour-ui__frame_right-top{
    top:20px;
    right: 20px;
    border-top: 6px solid #fff;
    border-right: 6px solid #fff;
}

.tour-ui__frame_right-bottom{
    bottom:20px;
    right: 20px;
    border-bottom: 6px solid #fff;
    border-right: 6px solid #fff;
}
.tour-ui__center-frames{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 20%;
    height: 20%;
    max-width: 200px;
    max-height: 120px;
	display:none;
}
.tour-ui__center-frames_box{
    width: 100%;
    height: 100%;
    position: relative;
}
.tour-ui__center-frame{
    position: absolute;
    width: 25px;
    height: 25px;
}
.tour-ui__center-frame_left-top{
    top: 0;
    left: 0;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
}
.tour-ui__center-frame_left-bottom{
    bottom: 0;
    left: 0;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
}

.tour-ui__center-frame_right-top{
    top: 0;
    right: 0;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
}

.tour-ui__center-frame_right-bottom{
    bottom: 0;
    right: 0;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
}

/* time bar  */
.tour-ui__time-area{
    position: fixed;
        top: 34px;
    right: 34px;
}
.time-bar{
    width: 160px;
    height: 45px;
    border: 1px solid #707070;
    background-color: #fff;
    padding: 3px;
}
.time-bar__box{
    width: 100%;
    height: 100%;
    border: 1px solid #707070;
}
.time-bar__value{
    width: 100%;
    height: 100%;
    background: #74FC54;
background: linear-gradient(90deg,rgba(116, 252, 84, 1) 0%, rgba(116, 255, 207, 1) 100%);
}
.tour-ui__time-count{
    margin-top: .5rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: right;
    padding-right: 7%;
}

.ent-btn{
        margin-top: 3rem;
    text-decoration: none;
    background: #38A4FF;
    padding: 15px 30px;
    color: #fff;
    border-radius: 30px;
    font-size: 1.125rem;
    letter-spacing: .05em;
}
.tour-ui__speed-area{
        margin-top: .5rem;
}
.speed-icon {
            display: inline-flex;
            align-items: center;
            gap: 2px;
        }
         /* 基本的なスタイル */
        .arrow-basic {
            width: 0;
            height: 0;
            border-left: 12px solid #fff;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }
        .speed-label{
            color: #fff;
    margin-left: 6px;
    font-size: 1.125rem;
        }

@media screen and (max-width: 850px) {
  .tour-ui__frame_left-top{
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
}
.tour-ui__frame_left-bottom{
    border-bottom: 4px solid #fff;
    border-left: 4px solid #fff;
}

.tour-ui__frame_right-top{
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
}

.tour-ui__frame_right-bottom{
    border-bottom: 4px solid #fff;
    border-right: 4px solid #fff;
} 
.tour-ui__center-frames{
    width: 39%;
    min-width: 120px;
    height: 11%;
}
.time-bar{
        width: 130px;
    height: 38px;
}
.tour-ui__time-count{
        font-size: 1.25rem;
        margin-top: .25rem;
}
.tour-ui__message-area{
    width: 85%;
}
.tour-ui__message-area.active{
        bottom: 34px;
}
.main-text{
    font-size: 1rem;
}
}

/* 画像スライダー スタイル */
.pop-img-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pop-img-slider .slider-container {
    position: relative;
    width: 100%;
    height: auto;
}

.pop-img-slider .slider {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.pop-img-slider .slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.pop-img-slider .slide.active {
    opacity: 1;
    display: block;
}

.pop-img-slider .slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.pop-img-slider .navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: none; /* ナビゲーションを非表示 */
}

.pop-img-slider .indicators {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.pop-img-slider .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pop-img-slider .indicator.active {
    background-color: #ffffff;
    transform: scale(1.2);
    border-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pop-img-slider .indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* レスポンシブ対応 */
@media screen and (max-width: 850px) {
    .pop-img-slider {
        max-width: 100%;
        border-radius: 6px;
    }
    
    .pop-img-slider .slide img {
        border-radius: 6px;
    }
    
    .pop-img-slider .navigation {
        bottom: 15px;
    }
    
    .pop-img-slider .indicator {
        width: 10px;
        height: 10px;
    }
    
    .pop-img-slider .indicators {
        gap: 6px;
    }
}

/* ツアーモーダルスキップボタン */
.tour-modal__skip-btn {
    /* position: absolute; */
    /* bottom: 20px;
    right: 20px; */
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    font-family: inherit;
    flex: none;
}

.tour-modal__skip-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

.tour-modal__skip-btn:active {
    transform: translateY(0);
}

@media screen and (max-width: 850px) {
    .tour-modal__skip-btn {
        /* bottom: 15px;
        right: 15px; */
        padding: 6px 12px;
        font-size: 12px;
    }
}
