@charset "utf-8";

/* 全体の共通
------------------------------*/
.content{
    display: flex;
    font-family: "Noto Sans JP", sans-serif;
}
.inner{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 10px;
}
.sp{
    display: none !important;
}
@media only screen and (max-width: 1700px) {
    .inner{
        max-width: 75vw;
    }
}
@media only screen and (max-width: 768px) {
    .inner{
        width: 100%;
        max-width: none;
        padding: 0 20px;
    }
    .pc{
        display: none !important;
    }
    .sp{
        display: block !important;
    }
}

.ctt{
    display: block;
    margin: 0 0 0 auto;
    width: calc(100% - 22.69vh);
}
@media only screen and (max-width: 768px) {
    .ctt{
        width: 100% !important; 
        margin: 0 0 14.933333333333335vw;
    }
}


/* ヘッダー
------------------------------*/
header{
    display: none;
}
@media only screen and (max-width: 768px) {
    header{
        display: block !important;
        z-index: 100;
    }
    .menu_bg {
        position: fixed;
        top: 0;
        right: 0;
        width: 18.666666666666668vw;
        height: 15.466666666666667vw;
        transition: all .3s;
    }
    .menu_bg.bg-active {
        background-color: #000;
        z-index: 77;
        transition: all .3s;
    }
    .menu {
        display: block !important;
        width: 10.666666666666668vw;
        height: 7.466666666666668vw;
        position: fixed;
        top: 4vw;
        right: 4vw;
        cursor: pointer;
        z-index: 1100;
    }
    .menu span {
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        position: absolute;
        left: 0;
        transition: all 0.3s;
    }
    .menu span:nth-child(1) {
        top: 0;
    }
    .menu span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    .menu span:nth-child(3) {
        bottom: 0;
    }
    .navmn {
        display: block !important;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 100%;
        height: 100vh;
        z-index: 1000;
        overflow: hidden; 
        visibility: hidden;
        transition: all 0.3s;
    }
    .navmn.is-open {
        visibility: visible;
        transform: translateX(0%);
    }
    .navmn .is-open {
        transform: translateX(0);
        transition: 0.5s ease-out 0.1s;
    }
    .menu.is-active span:nth-child(2) {
        opacity: 0;
    }
    .menu.is-active span:nth-child(1) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(35deg);
    }
    .menu.is-active span:nth-child(3) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-35deg);
    }
    .navmn .navmn_box{
        height: 100%;
        position: relative;
        overflow-y: scroll;
    }
    .navmn .navmn_box>.note{
        position: absolute;
        top: 4.8vw;
        left: 5.333333333333334vw;
        font-size: 3.8666666666666667vw;
        letter-spacing: 0.05em;
        color: #fff;
    }
    .navmn .top_area{
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .navmn .logo{
        padding: 0;
        background-color: #000000;
    }
    .navmn .logo a img{
        display: block;
        margin: 16vw auto 4.53vw;
        max-width: 40vw;
    }
    .navmn .nav{
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .navmn .nav-list li a{
        display: flex;
        align-items: center;
        gap: 5.6000000000000005vw;
        font-size: 4.8vw;
        font-weight: 600;
        letter-spacing: 0.05em;
        line-height: 1;
        background-color: #06042E;
        color: #fff;
        border-top: 1px solid #fff;
        width: 100%;
        padding: 5.866666666666666vw 0;
    }
    .navmn .nav-list li:last-child a{
        border-bottom: 1px solid #fff;
    }
    .navmn .nav-list li a::before{
        content: "";
        width: 4vw;
        height: 0.26666666666vw;
        background-color: #F0C200;
    }
    .navmn .nav-list li a:hover{
        opacity: 1;
        color: #06042F;
        background-color: #F0C200;
    }
    .navmn .nav-list li a:hover::before{
        background-color: #000000;
    }
    .navmn .sns_area{
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5.3333333334vw;
        background-color: #06042E;
        padding: 10.66666666666668vw 0;
    }
    .navmn .sns_area .item a img{
        display: block;
        max-width: 10.66666666666668vw;
    }
    .navmn .contact a{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0.533333333333vw;
        padding: 4.8vw 0 6.4vw;
        background-color: #83040A;
    }
    .navmn .contact a .en_img img{
        max-width: 10.83vh;
        width: 100%;
    }
    .navmn .contact a p{
        font-size: 1.85vh;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-align: center;
        color: #fff;
    }
}


/* サイドバー
------------------------------*/
.sidebar{
    position: fixed;
    top: 0;
    left: 0;
    max-width: 22.69vh;
    width: 100%;
    background-color: #06042E;
}
.sidebar .top_area{
    display: flex;
    flex-direction: column;
    max-height: 87.96vh;
    height: 100vh;
}
.sidebar .logo{
    padding: 2.78vh 2.31vh 5.83vh;
    background-color: #000000;
}
.sidebar .logo a img{
    display: block;
    max-width: 18.24vh;
}
.sidebar .nav{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sidebar .nav-list li a{
    display: flex;
    align-items: center;
    gap: 1.85vh;
    font-size: 1.67vh;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    background-color: #06042E;
    color: #fff;
    border-top: 1px solid #fff;
    width: 100%;
    padding: 2.31vh 0;
}
.sidebar .nav-list li:last-child a{
    border-bottom: 1px solid #fff;
}
.sidebar .nav-list li a::before{
    content: "";
    width: 15px;
    height: 1px;
    background-color: #F0C200;
}
.sidebar .nav-list li a:hover{
    opacity: 1;
    color: #06042F;
    background-color: #F0C200;
}
.sidebar .nav-list li a:hover::before{
    background-color: #000000;
}
.sidebar .sns_area{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #06042E;
    padding-bottom: 1.85vh;
}
.sidebar .sns_area .item a img{
    display: block;
    max-width: 3.70vh;
}
.sidebar .contact a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    padding: 3.24vh 0 3.06vh;
    background-color: #83040A;
}
.sidebar .contact a .en_img img{
    max-width: 10.83vh;
    width: 100%;
}
.sidebar .contact a p{
    font-size: 1.85vh;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
}
@media only screen and (max-width: 768px) {
    .sidebar{
        display: none !important;
    }
}


/* フッター
------------------------------*/
#footer{
    background-color: #000000;
}
#footer .footer_top{
    padding: 43px 0 50px;
    border-bottom: 1px solid #FFFFFF;
}
#footer .footer_top .logo a img{
    display: block;
    max-width: 197px;
    width: 100%;
    margin: 0 auto 24px;
}
#footer .footer_top .name{
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 0 auto 20px;
    color: #fff;
}
#footer .footer_top address{
    font-size: 16px;
    font-style: normal;
    text-align: center;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #fff;
}
#footer .footer_bottom{
    padding: 23px 0 26px;
} 
#footer .footer_bottom ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    margin: 0 auto 40px;
}
#footer .footer_bottom ul li a{
    display: block;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    transition: all .3s;
}
#footer .footer_bottom ul li a:hover{
    color: #F0C200;
    opacity: 1;
}
#footer .footer_bottom small{
    display: block;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
}
@media only screen and (max-width: 768px) {
    #footer .footer_top{
        padding: 8vw 0 10.666666666666668vw; 
    }
    #footer .footer_top .logo a img{
        display: block;
        max-width: 48vw;
        width: 100%;
        margin: 0 auto 5.3333333333334vw;
    }
    #footer .footer_top .name{
        font-size: 4.8vw;
        margin: 0 auto 5.333333334vw;
    }
    #footer .footer_top address{
        font-size: 3.7333333333334vw;
        line-height: 1.75;
    }
    #footer .footer_bottom{
        padding: 4.8vw 0 6.666666667vw;
    } 
    #footer .footer_bottom ul{
        gap: 5.333333334vw;
        margin: 0 auto 8vw;
    }
    #footer .footer_bottom ul li a{
        font-size: 4vw;
    }
    #footer .footer_bottom small{
        font-size: 3.2vw;
    }
}



/* mv */
#top .mv{
    position: relative;
    padding: 7.50vh 0 14.44vh;
    background-image: url(../img/mv_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 87.96vh;
    height: 100vh;
    overflow: hidden;
}
#top .mv .logo img{
    display: block;
    max-width: 35.83vh;
    width: 100%;
    margin: 0 auto 3.61vh;
}
#top .mv .txt{
    color: #fff;
}
#top .mv .txt h1{
    font-size: 8.33vh;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.02em;
    line-height: 1.22;
    margin: 0 auto 1.30vh;
}
#top .mv .txt h1 span{
    color: #F0C200;
}
#top .mv .txt p{
    font-size: 2.31vh;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.06em;
}
#top .mv .note{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px ;
    letter-spacing: 0.06em;
    color: #fff;
}
#top .mv .triangle{
    position: absolute;
    right: 0;
    bottom: 0;
}
#top .mv .triangle .img{
    position: relative;
}
#top .mv .triangle-img{
    display: block;
    width: 100%;
    max-width: 55.56vh;
    max-height: 55.56vh;
}
#top .mv .void_element{
    display: block;
    width: 100%;
    width: 55.56vh;
    height: 55.56vh;
}
#top .mv .marquee{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    white-space: nowrap;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#top .mv .marquee__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    width: fit-content;
    animation: loop-text 45s linear infinite;
}
#top .mv .marquee__inner img {
    display: block;
    width: 742px;
    flex-shrink: 0;
    margin: 0;
}
@keyframes loop-text {
  0% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 768px) {
    #top .mv{
        padding: 13.333333334vw 0 48.93333333333334vw;
        background-image: url(../img/mv_bg_sp.jpg);
        overflow: hidden;
        height: auto;
        max-height: none;
    }
    #top .mv .logo img{
        display: block;
        max-width: 58.666666666666664vw;
        width: 100%;
        margin: 0 auto 2px;
    }
    #top .mv .txt{
        color: #fff;
    }
    #top .mv .txt h1{
        font-size: 9.2vw;
        font-weight: 900;
        text-align: center;
        letter-spacing: 0.02em;
        line-height: 1.29;
        margin: 0 auto 2vw;
    }
    #top .mv .txt h1 span{
        color: #F0C200;
    }
    #top .mv .txt p{
        font-size: 4.533333vw;
        font-weight: 500;
        line-height: 1.76;
        text-align: center;
        letter-spacing: 0.06em;
    }
    #top .mv .triangle{
        position: absolute;
        right: 0;
        bottom: 0;
    }
    #top .mv .triangle .img{
        position: relative;
    }
    #top .mv .triangle-img{
        display: block;
        width: 100%;
        max-width: 63.33333333333333vw;
        max-height: 63.33333333333333vw;
    }
    #top .mv .void_element{
        display: block;
        width: 100%;
        width: 63.33333333333333vw;
        height: 63.33333333333333vw;
    }
    #top .mv .marquee__inner {
        gap: 2.66666666667vw;
        animation: loop-text 20s linear infinite;;
    }
    #top .mv .marquee__inner img {
        width: 106.66666666666667vw;
    }
}


/* about */
#top .about{
    position: relative;
    padding: 120px 0 180px;
    background-image: url(../img/main_bg.jpg);
    background-position: top;
}
#top .about .arrow{
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}
#top .about .arrow a{
    transition: all .3s;
}
#top .about .about_inner{
    padding-top: 80px;
    justify-content: right;
    display: flex;
    gap: 80px;
}
#top .about .txt{
    max-width: 590px;
    width: 100%;
}
#top .about .txt .label{
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    background-color: #000000;
    color: #fff;
    padding: 7px 16px 9px 17px;
    margin: 0 0 35px;
}
#top .about .txt h2 img{
    display: block;
    margin: 0 0 43px;
}
#top .about .txt h3{
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.44;
    margin: 0 0 40px;
}
#top .about .txt .note{
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 2;
    margin: 0 0 35px;
}
#top .about .txt .cation_note{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #83040A;
}
@media only screen and (max-width: 1800px) {

}
@media only screen and (max-width: 1800px) {
    #top .about .about_inner{
        padding-left: 20px;
    }
    #top .about .txt{
        max-width: 36vw;
        width: 590px;
    }
    #top .about .img img{
        display: block;
        max-width: 45vw;
    }
}
@media only screen and (max-width: 768px) {
    #top .about{
        padding: 16vw 0 0px;
    }
    #top .about .arrow{
        display: none;
    }
    #top .about .about_inner{
        padding-top: 0;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        gap: 8vw;
    }
    #top .about .txt{
        padding: 0 5.333333334vw;
        max-width: none;
        width: 100%;
    }
    #top .about .txt .label{
        font-size: 3.733333333334vw;
        padding: 0.9333333335vw 2.13333333333vw 1.2vw;
        margin: 0 0 4.8vw;
    }
    #top .about .txt h2 img{
        display: block;
        max-width: 57.06666666666666vw;
        margin: 0 0 5.33333333334vw;
    }
    #top .about .txt h3{
        font-size: 6.4vw;
        margin: 0 0 2.6666666667vw;
    }
    #top .about .txt .note{
        font-size: 3.7333334vw;
        line-height: 1.75;
        margin: 0 0 4vw;
    }
    #top .about .txt .cation_note{
        font-size: 4vw;
        line-height: 1.73;
    }
    #top .about .img img {
        max-width: none;
        width: 100%;
    }
}



/* facility */
#top .facility{
    padding: 120px 0 60px;
    background-image: url(../img/facility_bg.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}
#top .facility .ttl_area{
    margin: 0 auto 67px;
    text-align: center;
}
#top .facility .ttl_area .label{
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    padding: 7px 15px 9px;
    margin: 0 0 36px;
    background-color: #FFCE00;
}
#top .facility .ttl_area h2 img{
    display: block;
    margin: 0 auto;
}
#top .facility .slider_ctt{
    margin: 0 0 172px;
    position: relative;
}
#top .facility .slider_ctt .slider_bg {
    margin: 0 0 20px;
}
#top .facility .slider_ctt .slider_bg img{
    display: block;
    width: 100%;
    border: 1px solid #fff;
}
#top .facility .slider_ctt .name_note{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    color: #fff;
    margin: 0 auto 53px;
}
#top .facility .slider_ctt .slider_thumbnail{
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
#top .facility .slider_ctt .facility_prev_arrow,
#top .facility .slider_ctt .facility_next_arrow{
    content: url(../img/facility_slide_arrow.svg);
    position: absolute;
    cursor: pointer;
    z-index: 101;
}
#top .facility .slider_ctt .facility_prev_arrow{
    bottom: 75px;
    left: -40px;
    transform: scale(-1);
}
#top .facility .slider_ctt .facility_next_arrow{
    bottom: 80px;
    right: -40px;
}
#top .facility .slider_ctt .small_slider_item{
    padding: 0 10px;
}
#top .facility .slider_ctt .small_slider_item .img{
    position: relative;
}
#top .facility .slider_ctt .small_slider_item img{
    border: 1px solid #FFFFFF;
    margin: 0 0 14px;
    cursor: pointer;
}
#top .facility .slider_ctt .slick-current .small_slider_item .img::before{
    content: "";
    box-sizing: border-box;
    border: 3px solid #F0C200;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#top .facility .slider_ctt .small_slider_item p{
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05em;
    color: #fff;
}
#top .facility .slider_ctt .slick-dots {
    bottom: -72px;
    transform: none;
    z-index: 100;
    justify-content: center;
    color: transparent;
}
#top .facility .slider_ctt .slick-dots li button{
    width: 12px;
    height: 12px;
    transition: all .3s;
}
#top .facility .slider_ctt .slick-dots li button:before{
    content: "";
    width: 12px;
    height: 12px;
    line-height: 12px;
    border-radius: 50%;
    background-color: #E5E5E5;
    transition: all .3s;
    opacity: 1;
}
#top .facility .slider_ctt .slick-dots li.slick-active button:before{
    background-color: #FFCE00;
}
#top .facility .item .ttl{
    position: relative;
    display: inline-block;
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 0.06em;
    color: #FFFFFF;
    background-color: #83040A;
    padding: 9px 78px 10px 30px;
    margin: 0 0 4px;
}
#top .facility .item .ttl::after{
    position: absolute;
    top: 0;
    right: -69px;
    content: "";
    width: 70px;
    height: 70px;
    background-image: url(../img/ttl_triangle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#top .facility .in-map{
    margin: 0 0 85px;
}
#top .facility .in-map .ctt_area{
    padding: 70px 40px 85px;
    background-color: #fff;
}
#top .facility .in-map .ctt_area .img img{
    display: block;
    margin: 0 auto 23px;
}
#top .facility .in-map .ctt_area .txt{
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 0 62px;
}
#top .facility .in-map .ctt_area .txt .icon img{
    padding-top: 7px;
}
#top .facility .in-map .ctt_area .txt p{
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.75;
}
#top .facility .in-map .ctt_area .icon_area{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
}
/*#top .facility .in-map .ctt_area .icon_area .item:nth-of-type(2){
    margin: 0 65px 0 90px;
}*/
#top .facility .in-map .ctt_area .icon_area .item{
    max-width: 234px;
    width: 20%;
}
#top .facility .in-map .ctt_area .icon_area .item .img{
    min-height: 250px;
}
/*#top .facility .in-map .ctt_area .icon_area .item .img img{
    margin: 0;
    max-width: 20vw;
}*/
#top .facility .in-map .ctt_area .icon_area .item p{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.38;
}
#top .facility .in-map .ctt_area .icon_area .item p span{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.83;
}
#top .facility .in-map .ctt_area .icon_area .item ul.note{
    margin-top: 8px;
    text-align: left;
}
#top .facility .in-map .ctt_area .icon_area .item ul.note li{
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1.75;
    text-indent: -1em;
    padding-left: 1em;
}
#top .facility .in-map .ctt_area .icon_area .item ul.note li::before{
    content: "※";
}
#top .facility .batting{
    margin: 0 auto 40px;
}
#top .facility .batting .ttl{
    padding: 9px 148px 10px 30px;
}
#top .facility .batting .ctt_area{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 36px 30px 15px;
    background-color: #fff;
}
#top .facility .batting .ctt_area .machine_item{
    max-width: 380px;
    width: 33%;
}
#top .facility .batting .ctt_area .machine_item .name_area{
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 26px;
}
#top .facility .batting .ctt_area .machine_item .name_area::before{
    content: "";
    width: 4px;
    height: 77px;
    background-color: #83040A;
}
#top .facility .batting .ctt_area .machine_item .name_area p{
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1.2;
}
#top .facility .batting .ctt_area .machine_item .name_area p span{
    font-size: 22px;
    line-height: 1.64;
}
#top .facility .batting .ctt_area .machine_item .note{
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.05em;
}
#top .facility .batting .ctt_area .machine_item:first-of-type .img img{
    display: block;
    margin: 41px auto 0;
}
#top .facility .batting .ctt_area .machine_item:nth-of-type(2) .img img{
    display: block;
    margin: 61px auto 0;
}
#top .facility .batting .ctt_area .machine_item:last-of-type .img img{
    display: block;
    margin: 5px auto 0;
}
#top .facility .batting .note{
    background-color: #fff;
    display: block;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: -1px;
    padding-bottom: 34px;
}
#top .facility .page_link p{
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.022em;
    margin: 0 auto 26px;
    color: #fff;
}
#top .facility .page_link .arrow a img{
    display: block;
    margin: 0 auto;
}
@media only screen and (max-width: 1350px) {
    #top .facility .in-map .ctt_area .icon_area .item .img{
        min-height: auto;
    }
}
@media only screen and (max-width: 1280px) {
    #top .facility .in-map .ctt_area .icon_area{
        flex-wrap: wrap;
        max-width: 92%;
    }
    #top .facility .in-map .ctt_area .icon_area .item{
        margin-top: 4%;
        width: 46%;
    }
    #top .facility .in-map .ctt_area .icon_area .item:nth-child(-n+2){
        margin-top: 0;
    }
    #top .facility .in-map .ctt_area .icon_area .item .img{
        min-height: 24.56vw;
    }
}
@media only screen and (max-width: 768px) {
    #top .facility{
        padding: 13.33333333334vw 0 16vw;
    }
    #top .facility .ttl_area{
        text-align: left;
        margin: 0 auto 6.66666666667vw;
    }
    #top .facility .ttl_area .label{
        font-size: 3.7333333333334vw;
        padding: 0.9333333333333335vw 2.133333333333333333vw 1.2vw;
        margin: 0 0 5.026666666666666vw;
    }
    #top .facility .ttl_area h2 img{
        display: block;
        max-width: 65.02666666666667vw;
        margin: 0;
    }
    #top .facility .slider_ctt{
        margin: 0 0 22.2666666666667vw;
    }
    #top .facility .slider_ctt .slider_bg {
        margin: 0 0 2.4vw;
    }
    #top .facility .slider_ctt .name_note{
        font-size: 5.0666666666666vw;
        margin: 0 auto 6.6666666667vw;
    }
    #top .facility .slider_ctt .facility_prev_arrow,
    #top .facility .slider_ctt .facility_next_arrow{
        max-width: 3.2vw;
        z-index: 1;
    }
    #top .facility .slider_ctt .facility_prev_arrow{
        bottom: 15.5vw;
        left: -4vw;
        transform: scale(-1);
    }
    #top .facility .slider_ctt .facility_next_arrow{
        bottom: 15.7vw;
        right: -4.4vw;
    }
    #top .facility .slider_ctt .small_slider_item{
        padding: 0 1.1333333333333333vw;
    }
    #top .facility .slider_ctt .small_slider_item img{
        margin: 0 0 1.466666666vw;
    }
    #top .facility .slider_ctt .small_slider_item p{
        font-size: 2.93333333333333vw;
    }
    #top .facility .slider_ctt .slick-dots {
        bottom: -11.7333333333333vw;
        z-index: 1;
    }
    #top .facility .slider_ctt .slick-dots li{
        margin: 0 0.2666666666vw;
    }
    #top .facility .slider_ctt .slick-dots li button{
        width: 2.4vw;
        height: 2.4vw;
    }
    #top .facility .slider_ctt .slick-dots li button:before{
        width: 2.4vw;
        height: 2.4vw;
        line-height: 2.4vw;
    }
    #top .facility .item .ttl{
        font-size: 5.3333334vw;
        padding: 1.866666666666667vw 10.6666666666666668vw 2.4vw 5.33333333334vw;
        margin: 0 0 1.333333333335vw;
    }
    #top .facility .item .ttl::after{
        right: -11.73333333333333vw;
        width: 12vw;
        height: 12vw;
    }
    #top .facility .in-map{
        margin: 0 0 16vw;
    }
    #top .facility .in-map .ctt_area{
        padding: 6.6666666667vw 4vw 3.5vw;
    }
    #top .facility .in-map .ctt_area .img img{
        margin: 0 auto 4.8vw;
    }
    #top .facility .in-map .ctt_area .txt{
        gap: 2.133333333vw;
        margin: 0 0 9.3333333333334vw;
    }
    #top .facility .in-map .ctt_area .txt .icon img{
        padding-top: 1.333333333335vw;
    }
    #top .facility .in-map .ctt_area .txt p{
        font-size: 3.2vw;
        line-height: 1.5;
    }
    /*#top .facility .in-map .ctt_area .icon_area{
        margin-right: -2.66666667vw;
    }
    #top .facility .in-map .ctt_area .icon_area .item:nth-of-type(2){
        margin: 0 0.4vw 0 2.8000000000000003vw;
    }*/
    /*#top .facility .in-map .ctt_area .icon_area .item .img img{
        margin: 0 auto;
        max-width: 21.333333333333336vw;
    }
    #top .facility .in-map .ctt_area .icon_area .item:nth-of-type(2) .img img{
        max-width: 24vw;
    }*/
    #top .facility .in-map .ctt_area .icon_area .item p{
        font-size: 3vw;
        margin: 0;
    }
    /*#top .facility .in-map .ctt_area .icon_area .item:nth-of-type(3) p{
        margin: 0 -5px;
    }*/
    #top .facility .in-map .ctt_area .icon_area .item p span{
        font-size: 2.4vw;
    }
    #top .facility .in-map .ctt_area .icon_area .item ul.note li{
        font-size: 2vw;
    }
    #top .facility .batting{
        margin: 0 auto 10.6666666685vw;
    }
    #top .facility .batting .ttl{
        padding: 1.866666666666667vw 10.6666666666666668vw 2.4vw 5.33333333334vw;
    }
    #top .facility .batting .ctt_area{
        align-items: center;
        flex-wrap: wrap;
        gap: 8vw;
        padding: 6.6666666667vw 5.3334vw 8vw;
    }
    #top .facility .batting .ctt_area .machine_item{
        max-width: none;
        width: 100%;
    }
    #top .facility .batting .ctt_area .machine_item .name_area{
        gap: 3.2vw;
        margin: 0 0 5.333334vw;
    }
    #top .facility .batting .ctt_area .machine_item .name_area::before{
        width: 0.8vw;
        height: 14.666666666666vw;
    }
    #top .facility .batting .ctt_area .machine_item .name_area p{
        font-size: 5.333333334vw;
    }
    #top .facility .batting .ctt_area .machine_item .name_area p span{
        font-size: 4.26666667vw;
    }
    #top .facility .batting .ctt_area .machine_item .note{
        font-size: 3.733333334vw;
    }
    #top .facility .batting .ctt_area .machine_item:first-of-type .img img{
        display: block;
        max-width: 40vw;
        margin: 4.8vw auto 0;
    }
    #top .facility .batting .ctt_area .machine_item:nth-of-type(2) .img img{
        display: block;
        max-width: 56vw;
        margin: 9.3333333333334vw auto 0;
    }
    #top .facility .batting .ctt_area .machine_item:last-of-type .img img{
        display: block;
        max-width: 50vw;
        margin: 6.66666667vw auto 0;
    }
    #top .facility .batting .note{
        font-size: 3.733333334vw;
        padding-bottom: 8vw;
    }
    #top .facility .page_link p{
        font-size: 4.266667vw;
        line-height: 1.75;
        letter-spacing: 0.05em;
        margin: 0 auto 5.333333334vw;
    }
    #top .facility .page_link .arrow a img{
        max-width: 10vw;
    }
}


/* guide */
#top .guide{
    position: relative;
    padding: 100px 0 120px;
    background-image: url(../img/main_bg.jpg);
    background-position: top;
}
#top .guide .ttl_area{
    margin: 0 auto 50px;
    text-align: center;
}
#top .guide .ttl_area .label{
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    padding: 7px 15px 9px;
    margin: 0 0 36px;
    background-color: #000000;
    color: #fff;
}
#top .guide .ttl_area h2 img{
    display: block;
    margin: 0 auto;
}
#top .guide .info_table{
    max-width: 1000px;
    margin: 0 auto 120px;
    border: 3px solid #06042E;
    background-color: #fff;
}
#top .guide .info_table dl{
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #030222;
}
#top .guide .info_table dl:last-of-type{
    border: none;
}
#top .guide .info_table dl dt{
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding-left: 22px;
    width: 20%;
    max-width: 200px;
    background-color: #6E82AF;
    color: #fff;
}
#top .guide .info_table dl dd{
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.05em;
    padding: 20px 30px 22px;
}
#top .guide .info_table dl dd a{
    font-size: 17px;
    text-decoration: underline;
    color: #102CE6;
}
#top .guide .info_list .item{
    margin: 0 auto 120px;
}
#top .guide .info_list .item:last-of-type{
    margin: 0;
}
#top .guide .info_list .item .ctt_name{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: #06042E;
    margin: 0 auto 65px;
}
#top .guide .info_list .item .ctt_name::before{
    content: "";
    width: 30px;
    height: 15px;
    background-image: url(../img/guide_name_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
#top .guide .info_list .item .bold{
    font-size: 34px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    margin: 0 auto 35px;
}
#top .guide .info_list .item .semi{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    margin: 0 auto 30px;
}
#top .guide .info_list .item dl{
    display: flex;
    align-items: stretch;
    max-width: 1000px;
    border: 4px solid #000000;
    background-color: #fff;
    margin: 0 auto 36px;
}
#top .guide .info_list .item dl dt{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    color: #fff;
    background-color: #6E82AF;
}
#top .guide .info_list .item dl dd{
    width: 50%;
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 18px 0 23px;
}
#top .guide .info_list .item dl dd span{
    font-size: 20px;
}
#top .guide .info_list .item .note{
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.05em;
    text-align: center;
}
#top .guide .info_list .item .note a{
    color: #102CE6;
    text-decoration: underline;
}
#top .guide .info_list .item .card_info{
    max-width: 1000px;
    width: 100%;
    padding: 26px 0 36px;
    margin: 40px auto 0;
    border: 1px solid #000000;
    background-color: #fff;
}
#top .guide .info_list .item .card_info .ttl{
    position: relative;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.013em;
    margin: 0 auto 34px;
}
#top .guide .info_list .item .card_info .ttl::before{
    content: "";
    width: 110px;
    height: 3px;
    background-color: #83040A;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}
#top .guide .info_list .item .card_info .img img{
    display: block;
    margin: 32px auto 0;
}
#top .guide .info_list .item .reser_btn a{
    display: block;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-align: center;
    padding: 32px 0 33px;
    margin: 50px auto 74px;
    max-width: 600px;
    width: 100%;
    color: #fff;
    background-color: #83040A;
    box-shadow: 0 14px 0 #5F0307;
    transition: all .3s;
}
#top .guide .info_list .item .reser_btn a:hover{
    opacity: 1;
    box-shadow: 0 2px 0 #5F0307;
    transform: translateY(12px);
}
#top .guide .info_list .item .tell_area{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 21px 0 27px;
    background-color: #fff;
    border: 2px solid #000000;
}
#top .guide .info_list .item .tell_area .top_txt{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    padding-bottom: 22px;
    margin-bottom: 17px;
    border-bottom: 1px solid #000000;
}
#top .guide .info_list .item .tell_area .top_txt .bold{
    font-size: 21px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 0.05em;
}
#top .guide .info_list .item .tell_area .top_txt .tell p{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 35px;
    font-weight: 800;
    letter-spacing: 0.04em;
}
#top .guide .info_list .item .tell_area .top_txt .tell p:before{
    content: "";
    width: 28px;
    height: 28px;
    background-image: url(../img/tell_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 5px;
}
#top .guide .info_list .item .tell_area .top_txt .tell span{
    display: block;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-align: center;
}
#top .guide .info_list .item .tell_area .bottom_txt{
    font-size: 17px;
    text-align: center;
    letter-spacing: 0.05em;
}
#top .guide .info_list .item .tell_area .bottom_txt a{
    color: #102CE6;
    text-decoration: underline;
}
#top .guide .info_list .item .flex{
    display: flex;
    justify-content: space-between;
    gap: 108px;
    padding-left: 50px;
}
#top .guide .info_list .item .ctt-list.unit{
    max-width: 1200px;
    margin: 0 auto;
}
#top .guide .info_list .item .ctt-list{
    flex: 1;
}
#top .guide .info_list .item .ctt-list li{
    /*display: flex;
    gap: 4px;*/
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.75;
    margin: 0 0 22px;
    padding-left: 21px;
    position: relative;
}
#top .guide .info_list .item .ctt-list li a{
    color: #102CE6;
    text-decoration: underline;
}
#top .guide .info_list .item .ctt-list li:last-child{
    margin: 0;
}
#top .guide .info_list .item .ctt-list li::before{
    content: "●";
    font-size: 16px;
    color: #000000;
    position: absolute;
    left: 0;
}
#top .guide .info_list .item .btn_area{
    margin: 50px auto 0;
}
#top .guide .info_list .item .btn_area .btn a{
    max-width: 500px;
    margin: 0 auto;
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.05em;
    padding: 32px 0 35px;
    background-color: #fff;
}
#top .guide .info_list .item .btn_area .pdf_btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 2px solid #06042E;
    color: #06042E;
    margin: 0 auto 25px;
    background-color: #fff;
}
#top .guide .info_list .item .btn_area .pdf_btn a::before{
    content: "";
    width: 30px;
    height: 38px;
    background-image: url(../img/pdf_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#top .guide .info_list .item .btn_area .red_btn a{
    border: 2px solid #83040A;
    color: #83040A;
}
@media only screen and (max-width: 768px) {
    #top .guide{
        padding: 13.33333333334vw 0 16vw;
    }
    #top .guide .ttl_area{
        margin: 0 auto 9.3333333333334vw;
    }
    #top .guide .ttl_area .label{
        font-size: 3.733333333334vw;
        padding: 0.9333333335vw 2.13333333333vw 1.2vw;
        margin: 0 0 4.8vw;
    }
    #top .guide .ttl_area h2 img{
        max-width: 40vw;
    }
    #top .guide .info_table{
        max-width: none;
        margin: 0 auto 12vw;
        border: 2px solid #06042E;
    }
    #top .guide .info_table dl{
        flex-wrap: wrap;
        align-items: flex-start;
    }
    #top .guide .info_table dl dt{
        font-size: 4.8vw;
        padding: 2.4vw 2.66667vw;
        width: 100%;
        max-width: none;
    }
    #top .guide .info_table dl dd{
        font-size: 4vw;
        line-height: 1.75;
        letter-spacing: 0.05em;
        padding: 3.2vw 2.66667vw;
    }
    #top .guide .info_table dl dd a{
        font-size: 4.2666666666667vw;
    }
    #top .guide .info_list .item{
        margin: 0 auto 10.6666666666666668vw;
    }
    #top .guide .info_list .item .ctt_name{
        height: 13.333333333333334vw;
        font-size: 5.3333333333334vw;
        margin: 0 auto 8vw;
    }
    #top .guide .info_list .item .ctt_name::before{
        width: 6.4vw;
        height: 3.2vw;
        bottom: -3.2vw;
    }
    #top .guide .info_list .item .bold{
        font-size: 6.933333333333vw;
        margin: 0 auto 6.4vw;
    }
    #top .guide .info_list .item .semi{
        font-size: 5.3333333334vw;
        margin: 0 auto 4vw;
    }
    #top .guide .info_list .item dl{
        flex-wrap: wrap;
        max-width: none;
        border: 2px solid #000000;
        margin: 0 auto 8vw;
    }
    #top .guide .info_list .item dl dt{
        width: 100%;
        font-size: 4.8vw;
        padding: 2.4vw 0;
    }
    #top .guide .info_list .item dl dd{
        width: 100%;
        font-size: 8vw;
        padding: 3.2vw 0;
    }
    #top .guide .info_list .item dl dd span{
        font-size: 4.2666666666667vw;
    }
    #top .guide .info_list .item .note{
        font-size: 3.2vw;
    }
    #top .guide .info_list .item .card_info{
        max-width: none;
        padding: 4vw 4vw 5.33333334vw;
        margin: 6.66666667vw auto 0;
    }
    #top .guide .info_list .item .card_info .ttl{
        font-size: 4.8vw;
        margin: 0 auto 6.4vw;
    }
    #top .guide .info_list .item .card_info .ttl::before{
        width: 26.66666666666668vw;
        height: 0.53333333vw;
        bottom: -1.333333333335vw;
    }
    #top .guide .info_list .item .card_info .img img{
        margin: 5.3333333334vw auto 0;
    }
    #top .guide .info_list .item .reser_btn a{
        font-size: 4.8vw;
        padding: 4.2666666666667vw 0 4.8vw;
        margin: 8vw auto 13.3333333334vw;
        max-width: 90vw;
        box-shadow: 0 8px 0 #5F0307;
    }
    #top .guide .info_list .item .reser_btn a:hover{
        transform: translateY(6px);
    }
    #top .guide .info_list .item .tell_area{
        max-width: none;
        padding: 5.33333334vw 0;
    }
    #top .guide .info_list .item .tell_area .top_txt{
        flex-wrap: wrap;
        gap: 0;
        padding-bottom: 5.333334vw;
        margin-bottom: 5.3333334vw;
    }
    #top .guide .info_list .item .tell_area .top_txt .bold{
        font-size: 5.0666666666666vw;
    }
    #top .guide .info_list .item .tell_area .top_txt .tell p{
        gap: 2.133333333333vw;
        font-size: 8.53333333333vw;
    }
    #top .guide .info_list .item .tell_area .top_txt .tell p:before{
        width: 6.66666666667vw;
        height: 6.66666666667vw;
        margin-top: 1.33333333335vw;
    }
    #top .guide .info_list .item .tell_area .top_txt .tell span{
        font-size: 4vw;
    }
    #top .guide .info_list .item .tell_area .bottom_txt{
        font-size: 4vw;
    }
    #top .guide .info_list .item .flex{
        flex-direction: column-reverse;
        gap: 8vw;
        padding-left: 0;
    }
    #top .guide .info_list .item .ctt-list li{
        gap: 1.3333333335vw;
        font-size: 4vw;
        margin: 0 0 5.333333334vw;
    }
    #top .guide .info_list .item .ctt-list li::before{
        font-size: 4vw;
    }
    #top .guide .info_list .item .btn_area{
        margin: 8vw auto 0;
    }
    #top .guide .info_list .item .btn_area .btn a{
        max-width: none;
        font-size: 4.8vw;
        padding: 5.3333334vw 0 6.66666667vw;
    }
    #top .guide .info_list .item .btn_area .pdf_btn a{
        gap: 2.66666666667vw;
        margin: 0 auto 4vw;
    }
    #top .guide .info_list .item .btn_area .pdf_btn a::before{
        width: 6.4vw;
        height: 8.53333333333vw;
    }
    #top .guide .info_list .item .btn_area .red_btn a{
        border: 2px solid #83040A;
    }
}


/* Instagram */
#top .instagram{
    padding: 100px 0 120px;
    background-image: url(../img/instagram_bg.jpg);
    background-position: top;
}
#top .instagram .ttl_area{
    margin: 0 auto 30px;
    text-align: center;
}
#top .instagram .ttl_area .label{
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    padding: 7px 15px 9px;
    margin: 0 0 36px;
    background-color: #FFCE00;
    color: #000;
}
#top .instagram .ttl_area h2 img{
    display: block;
    margin: 0 auto 28px;
}
#top .instagram .ttl_area .account{
    display: block;
    font-size: 20px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
}
#top .instagram .ctt_img_area{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 60px;
}
#top .instagram .ctt_img_area .img{
    display: block;
    max-width: 310px;
    width: 24%;
    margin: 0 auto;
}
#top .instagram .insta_btn{
    text-align: center;
    margin-top: 60px;
}
#top .instagram .insta_btn span.text{
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    padding: 0 40px;
    display: inline-block;
    position: relative;
}
#top .instagram .insta_btn span.text::before{
    content: "";
    width: 19px;
    height: 28px;
    background-image: url(../img/insta_link_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 19px 29px;
    position: absolute;
    top: 4px;
    left: 0;
}
#top .instagram .insta_btn span.text::after{
    content: "";
    width: 19px;
    height: 28px;
    background-image: url(../img/insta_link_icon02.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 19px 28px;
    position: absolute;
    top: 4px;
    right: 0;
}
#top .instagram .insta_btn a{
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding: 27px 0 29px;
    margin: 0 auto;
    color: #fff;
    border: 2px solid #FFFFFF;
}
#top .instagram .insta_btn a::before{
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(../img/instagram_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (max-width: 768px) {
    #top .instagram{
        padding: 13.33333333334vw 0 16vw;
    }
    #top .instagram .ttl_area{
        margin: 0 auto 6.66666666667vw;
    }
    #top .instagram .ttl_area .label{
        font-size: 3.7333333333334vw;
        padding: 0.9333333333333335vw 2.133333333333333333vw 1.2vw;
        margin: 0 0 5.026666666666666vw;
    }
    #top .instagram .ttl_area h2 img{
        max-width: 65.02666666666667vw;
        margin: 0 auto 4.8vw;
    }
    #top .instagram .ttl_area .account{
        font-size: 4.266666666666667vw;
    }
    #top .instagram .ctt_img_area{
        gap: 3.2vw;
        margin: 0 0 10.6666666668vw;
    }
    #top .instagram .ctt_img_area .img{
        max-width: none;
        width: 43vw;
    }
    #top .instagram .insta_btn{
        margin-top: 10.6666666668vw;
    }
    #top .instagram .insta_btn span.text{
        font-size: 3.8vw;
        margin-bottom: 16px;
        padding: 0 30px;
    }
    #top .instagram .insta_btn span.text::before{
        width: 18px;
        height: 26px;
        background-size: 18px 26px;
        top: 2px;
    }
    #top .instagram .insta_btn span.text::after{
        width: 18px;
        height: 26px;
        background-size: 18px 26px;
        top: 2px;
    }
    #top .instagram .insta_btn a{
        max-width: none;
        gap: 3.2vw;
        font-size: 4.2666666667vw;
        padding: 5.333333334vw 0 5.866666666666666vw;
    }
    #top .instagram .insta_btn a::before{
        width: 8vw;
        height: 8vw;
    }
}


/* access */
#top .access{
    position: relative;
    padding: 100px 0 0;
    background-image: url(../img/main_bg.jpg);
    background-position: top;
}
#top .access .access_inner{
    display: flex;
    gap: 80px;
    margin: 0 50px 80px 182px;
}
#top .access .txt{
    max-width: 590px;
    width: 100%;
}
#top .access .txt .label{
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    background-color: #000000;
    color: #fff;
    padding: 7px 16px 9px 17px;
    margin: 0 0 35px;
}
#top .access .txt h2 img{
    display: block;
    margin: 0 0 40px;
}
#top .access .txt .address{
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.75;
    margin: 0;
}
#top .access .txt ul.note{
    margin-top: 2px;
    text-align: left;
}
#top .access .txt ul.note li{
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2;
    text-indent: -1em;
    padding-left: 1em;
}
#top .access .txt ul.note li::before{
    content: "・";
}
#top .access .img{
    align-self: flex-start;
    position: relative;
}
#top .access .img::before{
    content: "";
    box-sizing: border-box;
    border: 1px solid #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#top .access .iframe iframe{
    display: block;
    width: 100%;
    height: 500px;
}
@media only screen and (max-width: 768px) {
    #top .access{
        padding: 13.333333334vw 0 0;
    }
    #top .access .access_inner{
        flex-direction: column;
        gap: 5.333vw;
        margin: 0;
    }
    #top .access .txt{
        padding: 0 5.333333334vw;
        max-width: none;
    }
    #top .access .txt .label{
        font-size: 3.733333333334vw;
        padding: 0.9333333335vw 2.13333333333vw 1.2vw;
        margin: 0 0 4.8vw;
    }
    #top .access .txt h2 img{
        display: block;
        max-width: 57.06666666666666vw;
        margin: 0 0 5.33333333334vw;
    }
    #top .access .txt .address{
        font-size: 3.7333334vw;
        line-height: 1.75;
        margin: 0;
    }
    #top .access .txt ul.note li{
        font-size: 2.1333;
    }
    #top .access .img{
        margin: 0 5.333333334vw;
    }
    #top .access .iframe iframe{
        height: 66.6666vw;
    }
    #top .access .iframe{
        margin-top: 8.333vw;
    }
}


/* フローティング 写真 */
.floating_arrow{
    position: fixed;
    bottom: 12px;
    right: 30px;
    width: 205px;
    height: 210px;
    z-index: 101;
}
.floating_arrow a{
    display: block;
    position: relative;
    transition: all .3s;
}
.floating_arrow a:hover{
    opacity: 1 !important;
}
.floating_arrow a:hover .normal{
    opacity: 0 !important;
}
.floating_arrow .hover{
    opacity: 0;
}
.floating_arrow a:hover .hover{
    opacity: 1 !important;
}
.floating_arrow .normal,
.floating_arrow .hover{
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}

@media only screen and (max-width: 768px) {
    .floating_arrow{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        z-index: 99;
    }
    .floating_arrow a.sp{
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 4.666666666666667vw;
        font-weight: 600;
        text-align: center;
        height: 14.933333333333335vw;
        color: #F0C200;
        background-color: #000000;
        border: 0.5333333333333vw solid #FFCE00;
        transition: all .3s;
    }
}
