/*
 * 固定ページ - スマホ用（768px以下）
 */

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

.blog__title {
  text-align: center;
  font-size: 20px;
  line-height: 2;
  margin-bottom: 23px;
}

.blog__grid {
  display: flex;
  gap: 2%;
  margin-bottom: 30px;
}

.blog__item {
  width: 32%;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .blog__grid {
    gap: 4%;
  }

  .blog__item {
    width: 48%;
  }
  .blog__item:last-child {
    display: none;
  }
}

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

.blog__date {
  display: block;
  font-size: 10px;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 2px;
}

.blog__tag {
  font-size: 10px;
  line-height: 1.6;
  margin-bottom: 2px;
}

.blog__heading {
  height: 54px;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  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: 12px;
  line-height: 1.6;
  padding-right: 20px;
  transition: opacity 0.3s;
}

/* ========================================
     Checkbox List Section
     ======================================== */
.checkbox-list-section {
  width: 100%;
  margin: 0 0 40px;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

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

.checkbox-list-section__text {
  margin: 20px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.checkbox-list-section__items {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding: 20px 20px;
  gap: 15px;
  background: #fff;
}

.checkbox-list-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 15px;
  margin-bottom: -5px;
}
.checkbox-list-item:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.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;
}

.checkbox-list-item__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  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: 14px;
  line-height: 1.8;
  padding-top: 1px;
}
