@charset "UTF-8";

/* トップボタン */

#page_top{
    width: 50px;
    height: 50px;
    position: fixed;

    right: 1%;
    bottom: 1%;
    opacity: 0.9;
    z-index: 999;
    background-color: white;
    border-radius: 50%;
  }
  #page_top a{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }
  #page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #3f98ef;
    position: absolute;
    width: 15px;
    height: 15px;
    top: -40px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  #page_top a::after{
    content: 'PAGE TOP';
    font-size: 11px;
    color: #fff;
    position: absolute;
    top: 25px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    color : #3F98EF;
    line-height: 10px;
  }

a {
    text-decoration: none;
}

a:hover {
    opacity: 80%;
}

header img {
    vertical-align: bottom;
    line-height: 1.0em;
}

.btns {
    background: white;
    margin: 30px 0;

}

.btns ul{
    display:flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.btns ul li img {
    height: auto;
}


/* スクロールバーを追加するスタイル */
    .lity-content {
      max-height: 80vh; /* モーダル内の高さを制限 */
      overflow-y: auto; /* 縦方向のスクロールを有効に */
      padding: 20px; /* 内容が見やすくなるよう余白を追加 */
    }

    /* スクロールバーのカスタマイズ（オプション） */
    .lity-content::-webkit-scrollbar {
      width: 8px;
    }

    .lity-content::-webkit-scrollbar-thumb {
      background: #888; /* スクロールバーの色 */
      border-radius: 4px;
    }

    .lity-content::-webkit-scrollbar-thumb:hover {
      background: #555; /* ホバー時の色 */
    }

    .lity-content::-webkit-scrollbar-track {
      background: #f1f1f1; /* スクロールバーの背景色 */
    }
