<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


/* モバイル（デフォルト） */
.sp-only {
    display: block;
    position: fixed; /* 画面に固定 */
    right: 10px; /* 右端へ移動 */
    top: 15px; /* 上に配置 */
    z-index: 600; /* ヘッダーより前面に出す */
}

/* PC用ナビゲーションの設定 */
.pc-only {
    display: none;
    position: absolute;
    right: 20px; /* 右端へ配置 */
    top: 50%;
    transform: translateY(-50%); /* 垂直方向の中央揃え */
}

/* 900px以上の画面サイズでPC用メニューを表示 */
@media screen and (min-width: 900px) {
    .sp-only {
        display: none;
    }

    .pc-only {
        display: block;
    }
}

/* 900px未満でタイトルとナビがぶつかったらモバイル用に切り替え */
@media screen and (max-width: 900px) {
    .pc-only {
        display: none; /* PCナビを非表示 */
    }

      .sns-lang.pc-only {
    display: none !important;
  }

    .sp-only {
        display: block; /* モバイルナビを表示 */
        position: fixed;
        right: 10px;
        top: 15px;
        z-index: 600;
    }

    .header-title {
        max-width: 100%; /* タイトル幅を調整 */
        text-align: center; /* 狭い画面では中央揃え */
        font-size: 1rem; /* 文字サイズを縮小 */
    }
}



/*headerのスタイル*/
.header {
    position: fixed;
    top: 0px;
    width: 100%;
    padding: 16px 0 5px 13px;
    background: rgb(3, 55, 127, 0.9);
    color: #fff;
    z-index: 500;
    border-bottom: 5px solid #fff;
    box-shadow: 0 2px 5px rgba(200, 200, 200, 0.5); /* 白い影で少し立体感を追加 */
}

/*サイトロゴとナビゲーションの並び*/
.header-logo-menu {
    display: flex;
    flex-direction: row;
    align-items: center; /* 縦方向も揃える */
    justify-content: flex-start; /* 左寄せにする */
    gap: 15px; /* ロゴとテキストの距離を固定 */
}

.header-title {
    max-width: 300px; /* テキストが広がりすぎないように制御 */
    text-align: left; /* 左揃え */
}


/*サイトロゴの表示*/
.logo-area {
    width: 65px;
    margin: 0;
    text-align: left;
}

.gnav-toggle {
    position: relative;
    margin-top: 12px;
}

.gnav-hidden {
    display: none;
}

#gnav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
}

#gnav-open span,
#gnav-open span::before,
#gnav-open span::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
    display: block;
    cursor: pointer;
}

#gnav-open span::before {
    bottom: -8px;
}

#gnav-open span::after {
    bottom: -16px;
}

#gnav-close {
    display: none;
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

#gnav-input:checked~#gnav-close {
    display: block;
    opacity: 0.5;
}

#gnav-input:checked~#gnav-content {
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

#gnav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    width: 70%;
    max-width: 300px;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s ease-in-out;
    transform: translateX(-105%);
}

.gnav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-right: 20px;
    text-transform: uppercase;
}

.gnav-item {
    border-bottom: 2px dotted #eee;
    margin: 10px;
    padding-bottom: 20px;
}

.gnav-item a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: block;
    width: 200px;
    text-align: center;
}



@media screen and (min-width:768px) {
        .logo-area {
        width: 65px;
    }

    .gnav-menu {
        flex-direction: row;
        padding-bottom: 0;
        margin: 0;
    }

    .gnav-item {
        border-bottom: none;
        border-left: 1px solid #fff;
        height: 50px;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .gnav-item a {
        color: #f8f8f8;
        width: 120px;
    }

    .gnav-item a:hover {
        color: #ffc800;
    }

}



/* 共通アイコンスタイル */
.sns-lang {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-img {
    height: 24px;
    width: auto;
}

.icon-spacer {
    width: 10px;
}

.icon-img {
    height: 24px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.icon-img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* PC用配置 */
@media screen and (min-width: 900px) {
    .sns-lang.pc-only {
        position: absolute;
        top: 25px;
        right: 30px;
        z-index: 501; /* headerより前に */
    }
}

/* スマホ用配置 */
@media screen and (max-width: 899px) {
    .sns-lang.sp-only {
        flex-direction: row;
        justify-content: center;
        padding: 20px;
        border-top: 1px solid #eee;
    }

    #gnav-content .sns-lang {
        position: relative;
        bottom: 0;
        width: 100%;
    }
}</pre></body></html>