div.items02{ box-sizing:border-box; padding: 25px 0px; border-bottom:#9B9B8C 1px dashed; }
div.items03{ box-sizing:border-box; padding: 25px 0px 10px 0px; }

.form-section {
  border-radius: 8px;
  margin-bottom: 16px;
}
.form-title {
  background: #a40000;
  color: #fff;
  font-weight: bold;
  padding: 9px 0px 6px 0px;
  text-align: center;
  margin-bottom: 16px;
  font-size: 1.1em;
  border-radius: 4px;
}

.title {
  font-size: 1.1em;
  margin-bottom: 26px;
  font-weight: bold;
}

.red {
  color: #d60000;
  font-size: 0.97em;
  margin-left: 8px;
  font-weight: normal;
}

form {
  width: 100%;
}

.row {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #bbb;
  padding: 8px 0 6px 0;
  margin-bottom: 0;
  font-size: 1em;
}

.label-title {
      display: inline-block;
      background: #f7f7f7;
      border-radius: 10px;
      border: 1px solid #bbb;
      padding: 3px 9px 0px 10px;
      font-weight: bold;
      margin-bottom: 5px;
      font-size: 1.05em;
      letter-spacing: 0.1em;
      text-align: left;
      margin-left: 0;
}

.label {
  min-width: 60px;
  text-align: left;
  font-weight: bold;
  margin-right: 8px;
}

.label2 {
  min-width: 60px;
  text-align: left;
  margin-left: 12px;
  margin-right: 8px;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.options label {
  margin-right: 8px;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: 0.05em;
}

.engrave-section {
  margin-top: 30px;
}

.engrave-label {
  display: block;
  font-size: 1em;
  margin-bottom: 8px;
  font-weight: bold;
}

textarea {
  width: 100%;
  height: 70px;
  font-size: 1em;
  border: 1.5px solid #bbb;
  border-radius: 6px;
  padding: 8px;
  resize: vertical;
  box-sizing: border-box;
  background: #fff;
}

/* 追加：下線のスタイル */
.bottom-line {
  width: 100%;
  height: 6px;
  background: #a40000;
  margin-top: 16px;
  border-radius: 3px;
}


div.dotline{ box-sizing:border-box; padding: 10px; border-bottom:#9B9B8C 1px dashed; }

/* レスポンシブ対応 */
@media (max-width: 480px) {
  .row {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.97em;
    padding: 7px 0 5px 0;
  }
  .label, .label2 {
    margin-bottom: 2px;
    min-width: 0;
  }
  .options {
    margin-top: 3px;
  }
  .engrave-section {
    margin-top: 18px;
  }
  .label-title {
    width: 96%;
    font-size: 1em;
    padding: 6px 8px 4px 8px;
    text-align: left;
    margin-bottom: 6px;
    border-radius: 7px;
  }
  
}