/**** 1回だけ支援ページ ****/
.just-once .donation-form-container{
	margin-top: 35px;
}
/* プレゼントボックス全体 */
.just-once .donation-form {
    background: #fffaf5;
    border: 7px solid #f36f6f;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 600px;
    margin: 4px auto 30px auto;
    position: relative;
    text-align: center;
    overflow: visible;
	font-weight: bold;
}
.just-once .donation-form input{
    margin-bottom: 3px;
}

/* 上部のリボン風の帯 */
.ribbon-wrapper {
    position: relative;
    width: 100%;
    height: 50px;
    margin-bottom: -30px;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.ribbon-base {
    position: relative;
    width: 120px;
    height: 40px;
}

/* 中央の結び目 */
.ribbon-base .knot {
	background: #f36f6f;
    width: 40px;
    height: 25px;
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border-radius: 8px;
    z-index: 3;
}

.ribbon-base .left,
.ribbon-base .right {
	background: #f36f6f;
    width: 40px;
    height: 18px;
    display: block;
    position: absolute;
    top: 4px;
    z-index: 2;
}

/* 左のリボンを左下に垂らす */
.ribbon-base .left {
  left: 0;
  transform: rotate(30deg); /* ←ここを +30度に変更 */
  border-radius: 4px 0 0 4px;
}

/* 右のリボンを右下に垂らす */
.ribbon-base .right {
  right: 0;
  transform: rotate(-30deg); /* ←ここを -30度に変更 */
  border-radius: 0 4px 4px 0;
}

.just-once .donation-form label{
    margin-top: 25px;
    margin-bottom: 0px;
}

/* 金額表示 */
.just-once #amount {
  font-size: 1.4em;
  font-weight: bold;
  color: #d43f3f;
  border: 2px dotted #f36f6f;
  border-radius: 8px;
  padding: 10px;
  width: 160px;
  margin: 10px auto;
  text-align: center;
  background: #fff;
}

/* 規約同意チェック */
.just-once .donation-consent .consent-label{
	padding: 0;
    margin: 50px auto 0;
    display: inline-block;
    line-height: 1.5;
}
.donation-consent .consent-label input{
	width: 15px;
	margin-right: 10px;
}
.donation-consent .consent-label a{
	color: #27568b;
}

/* ボタン（支援する） */
.just-once .btn-donation {
  background: #f36f6f;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.1em;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
  font-family: "Hiragino Mincho Pro", "Yu Mincho", "游明朝", serif !important;
}

.just-once .btn-donation:hover {
  background: #e03131;
}

/* 注意書き・メッセージ */
.just-once .note, .form-user-info p {
  font-size: 0.9em;
  color: #666;
  margin: 10px 0;
}

/* ユーザー情報 */
.just-once .form-user-info {
    margin: 30px 20px;
}

.just-once .form-user-info p {
  margin: 5px 0;
}

.just-once .form-user-info label{
	padding: 3px 30px;
}
.just-once .form-user-info .name-field label {
    padding: 3px 0px;
}
.just-once .form-user-info .name-container {
    margin-top: 0px;
    padding-left: 47px;
    padding-right: 5px;
}