@charset "UTF-8";
/* CSS Document */

/* supporters */
#supporters {
    margin: 0;
    padding: 0;
    background-image: linear-gradient(-45deg, #ff69ae, #ffd0e6);
}

.supporters-section {
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.supporters-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.supporters-header h3 {
  font-size: 4.0rem;
  font-weight: bold;
  color: #fff;
}

.supporters-subtitle {
    color: #fff;
	padding-bottom: 25px;
}

.stars {
    display: flex;
    gap: 5px;
    color: gold; /* 星の色 */
    font-size: 1.5em;
    margin-bottom: 10px;
}


.supporters-grid {
    display: grid;
    gap: 20px;
    justify-content: center;
}

.supporter-card {
    background: rgba(255, 255, 255, 70%); /* 半透明の背景 */
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    text-align: left;
    min-height: 180px; /* カードの最小高さを設定 */
    border: 2px solid #fff; /* 薄いピンクの枠線 */
}

.supporter-card.large-card {
    /*grid-column: span 2; /* 最後のカードを2列に広げる */
    margin: 0 auto; /* 中央寄せ */
}


.supporter-avatar01 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0; /* 縮小しないように設定*/
	background-image: url("../images/peo1.png");
}

.supporter-avatar02 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0; /* 縮小しないように設定*/
	background-image: url("../images/peo1.png");
}
.supporter-avatar03 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0; /* 縮小しないように設定*/
	background-image: url("../images/peo1.png");
}
.supporter-avatar04 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0; /* 縮小しないように設定*/
	background-image: url("../images/peo1.png");
}

.supporter-info h3, .supporter-info h4 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
    line-height: 1.2;
}

.supporter-info h4 {
    font-size: 2em;
    color: #FF69AE;
    margin-bottom: 5px;
    font-weight: normal;
}

.supporter-info p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}
.supporter .ttl {
  width: 100%;
  text-align: center;
	}

.supporter .ttl h3 {
  font-size: 4.0rem;
  font-weight: bold;
  color: #9d7855;
}

.supporter .ttl p {
  color: #9d7855;
	padding-bottom: 25px;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
    .supporters-grid {
        grid-template-columns: 1fr; /* 1列にする */
    }

    .supporter-card.large-card {
        grid-column: span 1; /* 1列に戻す */
        max-width: 100%;
    }
	.supporters-header h3 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
}

.supporters-subtitle {
    color: #fff;
	padding-bottom: 20px;
}
}
