/* メインスタイル */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.6;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* カスタムカラー */
.bg-turquoise {
    background-color: #1EC2C8;
}

.text-turquoise {
    color: #1EC2C8;
}

.bg-sunset {
    background-color: #FF9B6A;
}

.text-sunset {
    color: #FF9B6A;
}

.border-turquoise {
    border-color: #1EC2C8;
}

/* アニメーション */
.transition {
    transition: all 0.3s ease;
}

/* ヒーローセクション */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* カード */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* テーブル */
.price-table th {
    background-color: rgba(30, 194, 200, 0.1);
}

.price-table tr:nth-child(even) {
    background-color: rgba(30, 194, 200, 0.05);
}

/* アメニティアイコン */
.amenity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(30, 194, 200, 0.1);
    color: #1EC2C8;
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    cursor: pointer;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding-bottom: 1rem;
}

/* フッター */
.footer {
    background-color: #f8fafc;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1EC2C8;
    color: white;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #FF9B6A;
    transform: translateY(-3px);
}

/* モバイルナビゲーション */
@media (max-width: 768px) {
    .mobile-menu {
        transition: all 0.3s ease;
    }
}
