<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
*{
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    font-family: Helvetica, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック', meiryo, sans-serif;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}
html {
  --top-spacing: 100px;
  scroll-padding-top: var(--top-spacing);
}
.container{
    display: grid;
    grid-template-columns: 20% 60% 20%;
    grid-template-rows: 70px 100% 30px;
    height: 100%;
    min-height: 100vh;
    position: relative;
    box-sizing: border-box;
  }
  .left {
    height:auto;
    grid-column: 1/2;
    grid-row: 2/3;
    background-color: #d2d2d2;
  }
  .middle{
    height: auto;
    grid-column: 2/3;
    grid-row: 2/3;
    padding: 40px 10px 10px 10px;
  }
  .right {
      height:auto;
      grid-column: 3/4;
      grid-row: 2/3;
      background-color: #d2d2d2;
    }
  .footer{
      grid-column: 1/4;
      grid-row: 3/4;
  }

.header {
    display: flex;
}
header{
    width: 100%;
    position: sticky;
    top: 0;
    /*grid-column: 1/4;
    grid-row: 1/2;*/
    text-align: center;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: #fff;
    z-index: 10000;
    grid-column: 1/4;
    grid-row: 1/2;
}
h1 {
    font-size: 2.2em; /* 大きなフォントサイズ */
    color: #4A90E2; /* ダークブラウン */
    text-align: center; /* 中央寄せ */
    margin-bottom: 20px; /* 下にスペースを追加 */
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5); /* 光の効果 */
}
h2 {
    font-size: 2em; /* 大きなフォントサイズ */
    color: #663815; /* ダークブラウン */
    text-align: center; /* 中央寄せ */
    margin: 14px 0 18px 0; /* 下にスペースを追加 */
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5); /* 光の効果 */
}
h3 {
    font-size: 1.5em; /* 少し大きめのフォントサイズ */
    color: #4a3b30; /* ダークブラウン */
    margin-top: 30px; /* 上にスペースを追加 */
    margin-bottom: 10px; /* 下にスペースを追加 */
    text-align: center; /* 中央寄せ */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3); /* 光の効果 */
}
p {
    font-size: 1em; /* 標準的なフォントサイズ */
    color: #4a3b30; /* ダークブラウン */
    margin: 10px 0; /* 上下にスペースを追加 */
}
button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
ol, ul{
    padding: 1.2rem;
}
ol li {
    padding: 10px;
}

.logo{
    margin-left: 20px;;
}
.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
}
.menu-icon {
    display: none;
    margin-right: 18px;
    font-size: 30px;
    cursor: pointer;
}
.nav {
    display: flex;
    width: 70%;
}
.header-left {
    display: flex;
    gap: 15px;
}
.header-right {
    display: flex;
    gap: 15px;
    margin-left: auto;
}
.nav-item {
    display: inline;
    margin-right: 15px;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
}

.search-bar {
    padding: 5px;
    margin-right: 10px;
}

footer {
    background-color: #333;
    text-align: center;
    width: 100%;
    min-height: 50px;
    padding: 14px 0px;
    font-size: 14pt;
    color: white;
    position: absolute;
}
/*Base*/
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* 非表示状態 */
    height: 100%;
    width: 210px;
    background-color: #343a40;
    padding-top: 60px;
    transition: all 0.3s ease;
    z-index: 998;
    max-height: 100vh;
    overflow-y: auto;
}
.sidebar.active {
    left: 0; /* 表示状態 */
}
.sidebar ul {
    list-style: none;
}
.sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 20px;
    color: #ffffff;
    display: block;
    transition: 0.3s;
}
.sidebar a:hover {
    color: #a8ebff;
}
.sidebar .close-btn {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 36px;
    color: #ffffff;
    cursor: pointer;
}
.sidebar .close-btn:hover {
    color: #c1c1c1;
}
#overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 997;
    top: 0;
    left: 0;
}
#overlay.active {
    display: block; /* オーバーレイを表示 */
}
.blur {
    filter: blur(3px); /* メインコンテンツをぼかす */
}










@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    .nav {
        display: none;
        flex-direction: column;
    }
}
@media screen and (min-width:500px) and (max-width:1024px) {
    .container{
      display: grid;
      grid-template-columns: 30% 70%;
      grid-template-rows:54px 50% 50% 30px;
      height: 100%;
      min-height: 100vh;
      position: relative;
      box-sizing: border-box;
    }

    .left {
      height:auto;
      grid-column: 1/2;
      grid-row: 2/3;
    }
    .right {
        height:auto;
        grid-column: 1/2;
        grid-row: 3/4;
      }
    .middle{
        height: auto;
        grid-column: 2/3;
        grid-row: 2/4;
        margin-right: 10px;
    }
    .footer{
        grid-column: 1/4;
        grid-row: 4/5;
    }
    header {
        grid-column: 1/4;
        grid-row: 1/2;
    }
  }


/* スマートフォン用（縦）のスタイル (768px 未満) */
@media (max-width: 500px) {
    
    .container{
        grid-template-columns: 100% ;
        grid-template-rows: 54px 140px auto 140px 54px;
      }
      header{
        grid-column: 1/4;
        grid-row: 1/2;
        }
      .left{
        grid-column: 1/4;
        grid-row: 2/3;
      }
      .middle{
        grid-column: 1/4;
        grid-row: 3/4;
        padding: 20px 4px;
    }
      .right{
        grid-column: 1/4;
        grid-row: 4/5;
      }
      .footer{
        grid-column: 1/4;
        grid-row: 5/6;
      }
    .header {
        padding: 10px 0px;
    }

    .logo a {
        font-size: 1.2em;
    }
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 1.3em;
    }
    ol li, ul li {
        font-size: 0.7rem;
    }
    p {
        font-size: 0.8em;
        margin: 4px 0;
    }


    .search-bar {
        width: 100%;
        margin: 5px 0;
        display: none;
    }
    .nav{
        display: none;
    }

    .header-right{
        flex-direction: column;
        align-items: flex-end;
    }

    .top-ranking {
        padding: 10px;
    }

    .question-text {
        font-size: 0.9em; /* スマホ表示用に小さく */
    }
}</pre></body></html>