:root {
  --viewport-base-pc: 1420;
  --viewport-base-sp: 375;
  --vpx-ratio: 1;
}

@media screen and (min-width: 769px) and (max-width: 1420px) {
  :root {
    --vpx-ratio: var(--viewport-ratio-pc, calc(100vw / 1420px));
  }
}
@media screen and (max-width: 768px) {
  :root {
    --vpx-ratio: min(var(--viewport-ratio-sp, calc(100vw / 375px)), 1.4814814815);
  }
}
.info-main {
  width: 100%;
  padding-top: calc(90px * var(--vpx-ratio));
  background: #fff;
}
.info-main__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  margin-bottom: 40px;
}
.info-main__tab {
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 600;
}
.info-main__tab.is-active {
  background: #202121;
  color: #fff;
  pointer-events: none;
}
.info-main__panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}
.info-main__panel.is-active {
  display: block;
  animation: informationFade 0.3s ease forwards;
}
.info-main__list {
  margin-bottom: 45px;
}
.info-main__item {
  border-bottom: 1px solid #1b3063;
}
.info-main__item:first-child {
  border-top: 1px solid #1b3063;
}
.info-main__item-link {
  position: relative;
  display: grid;
  grid-template-columns: 120px 170px 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 15px 10px;
  transition: opacity 0.3s ease;
}
.info-main__item-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: calc(100% - 18px);
  background: #0A0946;
  transition: transform 0.3s ease;
}
.info-main__item-date, .info-main__item-tag, .info-main__item-ttl {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}
.info-main__empty {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .info-main {
    padding-top: 0;
  }
  .info-main__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    width: 100%;
  }
  .info-main__tab {
    padding: 4px 10px;
    font-size: 13px;
  }
  .info-main__list {
    margin-bottom: 30px;
  }
  .info-main__item-link {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 7px 13px;
    padding: 12px 5px;
  }
  .info-main__item-date, .info-main__item-tag, .info-main__item-ttl {
    font-size: 13px;
  }
  .info-main__empty {
    font-size: 16px;
  }
}
@media (hover: hover) {
  .info-main__item-link:hover,
  .info-main__item-link:focus-visible {
    opacity: 0.7;
  }
  .info-main__item-link:hover::before,
  .info-main__item-link:focus-visible::before {
    transform: translateY(-50%) scaleY(1);
  }
}
@keyframes informationFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.info-detail {
  width: 100%;
  padding-top: calc(60px * var(--vpx-ratio));
  background: #fff;
}
.info-detail__heading {
  margin-bottom: 40px;
}
.info-detail__ttl {
  padding-bottom: 13px;
  margin-bottom: 26px;
  border-bottom: 1px solid #202121;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
.info-detail__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.info-detail__tag {
  padding: 8px 16px;
  background: #666;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.info-detail__date {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.info-detail__content {
  margin-bottom: 60px;
  color: #202121;
  line-height: 1.6;
}
.info-detail__content :where(h1, h2, h3, h4, h5, h6, ul, ol, p, span, a, strong, small, li, table, th, td) {
  all: revert;
}
.info-detail__content * {
  font-family: "Noto Sans JP", sans-serif;
}
.info-detail__content :where(ul, ol, p, span, a, strong, small, li, table, th, td) {
  font-size: 16px;
  color: inherit;
}
.info-detail__content a {
  transition: opacity 0.3s ease;
}
.info-detail__btn {
  width: 100%;
  max-width: 320px;
  padding-block: 17px;
  margin-inline: auto;
  background: #595757;
  box-shadow: 3px 3px 0 #D9D8CB;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  will-change: transform, box-shadow, opacity;
}
.info-detail__btn-txt {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .info-detail {
    width: 100%;
    padding-top: calc(36px * var(--vpx-ratio));
    background: #fff;
  }
  .info-detail__heading {
    margin-bottom: 24px;
  }
  .info-detail__ttl {
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 18px;
  }
  .info-detail__meta {
    display: flex;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .info-detail__tag {
    padding: 6px 12px;
    font-size: 12px;
  }
  .info-detail__date {
    font-size: 16px;
  }
  .info-detail__content {
    margin-bottom: 40px;
  }
  .info-detail__content :where(ul, ol, p, span, a, strong, small, li, table, th, td) {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .info-detail__content a:hover,
  .info-detail__content a:focus-visible {
    opacity: 0.7;
  }
  .info-detail__btn:hover,
  .info-detail__btn:focus-visible {
    box-shadow: none;
    opacity: 0.7;
    transform: translate(3px, 3px);
  }
}
/*# sourceMappingURL=information.css.map */
