* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

#hero {
    background-image: url('GLOCAL HOSTEL.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative; /* 絶対配置するリンク用の要素に必要 */
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.5rem;
}

.btn {
    padding: 10px 20px;
    background-color: #f04a5b;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
}

.section {
    padding: 60px 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.service-item {
    width: 30%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

/* リンク領域のスタイル */
.image-link {
    position: absolute;
    top: 195.77px; /* 上からの距離 */
    left: 617.57px; /* 左からの距離 */
    width: 144.55px; /* リンク領域の幅 (762.12 - 617.57) */
    height: 169.08px; /* リンク領域の高さ (364.85 - 195.77) */
    display: block;
    /* 以下のプロパティで、リンクエリアが見えないようにする */
    background-color: rgba(0, 0, 0, 0); /* 透明に設定 */
}