@charset "utf-8";

section {
    width: 100%;
    min-width: 1280px;
    position: relative;
}

/*----------------------------------section 1----------------------------------*/
.section01 {
    width: 100%;
    height: 910px;
    overflow: hidden;
    position: relative;
}

.main-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.img-scale {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: 6s all ease;
    transform: scale(1.05);
}

.img-scale.main-bg1 {
    background-image: url('/pc/images/img_main01.jpg');
}

.img-scale.main-bg2 {
    background-image: url('/pc/images/img_main02.jpg');
}

.img-scale.main-bg3 {
    background-image: url('/pc/images/img_main03.jpg');
}

.img-scale.main-bg4 {
    background-image: url('/pc/images/img_main04.jpg');
}

.img-scale.main-bg5 {
    background-image: url('/pc/images/img_main05.jpg');
}

.img-scale.main-bg6 {
    background-image: url('/pc/images/img_main06.jpg');
}


.main-slide .swiper-slide-active .img-scale {
    animation: scale 6s ease forwards;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.main-slide .main-slide-controller {
    position: absolute;
    bottom: 250px;
    left: clamp(7.5rem, -22.5rem + 37.5vw, 22.5rem); /*360 - 120*/
    z-index: 10;
    color: #fff;
}

.main-slide-controller .main-slide-text h4 {
    font-family: var(--font-num);
    font-size: 18px;
    padding-bottom: 28px;
    font-weight: 300;
}

.main-slide-controller .main-slide-text h2 {
    font-size: 48px;
    color: #fff;
    padding-bottom: 20px;
}

.slide-controller {
    width: 106px;
    position: relative;
    height: 18px;
    display: flex;
    align-items: center;
    gap: 0 14px;
}

.slide-controller .swiper-pagination {
    font-family: var(--font-num);
    position: relative;
    text-align: left;
    display: flex;
    gap: 0 12px;
    width: 60px;
    align-items: center;
    top: auto;
    bottom: auto;
    justify-content: center;
    font-size: 12px;
}

.slide-controller .swiper-next, .slide-controller .swiper-prev {
    position: relative;
    bottom: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.slide-controller .swiper-pagination-total {
    opacity: 0.5;
    margin-left: -6px;
}

.btn-aside-wrap {
    position: absolute;
    right: 90px;
    bottom: 154px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}

.btn-aside-wrap a {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #424242;
    display: flex;
    flex-direction: column;
    gap: 7px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    align-items: center;
    justify-content: center;
}

.btn-aside-wrap a img {
    width: 26px;
}

.btn-aside-wrap a.on {
    background-color: var(--color-main);
}

/*main-pop-calendar*/
.main-calendar-wrap {
    position: absolute;
    right: 90px;
    bottom: 154px;
    z-index: 10;
    width: 430px;
    min-height: 540px;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px 30px;
    visibility: hidden;
    opacity: 0;
    transition: .2s all ease-in-out;
}

.main-calendar-wrap.show {
    visibility: visible;
    opacity: 1;
}

.main-calendar-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}

.main-calendar-header h2 {
    font-size: 26px;
    font-weight: 500;
    font-family: var(--font-num);
}

.main-calendar {
    width: 100%;
    font-family: var(--font-num);
}

.main-calendar thead th {
    height: 45px;
    vertical-align: middle;
    padding-bottom: 5px;
    border-bottom: 1px solid #cbcbcb;
}

.main-calendar thead th:first-child, .main-calendar tbody td:first-child {
    color: var(--red);
}

.main-calendar thead th:last-child, .main-calendar tbody td:last-child {
    color: var(--blue);
}

.main-calendar tbody td {
    padding: 5px;
    height: 60px;
    text-align: center;
    font-size: 18px;
}

.main-calendar tbody td p {
    font-size: 14px;
    padding-top: 12px;
    font-family: var(--font-basic);
    font-weight: 400;
}

.main-calendar tbody td.deadline {
    background-color: #F9F9F9;
    color: #CBCBCB;
    cursor: default;
}

.main-calendar tbody td.deadline:first-child, .main-calendar tbody td.deadline:last-child {
    color: #CBCBCB;
}

.main-calendar tbody td.opening {
    color: #CBCBCB;
    cursor: default;
}

.main-calendar tbody td.opening:first-child, .main-calendar tbody td.opening:last-child {
    color: #CBCBCB;
}

.main-calendar tbody td.possible {
    transition: .1s all ease-in-out;
    cursor: pointer;
}

.main-calendar tbody td.possible:hover {
    background-color: var(--color-main);
    color: #fff;
    border-radius: 5px;
}

.main-calendar tbody td.deadline:hover {
    background-color: #f9f9f9;
    color: #CBCBCB;
    border-radius: 0;
}

.main-calendar tbody td.opening:hover {
    color: #CBCBCB;
    background-color: transparent;
}

.main-calendar-close {
    width: 100%;
    text-align: center;
    line-height: 46px;
    background-color: #ececec;
    color: #707070;
    margin-top: 15px;
}

/*----------------------------------fade right motion----------------------------------*/
.ani-right-3s {
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) .3s both;
}

.ani-right-6s {
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) .6s both;
}


@keyframes slide-right {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}


/*----------------------------------section 2----------------------------------*/
.section02 {
    width: 100%;
    /*padding: 150px clamp(1.25rem, -13.75rem + 18.75vw, 8.75rem) 115px clamp(1.25rem, -21.25rem + 28.125vw, 12.5rem);*/ /*150 140 115 200 - 150 20 115 20*/
    padding: 150px 10px 115px;
    max-width: 1560px;
    margin: auto;
}

.section02 .subtitle {
    font-family: var(--font-serif);
    padding-bottom: 20px;
    color: var(--color-main);
    font-weight: 700;
}

.section02 .title {
    font-size: 30px;
    font-weight: 400;
}

.section02 .title span {
    font-weight: 600;
}

.section02-wrap {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: 30px;
    gap: 0 30px;
}

.main-notice-box {
    display: table;
    border-collapse: collapse;
}

.main-notice-box ul {
    display: table-row;
}

.main-notice-box ul li {
    position: relative;
    border: 1px solid #cbcbcb;
    padding: 10px 10px 19px;
    display: table-cell;
    width: clamp(16.875rem, 13.125rem + 4.6875vw, 18.75rem); /*300 - 270*/
    max-width: clamp(16.875rem, 13.125rem + 4.6875vw, 18.75rem); /*300 - 270*/
    border-collapse: collapse;
}

/*.main-notice-box ul li a{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
}*/

.main-notice-box ul li span {
    display: inline-block;
    background-color: #000;
    text-align: center;
    color: #fff;
    margin: 12px 0 22px;
    width: 60px;
    line-height: 30px;
    font-size: 14px;
    border-radius: 5px;
}

.main-notice-box ul li span.tag-event {
    background-color: var(--color-main);
}

.main-notice-box ul li h2 {
    width: 95%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px;
    font-weight: 500;
}

.main-notice-box ul li h4 {
    font-size: 14px;
    color: #787878;
    padding: 17px 0;
}

.main-quick-link {
    width: 330px;
    display: flex;
    flex-wrap: wrap;
    gap: 17px 16px;
}

.main-quick-link a {
    flex: 0 0 auto;
    flex-basis: 157px;
    height: 157px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    gap: 9px 0;
    font-family: var(--font-serif);
    color: #fff;
    font-size: 18px;
    position: relative;
}

.main-quick-link a img {
    transition: .2s all ease-in-out;
}

.main-quick-link a:hover img {
    transform: translateY(-5px);
}

.main-quick-link a:first-child {
    background: url("/pc/images/img_main_reservation.png") center center no-repeat;
    background-size: cover;
}

.main-quick-link a:nth-of-type(2) {
    background: url("/pc/images/img_main_call.png") center center no-repeat;
    background-size: cover;
}

.main-quick-link a:nth-of-type(3) {
    background: url("/pc/images/img_main_fee.png") center center no-repeat;
    background-size: cover;
}

.main-quick-link a:last-child {
    background: url("/pc/images/img_main_location.png") center center no-repeat;
    background-size: cover;
}

@media screen and (max-width: 1530px) {
    .main-notice-box ul li {
        width: clamp(18.125rem, -7.475rem + 32vw, 23.125rem); /*370 - 290*/
        max-width: clamp(18.125rem, -7.475rem + 32vw, 23.125rem); /*370 - 290*/
    }

    .main-notice-box ul li:nth-of-type(4) {
        display: none;
    }
}

/*----------------------------------section 3----------------------------------*/
.section03 {
    width: 100%;
    padding: 115px 90px 0;
    position: relative;
}

.section03::before {
    content: '';
    background: url('/pc/images/bg_section3.jpg') center center no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 1160px;
    left: 0;
    right: 0;
    top: 250px;
}

.section03-1 {
    position: relative;
    padding-bottom: 190px;
}

.section03-1 .subtitle {
    text-align: center;
    font-family: var(--font-serif);
    padding-bottom: 20px;
    color: var(--color-main);
    font-weight: 700;
}

.section03-1 .title {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
}

.section03-1 .title span {
    font-weight: 600;
}

.main-course {
    display: flex;
    gap: 0 45px;
    margin-top: 75px;
}

.main-course li {
    flex: 1;
    position: relative;
}

.main-course li a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 20;
}

.main-course li figure {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.main-course li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 16px 32px 0 #ABBED14D;
}

.main-course li figure::after {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: .2s all ease-in-out;
    z-index: 5;
    transform: translateY(100%);
}

.main-course li figure.hover::after {
    content: '';
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(0%);
}

.main-course li figure figcaption {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(50%);
    transition: .3s all ease-in-out;
    z-index: 10;
    color: #fff;
}

.main-course li figure.hover figcaption {
    opacity: 1;
    transform: translateY(-50%);
}

.main-course li figure figcaption h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 40px;
}

.main-course li figure figcaption p {
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
}

.main-course li h2.title {
    padding: 30px 0 15px;
    font-size: 30px;
    font-weight: 600;
    text-align: left;
}

.main-course li p.description {
    font-weight: 400;
    color: #707070;
    line-height: 1.5em;
}

.section03-2 {
    width: 100%;
    /*overflow: hidden;*/
    padding-bottom: 115px;
}

.main-facil-wrap {
    display: flex;
    gap: 0 45px;
    justify-content: center;
    align-items: center;
}

.main-facil-area {
    max-width: 1145px;
    width: calc(100% - 360px);
}

.main-facil-slide {
    box-shadow: 0 16px 32px 0 #ABBED14D;
    width: 100%;
    height: 550px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.main-facil-slide .slick-slide {
    height: 550px;
}

.main-facil-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-facil-text {
    width: 310px;
    text-align: left;
}

.main-facil-text .slick-slide {
    padding-bottom: 90px;
}

.main-facil-text div h4 {
    text-transform: uppercase;
    font-size: 18px;
    font-family: var(--font-serif);
    color: var(--color-main);
}

.main-facil-text div h2 {
    padding: 22px 0 20px;
    font-size: 30px;
    font-weight: 600;
}

.main-facil-text div p {
    width: 100%;
    height: 48px;
    line-height: 1.5em;
    color: #707070;
    margin-bottom: 30px;
}

.main-facil-text div a {
    text-decoration: underline;
    color: #707070;
    font-size: 14px;
    text-transform: uppercase;
}

.main-facil-text .slick-arrow {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 0;
    z-index: 5;
}

.main-facil-text .slick-prev::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: url('/pc/images/main_facil_left.svg') center center no-repeat;
    width: 24px;
    height: 24px;
}

.main-facil-text .slick-next::before {
    content: '';
    position: absolute;
    left: 38px;
    bottom: 0;
    background: url('/pc/images/main_facil_right.svg') center center no-repeat;
    width: 24px;
    height: 24px;
}

/*main-start-popup*/
.main-pop-wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 200;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-popup {
    width: 350px;
    height: 466px;
    border-radius: 10px;
    overflow: hidden;
}

.main-popup .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    opacity: 1;
    background-color: #cbcbcb;
}

.main-popup .swiper-pagination-bullet-active {
    background-color: var(--color-main);
}

.main-pop-slide img {
    width: 100%;
    display: block;
}

.main-pop-slide li button {
    border: none;
    background: #d1d1d1;
    color: transparent;
    cursor: pointer;
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 100%;
    padding: 0;
}

.dots_custom li.slick-active button {
    background-color: #08c1ce;
}

.main-pop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-top: 1px solid #CBCBCB;
    height: 46px;
    padding: 0 20px;
    color: #707070;
}

.main-pop-footer li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 0 5px;
}

.main-pop-footer li button {
    display: flex;
    align-items: center;
    gap: 0 5px;
    color: #707070;
}


/*pop-contact*/
.pop-contact {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 200;
    transform: translate(-50%, -50%);
    width: 560px;
    max-height: 780px;
    overflow-y: auto;
    border-radius: 10px;
    background-color: #fff;
    padding: 35px 30px;
}

.pop-contact .normal-text-box {
    font-size: 14px;
    padding: 17px 20px;
    line-height: 20px;
}