body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.form-container {
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  max-width: 700px;
}

.form-container h1 {
  color: #202124;
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 15px;
}

.form-section {
  margin-bottom: 25px;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 8px;
}

.form-section h2 {
  color: #202124;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #5f6368;
  font-size: 14px;
  font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="number"]:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 1px #1a73e8;
  outline: none;
}

.product-row {
  /* display: flex; */
  /* 縦並びのためコメントアウト */
  /* gap: 10px; */
  /* 縦並びのためコメントアウト */
  /* align-items: center; */
  /* 縦並びのためコメントアウト */
  margin-bottom: 20px;
  /* 各商品間のマージンを調整 */

  border-radius: 4px;
}

/* .product-row 内の input, button の個別スタイルは .form-group のスタイルに準拠させるため、多くを削除または調整 */
/* .product-row 自体のスタイルは維持 */

.product-row .form-group {
  margin-bottom: 10px;
  /* 商品情報内のフォームグループのマージンを少し詰める */
}

/* 削除ボタンのスタイル調整 */
.product-row .remove-product-row.btn {
  width: auto;
  /* ボタンは内容に合わせる */
  padding: 8px 15px;
  margin-top: 5px;
  display: inline-block;
  /* 他のボタンと合わせる */
}
.btn {
  background-color: #1a73e8;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.btn:hover {
  background-color: #185abc;
}
.btn-red {
  background-color: #dc3545;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.btn-red:hover {
  background-color: #dc3546b4;
}

.total-amount {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  margin-top: 20px;
}

/* PC横並び用 (readme.txtの指示) */
@media (min-width: 768px) {
  /* 常に縦並びにするため、このメディアクエリ内のスタイルは不要 */
}

/* 2025/10/01 追加 */
            header {
              display: flex;
              justify-content: space-between;
              align-items: center;
              padding: 5px;
            }
            header h1 {
              width: 100%;
              text-align: center;
              border: none;
            }
            img.bloom_logo {
              width: 50px;
            }
            button.back_btn {
              width: 80px;
              height: 40px;
              margin-right: 5px;
              margin-top: -15px
            }
            #range_name {
              border-left: 8px #ffc107 solid;
            }
            #range_goods {
              border-left: 8px #28a745 solid;
            }
            #range_remarks {
              border-left: 8px #007bff solid;
            }
            .btn_tuika {
              background-color: #28a745;
            }
            h2.yellow-text {
              color: #ffc107;
            }
            h2.green-text {
              color: #28a745;
            }
            h2.blue-text {
              color: #007bff;
            }
            footer {
              width: 100%;
              text-align: center;
              margin-top: 20px;
            }
            footer a {
              color: #333;
              text-decoration: none;
            }
            .footer_wrap small img {
              width: 14px;
              margin-right: 2px;
              margin-bottom: -2px;
            }

