/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 10 2025 | 07:42:52 */
/* 全体 */
.supporter-section {
  background-color: #DEF4FF;
  padding: 25px 40px 40px;
  text-align: center;
  color: #fff;
  margin: 60px auto 0;
}
@media screen and (min-width: 768px) { 
  .supporter-section {
    padding: 40px 40px 80px;
	margin: 100px auto;
  }
}

/* タイトル */
.supporter-title {
  font-family: 'Gabarito', sans-serif;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin-bottom:20px;
}
@media screen and (min-width: 768px) { 
  .supporter-title {
    margin-bottom:35px;
	font-size: 40px;
  }
}

/* カード配置 */
.supporter-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 850px;
  margin: 0 auto;
}

/* カード */
.supporter-card {
  background: #fff;
  width: 100%;
  padding: 25px 30px 40px;
  text-align: center;
  color: #000;
  position: relative;
  border-top: solid 8px #0065b2;
}

/* サブタイトル */
img.supporter-card-title {
  height: 50px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) { 
  img.supporter-card-title {
    height: 60px;
  }
}

/* テキスト */
.supporter-card-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: justify;
  width: 90%;
  margin: 0 auto 30px; 
}
@media screen and (min-width: 768px) { 
  .supporter-card-text {
    width: 80%;
  }
}

/* ボタン */
.sup-button-actions {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 15px;
}
.sup-button-actions .btn-outline {
    border: 1.5px solid black;
    background-color: transparent;
	width: 160px;
	height: 40px;
    padding: 0 23px 2px 23px;
    border-radius: 0;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    color: black;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sup-button-actions .btn-outline:hover {
    background-color: #fff462;
}