@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: azure;
}

article {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

table {
  border: 1px solid #000;
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 5px;
  border: 1px solid #000;
}

input[type=text], input[type=tel], input[type=email] {
  width: 100%;
}

input[type=number] {
  width: 5em;
  margin-left: 10px;
  margin-right: 10px;
}

select {
  width: 100%;
}

button {
  display: block;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.invoice {
  font-family: sans-serif;
  margin: 40px;
  color: #333;
  background-color: #fff;
}
.invoice .invoice-box {
  max-width: 800px;
  margin: auto;
  padding: 30px;
  border: 1px solid #eee;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.invoice h1 {
  text-align: center;
  margin-bottom: 5px;
}
.invoice .invoice-subtitle {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  margin-top: 0;
  margin-bottom: 40px;
}
.invoice table {
  width: 100%;
  line-height: 2;
  text-align: left;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.invoice table th {
  background: #eee;
  padding: 10px;
}
.invoice table td {
  padding: 10px;
}
.invoice table .total-row td {
  font-weight: bold;
  font-size: 1.2em;
  background: #f9f9f9;
  border-bottom: 1px solid #000;
}
.invoice table .text-right {
  text-align: right;
}
.invoice table .bank {
  margin-top: 30px;
}
.invoice table .bank td {
  border: 1px solid #ccc;
  background: #fafafa;
  padding: 15px;
}

.atena {
  overflow: hidden;
  margin-bottom: 20px;
}
.atena p {
  margin: 0;
}
.atena img {
  float: right;
}

/* 追加：ボタンのスタイル */
.btn-area {
  max-width: 800px;
  margin: 0 auto 20px auto;
  text-align: right;
}

.btn-download {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.btn-download:hover {
  background: #0056b3;
}

/* 超重要：印刷（PDF保存）するときは、ダウンロードボタン自体を画面から消す設定 */
@media print {
  .btn-area {
    display: none;
  }
  body {
    margin: 0;
  }
  .invoice-box {
    border: none;
    box-shadow: none;
    padding: 0;
  }
}
.container {
  width: 80%;
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.btn-home {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}/*# sourceMappingURL=style.css.map */