.newsHead {
  margin-top: 5rem;
}
.newsHead__label {
  font-weight: 100;
  font-size: clamp(3rem, 2.257rem + 3.05vw, 5rem);
  line-height: 1;
  color: var(--color-gray);
  text-transform: uppercase;
}
.newsHead__flex {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 4.125rem;
}

h1 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
}
.button.single-news__button {
  text-decoration: none;
  margin: 5rem auto 11.25rem auto;
}

/* 以下、記事コンテンツ */
.single-news__contents  {
  margin-top: 6.25rem;

  h2 {
    background-color: #E8F4FB;
    color: var(--color-black);
    font-size: clamp(1.125rem, 0.986rem + 0.57vw, 1.5rem);
    font-weight: 400;
    display: grid;
    align-items: center;
    width: fit-content;
    padding: .625rem 1rem .625rem 1.5rem;
    line-height: 1.5;
    position: relative;
    border-radius: 4px 0 0 4px;
    overflow: hidden;
    margin-block: 2.5rem;
  }
  h2::after {
    content: "";
    background-color: var(--color-brand-blue);
    width: .5rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  h3 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2;
    position: relative;
    padding-left: 1.125rem;
    margin-block: 2.5rem 1.25rem;
  }
  h3::before {
    content: "";
    background-color: var(--color-brand-blue);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  h4 {
    font-size: 1rem;
    color: var(--color-brand-blue);
    font-weight: 400;
    line-height: 2;
    margin-block: 2.5rem 0.25rem;
  }

  h5 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 2;
    margin-block: 2.5rem 0;
  }

  a {
    color: var(--color-brand-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
    position: relative;
  }
  a:visited {
    color: #551a8b;
  }
  a:active {
    color: #ff0000;
  }

  .icon-link {
    display: inline-block;
    width: fit-content;
    text-decoration: underline;
    position: relative;
  }
  .icon-link::after {
    content: "";
    background: url(/assets/images/common/icon-link--blue.svg) no-repeat center center / contain;
    width: .75rem;
    aspect-ratio: 1 / 1;
    display: inline-block;
    margin-left: .625rem;
  }

  ul {
    margin-left: 2rem;
  }
  ul li {
    padding-left: 1.5rem;
    position: relative;
  }
  ul li::after {
    content: "";
    background-color: var(--color-black);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.85rem;
  }
  .ol__attention {
    .flex {
      display: flex;
      align-items: flex-start;
      gap: 0rem;
    }
    .attention {
      width: fit-content;
      display: block;
    }
  }

  img {
    display: block;
  }
  .border-radius {
    border-radius: 12px;
  }
  .image__max-900 {
    width: 900px;
    max-width: 100%;
    margin-inline: auto;
  }
  
  /* ユーティリティ */
  .grid-2-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .bg-red {
    background-color: #FFAB96;
  }
  .bg-yellow {
    background-color: #FFFD61;
  }
  .text-blue {
    color: blue;
  }
  .text-red {
    color: red;
  }
	.text--break-all {
		word-break: break-all;
	}
  .under-line {
    text-decoration: underline;
  }
  .fz-14 {
    font-size: .875rem;
  }
  .bold,
  .fw-700 {
    font-weight: 700;
  }
  /* 余白 */
  .ml-0 {
    margin-left: 0;
  }
  .mt-16 {
    margin-top: 1rem;
  }
  .mt-20 {
    margin-top: 1.25rem;
  }
  .mt-40 {
    margin-top: 2.5rem;
  }
  .mt-80 {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-top: 1.5rem;
  }
  .single-news__button {
    margin-top: 2.5rem;
    margin-bottom: 5rem;
  }
  .single-news__contents  {
    margin-top: 2.5rem;
    margin-bottom: 5rem;
    ul {
      margin-left: 1rem;
    }
  }
}

/* カレンダー */
.calendar {
  overflow-x: auto;

  table {
    width: 100%;
    border: 1px solid #C8CFD5;
    border-radius: 12px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
  }
  tr:first-of-type {
    background-color: #F3F9FD;
  }
  th,td {
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    padding: 0.882rem;
  }
  tr > th:not(:last-child),
  tr > td:not(:last-child) {
    border-right: 1px solid #ccc;
  }
  tr:not(:last-of-type) > th,
  tr:not(:last-of-type) > td {
    border-bottom: 1px solid #C8CFD5;
  }
  .fw-700 {
    font-weight: 700;
  }
}
@media screen and (max-width: 375px) {
  .calendar {
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
}


@media screen and (max-width: 767px) {
  .grid-2-column {
    grid-template-columns: 1fr;
  }
}


/* tableLayout */
.tableLayout {
	box-sizing: border-box;
}

.tableLayout div {
	display: grid;
	grid-template-columns: 30% auto;
}

.tableLayout dt,
.tableLayout dd {
	border: 1px solid var(--color-gray);
	padding: 0.5rem 1rem;
}

.tableLayout dt {
	border-right: none;
}

.tableLayout div + div dt,
.tableLayout div + div dd {
  border-top: none;
}

@media screen and (max-width:767px) {
	.tableLayout div {
		grid-template-columns: 1fr;
	}

	.tableLayout dt {
		border-right: 1px solid var(--color-gray);
	}

	.tableLayout dd:nth-of-type(1) {
		border-top: none;
	}
}


/* 画像の大きさ */
.img-medium {
	max-width: 30rem;
}

.img-medium {
	max-width: 60rem;
}

.img-large {
	max-width: 100%;
}