:root {
  --infomation-lower-color: #a60d73;
  --infomation-lower-text: #202124;
}

body[data-hero-bgword="INFORMATION"] .lower-hero__bgWord {
  font-size: 215px;
  letter-spacing: 0.02em;
}

.info-page {
  background: #fff;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
}

.info-list {
  padding: 0 0 100px;
  background: #f9f9f9;
}

.info-list__panel {
  width: 1300px;
  margin: 0 auto;
  padding: 70px 46px 70px;
  background: #fff;
  box-sizing: border-box;

  border: 1px solid rgba(15, 23, 43, 0.06);

  box-shadow:
    0 8px 24px rgba(15, 23, 43, 0.04),
    0 30px 80px rgba(15, 23, 43, 0.06);
}

.info-item {
  width: 640px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 78, 162, 0.18);
}

.info-item__head {
  position: relative;
  width: 100%;
  padding: 28px 50px 26px 12px;

  border: none;
  background: transparent;

  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.info-item__meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.info-item__date {
  color: #111;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  font-family: var(
    --mono,
    ui-monospace,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    monospace
  );
}

.info-item__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 112px;
  height: 18px;
  padding: 0 12px;

  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;

  box-sizing: border-box;
}

.info-item__tag--corporate {
  color: #a60d73;
  background: #ffe1f5;
}

.info-item__tag--service {
  color: #f6ab00;
  background: #ffedc5;
}

.info-item__tag--recruit {
  color: #004ea2;
  background: #d8ebff;
}

.info-item--corporate .info-item__body {
  background: #fff6fb;
}

.info-item--service .info-item__body {
  background: #fff8e8;
}

.info-item--recruit .info-item__body {
  background: #f3f8ff;
}

.info-item--corporate .info-item__content {
  border-left-color: #a60d73;
}

.info-item--service .info-item__content {
  border-left-color: #f6ab00;
}

.info-item--recruit .info-item__content {
  border-left-color: #004ea2;
}

.info-item__title {
  display: block;
  margin-top: 12px;

  color: #111;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.info-item__icon {
  position: absolute;
  right: 18px;
  top: 50%;

  width: 14px;
  height: 14px;

  border-right: 2px solid #a60d73;
  border-bottom: 2px solid #a60d73;

  transform: translateY(-50%) rotate(45deg);

  transition: transform 0.3s ease;
}

.info-item.is-open .info-item__icon {
  transform: translateY(-50%) rotate(225deg);
}

.info-item__body {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.info-item__content {
  overflow: hidden;
}

.info-item.is-open .info-item__content {
  position: relative;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  column-gap: 28px;
  align-items: start;
  margin: 0 0 24px;
  padding: 26px 32px 26px 52px;
}

.info-item.is-open .info-item__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: -48px;
  bottom: 0;
  width: 2px;
}

.info-item__image {
  width: 240px;
  margin: 0;
}

.info-item.is-open .info-item__image {
  grid-column: 1;
  grid-row: 1;
}

.info-item__image img {
  display: block;
  width: 100%;
  height: auto;
}

.info-item.is-open .info-item__content > p {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding: 0;
  background: transparent;
}

.info-item--no-image.is-open .info-item__content {
  display: block;
}

.info-item--no-image.is-open .info-item__content > p {
  width: 100%;
}

.info-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;

  margin-top: 70px;
}

.info-pagination__btn {
  width: 32px;
  height: 32px;

  border: none;
  background: transparent;

  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.info-pagination__btn:hover {
  transform: translateY(-2px);
}

.info-pagination__btn.is-active {
  background: #a60d73;
  color: #fff;
}

.info-pagination__dots {
  font-size: 14px;
  color: #222;
}

.info-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.info-pagination .page-numbers:hover {
  transform: translateY(-2px);
}

.info-pagination .page-numbers.current {
  background: #a60d73;
  color: #f9f9f9;
}

@media (min-width: 768px) {
  .info-item.is-open .info-item__content:has(.info-item__image) {
    display: flex;
    align-items: flex-start;
    gap: 28px;
  }

  .info-item.is-open
    .info-item__content:has(.info-item__image)
    .info-item__image {
    flex: 0 0 240px;
    width: 240px;
    margin: 0;
  }

  .info-item.is-open .info-item__content:has(.info-item__image) > p {
    flex: 1;
    margin: 0;
    padding: 0;
    background: transparent;
  }

  .info-item.is-open .info-item__content:not(:has(.info-item__image)) {
    display: block;
  }

  .info-item.is-open .info-item__content:not(:has(.info-item__image)) > p {
    width: 100%;
  }
}

@media (max-width: 767px) {
  body[data-hero-bgword="INFORMATION"] .lower-hero__bgWord {
    font-size: 50px;
    letter-spacing: 0.02em;
  }

  .info-hero {
    padding: 44px 0 34px;
  }

  .info-hero__inner {
    width: 320px;
  }

  .info-hero__bg {
    font-size: 58px;
    letter-spacing: 0.03em;
  }

  .info-hero__en {
    font-size: 18px;
    letter-spacing: 0.22em;
  }

  .info-hero__title {
    margin-top: 8px;
    font-size: 26px;
    letter-spacing: 0.08em;
  }

  .breadcrumb {
    display: none;
  }

  .info-list {
    padding: 28px 0 70px;
    background: #f9f9f9;
  }

  .info-list__panel {
    width: 320px;
    margin: 0 auto;
    padding: 34px 22px 36px;
    background: #fff;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
  }

  .info-item {
    width: 100%;
  }

  .info-item__head {
    padding: 22px 28px 22px 0;
  }

  .info-item__meta {
    gap: 12px;
  }

  .info-item__date {
    font-size: 11px;
  }

  .info-item__tag {
    min-width: 92px;
    height: 16px;
    padding: 0 8px;
    font-size: 9px;
  }

  .info-item__title {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.65;
  }

  .info-item__icon {
    right: 2px;
    width: 12px;
    height: 12px;
  }

  .info-item.is-open .info-item__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 24px;
    padding: 22px 22px 24px;
    background: transparent;
  }

  .info-item.is-open .info-item__image {
    width: 188px;
    margin: 0 auto;
  }

  .info-item.is-open .info-item__content > p {
    width: 100%;
    margin: 28px 0 0;
    padding-top: 10px;
    font-size: 13px;
    background: transparent;
  }

  .info-item--no-image.is-open .info-item__content {
    align-items: stretch;
  }

  .info-item--no-image.is-open .info-item__content > p {
    margin-top: 0;
  }

  .info-item.is-open .info-item__content::before {
    top: -48px;
    bottom: 0;
    width: 2px;
  }

  .info-pagination {
    gap: 10px;
    margin-top: 40px;
  }

  .info-pagination__btn {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}
