@charset "UTF-8";
/*
Template: arkhe
Theme Name: GVT Vancouver
Theme URI: https://arkhe-theme.com/ja/
Description: Arkhe用子テーマ
Version: 1.0.0
Text Domain: arkhe
License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl.html
*/


#top_title_area {
    display: None;
}

#header {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* 他の要素より上に表示するため */
}

/* footer design */
/* フッター全体を横幅いっぱいに */
.l-footer__widgets {
    width: 100%;
    background-color: #333;
    /* 任意の背景色 */
    padding: 40px 20px;
    color: #fff;
    box-sizing: border-box;
}

/* 内部コンテナの最大幅を制限しつつ中央寄せ */
.l-footer__widgets .l-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* 左カラム（ロゴと住所） */
.l-footer__widgets .wp-block-column:first-child {
    flex: 1;
    min-width: 250px;
}

/* 右カラム（リンク） */
.l-footer__widgets .wp-block-column:last-child {
    flex: 1;
    min-width: 200px;
}

/* preタグの整形（改行維持しつつフォント調整） */
.l-footer__widgets pre {
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-line;
    color: #fff;
    margin: 0;
}

/* 画像サイズの調整（すでにstyleで200px指定されているので補足的に） */
.l-footer__widgets img {
    max-width: 100%;
    height: auto;
}

/* リンクの装飾 */
.l-footer__widgets a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}

.l-footer__widgets a:hover {
    text-decoration: underline;
}


/* header desigin */
/* 基本設定 */
body {
    font-family: 'Helvetica Neue', 'Segoe UI', sans-serif;
}

/* ナビゲーション全体 */
.c-gnavWrap {
    display: flex;
    align-items: center;
    background-color: #fff;
}

/* メインナビリスト */
.c-gnav {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

/* 各ナビ項目 */
.c-gnav__li {
    position: relative;
}

/* リンク基本スタイル */
.c-gnav__a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

/* ホバー時のアンダーラインアニメーション */
.c-gnav__a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #007acc;
    transition: width 0.3s ease;
}

.c-gnav__a:hover::after {
    width: 100%;
}

/* ホバー時の文字色変化 */
.c-gnav__a:hover {
    color: #007acc;
}

/* サブメニュー */
.c-gnav__depth1 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    min-width: 220px;
}

.c-gnav__li:hover .c-gnav__depth1 {
    display: block;
}

.c-gnav__depth1 li {
    padding: 5px 20px;
}

.c-gnav__depth1 .c-gnav__a {
    color: #333;
    padding: 8px 0;
    display: block;
}

.c-gnav__depth1 .c-gnav__a:hover {
    background-color: #f0f4f8;
    color: #007acc;
}

/* 言語切り替えボタン */
.header-language-switcher .language-button {
    margin-left: 30px;
    padding: 8px 16px;
    background-color: #007acc;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.header-language-switcher .language-button:hover {
    background-color: #005fa3;
}

#drawer_menu>div>div>div.header-language-switcher {
    margin-top: 1rem;
    margin-left: 0pt !important;
}

#drawer_menu .header-language-switcher .language-button {
    margin-left: 0 !important;
}