/* ベース設定 */
:root {
    --primary-color: #0056b3; /* 信頼感のある青 */
    --text-color: #333333;    /* 読みやすい濃いグレー */
    --bg-color: #f9f9f9;      /* 清潔感のある薄いグレー */
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

/* レイアウト共通 */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    position: relative;
}

/* ヘッダー */
.site-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 20px;
    font-weight: bold;
}

/* ボタン装飾 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-header {
    background-color: var(--text-color);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ヒーローエリア */
.hero {
    text-align: center;
    padding: 40px 0 40px;
    background-color: var(--white);
}

.c{
    text-align: center;    
}

.mt20{
    margin-top:20px;
}

.mb20{
    margin-bottom:20px;
}

.info div{
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text {
    margin-bottom: 30px;
    color: #666;
}

.version-info {
    font-size: 0.8rem;
    color: #999;
    margin-top: 15px;
}

/* スクリーンショットエリア */
.screenshots {
    /*padding: 60px 0;*/
    background-color: var(--bg-color);
}

.screenshot-wrapper {
    background-color: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ダミー画像のスタイル（画像を入れたら削除してOK） */
.img-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
    border-radius: 4px;
}

/* 画像を表示させる場合の設定 */
.screenshot-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* 特徴エリア */
.features {
    padding: 60px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
}

/* フッター */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
}

footer a{
    color: #fff;
}

.ss{
    width:300px;
}

.flex{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}