@import 'https://faq.inpit.go.jp/FAQ/common/bootstrap/css/bootstrap.min.css';
	.nav-link {
      display: block;
      padding: .7rem .5rem .5rem;
      text-align: center;
      text-decoration: none;
      color: black;
      width: 100%;
      border: 1px solid transparent;
      transition: background-color 0.3s;
	  height: 100%;
    }

    .nav-link:hover {
      background-color: rgba(0, 0, 0, 0.1);
    }

    .menu-container {
      background-color: #999999;
      padding: 0 0.5rem; /* グレーの空白部分 */
    }

	.menu-container .menu {
      display: flex;
      justify-content: space-between;
      align-items: center;
	  margin: 0 auto;
	  padding: 0 15%;
	}

    .col {
      flex: 1;
      position: relative;
	  font-size: 1.2rem;
	  border-right: 2px solid #fff;
	  height: 60px;
    }

	.col:last-child {
	  border-right: none;
	}

    .col:nth-child(1) .nav-link {
      background-color: #003DB2; /* 青い背景 */
      color: white; /* テキストカラーを黒に変更 */
    }

    .col:nth-child(2) .nav-link {
      background-color: #D72828; /* 赤い背景 */
      color: white; /* テキストカラーを黒に変更 */
    }

    .col:nth-child(3) .nav-link {
      background-color:  #1D932B; /* 緑の背景 */
      color: white; /* テキストカラーを黒に変更 */
    }

    .col:nth-child(4) .nav-link {
      background-color: #FCDE3A; /* 黄色の背景 */
      color: black; /* テキストカラーを黒に変更 */
    }

    .col:nth-child(odd)::before,
    .col:nth-child(even)::before {
      content: '';
      display: block;
      width: 100%;
      height: 100%;
      background-color: #AAAAAF; 
      position: absolute;
      top: 0;
      z-index: -1;
    }

	.current {
	  position: relative;
      top: -10px;
	  width: 100%;
      padding-top: 1.4rem;
	  height: 70px;
	}

/* レスポンシブ対応（小さい画面サイズ用） */
@media (max-width: 768px) {
  .menu-container .menu {
	padding: 0 1%;
  }
  .col {
	font-size: 1rem;
  }
}