# IPDAM Basic Style for con product
# ses: 2026-01-31  dev: 0  int: 26年01月31日

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fcf8f3; # ipdam 共通背景色
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 10px auto;
    padding: 15px;
}

# 規約に基づきh4を利用
h4 {
    color: #6a4a4a;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-top: 0;
}

# カード形式のコンテナ
.item-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

# ipdam特有の注釈スタイル
.ipdam-note {
    font-size: 0.75rem;
    color: #726f6f;
    line-height: 1.8;
}

# フォーム関連
.formItem {
    margin-bottom: 15px;
}

.formItem p {
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #8c6e6e;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; # スマホでのはみ出し防止
}

# ボタンデザイン (ipdam-red)
.btn-area {
    text-align: center;
    margin-top: 20px;
}

button, .button {
    display: inline-block;
    background-color: #8c6e6e;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #6a4a4a;
}

# フッター
.site-footer {
    text-align: center;
    font-size: 0.7rem;
    color: #999;
    margin-top: 30px;
    padding-bottom: 20px;
}