/* ニュース一覧を見る */
.news_meore {
  display: inline-block;
  padding: 10px;
  font-size: 13px;
  color: #202020;
  position: absolute;
  top: 6px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
}

.news_meore img {
  width: 17px;
  transition: all .3s;
}

.news_meore:hover {
  color: var(--cl_main);
}

.news_meore:hover img {
  transform: translateX(5px);
}

/* メインのタイトル */
.section_ttl {
  text-align: center;
}

.section_ttl p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.section_ttl h2 {
  font-family: var(--ff_en);
  font-size: clamp(45px, 5.2vw, 52px);
  font-weight: 700;
  letter-spacing: .05em;
  color: #fff;
  position: relative;
}

.section_ttl h2::after {
  content: "";
  display: inline-block;
  width: 35px;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
}

/* pick up　moreボタン */
.pickup_more_btn {
  background: #fff;
  border: 2px solid #1f2c5c;
  border-radius: 100px;
  padding: 15px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 330px;
  position: relative;
  transition: all .3s;
  font-size: clamp(14px, 1.8vw, 16px);
}

.pickup_more_btn svg {
  width: 18px;
  aspect-ratio: 1/1;
  transition: all .3s;
}

.pickup_more_btn a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pickup_btn .orange p {
  color: #f37433;
}

.orange {
  fill: #f37433;
}

.pickup_btn .green p {
  color: #5dc9a4;
}

.green {
  fill: #5dc9a4;
}

.pickup_more_btn:hover {
  background: #1f2c5c;
}

.pickup_more_btn:hover p {
  color: #fff;
}

.pickup_more_btn:hover svg {
  transform: translateX(5px);
}

/* ===============================================
下層ページのキービジュアル
=============================================== */
.sv {
  padding: 0 2.5vw;
  margin: 35px 0;
  padding-top: 10px;
}

.sv h1 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;

  margin-bottom: 35px;
  margin-top: 10px;
}

.sv h2 {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--cl_main);
  font-family: var(--ff_en);
  font-weight: 600;
  letter-spacing: 0.15em;
}

.sv hr {
  width: 100%;
  height: 1px;
  background-color: #a5a5a5;
  border: none;
}

/* テキストアニメーション */
.letter_slide_up {
  overflow: hidden;
  line-height: 1;
}

.char {
  transform: translateY(50px);
}

/* パンくずリスト */
.pan {
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 10px;
  margin-bottom: 25px;
}

.pan a {
  color: #202020;
  text-decoration: underline;
  display: inline-block;
  white-space: nowrap;
}

.pan p {
  color: #a9a9a9;
}


/* ===============================================
ふわっと（下から）
=============================================== */
/*アニメーション下準備*/
.js_fadeIn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* ============================================================
画面が読み込まれたらテキストを順番に表示
============================================================== */
@keyframes fadeUpAnime_mv {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catch span {
  opacity: 0;
}

/* メインビジュアルのテキスト */
.active .catch span:nth-of-type(1) {
  animation: fadeUpAnime_mv 0.8s forwards 0.2s;
}

.active .catch span:nth-of-type(2) {
  animation: fadeUpAnime_mv 0.8s forwards 0.3s;
}

.active .catch span:nth-of-type(3) {
  animation: fadeUpAnime_mv 0.8s forwards 0.4s;
}

.active .catch span:nth-of-type(4) {
  animation: fadeUpAnime_mv 0.8s forwards 0.5s;
}

.active .catch span:nth-of-type(5) {
  animation: fadeUpAnime_mv 0.8s forwards 0.6s;
}

.active .catch span:nth-of-type(6) {
  animation: fadeUpAnime_mv 0.8s forwards 0.7s;
}

.active .catch span:nth-of-type(7) {
  animation: fadeUpAnime_mv 0.8s forwards 0.8s;
}