@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
    background: #F4F5F0;
    color: #35545f;
    line-height: 1.8;
    box-sizing: border-box;
    max-width: 100%;
    font-weight: bold;
}

/* Header */
.header {
    width: 100%;
    background: url('./img/hotel.jpeg') center center / cover no-repeat;
    height: 100vh;
    color: #F4F5F0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

nav {
    overflow: hidden;
}

.logo {
    width: 140px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px 0 50px;
    width: 100%;
    background-color: #ffffff32;
    height: 10%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* ヘッダーより上に表示されるように */
    background-color: rgba(255, 255, 255, 0.2);
    /* 背景を半透明に保つ */
    backdrop-filter: blur(15px);
    /* 背景ぼかし（オプション） */
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 6rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav li {
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
}

.nav a {
    color: #C6AB80;

    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    white-space: nowrap;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.nav a:hover {
    opacity: 0.7;
}

.header-text {
    margin: auto;
    font-family: 'Playfair Display', serif;
}

.header-text h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* ------------------固定CSS topをいじった時のみ変える-------------------------------------------------------------- */

h2 {
    text-align: center;
    font-size: 200%;
}

h3 {
    font-size: 150%;
}

/* Sections */
.section {
    text-align: center;
    margin: 10rem 5rem;
    width: 100%;
    padding: 10rem;
}

.font1 {
    font-family: 'Playfair Display', serif;
}

.font2 {
    font-family: 'Noto Sans JP', sans-serif;
}

.concept {
    position: relative;
    padding: 20rem 0 30rem;
    margin: 15rem 2rem;
}

.concept img {
    position: absolute;
}

.scroll-up {
    opacity: 0;
    visibility: hidden;
    transform: translateY(150px);
    transition: all 1s;
}

.scroll-up.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

#no1 {
    width: 15%;
    top: 0;
    left: 2%;
}

#no2 {
    width: 20%;
    top: 5%;
    left: 15%;
}

#no3 {
    width: 20%;
    top: 10%;
    right: 7%;
}

#no4 {
    width: 20%;
    left: 2%;
    top: 35%;
}

#no5 {
    width: 20%;
    right: 0;
    top: 47%;
}

#no6 {
    width: 27%;
    bottom: 0;
    left: 0;
}

#no7 {
    width: 20%;
    bottom: 12%;
    left: 35%;
}

#no8 {
    width: 20%;
    bottom: 0;
    right: 5%;
}

.concept div {
    margin: 7rem;
    line-height: 5;
    text-align: center;
    font-weight: bold;
}

.hoteltime {
    margin: 10rem auto;
    overflow: hidden;
}

.hoteltime img {
    margin-top: 1rem;
    width: 60%;
    height: auto;
    display: block;
    margin: 7rem auto;
}

.scrollAnime {
    transform: translateX(-100%);
    opacity: 0;
    transition: all 2.5s;
}

.scrollAnime.revers {
    transform: translateX(100%);
}

.scrollAnime.on {
    transform: translateX(0);
    opacity: 1;
}

p {
    text-align: center;
    font-weight: bold;
    padding: 2rem 0;
}

.mainlast {
    line-height: 5;
}

/* Footer */
footer {
    background: url(./img/sea3.jpg) center / cover no-repeat;
    color: #fff;
    padding: 8rem 2rem;
    text-align: center;
    margin-top: 15rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.footer-content nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 5rem;
    margin-bottom: 2rem;
}

.footer-content nav a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-content nav a:hover {
    opacity: 0.7;
}

.sns img {
    width: 40px;
    margin: 0 10px;
    vertical-align: middle;
}

.sns a {
    color: #F4F5F0;
    text-decoration: none;
}

footer p {
    margin-top: 3rem;
}

.logo-footer {
    width: 120px;
    margin-top: 1rem;
}

.footer-content small {
    display: block;
    text-align: center;
    margin-top: 1rem;
}

.fixed-reserve-btn {
    position: fixed;
    bottom: 30px;
    /* 下からの距離 */
    right: 30px;
    /* 右からの距離 */
    padding: 1rem 2rem;
    background-color: #35545f;
    color: #F4F5F0;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s;
}

.fixed-reserve-btn:hover {
    background-color: #5a1919;
}

/* ドロップダウンメニュー */
.footer-content nav {
    position: relative;
    overflow: visible;
}

.footer-content nav ul {
    position: relative;
    font-family: 'Playfair Display', serif;
}

/* ドロップダウン全体の親 */
.footer-content .dropdown {
    position: relative;
}

/* ドロップダウンの中身 */
.footer-content .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #35545fac;
    padding: 0;
    list-style: none;
    margin: 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    min-width: 160px;
}

/* メニューのリンク */
.footer-content .dropdown-menu li a {
    color: #F4F5F0;
    padding: 10px;
    display: block;
    text-decoration: none;
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
}

.footer-content .dropdown-menu li a:hover {
    background-color: #5a1919;
}

/* ホバーで表示 */
.footer-content .dropdown:hover .dropdown-menu {
    display: block;
}


.pp a {
    text-decoration: none;
    color: #F4F5F0;
}

.pp {
    margin-top: 1rem;
}

.responsive {
    display: none;
}

@media (max-width: 999px) {
    h2 {
        font-size: 200%;
    }

    #pc {
        display: none;
    }

    .concept div {
        line-height: 2;
        margin: 0;
    }

    .concept {
        margin: 0 1rem;
        padding: 5rem 0;
    }

    .concept p {
        margin-top: 2rem;
    }

    .hoteltime {
        margin: 0 auto;
    }

    .hoteltime img {
        width: 100%;
        margin-top: 2rem;
    }

    .mainlast {
        line-height: 2;
    }

    p {
        padding: 0;
    }

}