/* メニュータブ */
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: #097BE7;
    border: 1px solid #097BE7;
    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: #097BE7;
    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;
}

/* ホーム - マニュアルダウンロード */
.manual-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.manual {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
}
.manual img {
  width: 45px;
  height: 60px;
  margin-left: 5px;
  margin-right: 15px;
}
.manual-details {
  flex: 1;
}
.manual-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
.manual-date {
  font-size: 14px;
  color: #666;
  margin: 5px 0 0;
}
.manual-note {
  font-size: 12px;
  color: #d9534f;
  margin-top: 5px;
}

/* ホーム - ご質問受付 */
.support-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}
.support-row {
    display: flex;
    align-items: center; /* 垂直中央揃え */
    gap: 30px; /* ボタンとテキストの間隔 */
}
.inquiry-button .contact-button {
    display: inline-block;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 14px;
    white-space: nowrap; /* ボタン内のテキスト折り返し防止 */
}
.contact-button:hover {
    background-color: #555;
}
.contact-info {
    font-size: 16px;
}
.contact-info p {
    margin: 5px 0;
}
.label {
    color: #e66c2c; /* オレンジ色 */
    font-weight: bold;
}
.support-text {
    color: #333;
    text-decoration: none;
}
.support-text:hover {
    text-decoration: underline;
}
.support-note {
    font-size: 14px;
    color: #666;
}
@media (max-width: 600px) {
    .support-row {
        flex-direction: column; /* 縦並びに変更 */
        gap: 15px; /* 間隔を調整 */
        text-align: center; /* 中央揃え */
    }

    .inquiry-button .button {
        width: 100%; /* ボタンを横幅いっぱいに広げる */
        text-align: center;
    }
}


/* 不要項目 非表示 */
.Footer__footerBg,
.ArticleCommentsContainer__rplyBdr,
.kbInlineAttachNone {
	display:none;
}
  
