@charset "utf-8";


/* ==========================================================================
   1. コンポーネント
   ========================================================================== */

/* .section-index 
-------------------------------------------------------------------------- */
.section-index {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-index__item {
  position: relative;
  background-color: #008f3b;
  border-radius: 7px;
  overflow: hidden;
}

.section-index__item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background-color: #4db176;
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
}

.section-index__item::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background-color: #009c41;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

.section-index__link {
  position: relative;
  display: flex;
  padding: 30px 30px 36px; /* PC用 */
  text-decoration: none!important;
  color: #fff;
  align-items: flex-start;
  gap: 8px;
  z-index: 3;
}

.section-index__icon {
  flex-shrink: 0;
  width: 30px; /* PC用 */
  height: 30px; /* PC用 */
  margin-top: 2px; /* PC用 */
}

.section-index__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.section-index__txt {
  flex: 1;
  font-size: 20px; /* PC用 */
  line-height: calc(18 / 14);
}

.section-index__header {
  font-size: 27px; /* PC用 */
  font-feature-settings: "palt";
  font-weight: 700;
  padding-bottom: 5px; /* PC用 */
  background-image: linear-gradient(to bottom, #fff 1px, transparent 1px);
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 100% 1px;
  display: inline;
}

.section-index__header + * {
  margin-top: 12px; /* PC用 */
}

.section-index__txtline--more {
  margin-top: 12px; /* PC用 */
}

.section-index__list-item {
  line-height: 1.5;
  margin-bottom: 3px; /* PC用 */
  padding-left: 1em; 
  text-indent: -0.5em; 
}

.section-index__list-item::before {
  content: "●";
  display: inline-block;
  position: relative;
}

.section-index__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -32px 0 -32px; /* PC用 */
  height: 54px; /* PC用 */
  pointer-events: none; 
  z-index: 3;
  position: relative;
}

.section-index__arrow img {
  width: 89px; /* PC用 */
  height: auto;
  display: block;
}




/* ==========================================================================
   その他
   ========================================================================== */
.pagetop {
  z-index: 10;
}

.date {
  margin: 5px 0 5px 5px;
	font-size: 14px;
}



/* ==========================================================================
   レスポンシブスタイル (メディアクエリ)
   ========================================================================== */
@media screen and (max-width: 600px) {
	.section-index {
		gap: 10px;
	}
	
  .section-index__link {
    padding: 25px 25px 25px;
  }

  .section-index__icon {
    width: 23px;
    height: 23px;
    margin-top: 2px;
  }

  .section-index__header {
    font-size: 20px;
    padding-bottom: 3px;
  }

  .section-index__header + * {
    margin-top: 10px;
  }

  .section-index__txt {
    font-size: 14px;
  }

  .section-index__txtline--more {
    margin-top: 13px;
  }

  .section-index__list-item {
    margin-bottom: 2px;
  }

  .section-index__arrow {
    margin: -22px 0 -22px;
    height: 36px;
  }

  .section-index__arrow img {
    width: 72px;
  }
}

