/*
 * 固定ページ - PC用（769px以上）
 */

/* ここに固定ページ用のPC向けスタイルを記述 */
/* ========================================
     Blog Section
     ======================================== */
.blog {
  width: calc(100% - 80px);
  max-width: 1500px;
  margin: 0 auto;
  padding: 60px 0 120px;
}

.blog__title {
  font-size: 28px;
  line-height: 2;
  text-align: center;
  font-weight: 400;
  margin-bottom: 60px;
}

.blog__grid {
  display: flex;
  gap: 41px;
  margin-bottom: 70px;
}

.blog__item {
  flex: 1;
  max-width: calc((100% - 82px) / 3);
}

.blog__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 10px;
}

.blog__date {
  font-family: var(--font-accent);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}

.blog__tag {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.blog__heading {
  height: 88px;
  font-size: 18px;
  line-height: 1.667;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog .link__block {
  display: flex;
  justify-content: flex-end;
}
.blog__more-link {
  display: block;
  text-align: right;
  font-size: 18px;
  line-height: 1.6;
  padding-right: 34px;
  transition: opacity 0.3s;
}

.blog__more-link:hover {
  opacity: 0.7;
}

/* ========================================
   Checkbox List Section
   ======================================== */
.checkbox-list-section {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto 60px;
  padding: 50px 60px;
  background-color: #f5f5f5;
}
@media (max-width: 900px) {
  .checkbox-list-section {
    max-width: 1500px;
    padding: 50px 30px;
  }
}

.checkbox-list-section__title {
  font-size: 26px;
  line-height: 1.8;
  text-align: center;
  font-weight: 400;
}

.checkbox-list-section__text {
  max-width: 900px;
  margin: 10px auto 0px auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

.checkbox-list-section__items {
  max-width: 1100px;
  margin: 15px auto 0 auto;
  padding: 20px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  background: #fff;
}

.checkbox-list-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 15px;
  margin-bottom: -5px;
}

.checkbox-list-item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: calc(100% - 60px);
  height: 1px;
  margin: 0 auto;
  border-bottom: 1px dashed #e0e0e0;
}
/* 最後の要素は常に下線なし */
.checkbox-list-item:last-child:after {
  content: none;
}

/* 総数が偶数の場合、最後から2番目も下線なし */
.checkbox-list-item:nth-last-child(2):nth-child(odd):after {
  content: none;
}

.checkbox-list-item__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-list-item__check img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkbox-list-item__text {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  padding-top: 2px;
}
