@charset "utf-8";
/*
Theme Name: NOEL child
Theme URI:https://tcd-theme.com/tcd072
Description:WordPressテーマ「NOEL」の子テーマ
Template:noel_tcd072
Author:TCD
Author URI:https://tcd-theme.com/
Version:1.0
*/

/*
  ここから下にCSSを追記してください。
*/
/* ===============================
   カスタム横並びグローバルメニュー
================================= */
.custom-global-menu-wrapper {
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.custom-global-menu-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;  /* スマホで折り返す */
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.custom-global-menu-list li {
    margin: 0;
    padding: 0;
}

.custom-global-menu-list li a {
    display: block;
    padding: 10px 20px;
    background-color: #636310;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.2s;
    white-space: nowrap;
    font-size: 16px;
    text-align: center;
}

.custom-global-menu-list li a:hover {
    background-color: #1f2f54;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .custom-global-menu-list li a {
        font-size: 14px;
        padding: 8px 12px;
    }
}
