.mainWrap *{
    line-height: 100%;
    letter-spacing: -1px;
    box-sizing: border-box;
}

.disN{
	display:none;
}
.slick-slide img{
    width:100%;
}

/*another*/
#header{
    opacity: 0;
	animation: fadeIn 1s 3s forwards;
}
#header.color{
	background:#fff;
}



.mainWrap{
    /* overflow: hidden; */
    width: 100%;
	position:relative;
}
body,html,.header_wrap{
    max-width: 1920px !important;
    margin:0 auto !important;
}

body::-webkit-scrollbar {
    position: absolute;
    right: 0;
    width: 5px;
    display: none;
}
body::-webkit-scrollbar-thumb {
    background-color: #373d71;
    border-radius: 10px;
    background-clip: padding-box;
    border: 1px solid transparent;
}
body::-webkit-scrollbar-track {
    background-color: grey;
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px white;
}

.sec .fp-tableCell{
    width: 100%;
}

.mainWrap .Slider, .mainWrap .Slider .slick-list, .mainWrap .slick-track{
	height:100%;
    clear: both;
}

.mainWrap .sec{
    height: 100vh !important;
}

.mainWrap .fp-scroller{
    height: 100%;
}

html.overflow_lock, 
body.overflow_lock {
    overflow: hidden !important;
    height: 100% !important;
    position: fixed !important;
    width: 100%;
}

.mainVisual {
    width: 100%;
    position: relative;
    height: 100%;
    display:flex;
    align-items: center;
    overflow: hidden;
}
.mainVisual .content{
    width:100%;
    height:100%;
    position: relative;
    display:flex;
    align-items: flex-start;
    justify-content: center;
}
@keyframes scale_1{
    to{
        transform: scale(1);
    }
}
.mainVisual .content .bg{
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height: 100%;
    transform: scale(1.2);
    animation: scale_1 4s forwards;
    background: url(../images/mainVisual_bg.jpg?v=2) center bottom / cover no-repeat;
}
.mainVisual .text{
    color: var(--sub-color);
    position: absolute;
    left:15%;
    top:25%;
    text-align: center;
}
.mainVisual .text .explain{
    font-size: 22px;
    opacity: 0;
    animation: fadeInUp 1s 1s forwards;
}
.mainVisual .text .explain_con{
    margin-bottom: 3%;
}
.mainVisual .text .explain_con:nth-last-child(1){
    margin-bottom: 0;
}
.mainVisual .text .explain_con .bold{

}
.mainVisual .text .line{
    height: 0;
    background: var(--sub-color);
    margin: 10% auto;
    width: 1px;
    opacity: 0;
    height: 0;
    animation: mainVisual_line 1s 1.5s forwards;
}
@keyframes mainVisual_line{
    to{
        height: 100px;
        opacity: 1;
    }
}
.mainVisual .text .name{
    font-size: 60px;
    font-weight: 700;
}
.mainVisual .text .name_con{
    margin-bottom: 3%;
    opacity: 0;
    animation: fadeInUp 1s 2s forwards;
}
.mainVisual .text .name_con:nth-last-child(1){
    margin-bottom: 0;
    animation: fadeInUp 1s 2.25s forwards;
}


.mainVisual .content .circle_open {
    position: absolute;
    right: 5.5%;
    top: 100px;
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainVisual .content .svgWrap {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite; 
}

.mainVisual .content .svgWrap svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.mainVisual .content .svgWrap text {
    font-size: 10px;
    font-weight: 700;
    fill: #0d2e46;
}
.mainVisual .content .svgWrap textPath{
	letter-spacing: 2px;
}

.mainVisual .content .circle_content {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: #0d2e46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.mainVisual .content .circle_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
}
.mainVisual .content .circle_text .con {
    letter-spacing: -1px;
    line-height: 110%;
}
.mainVisual .content .circle_text .con.mg_b {
	 margin-bottom: 4px;
}
.mainVisual .content .circle_text .con.bt {
    opacity: 0.9;
    font-size: 70%;
    font-weight: 400;
    margin-top: 4px;
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.scroll_down{
	position: absolute;
    bottom: 10%;
    transition: 0.75s all;
    right:5%;
	/* animation:scroll_con 2s infinite; */
    opacity: 0;
    z-index: 1;
    font-family: "Montserrat", sans-serif;
    animation: fadeIn 1s 3s forwards;
}
.scroll_down .con{
    color: #fff;
    position: relative;

}
.scroll_down .con::before{
    content: "";
    width: 1px;
    height: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    bottom: -5px;
    background-color: #535353;
}
.scroll_down .con::after{
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    bottom: -5px;
    background-color: #fff;
    animation:scroll_con 5s infinite;
}
@keyframes scroll_con {
	0%{
        height:10px;
    }  
    50%{
        height:50px;
    }
    100%{
        height: 10px;
    }
}

/*common*/
.section .wrap {
    width: 100%;
    height: 100%;
}
.section .swiper-container {
    width: 100%;
    height: 100%;
}
.section .slideCon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.section.schedule {

}
.section.schedule .wrap {
    display: flex;
}
.section.schedule .wrap .left {
    width:0;
    /* width: 0; */
    background: url(../images/main_schedule_left.jpg) center center / cover no-repeat;
    transition: 1s all;
}
.section.schedule.fp-completely .wrap .left{
    width:20%;
    transition-delay: 0.25s;
}
.section.schedule .wrap .content {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../images/main_schedule_bg.jpg) center center / cover no-repeat;
    flex:1;
    flex-direction: column;
    transition: 1s all;
}
.section.schedule .wrap .content .maintit {
    text-align: center;
    margin-bottom: 5%;
    transform: translateY(200%);
    transition: 1s all;
}
.section.schedule.fp-completely .wrap .content .maintit{
    transform: translate(0);
    transition-delay: 0.25s;
}
.section.schedule .wrap .content .maintit .tit {
    font-family: var(--serif);
    font-size: 80px;
    margin-bottom: 0;
    color: var(--sub-color);
}
.section.schedule .wrap .content .maintit .explain {
    font-size: 22px;
}
.section.schedule .wrap .content .listWrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 2.5%;
    opacity: 0;
    transform: translateY(50%);
    transition: 1s;
}
.section.schedule.fp-completely .wrap .content .listWrap{
    opacity: 1;
    transition-delay: 0.75s;
    transform: translate(0);
}
.section.schedule .wrap .content .listWrap .listcon {
    border: 1px solid var(--sub-color);
    padding: 5%;
    text-align: center;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.section.schedule .wrap .content .listWrap .listcon.active{
    background: var(--sub-color);
    color:#fff;
}
.section.schedule .wrap .content .listWrap .listcon:nth-child(7),
.section.schedule .wrap .content .listWrap .listcon:nth-child(8){
	grid-column: span 3;
	width: 100%;
}
.section.schedule .wrap .content .listWrap .listcon .num {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 5px;
}
.section.schedule .wrap .content .listWrap .listcon .title {
    font-size: 18px;
    letter-spacing: -2px;
}
.section.schedule .wrap .content .btnWrap {}
.section.schedule .wrap .content .btnWrap .btn {
    font-size: 18px;
    color: var(--sub-color);
    border: 1px solid var(--sub-color);
    border-radius: 30px;
    padding: 15px 30px;
    display: inline-flex;
    font-weight: 600;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: 0.75s;
    transform: translateY(50%);
}
.section.schedule.fp-completely .wrap .content .btnWrap .btn{
    animation: fadeInUp 1s 1s forwards;
}
.section.schedule.fp-completely .wrap .content .btnWrap .btn:hover{
    color:#fff;
    background: var(--sub-color);
}
.section.schedule .wrap .content .btnWrap .btn .ico{
    
}

.section.premium {
    background: url(../images/main_premium_bg.jpg) center center / cover no-repeat;
    overflow: hidden;
}
.section.premium .wrap {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
}
.section.premium .wrap .left {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 10%;
}
.section.premium .wrap .left .imageWrap {
    display: flex;
    gap: 20px;
    /* margin-bottom: 5%; */
}
.section.premium .wrap .left .imageWrap.--01{
	margin-bottom: 25%;
}
.section.premium .wrap .left .imageWrap .image {
    opacity: 0;
    transition: 1.5s all;
}
.section.premium.fp-completely .wrap .left .imageWrap .image{
    opacity: 1;
}
.section.premium .wrap .left .imageWrap .image.--01{
    transform: translateY(35%);
    transition-delay: 0.25s;
}
.section.premium .wrap .left .imageWrap .image.--02{
    transition-delay: 0.5s;
}
.section.premium .wrap .left .imageWrap .image.--03{
    transition-delay: 0.75s;
}
.section.premium .wrap .left .imageWrap .image img {

}
.section.premium .wrap .content {
    text-align: center;
    opacity: 0;
    transform: translateY(-25%);
    transition: 1.5s all;
}
.section.premium.fp-completely .wrap .content{
    opacity: 1;
    transform: translate(0);
}
.section.premium .maintit {
    color: #343436;
    display: flex;
    align-items: flex-end;
    margin-bottom: 5%;
}
.section.premium .maintit .short {
    
    text-align: right;
}
.section.premium .maintit .short .name{
    font-size: 22px;
    letter-spacing: -1.5px;
    margin-bottom: 5px;
    margin-right: 12.5px;
}
.section.premium .maintit .short .tit{
    font-family: var(--serif);
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 10px;
}
.section.premium .maintit .big{
    font-size: 120px;
    font-family: var(--serif);
    line-height: 100%;
    transform: translateY(13px);
    font-weight: 800;
}
.section.premium .wrap .content .listWrap {
    margin-bottom: 10%;
}
.section.premium .wrap .content .listWrap .listcon {
    color: #555248;
    text-align: center;
    margin-bottom: 10%;
}
.section.premium .wrap .content .listWrap .listcon:nth-last-child(1){
    margin-bottom:0;
}
.section.premium .wrap .content .listWrap .listcon .explain {
    font-size: 17px;
    letter-spacing: -1.5px;
    margin-bottom: 1.25%;
}
.section.premium .wrap .content .listWrap .listcon .title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -1.5px;
}
.section.premium .wrap .content .logo{
    display: inline-block;
    opacity: 0;
    transition: 1s;
}
.section.premium.fp-completely .wrap .content .logo{
    opacity: 1;
    transition-delay: 1s;
}
.section.premium .wrap .right {
    margin-top: 20%;
}
.section.premium .wrap .right .imageWrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}
.section.premium .wrap .right .imageWrap .image {
    opacity: 0;
    transition: 1.5s all;
}
.section.premium.fp-completely .wrap .right .imageWrap .image{
    opacity: 1;
}
.section.premium .wrap .right .imageWrap .image.--01{
    transform: translateY(35%);
    transition-delay: 1s;
}
.section.premium .wrap .right .imageWrap .image.--02{
    transition-delay: 1.25s;
    transform: translateY(50%);
}
.section.premium .wrap .right .imageWrap .image.--03{
    transition-delay: 1.5s;
}
.section.premium .wrap .right .imageWrap .image img {

}

.section.location {
    position: relative;
    overflow: hidden;
}
.section.location:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--sub-color);
    z-index: -1;
    transition: 1s;
    left: 100%;
}
.section.location.action2:after {
    left: 0;
}
.section.location .wrap {
    display: flex;
    justify-content: center;
    margin-top: 5%;
    height: auto;
}
.section.location .wrap .maintit {
    margin-right: 5%;
    display: flex;
    flex-direction: column;
    transform: translateX(200%);
    transition: 1.5s;
}
.section.location.fp-completely .wrap .maintit{
    transform: translate(0);
    transition-delay: 1s;
}
.section.location .wrap .maintit .tit {
    margin-bottom: 20%;
}
.section.location .wrap .maintit .tit .tit_con {
    font-size: 70px;
    font-family: var(--serif);
    font-weight: 500;
    color: var(--sub-color);
    margin-bottom: 5%;
    transition: 1s all;
    opacity: 0;
}
.section.location.fp-completely .wrap .maintit .tit .tit_con{
    animation: fadeInUp 1s forwards;
}
.section.location.fp-completely .wrap .maintit .tit .tit_con:nth-child(2){
    animation-delay: 0.2s;
}
.section.location.fp-completely .wrap .maintit .tit .tit_con:nth-child(3){
    animation-delay: 0.3s;
}
.section.location.fp-completely .wrap .maintit .tit .tit_con:nth-child(4){
    animation-delay: 0.4s;
}
.section.location.action2 .wrap .maintit .tit .tit_con {
    color: #fff;
}
.section.location .wrap .maintit .tit .tit_con:nth-last-child(1) {
    margin-bottom: 0;
}
.section.location .wrap .maintit .btnWrap {
}
.section.location .wrap .maintit .btnWrap .btn {
    font-size: 18px;
    color: var(--sub-color);
    border: 1px solid var(--sub-color);
    border-radius: 30px;
    padding: 15px 30px;
    display: inline-flex;
    font-weight: 600;
    align-items: center;
    gap: 20px;
    transition: 0.75s;
    opacity: 0;
}
.section.location.fp-completely .wrap .maintit .btnWrap .btn{
    animation: fadeIn 1s 1.5s forwards;
}
.section.location.action2 .wrap .maintit .btnWrap .btn {
    border-color: #fff;
    color: #fff;
}
.section.location .wrap .maintit .btnWrap .btn:hover {
    color: #fff;
    background: var(--sub-color);
}
.section.location .wrap .content {
}
.section.location .wrap .content .listWrap {
    position: relative;
}
.section.location .wrap .content .listWrap .listcon {
    display: flex;
    transition: 1s all;
}
.section.location.action2 .wrap .content .listWrap .listcon.--01 {
    opacity: 0;
}
.section.location .wrap .content .listWrap .listcon.--02 {
    display: none;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
}
.section.location.action2 .wrap .content .listWrap .listcon.--02 {
    opacity: 1;
}
.section.location .wrap .content .listWrap .listcon .bigimage {
    margin-right: 5%;
    opacity: 0;
}
.section.location.fp-completely .wrap .content .listWrap .listcon .bigimage{
    animation: fadeInRight 1.5s 1.5s forwards;
}
.section.location .wrap .content .listWrap .listcon .bigimage img {
}
.section.location .wrap .content .listWrap .listcon .right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
}
.section.location.fp-completely .wrap .content .listWrap .listcon .right{
    animation: fadeInRight 1.5s 1.75s forwards;
}
.section.location .wrap .content .listWrap .listcon .right .text {
    margin-bottom: 5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.section.location .wrap .content .listWrap .listcon .right .text .text_list {
    margin-bottom: 5%;
}
.section.location .wrap .content .listWrap .listcon .right .text .text_list:nth-last-child(1) {
    margin-bottom: 0;
}
.section.location .wrap .content .listWrap .listcon .right .text .text_list .title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    color: #343436;
    margin-bottom: 2.5%;
    line-height: 135%;
}
.section.location .wrap .content .listWrap .listcon.--02 .right .text .text_list .title {
    color: #fff;
}
.section.location .wrap .content .listWrap .listcon .right .text .text_list .explain {
    font-size: 17px;
    color: #5e5e5e;
    line-height: 175%;
    white-space: nowrap;
}
.section.location .wrap .content .listWrap .listcon.--02 .right .text .text_list .explain {
    color: #fff;
    font-weight: 300;
}
.section.location .wrap .content .listWrap .listcon .right .text .text_list .explain br {
}
.section.location .wrap .content .listWrap .listcon .right .imageWrap {
    display: flex;
    gap: 10px;
}
.section.location .wrap .content .listWrap .listcon .right .imageWrap .image {
}
.section.location .wrap .content .listWrap .listcon .right .imageWrap .image img {
}

.section.contact {
    position: relative;
    overflow: hidden;
}
.section.contact .wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section.contact .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left:0;
    top:0;
    transform: scale(1.3);
    background: url(../images/main_contact_bg.jpg) right top / cover no-repeat;
} 
.section.contact.fp-completely .bg,
.section.contact.trick .bg{
    animation: scale_1 4s forwards;
}
.section.contact .content{
    position: relative;
}
.section.contact .menuname {
    color: #000;
    font-size: 60px;
    text-align: center;
    margin-bottom:3%;
    font-weight: 700;
    font-family: var(--serif);
}
.section.contact .listWrap {
    display: flex;
    gap: 20px;
    margin-bottom: 5%;
}
.section.contact .listcon {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(15%);
    transition: 1s 1s all;
}
.section.contact.fp-completely .listcon,
.section.contact.trick .listcon{
    transform: translateY(0);
}
.section.contact .btArea{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transition: 1s 1s all;
}
.section.contact.fp-completely .btArea,
.section.contact.trick .btArea{
    opacity:1;
}
.section.contact .image {
    margin-bottom: 5%;
    position: relative;
}
.section.contact .image img {

}
.section.contact .image .line{
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    width:calc(100% + 2px);
    height:calc(100% + 2px);
}
.section.contact .image .line_con{
    background: #fff;
    position: absolute;
    transition: 1s 1s all;
}
.section.contact .image .line_con.--1{
    top:0;
    left:0;
    width:0;
    height:2px;
}
.section.contact .image .line_con.--2{
    bottom:0;
    right:0;
    width:2px;
    height:0;
}
.section.contact .image .line_con.--3{
    bottom:0;
    right:0;
    width:0;
    height:2px;
}
.section.contact .image .line_con.--4{
    top:0;
    left:0;
    width:2px;
    height:0;
}
.section.contact.fp-completely .image .line_con.--1,
.section.contact.fp-completely .image .line_con.--3{
    width:100%;
}
.section.contact.fp-completely .image .line_con.--2,
.section.contact.fp-completely .image .line_con.--4{
    height:100%;
}
.section.contact .explain {
    font-size: 20px;
    letter-spacing: -1.5px;
    line-height: 150%;
    margin-bottom: 5%;
    font-weight: 500;
}
.section.contact .explain .short_info{
    font-size: 75%;
    margin-top: 1.25%;
    text-align: center;
    opacity: 0.8;
}
.section.contact .explain .short_info .info_con{
    margin-bottom: 1.25%;
}
.section.contact .explain .short_info .info_con:nth-last-child(1){
    margin-bottom: 0;
}
.section.contact .explain .bold{
	color:#000;
}
.section.contact .linkWrap {
    display: flex;
    gap: 20px;
}
.section.contact .link {
    background: rgba(0, 0, 0, 0.25);
    padding: 15px;
    color: #fff;
    flex: 1;
    transition: 0.75s all;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section.contact .link:hover{
	background: rgba(0, 0, 0, 1);
}
.section.contact .ico {margin-right: 5px;}
.section.contact .ico img {

}
.section.contact .infoWrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 1s 1.5s all;
    opacity: 0;
}
.section.contact.fp-completely .infoWrap,
.section.contact.trick .infoWrap{
    opacity:1;
}
.section.contact .infoWrap .info{
    margin-bottom: 1.25%;
    font-size: 20px;
    letter-spacing: -2px;
    font-weight: 500;
}
.section.contact .infoWrap .info .color{
    color: #072638;
    font-weight: 600;
}
.section.contact .infoWrap .call{
    color: #000;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -2px;
    font-family: "Montserrat", sans-serif;
}


/*scroldown*/
.main_scrolldown{
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20%;
}
.main_scrolldown .chevron {
    position: relative;
    width: 28px;
    height: 3px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.main_scrolldown .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.main_scrolldown .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.main_scrolldown .chevron:before,
.main_scrolldown .chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
}

.main_scrolldown .chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.main_scrolldown .chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;

    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}
/*pageinfo*/
.pagingInfo {
    color: #99a3aa;
    font-size: 18px;
    font-weight: 100;
    display: inline-block;
    width: auto;
    text-align: center;
    padding: 0 30px;
    letter-spacing: 0;
}
/*loader*/
body{
	overflow-x:hidden;
}
.loading{
    width:100%;
    height:100%;
    position:fixed;
    left:0px;
    top:0px;
    background:#fff;
    z-index:1000;
}
.loading img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.main_loader{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.main_loader{
    /*! animation: fadeOut 1s forwards; */
}
.circular_loader {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: calc(100% + 40px);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    width: calc(100% + 40px);
    position: absolute;
    top: -20px;
    left: -20px;
    margin: auto;
}

.loader_path {
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    -webkit-animation: dash_circle 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash_circle 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
    /* fill:rgba(255,255,255,0.5); */
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash_circle {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@media(max-width:1080px){
.loader{width:calc(100% - 30px);}
}

/*response*/
@media(max-width:1080px){
    .mainWrap{
        overflow: hidden;
    }
    .mainWrap img{
        width: 100%;
    }
    
    .header_m{
        opacity: 0;
        animation: fadeIn 1s 2s forwards;
    }

    .scroll_down{
        display: none;
        animation: none;
    }
    .mainVisual{
        height: auto;
        animation: mainVisual 2s 2s forwards;
    }
    @keyframes mainVisual{
        to{
            margin-top:80px;
        }
    }
    .mainVisual .content{
        align-items: center;
        justify-content: center;
    }
    .mainVisual .content .bg{
        background: none;
        position: relative;
    }
    .mainVisual .text{
        top: 17.5%;
        left:auto;
    }
    .mainVisual .text .name{
        display: flex;
    }
    .mainVisual .content .circle_open {
        top: 80px;
        right: 1%;
    }

    .section.schedule .wrap{
        flex-direction: column;
    }
    .section.schedule .wrap .left{
        width: 100%;
        height: 0;
        padding-bottom: 15%;
        background: url(../images/main_schedule_left_m.jpg) center center / cover no-repeat;
    }
    .section.schedule.fp-completely .wrap .left {
        width: 100%;
        transition-delay: 0.25s;
    }
    .section.schedule .wrap .content{
        padding: 20% 0;
    }
    .section.schedule .wrap .content .listWrap {
        grid-template-columns: repeat(6, 1fr);
        width: 90%;
    }
    .section.schedule .wrap .content .listWrap .listcon {
        grid-column: span 2;
        width: auto;
        height: auto;
        padding: 15% 0;
    }
    .section.schedule .wrap .content .listWrap .listcon:nth-child(7),
    .section.schedule .wrap .content .listWrap .listcon:nth-child(8) {
        grid-column: span 3;
    }

    .section.premium{
        background: url(../images/main_premium_bg_m.jpg) center center / cover no-repeat;
        position: relative;
    }
    .section.premium .wrap{
        padding: 40% 0;
    }
    .section.premium .maintit{
        margin-bottom: 7.5%;
    }
    .section.premium .wrap .content{
        position: relative;
        z-index: 2;
    }
    .section.premium .wrap .content .logo{
        width: 15%;
        max-width: max-content;
    }
    .section.premium .wrap .left{
        position: absolute;
        left: 5%;
        bottom: 2.5%;
        width: 25%;
        margin-bottom: 0;
    }
    .section.premium .wrap .left .imageWrap{
        gap:5px;
    }
    .section.premium .wrap .left .imageWrap.--01{
        margin-bottom: 5%;
    }
    .section.premium .wrap .right{
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        margin-top: 0;
        height: 100%
    }
    .section.premium .wrap .right .imageWrap{
        position: absolute;
        right: 0;
        width: 100%;
        height: 100%;
    }
    .section.premium .wrap .right .imageWrap .image {
        position: absolute;
    }
    .section.premium .wrap .right .imageWrap .image.--01{
        transform: translate(0);
        bottom: 1.25%;
        width: 25%;
        left: auto;
        right: 5%;
    }
    .section.premium .wrap .right .imageWrap .image.--02{
        width: 15%;
        left: 22.5%;
        top: 2.5%;
        transform: translate(0);
    }
    .section.premium .wrap .right .imageWrap .image.--03{
        left: 5%;
        width: 15%;
        top: 10%;
    }

    .section.location .wrap{
        flex-direction: column;
    }
    .section.location .wrap .maintit{
        flex-direction: row;
        align-items: flex-end;
        margin-right: 0;
        justify-content: space-between;
        padding: 15% 5% 0;
        transform: translateY(50%);
        opacity: 0;
        transition: 0.75s;
    }
    .section.location.fp-completely .wrap .maintit{
        opacity: 1;
        transition-delay: 0s;
    }
    .section.location .wrap .maintit .tit{
    }
    .section.location .wrap .maintit .image{
        width: 35%;
    }
    .section.location .wrap .maintit .btnWrap{
        display: none;
    }
    .section.location .wrap .content{
        padding: 10% 5% 20%;
        position: relative;
    }
    .section.location .content:after {
        content: "";
        width: 100%;
        height: 0;
        position: absolute;
        left: 0;
        top: -1.25%;
        background: var(--sub-color);
        z-index: -1;
        transition: 2s 1s;
    }
    .section.location .content.active_m:after{
        height: 102.5%;
    }
    .section.location .wrap .content .listWrap{
        margin-bottom: 10%;
    }
    .section.location .wrap .content .listWrap .listcon{
        opacity: 0;
    }
    .section.location .wrap .content .listWrap .listcon.--01{
        margin-bottom: 15%;
    }
    .section.location .wrap .content .listWrap .listcon.active_m{
        animation: fadeInUp 1.5s forwards;
    }
    .section.location .wrap .content .listWrap .listcon .bigimage{
        display: none;
        opacity: 1;
    }
    .section.location .wrap .content .listWrap .listcon .right .text .text_list .title{
        color:#fff;
    }
    .section.location .wrap .content .listWrap .listcon .right .text .text_list .explain{
        font-weight: 300;
        color:#fff;
    }
    .section.location .wrap .content .listWrap .listcon.--02{
        position: relative;
        text-align: right;
        justify-content: flex-end;
    }
    .section.location.fp-completely .wrap .content .listWrap .listcon .right{
        animation: none;
        opacity: 1;
    }
    .section.location .wrap .content .btnWrap{
        text-align: center;
    }
    .section.location .wrap .content .btnWrap .btn {
        font-size: 18px;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 30px;
        padding: 10px 30px;
        display: inline-flex;
        font-weight: 600;
        align-items: center;
        gap: 20px;
        transition: 0.75s;
        opacity: 0;
    }
    .section.location .wrap .content .btnWrap .btn{
        animation: fadeInUp 1.25s forwards;
    }

    .section.contact{
        background: url(../images/main_contact_bg_m.jpg) center center / cover no-repeat fixed;
    }
    .section.contact .bg{
        display: none;
    }
    .section.contact .wrap{
        padding: 25% 0;
        width: 90%;
        margin: 0 auto;
    }
    .section.contact .listWrap{
        flex-direction: column;
        gap: 5vh 0;
        margin-bottom: 10%;
    }
    .section.contact.active_m .listcon{
        transform: translateY(0);
    }
    .section.contact .image{
        margin:0 auto 5%;
        width:80%;
    }
    .section.contact .linkWrap {
        width: 80%;
        margin: 0 auto;
    }

}
@media(max-width:640px){
    .mainVisual .text .name{
        font-size: 8vw;
    }
    .mainVisual .text .explain{
        font-size: 4vw;
    }
    .mainVisual .text .line{
        margin:5% auto;
    }
    @keyframes mainVisual_line{
        to{
            height: 50px;
            opacity: 1;
        }
    }
    .mainVisual .content .circle_open {
        transform: scale(0.75);
        transform-origin: right;
        top: 0;
    }

    .section.schedule .wrap .content .maintit .tit{
        font-size: 9vw;
        font-weight: 600;
        margin-bottom: 2.5%;
    }
    .section.schedule .wrap .content .maintit .explain{
        font-size: 3.6vw;
    }
    .section.schedule .wrap .content .listWrap{
        margin-bottom: 5%;
    }
    .section.schedule .wrap .content .listWrap .listcon .num{
        font-size: 4.5vw;
    }
    .section.schedule .wrap .content .listWrap .listcon .title{
        font-size: 3.4vw;
    }
    .section.schedule .wrap .content .btnWrap .btn{
        font-size: 3.6vw;
        padding: 10px 20px;
    }

    .section.premium .maintit .short .name{
        font-size: 4vw;
    }
    .section.premium .maintit .short .tit{
        font-size: 7vw;
    }
    .section.premium .maintit .big{
        font-size: 18vw;
    }
    .section.premium .wrap .content .listWrap .listcon .explain{
        font-size: 3.4vw;
    }
    .section.premium .wrap .content .listWrap .listcon .title{
        font-size: 4.2vw;
    }

    .section.location .wrap .maintit .tit .tit_con{
        font-size: 10vw;
    }
    .section.location .wrap .content .listWrap .listcon .right .text .text_list .title{
        font-size: 4vw;
    }
    .section.location .wrap .content .listWrap .listcon .right .text .text_list .explain{
        font-size: 3vw;
    }
    .section.location .wrap .content .btnWrap .btn{
        font-size: 3.6vw;
    }

    .section.contact .menuname{
        font-size: 8vw;
    }
    .section.contact .explain{
        font-size: 4vw;
    }
    .section.contact .link{
        font-size: 3vw;
        padding: 3% 0;
    }
    .section.contact .infoWrap .info{
        font-size: 3.6vw;
    }
    .section.contact .infoWrap .call{
        font-size: 8vw;
    }
}


/* @media screen and (max-width: 1080px) {
    #fullpage, .section, .fp-tableCell, .fp-scrollable {
        height: auto !important;
        display: block !important;
        position: relative !important;
    }
}

@media screen and (max-width: 1080px) {
    html, body {
        overflow: visible !important;
        height: auto !important;
    }

    #fullpage, .section, .fp-tableCell {
        height: auto !important;
        min-height: auto;
        display: block !important;
        position: relative !important;
    }
} */

@supports (-webkit-touch-callout: none) {
    /* CSS specific to iOS devices */ 
    .have_background_fix{
        background-attachment: scroll !important;
    }
}