@charset "UTF-8";
/* ------------------------------------------------------------------------
reset
------------------------------------------------------------------------ */
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body,
header,
footer,
main,
div,
h1,
p,
dl,
dt,
dd,
ul,
li {
    margin: 0;
    padding: 0;
}
header,
footer,
main {
    display: block;
}
ul,
li {
    list-style: none;
}
body {
    line-height: 1;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI',
        'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo UI', Meiryo,
        sans-serif;
    font-size: 12px;
    text-align: center;
}
img {
    border: 0;
    vertical-align: bottom;
    outline: none;
}
a {
    color: inherit;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}

/* ------------------------------------------------------------------------
common
------------------------------------------------------------------------ */
body {
    /* ベース色を濃い青に変更 */
    background: #0a0a2a; 
}
/*
435px：左右背景のサイズ
465px：wrapperのwidth÷2
*/
.bg_body {
    /* 背景画像を維持しつつ、ベース色を濃い青に変更 */
    background-color: #0a0a2a;
    background-image: url('../img/bg_ptrn.gif'), url('../img/bg.png');
    background-position: center top, center top;
    background-repeat: repeat-y, no-repeat;
}
#wrapper {
    margin: 0 auto;
    width: 930px;
}
header {
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 52px;
}
header::before,
header::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
}
header::before {
    bottom: 2px;
    background: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 1px,
        #717171 1px,
        #717171 2px
    );
}
header::after {
    background: linear-gradient(
        to bottom,
        rgba(50, 50, 50, 1) 0%,
        rgba(56, 56, 56, 1) 5%,
        rgba(38, 38, 38, 1) 20%,
        rgba(61, 61, 61, 1) 50%,
        rgba(100, 100, 100, 0.8) 100%
    );
}
header a {
    margin: 5px 0 0 0;
    z-index: 1;
}
footer dl {
    border-top: 1px solid #969696;
    border-bottom: 1px solid #969696;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 84px;
    background: url('../img/bg_link.jpg') repeat-x center / contain;
    font-size: 12px;
}
footer dt {
    margin: 0 2em 0 0;
    font-weight: bold;
}
footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
footer li::after {
    margin: 0 0.5em;
    content: '｜';
}
footer li:last-child::after {
    margin: 0;
    content: none;
}
footer .copyright {
    padding: 20px;
    line-height: 1.6;
    -webkit-box-shadow: 0 5px 5px -2px #000 inset;
    box-shadow: 0 5px 5px -2px #000 inset;
    background: #000
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 3px,
            #323232 3px,
            #323232 4px
        );
}

/* ------------------------------------------------------------------------
Menu Button & Floating Menu
------------------------------------------------------------------------ */
body.no-scroll {
    overflow: hidden;
}

.menu-button {
    position: fixed;
    top: 10px;
    right: 30px;
    cursor: pointer;
    z-index: 1000;
    border: none;
    outline: none;
}

.floating-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 背景の透過黒 */
    z-index: 999;
}

/* メニュー内スクロール用のラッパー */
.menu-scroll-wrapper {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 60px 0;
    -webkit-overflow-scrolling: touch;
}

.menu-container {
    width: 600px; /* コンテンツ全体の幅（最大値+余白） */
    margin: 0 auto;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center; /* 子要素を中央揃え */
}

/* ヘッダー画像設定 (570px x 76px) */
.menu-header {
    background-image: url('../img/bg_header.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 570px;
    height: 76px;
    line-height: 76px;
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    text-shadow: 2px 2px 4px #000;
    margin-bottom: 25px;
    /* 明朝体指定 */
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS 明朝", serif;
}

/* リストのリセット */
.text-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ボタン枠設定 (580px x 70px) */
.text-menu-list li {
    margin-bottom: 12px;
    width: 580px;
    height: 70px;
    transition: filter 0.2s; 
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.text-menu-list li:hover {
    filter: brightness(1.3);
    cursor: pointer;
}

/* リンクテキスト設定 */
.text-menu-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 17px; 
    text-align: center;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0,0,0, 1.0);
    padding: 0 45px;
    /* 明朝体指定 */
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS 明朝", serif;
}

/* 背景画像切り替え */
.text-menu-list li.btn-red {
    background-image: url('../img/bg_btn_red.png');
}
.text-menu-list li.btn-blue {
    background-image: url('../img/bg_btn_blue.png');
}