.kv {
    padding-top: 280px;
}
.kv_inner {
    width: calc(100% - 150px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.main-catch {
    font-size: 9rem;
    letter-spacing: .02em;
}
.main-catch .red {
    color: #901e52;
}
.sub-catch {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 30px;
}
.kv_text_cont {
    max-width: 300px;
}
.kv_text_cont .kv_text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.8;
    text-align: justify;
}
.kv_img {
    margin-top: 70px;
}

.top-nav {
    transform: translateY(-1px);
}
.top-nav-inner {
    display: flex;
}
.top-nav-item {
    width: 25%;
    height: 8vw;
    min-height: 110px;
    overflow: hidden;
    position: relative;
}
.top-nav-item::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: background-color .2s;
}
.top-nav-item:hover::after {
    background-color: rgba(0, 0, 0, 0);
}
.top-nav-item .top-nav-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.top-nav-item .top-nav-text .top-nav-jp {
    font-size: 1.8rem;
    border-bottom: solid 1px #fff;
    padding-bottom: 5px;
    margin-bottom: 5px;
    text-align: center;
    line-height: 1.2;
}
.top-nav-item .top-nav-text .top-nav-jp .min {
    font-size: 1.2rem;
}
.top-nav-item .top-nav-text .top-nav-en {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: .8;
}
.top-nav-item .top-nav-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: grayscale(100%);
}
.top-nav-item .top-nav-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-nav-item:hover .top-nav-img {
    filter: grayscale(0%);
}

.top-bnr-section {
    padding: 100px 0;
}
.top-bnr-item {
    display: block;
    transition: all .2s;
}
.top-bnr-item:first-child {
    margin-bottom: 40px;
}
.top-bnr-item:hover {
    opacity: .8;
}

.top-item-list {
    padding-bottom: 80px;
}
.item-list-title {
    width: 100%;
    border-top: solid 2px #901e52;
    margin-bottom: 40px;
}
.title-en-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 8px;
}
.title-en-wrap .title-icon {
    width: 14px;
}
.title-en-wrap .title-en {
    font-size: 1.4rem;
    font-weight: 500;
    color: #901e52;
}
.item-list-title .title-jp {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: .02em;
}
.item-list-title .title-jp::first-letter {
    color: #901e52;
}
.item-list-container {
    display: flex;
    gap: 20px;
}
.item-list-container .item-link {
    width: calc((100% - 60px) / 4);
    color: #252525;
}
.item-list-container .item-link .item-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
}
.item-list-container .item-link .item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.item-list-container .item-link .item-title {
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 500;
    margin-top: 10px;
    padding: 2px 0 2px 10px;
    border-left: solid 4px #901e52;
}
.item-list-container .item-link .item-description {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-top: 10px;
    color: #5a5a5a;
}
.list-more-wrap {
    margin-top: 40px;
}
.list-more-wrap .list-more {
    font-size: 1.6rem;
    font-weight: 500;
    color: #901e52;
    border-bottom: solid 1px #901e52;
    display: flex;
    gap: 10px;
    width: fit-content;
    margin-left: auto;
}
.list-more-wrap .list-more .more-arrow {
    width: 14px;
}

.about-us {
    padding: 100px 0;
    background-image: url(../images/top/about-us-bg.jpg);
    background-size: cover;
    background-position: center bottom;
    position: relative;
}
.about-us::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 1) 100%);
}
.about-us .inner {
    position: relative;
    z-index: 2;
}
.about-us .title-area {
    border-left: solid 2px #fff;
    padding-left: 15px;
    margin-bottom: 40px;
}
.about-us .title-area .title-en {
    color: #fff;
    font-size: 1.4rem;
}
.about-us .title-area .title-jp {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: .02em;
    margin-top: 10px;
}
.about-txt {
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 2.2;
    color: #fff;
    margin-bottom: 1.5em;
    letter-spacing: .01em;
}
.about-txt .emp {
    color: #252525;
    background-color: #fff;
}


.available-facilities {
    padding: 100px 0;
    background-color: #252525;
}
.available-facilities .upper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}
.available-facilities .upper .more-btn {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    border: solid 1px #fff;
    padding: 10px 20px;
    border-radius: 40px;
    display: flex;
    gap: 10px;
    width: fit-content;
}
.available-facilities .upper .more-btn .more-arrow {
    width: 14px;
}
.available-facilities .title-area {
    border-left: solid 2px #fff;
    padding-left: 15px;
}
.available-facilities .title-area .title-en {
    color: #fff;
    font-size: 1.4rem;
}
.available-facilities .title-area .title-jp {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: .02em;
    margin-top: 10px;
}
.facilities-slider {
    margin: 10px 0;
}
.facilities-item {
    display: block;
    width: 300px;
    aspect-ratio: 4 / 3;
    margin: 0 5px;
    position: relative;
    color: #fff;
}
.facilities-item .item-thumbnail {
    width: 100%;
    height: 100%;
}
.facilities-item .item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.facilities-item .hover-content {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(85, 85, 85, .8);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .2s;
}
.facilities-item .hover-content h3 {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}
.facilities-item .hover-content .more-txt {
    font-size: 1.4rem;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: underline;
}
.facilities-item:hover .hover-content {
    opacity: 1;
}

@media screen and (max-width:1000px) {
    .kv {
        padding-top: 60px;
    }
    .kv_inner {
        width: 100%;
        display: block;
        padding: 0 5%;
    }
    .kv_catch_cont {
        margin: 60px 0;
    }
    .main-catch {
        font-size: 4.6rem;
    }
    .sub-catch {
        font-size: 1.5rem;
        font-weight: 600;
        margin-top: 15px;
    }
    .kv_text_cont {
        max-width: 100%;
        margin-top: 40px;
    }
    .kv_text_cont .kv_text {
        font-size: 1.3rem;
    }
    .kv_img {
        margin-top: 20px;
    }

    .top-nav-inner {
        flex-wrap: wrap;
    }
    .top-nav-item:first-child {
        width: 100%;
        height: 120px;
    }
    .top-nav-item {
        width: 50%;
        min-height: unset;
        height: 100px;
    }
    .top-nav-item .top-nav-img {
        filter: grayscale(40%);
    }
    .top-nav-item .top-nav-text .top-nav-jp {
        font-size: 1.6rem;
    }
    .top-nav-item .top-nav-text .top-nav-en {
        font-size: 1.3rem;
    }
    .top-nav-item .top-nav-text .top-nav-jp .min {
        font-size: 1.1rem;
    }

    .top-bnr-section {
        padding: 60px 0;
    }
    .top-bnr-item:first-child {
        margin-bottom: 20px;
    }

    .top-item-list {
        padding-bottom: 60px;
    }
    .item-list-title {
        border-top: solid 1px #901e52;
        margin-bottom: 25px;
    }
    .title-en-wrap {
        margin: 10px 0;
    }
    .item-list-title .title-jp {
        font-size: 2.2rem;
    }
    .item-list-container {
        overflow-x: scroll;
        padding-bottom: 20px;
    }
    .item-list-container .item-link {
        width: 280px;
        flex-shrink: 0;
    }
    .list-more-wrap {
        margin-top: 25px;
    }
    .list-more-wrap .list-more {
        font-size: 1.5rem;
    }

    .about-us {
        padding: 60px 0;
    }
    .about-us .title-area {
        margin-bottom: 25px;
    }
    .about-us .title-area .title-jp {
        font-size: 2.2rem;
        margin-top: 7px;
    }
    .about-txt {
        font-size: 1.4rem;
        line-height: 2;
        text-align: justify;
    }

    .available-facilities {
        padding: 60px 0;
    }
    .available-facilities .title-area .title-jp {
        font-size: 2.2rem;
        margin-top: 7px;
    }
    .available-facilities .upper {
        margin-bottom: 40px;
    }
    .available-facilities .upper .more-btn {
        font-size: 1.4rem;
        padding: 10px 15px;
    }

    .facilities-item {
        width: 160px;
    }
}