@import url("slider.css");
@import url("responsive.css");
@import url("header.css");
@import url("footer.css");
@import url("feature.css");
@import url("detail.css");
@import url("company.css");
@import url("contact.css");
@import url("policy.css");

/* リセット & 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Segoe UI', 'Helvetica Neue', Arial, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif; */
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

.container h2 {    
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* What's New セクション */
.news-section {
    padding: 80px 0;
    background: white;
}

.section-title-left {
    font-size: 42px;
    font-weight: 700;
    color: #4169e1;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #999;
    margin-bottom: 40px;
}

.news-list {
    max-width: 800px;
}

.news-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 14px;
    color: #999;
    min-width: 120px;
}

.news-text {
    font-size: 15px;
    color: #333;
}


/* ページトップボタン */
.page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4169e1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.page-top:hover {
    background: #5a7fe8;
    transform: translateY(-3px);
}

