@charset "UTF-8";
/* CSS Document */



.keyword_wrap {
  margin-top: 20px;
  margin-left: 30px;
  width: calc(100% - 30px - 10px);
}
.keyword_wrap h3 {
  font-size: 1.8rem;
  font-weight: 200;
  line-height: 1.0;
  margin-top: 25px;
}
.keyword_wrap h3::before {
  display: inline-block;
  content: '';
  background-color: #f55028;
  vertical-align: -3px;
  margin-right: 8px;
  width: 3px;
  height: 20px;
}
.keyword_wrap ul {
  margin: 10px 0 0 13px;
}
.keyword_wrap ul li {
  display: inline-block;
}
.keyword_wrap ul li::after {
  display: inline-block;
  content: '';
  background-color: #333333;
  vertical-align: -3px;
  margin: 0 18px;
  width: 1px;
  height: 18px;
}
.keyword_wrap ul li:last-of-type::after {
  content: none;
}
.keyword_wrap ul li a {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.67;
  cursor: pointer;
  position: relative; /* 疑似要素の位置基準 */
  text-decoration: none; /* デフォルトの下線を消す */
  white-space: nowrap; /* 単語改行無効化 */
  word-break: keep-all; /* 単語改行無効化 */
  overflow-wrap: normal; /* 単語改行無効化 */
}
.keyword_wrap ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px; /* 下線の位置調整 */
  width: 100%;
  height: 1px; /* 下線の太さ */
  background-color: currentColor; /* テキストと同じ色 */
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left; /* 左端を起点に伸ばす */
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.keyword_wrap ul li a:hover::after {
  opacity: 1;
  transform: scaleX(1); /* 横方向に伸ばす */
}
.keyword_wrap ul li a.current {
  color: #f55028;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px; /* 下線カスタム */
  text-underline-offset: 2px; /* 下線カスタム */
}
.keyword_wrap ul li a.current:hover::after {
  opacity: 0;
}



.card_wrap_title {
  margin-top: 75px;
}
.card_wrap_title h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.0;
  margin: 0 auto;
  width: fit-content;
  position: relative;
}
.card_wrap_title h2::after {
  content: '';
  position: absolute;
  left: -6px;
  bottom: -3px; /* 下線をテキストの下に配置 */
  z-index: -1;
  width: calc(100% + 12px);
  height: 10px;
  background-color: rgba(254,53,0,0.35);
}
  
  
  
@media print, screen and (min-width:1000px) {  
  
  header nav li:nth-of-type(3) a::after { /* Gナビ 閲覧中ページ 下線表示 */
    width: calc(100% + 4px);
  }

  
  
  .keyword_wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 50px auto 0;
    width: 1000px;
  }
  .keyword_wrap h3 {
    font-size: 2.8rem;
    font-weight: 100;
    margin-top: 3px;
    width: 200px
  }
  .keyword_wrap h3::before {
    vertical-align: -3px;
    margin-right: 16px;
    width: 5px;
    height: 28px;
  }
  .keyword_wrap ul {
    margin: 0 0 40px;
    width: 800px;
  }
  .keyword_wrap ul li::after {
    vertical-align: -4px;
    margin: 0 22px;
    height: 24px;
  }
  .keyword_wrap ul li:last-of-type::after {
    content: none;
  }
  .keyword_wrap ul li a {
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 2.0;
  }
  .keyword_wrap ul li a::after {
    bottom: -2px; /* 下線の位置調整 */
  }
  .keyword_wrap ul li a.current {
    text-underline-offset: 3px; /* 下線カスタム */
  }
  
  .card_wrap_title h2 {
    font-size: 2.6rem;
  }


}

