@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    color: #1A1A1A;
}

img{
    width: 100%;
    height: auto;
    display: block;
}

.hover_opcity:hover{
    opacity: 0.6;
}

.no-link {
  pointer-events: none;
}

body.rock{
    overflow: hidden;
}

.sp{
    display: none;
}

.tab{
    display: none;
}


.container_1395{
    max-width: 1395px;
    width: 95%;
    margin: auto;
    height: 100%;
}

.container_1440{
    max-width: 1440px;
    width: 95%;
    margin: auto;
    height: 100%;
}

.container_1530{
    max-width: 1530px;
    width: 95%;
    margin: auto;
    height: 100%;
}

@media screen and (max-width:1190px){
    .tab{
        display: block;
    }
}

@media screen and (max-width:500px){
    .sp{
        display: block;
    }
    .sp_none{
        display: none!important;
    }
}


/*header*/
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1A1A1A;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    transition: .5s;
    z-index: 1000;
}

header h1{
    width: 190px;
}

header nav{
    height: 100%;
}

header nav > ul{
    height: 100%;
    display: flex;
    align-items: center;
}

header nav ul li{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    height: 100%;
}

header nav > ul > li > a{
    color: #fff;
    padding: 0 20px; 
    height: 100%;
    display: block;
    display: flex;
    align-items: center;
}

header nav > ul > li{
    position: relative;
}

header nav > ul > li > ul{
    position: absolute;
    top: calc(100% - 20px);
    left: 0;
    right: 0;
    margin: auto;
    width: 180px;
    transform: scaleY(0) translateX(-25%);
    transform-origin: center top; 
    transition: transform .3s;
    z-index: 10;
}

@media screen and (min-width:1050px){
    header nav > ul > li:hover > ul{
        transform: scaleY(1) translateX(-25%);
    }
}

header nav > ul > li > ul > li a{
    color: #1A1A1A;
    padding: 20px 10px;
    min-width: 180px;
    background-color: #F8F4EC;
    text-align: center;
    display: block;
}

header nav > ul > li > ul > li:not(:last-child) a{
    border-bottom: 1px solid #B8B8B8;
}

@media screen and (min-width:1050px){
    header nav > ul > li > ul > li:hover a{
        background-color: #EDE7DA;    
    }
}

@media screen and (max-width:1050px){
    header{
        height: 50px;
        padding: 0 20px;
    }
    header h1 {
        width: 130px;
        display: flex;
        align-items: center;
    }
    header nav{
        position: fixed;
        top: 50px;
        right: 0;
        left: auto;
        min-width: 375px;
        background-color: rgba(64,64,64,0.95);
        transform: translateX(100%);
        transition: .5s;
    }
    header nav > ul{
        display: block;
        padding: 10px 15px;
        overflow-y: auto;
    }
    header nav > ul > li{
        width: 100%;
        height: auto;
    }
    header nav > ul li a{
        font-size: 18px;
        font-size: 300;
        border-bottom: solid 0.7px #6F6F6F;
        padding-left: 20px;
        padding-bottom: 15px;
        padding-top: 15px;
        position: relative;
    }

    header nav > ul > li > ul > li:not(:last-child) a{
        border-bottom: dotted 0.7px #6F6F6F;
    }

    header nav > ul > li > ul > li:last-child a{
        border: none;
    }

    header nav > ul li a::after{
        background-image: url(../img/common/sq_\ arrow.svg);
        background-repeat: no-repeat;
        background-size: 19px 19px;
        width: 19px;
        height: 19px;
        position: absolute;
        right: 10px;
        top: 0;
        bottom: 0;
        margin: auto;
        content: '';
    }

    header nav > ul > li > ul{
        position:static;
        transform: none;
        padding-left: 40px;
        border-bottom: solid 0.7px #6F6F6F;
        width: 100%;
        transform: scaleY(1);
    }
    header nav > ul > li > ul > li a{
        background: none;
        text-align: left;
        color: #C6C6C6;
        min-width: auto;
        padding-left: 20px;
    }
}


@media screen and (max-width:600px){
    header nav{
        left: 0;
        width: 100%;
    }
}


.hamburger {
    position: relative;
    height: 20px;
    width: 28px;
    display: inline-block;
    box-sizing: border-box;
    display: none;
}

.hamburger div {
    position: absolute;
    left: 0;
    height: 1px;
    width: 28px;
    background-color: #fff;
    border-radius: 2px;
    display: inline-block;
    box-sizing: border-box;
    transition: all .5s;
  }
  .hamburger div:nth-of-type(1) {
    bottom: 20px;
  }
  .hamburger div:nth-of-type(2) {
    bottom: 10px;
  }
  .hamburger div:nth-of-type(3) {
    bottom: 0;
  }
  .hamburger.active div:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .hamburger.active div:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger.active div:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }


  @media screen and (max-width: 1050px) {
    .hamburger {
        display: block;
    }
    header nav.active {
        transform: translateX(0);
        overflow-y: auto;
    }
}


/***************************************/
/*************   footer   **************/
/***************************************/

section.reservation{
    background-image: url(../img/top/pc/sq-reservation_l_bk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

section.reservation h2{
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 100%;
    letter-spacing: 6%;
    text-align: center;
    margin-bottom: 40px;
}

section.reservation h3{
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 6%;
    text-align: center;
    margin-bottom: 80px;
}

.reservation_btn{
    max-width: 1040px;
    width: 95%;
    margin: auto;
    display: flex;
    gap: 40px;
}

section.reservation p{
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 1.2px;
    text-align: center;
    margin-bottom: 80px;
}

.reservation_btn a{
    width: calc(50% - 20px);
    background-color: rgba(255,255,255,0.65);
    border: solid 1px #1A1A1A;
    padding: 27px 0;
    display: block;
    text-align: center;
    transition: .5s;
}

.reservation_btn a span{
    position: relative;
}

.reservation_btn a span::after{
    content: '';
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    height: 30px;
    width: 30px;
    background-image: url(../img/common/sq-outlink.svg);
    position: absolute;
    right: -60px;
    bottom: 0;
    top: 0;
    margin: auto;
}

.reservation_btn a:hover{
    background-color: rgba(0,0,0,0.65);
}

.reservation_btn a:hover span{
    color: #fff;
}

.reservation_btn a:hover span::after{
    background-image: url(../img/common/sq-outlink_wh.svg);
}


footer{
    background-color: #1A1A1A;
    padding: 80px 0 50px 0;
}

footer *{
    color: #fff;
}

footer .footer_logo{
    width: 217px;
    margin: auto;
    margin-bottom: 50px;
}

footer ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

footer ul li{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
}

footer .address{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 200%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 50px;
}

footer .address span{
    font-size: 16px;
}

footer small{
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 5%;
    text-align: center;
    display: block;
}

@media screen and (max-width:960px){
    section.reservation{
        padding: 72.5px 0;
        background-image: url(../img/top/tab/sq-reservation_m_bk.jpg);
    }
    section.reservation h2{
        font-size: 32px;
        margin-bottom: 30px;
    }
    section.reservation h3{
        font-size: 18px;
        margin-bottom: 60px;
    }
    section.reservation p{
        font-size: 18px;
        margin-bottom: 30px;
    }
    .reservation_btn{
        flex-direction: column;
        gap: 30px;
        justify-content: center;
    }
    .reservation_btn a{
        width: 100%;
        max-width: 344px;
        margin: auto;
    }
    .reservation_btn a span::after{
        right: -28px;
        background-size: 18px 18px;
        width: 18px;
        height: 18px;
    }   
}


@media screen and (max-width:600px){
    section.reservation{
        padding: 70px 15px;
        background-image: url(../img/top/sp/sp-sq-reservation_bk.jpg);
    }
    .reservation_btn{
        width: 100%;
    }
    footer{
        padding: 75px 30px 50px 30px;
    }
    footer .footer_logo{
        width: 225px;
    }
    footer ul{
        gap: 25px 30px;
        margin-bottom: 70px;
    }
    footer ul li{
        font-size: 18px;
    }
    footer .address{
        font-size: 21px;
        line-height: 150%;
    }
    footer .address span{
        font-size: 14px;
        line-height: 130%;
    }
    footer small{
        font-size: 14px;
    }
}

@media screen and (max-width:340px){
    .reservation_btn a{
        font-size: 14px;
    }   
}


/* 部品 */

/*トップタイトル01*/

.top_title_01 h2{
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 100%;
    letter-spacing: 4.2px;
    margin-bottom: 60px;
}

.top_title_01 h3{
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    margin-bottom: 50px;
}

.top_title_01 p{
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 180%;
}


@media screen and (max-width:1200px){
    .top_title_01 h2{
        font-size: 32px;
        margin-bottom: 30px;
    }
    .top_title_01 h3{
        font-size: 20px;
        margin-bottom: 30px;
    }
    .top_title_01 p{
        font-size: 17px;
    }
}

@media screen and (max-width:710px){
    .top_title_01 h2{
        font-size: 20px;
    }
    .top_title_01 h3{
        font-size: 16px;
    }
    .top_title_01 p{
        font-size: 14px;
    }
}


@media screen and (max-width:600px){
    .top_title_01 h2{
        font-size: 30px;
        margin-bottom: 40px;
        text-align: center;
    }
    .top_title_01 h3{
        font-size: 20px;
        line-height: 180%;
        text-align: center;
        margin-bottom: 40px;
    }
    .top_title_01 p{
        font-size: 16px;
        line-height: 180%;
        text-align: center;
    }
}


/*トップタイトル02*/

.top_title_02 h2{
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 70px;
    line-height: 100%;
    letter-spacing: 4.2px;
    text-align: center;
    margin-bottom: 40px;
}

.top_title_02 p{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 1.2px;
    text-align: center;
}

@media screen and (max-width:1190px){
    .top_title_02 h2{
        font-size: 30px;
        margin-bottom: 30px;
        letter-spacing: 1.8px;
    }
    .top_title_02 p{
        font-size: 17px;
        letter-spacing: 1.02px;
    }
}


/*下層ページタイトル01*/

.lower_title_01{
    margin-bottom: 80px;
}

.lower_title_01 h2{
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 52px;
    line-height: 180%;
    letter-spacing: 6%;
    text-align: center;
    margin-bottom: 40px;
}

.lower_title_01 h3{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 6%;
    text-align: center;
}


@media screen and (max-width:1200px){
    .lower_title_01 h2{
        font-size: 32px;
        margin-bottom: 30px;
    }
    .lower_title_01 h3{
        font-size: 18px;
        margin-bottom: 0;
    }
    .lower_title_01{
        margin-bottom: 60px;
    }
}

@media screen and (max-width:710px){
    .lower_title_01 h2{
        font-size: 20px;
    }
    .lower_title_01 h3{
        font-size: 16px;
    }
}


@media screen and (max-width:600px){
    .lower_title_01 h2{
        font-size: 30px;
        margin-bottom: 30px;
        text-align: center;
    }
    .lower_title_01 h3{
        font-size: 17px;
        line-height: 180%;
        text-align: center;
    }
    .lower_title_01{
        margin-bottom: 40px;
    }
}



/*下層ページタイトル02*/

.lower_title_02{
    margin-bottom: 80px;
}

.lower_title_02 h2{
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 180%;
    letter-spacing: 6%;
    text-align: center;
}

@media screen and (max-width:765px){
    .lower_title_02 h2{
        font-size: 26px;
    }
    .lower_title_02{
        margin-bottom: 60px;
}
}


@media screen and (max-width:600px){
    .lower_title_02 h2{
        font-size: 22px;
    }
    .lower_title_02{
        margin-bottom: 50px;
    }
}


/*下層ページタイトル03*/

.lower_title_03{
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 0.7px solid #B8B8B8;
}

.lower_title_03 h2{
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 180%;
    letter-spacing: 6%;
    text-align: center;
}

@media screen and (max-width:765px){
    .lower_title_03 h2{
        font-size: 26px;
    }
    .lower_title_03{
        margin-bottom: 50px;
        padding-bottom: 30px;
    }
}


@media screen and (max-width:600px){
    .lower_title_03 h2{
        font-size: 22px;
    }
}


/*lower_page_mv*/

.lower_page_mv{
    position: relative;
    margin-top: 80px;
}

.lower_page_mv h1{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 54px;
    line-height: 100%;
    letter-spacing: 3.24px;
    text-align: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
}

.lower_page_mv picture{
    height: 100%;
    display: block;
}

.lower_page_mv img{
    object-fit: cover;
    height: 300px;
}

@media screen and (max-width:1190px){
    .lower_page_mv{
        margin-top: 50px;
    }
    .lower_page_mv h1{
        font-size: 36px;
        letter-spacing: 2.16px;
    }
    .lower_page_mv img{
        height: 200px;
    }
}


@media screen and (max-width:765px){
    .lower_page_mv h1{
        font-size: 24px;
        letter-spacing: 0.72px;
    }
    .lower_page_mv img{
        height: 100px;
    }
}


/*lower_box*/
.lower_box{
    padding: 120px 0;
    background-color: #F8F4EC;
}

.lower_box_inner.flex{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.lower_box_inner.flex .lower_box_content{
    width: calc(50% - 15px);
}

.lower_box ul{
    margin-bottom: 30px;
}

.lower_box ul li{
   font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 190%;
    letter-spacing: 0%;
    position: relative;
    padding-left: 20px;
}

.lower_box ul li::before{
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    content: '・';
}

.lower_box ul li a{
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%; 
    text-decoration-skip-ink: auto;
}

.lower_box table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
}

.lower_box table tr{
    border-top: solid 0.7px #000;
}

.lower_box table tr:last-child{
    border-bottom: solid 0.7px #000;
}

.lower_box table tr td,.lower_box table tr th{
   font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 190%;
    letter-spacing: 0%;
    padding: 20px 0;
}

.lower_box table tr th{
    padding-left: 25%;
    text-align: left;
}

.lower_box table tr td{
    padding-right: 15%;
    text-align: right;
}

.lower_box_content h2{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 40px;
}

.lower_box_content p{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 190%;
    letter-spacing: 0%;
}

@media screen and (max-width:1190px){
    .lower_box{
        padding: 80px 0;
    }
    .lower_box .container_1440{
        max-width: 605px;
    }
    .lower_box_inner.flex{
        flex-direction: column;
        gap: 60px;
    }
    .lower_box_inner.flex .lower_box_content{
        width: 100%;
    }
    .lower_box ul{
        margin-bottom: 50px;
    }
    .lower_box ul li{
        font-size: 16px;
    }
    .lower_box table{
        max-width: 543px;
    }
    .lower_box table tr td, .lower_box table tr th{
        font-size: 16px;
    }
    .lower_box_content h2{
        font-size: 20px;
    }
    .lower_box_content p{
        font-size: 16px;
    }
}

@media screen and (max-width:765px){
    .lower_box{
        padding: 70px 0;
    }
    .lower_box_inner.flex{
        gap: 70px;
    }
    .lower_box ul {
        margin-bottom: 30px;
    }
    .lower_box_content h2{
        font-size: 18px;
        margin-bottom: 30px;
    }
    .lower_box ul li,.lower_box table tr td, .lower_box table tr th,.lower_box_content p{
        font-size: 15px;
    }
    .lower_box table tr th {
        padding-left: 15%;
        width: 55%;
    }
    .lower_box table tr td {
        padding-right: 18%;
    }
}



/*facility_link*/

/* .facility_link{
    padding: 120px 0;
} */

.facility_link_inner{
    position: relative;
    height: 376px;
}

.facility_link_inner > picture{
    height: 100%;
}

.facility_link_inner > picture > img{
    object-fit: cover;
    height: 100%;
}

.facility_link_content{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    flex-direction: column;
}

.facility_link_content h2{
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 2.4px;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.facility_link_content img{
    width: 100px;
    margin-bottom: 40px;
}   

.facility_link_content a{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
    padding: 26px 115px 26px 50px;
    border: solid 0.8px #fff;
    background-color: rgba(26,26,26,0.2);
    position: relative;
    transition: .5s;
}

.facility_link_content a:after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50px;
    background-image: url(../img/common/sq_\ arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px 35px;
    width: 35px;
    height: 35px;
    content: '';
    margin: auto;
    transition: .5s;
}

.facility_link_content a:hover{
    background-color: rgba(255,255,255,0.65);
    color: #1A1A1A;
    border-color: #1A1A1A;
}   

.facility_link_content a:hover:after{
    background-image: url(../img/common/sq_\ arrow_bk.svg);
}

@media screen and (max-width:1190px){
     .facility_link_inner{
        height: 282px;
    }   
    .facility_link_content h2{
        font-size: 26px;
        margin-bottom: 20px;
    }
    .facility_link_content img{
        width: 75px;
        margin-bottom: 40px;
    }
    .facility_link_content a{   
        font-size: 16px;
        padding: 23px 106px 23px 50px;
    }
    .facility_link_content a:after{
        background-size: 26px 26px;
        width: 26px;
        height: 26px;
    }

}

@media screen and (max-width:765px){
    .facility_link_inner{
        height: 377px;
    }
    .facility_link .container_1440{
        width: 100%;
    }
    .facility_link_content h2{
        font-size: 28px;
        margin-bottom: 30px;
    }
    .facility_link_content img{
        width: 89px;
        margin-bottom: 57px;
    }
    .facility_link_content a{   
        font-size: 18px;
        padding: 26px 96px 26px 50px;
    }
    .facility_link_content a:after{
        background-size: 25px 25px;
        width: 25px;
        height: 25px;
    }
}


@media screen and (max-width:350px){    
    .facility_link_content a:after{
        right: 10px;
    }
    .facility_link_content a {
        padding: 20px 80px 20px 20px;
    }
}

/*facility_menu*/

.facility_menu_inner{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 30px;
    padding: 100px 0;
}

.facility_menu_btn{
    border-bottom: 2px solid #B8B8B8;
    text-align: center;
    cursor: pointer;
    width: calc((100% / 3) - 25px);
}

.facility_menu_btn.active{
    border-color: #004CA0;
}

.facility_menu_btn_title{
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 1.8px;
    text-align: center;
    color: #B8B8B8;
    margin-bottom: 30px;
}

.facility_menu_btn.active .facility_menu_btn_title{
    color: #004CA0;
}

.facility_menu_btn svg{
    width: 90px;
    height: 80px;
    object-fit: cover;
    margin: auto;
    margin-bottom: 30px;
    display: block;
}

.facility_menu_btn svg path{
    fill: #B8B8B8;
}

.facility_menu_btn.active svg path{
    fill: #004CA0;
}

@media screen and (max-width:1190px){
    .facility_menu_inner{
        padding: 60px 0;
    }
    .facility_menu_btn_title{
        font-size: 23px;
        margin-bottom: 20px;
    }
    .facility_menu_btn svg{
        width: 61px;
        height: 60px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:765px){
    .facility_menu_inner{
        padding: 50px 0;
    }
    .facility_menu_btn_title{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .facility_menu_btn_title .sp{
        display: block;
    }
    .facility_menu_btn svg{
        width: 58px;
        margin-bottom: 10px;
    }
}


/* モーダル */

.modal-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-out;
  z-index: 1000;
}

.modal-container::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container.active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 1000px;
  width: 90%;
  height: 90%;
}

.modal-close {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: -40px;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}

.modal-close::before, .modal-close::after { 
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px; 
  height: 30px;
background-color: #fff;
}

.modal-close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.modal-content {
  background: #fff;
  border: 2px solid #000;
  text-align: left;
  /* padding: 30px; */
  font-weight: bold;
  overflow: auto;
  height: 100%;
}

.modal-content picture{
    min-height: 100%;
}

@keyframes mapmove {
  0% { transform: translateX(0) }
  90% { transform: translateX(-30px) }
  100% { transform: translateX(0)}
}

.modal-content img{
    height: 100%;
    object-fit: cover;
}


.box_content_image{
    position: relative;
}

.box_content_image .plus_btn{
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 23px;
    z-index: 5;
    cursor: pointer;
}

.box_content_image .plus_btn img{
    margin-bottom: 0;
}

@media screen and (max-width:765px){
    .modal-close {
        top: -30px;
        right: 5px;
    }
    .modal-body{
        width: 98%;
        /* height: 80%; */
    }
    .modal-content img{
        overflow-x: auto;
        width: auto;
    }
    .modal-content img.acitve{
        animation: mapmove 2s linear infinite;
    }
}

.facility_show:not(.active){
    display: none;
}

.swiper-slide .caption{
    display: none;
}

.modal-content_image_box{
    width: 100%;
    height: 100%;
    position: relative;
}


.arrow_cover{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin: auto;
    display: flex;
    gap: 20px;
    z-index: 100;
    opacity: 0;
    transition: .5s;
}

@media screen and (max-width:765px){
    .arrow_cover.acitve{
        opacity: 1;
    }
}

@keyframes arrow {
  0% { transform: translateX(0) }
  50% { transform: translateX(20px)}
  100% { transform: translateX(0)}
}


.arrow {
  position: relative;
  display: inline-block;
    width: 25px;
    height: 30px;
    animation: arrow 2s linear infinite;
}

.arrow:nth-child(2) {
    animation-delay: .2s;
}

.arrow:nth-child(3) {
    animation-delay: .4s;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 45px;
  height: 4px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 2px) 50%;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}