@charset "UTF-8";
/* for service_a2k.html */
/* for PC */

body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f4f4f9;
      margin: 0;
      padding: 30px;
}

.tasks {
	font-size: 1.2em;
	font-weight: bold;
}

.section-title {
      font-size: 2em;
      font-weight: bold;
      color: #fff;
      padding: 16px 24px;
      border-radius: 10px;
      text-align: center;
      background-color: #2e5b46;
      margin: 60px auto 30px auto;
      max-width: 940px;
      width: 100%;
    }

    .card-container {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(1, 1fr);
    }

    @media (min-width: 850px) {
      .card-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 900px) {
      .card-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }

      .card {
      border: 2px solid #000;
      border-radius: 16px;
      background-color: #ffffff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 5px 5px 8px 5px; /* ← 下部だけ 8px に縮小 */
    }


    .card-title {
      font-size: 1.4rem;
      font-weight: bold;
      background: linear-gradient(135deg, #003366, #0055a5);
      color: #fff;
      padding: 12px;
      border-radius: 10px;
      margin: 10px 8px 16px 8px;
    }

    .card p {
      font-size: 1.2rem;
      font-weight: 600;
      line-height: 1.6;
      color: #333;
      margin-bottom: 0;
    }

    .link-icon {
      display: flex;
      align-items: center;
      margin-top: 16px;
      margin-bottom: 0;
      font-size: 1.1rem;
    }

    .card ul {
      padding-bottom: 0;
      margin-bottom: 0;
    }


    .link-icon img {
      width: 24px;
      height: 24px;
      margin-right: 8px;
    }

    .link-icon span {
      border: 1.5px solid #000;
      border-radius: 12px;
      background-color: #ffd54f;
      padding: 6px 12px;
      font-weight: bold;
      color: #000;
      text-decoration: none;
    }

    .card-container.single {
      grid-template-columns: 1fr !important;
      justify-items: start; /* 左寄せ */
    }

    .card-container.single .card {
      max-width: 940px;
      width: 100%;
    }

.tight-list {
  display: block;
  width: 100%;              /* カードと同じ幅に */
  margin: 0;
  padding-left: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  box-sizing: border-box;    /* paddingを幅に含める */
}


.tight-list li:last-child {
  margin-bottom: 0;
}

.highlight-green-white {
  background-color: green;
  color: #ffffff;
}

.section-wrapper {
	max-width: 940px;
	margin: 0 auto;
}

.link-icon a {
      text-decoration: none;
    }
