/* メニュータブ */
li a {
  color: inherit; /* aタグの文字色を親と同じに */
}

/* お問い合わせフォーム 「レイアウト」欄の非表示化 */
#field_layoutId {
	display: none;
}

/* ホーム - カテゴリから選ぶ */
.category-container {
    display: flex;
    justify-content: center; /* ボックスを中央寄せ */
    flex-wrap: wrap; /* ボックスを折り返す */
    gap: 20px;
    margin: 0 auto;
    max-width: 960px; /* 最大幅を設定して中央配置 */
}
.category-box {
    display: flex;
    flex-direction: column;
    justify-content: center; /* ボックス内のテキストを中央寄せ */
    align-items: center; /* 水平方向も中央寄せ */
    text-decoration: none;
    color: #EF00E1;
    border: 1px solid #EF00E1;
    border-radius: 5px;
    padding: 15px;
    width: 300px;
    height: 100px;
    box-sizing: border-box;
    transition: background-color 0.3s, color 0.3s;
}
.category-box:hover {
    background-color: #EF00E1;
    color: #ffffff;
}
.category-box .title {
    font-size: 0.95rem;
    margin: 0;
    margin-bottom: 8px;
    text-align: center;
}
.category-box .description {
    font-size: 0.8rem;
    margin: 0;
    text-align: center;
}
