/* 共通リセット・ベース */
.links-information-single {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.links-information-single .container {
  max-width: 1680px;
  width: 80%;
  margin: 0 auto;
}

.links-information-single .info-title {
  font-size: calc(36 / 1680 * 100vw);
  font-weight: bold;
  margin-bottom: calc(20 / 1680 * 100vw);
  text-align: center;
}

.links-information-single .info-about {
  font-size: calc(20 / 1680 * 100vw);
  text-align: center;
  margin-bottom: calc(60 / 1680 * 100vw);
}

.links-information-single .row-layout {
  display: flex;
  align-items: center;
  gap: calc(40 / 1680 * 100vw);
  margin-bottom: calc(60 / 1680 * 100vw);
  flex-wrap: nowrap;
}

.links-information-single .image-block {
  flex-shrink: 0;
  width: calc(600 / 1680 * 100vw);
}

.links-information-single .image-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.links-information-single .text-block {
  flex: 1;
}

.links-information-single .explanation-heading {
  font-size: calc(28 / 1680 * 100vw);
  font-weight: bold;
}

.links-information-single .detail-text {
  font-size: calc(18 / 1680 * 100vw);
  padding: calc(20 / 1680 * 100vw);
  background-color: #f9f9f9;
  border-radius: 8px;
  white-space: pre-wrap;
}

.info-about {
  text-align: left !important;
}

/* 縦長画面（スマホ）用：@mediaで上書き */
@media (max-aspect-ratio: 1/1) {
  .links-information-single .container {
    width: calc(355 / 375 * 100vw);
  }

  .links-information-single .info-title {
    font-size: calc(28 / 355 * 100vw);
    margin-bottom: calc(16 / 355 * 100vw);
  }

  .links-information-single .info-about {
    font-size: calc(16 / 355 * 100vw);
    margin-bottom: calc(40 / 355 * 100vw);
  }

  .links-information-single .row-layout {
    flex-direction: column;
    gap: calc(20 / 355 * 100vw);
    margin-bottom: calc(40 / 355 * 100vw);
  }

  .links-information-single .image-block {
    width: 100%;
  }

  .links-information-single .explanation-heading {
    font-size: calc(22 / 355 * 100vw);
    text-align: center;
  }

  .links-information-single .detail-text {
    font-size: calc(16 / 355 * 100vw);
    padding: calc(16 / 355 * 100vw);
  }
}


.links-information-archive .container {
  max-width: 1680px;
  width: 80%;
  margin: 0 auto;
}

.archive-heading {
  font-size: calc(32 / 1680 * 100vw);
  text-align: center;
  margin-bottom: calc(40 / 1680 * 100vw);
}

.info-archive-list {
  display: flex;
  flex-direction: column;
  gap: calc(40 / 1680 * 100vw);
}

.info-archive-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: calc(24 / 1680 * 100vw);
  background: #fff;
  transition: background 0.2s;
}

.info-archive-item:hover {
  background: #f7f7f7;
}

.info-archive-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.info-archive-title {
  font-size: calc(24 / 1680 * 100vw);
  font-weight: bold;
  margin-bottom: calc(10 / 1680 * 100vw);
}

.info-archive-about {
  font-size: calc(18 / 1680 * 100vw);
  color: #555;
}

.info-archive-more {
  font-size: calc(16 / 1680 * 100vw);
  color: #0073aa;
  margin-top: calc(10 / 1680 * 100vw);
}

/* 縦長用（スマホ） */
@media (max-aspect-ratio: 1/1) {
  .links-information-archive .container {
    max-width: 355px;
    width: calc(355 / 375 * 100vw);
    padding: 0 10px;
  }

  .archive-heading {
    font-size: calc(24 / 355 * 100vw);
  }

  .info-archive-title {
    font-size: calc(20 / 355 * 100vw);
  }

  .info-archive-about {
    font-size: calc(16 / 355 * 100vw);
  }

  .info-archive-more {
    font-size: calc(14 / 355 * 100vw);
  }
}
