@charset "UTF-8";
:root {
  --main-gold: #D4AF37;
  --light-gold: #F5E7C1;
  --dark-gold: #856D13;
  --bg-color: #FFFDF7;
  --text-color: #333333;
  --gold-primary: #D4AF37;
  --gold-secondary: #FFD700;
  --gold-light: #F9F1DC;
  --gold-dark: #A67C00;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.wrap {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--light-gold);
}

h1 {
  color: var(--dark-gold);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  border-bottom: 2px solid var(--main-gold);
  padding-bottom: 10px;
}

p {
  margin-bottom: 15px;
  color: var(--text-color);
}

.input_area {
  margin: 25px 0;
}

label {
  display: block;
  margin-bottom: 25px;
}

label p {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-gold);
}

.required {
  color: #D9534F;
  margin-left: 5px;
}

input[type=text], textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #E3E3E3;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s;
  background-color: #FFFEF8;
}

input[type=text]:focus, textarea:focus {
  outline: none;
  border-color: var(--main-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.next_btn {
  background-color: var(--main-gold);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  width: 200px;
  margin: 30px auto 10px;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.next_btn:hover {
  background-color: var(--dark-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header-icon {
  font-size: 32px;
  color: var(--main-gold);
  margin-bottom: 10px;
}

.step-indicator {
  display: flex;
  justify-content: center;
  margin: 20px 0 30px;
}

.step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #E9E9E9;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  position: relative;
  font-weight: 600;
}

.step.active {
  background-color: var(--main-gold);
  color: white;
}

.step:not(:last-child):after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #E9E9E9;
  right: -30px;
  top: 50%;
}

.step.active:not(:last-child):after {
  background-color: var(--main-gold);
}

@media (max-width: 768px) {
  .wrap {
    padding: 20px;
    margin: 20px auto;
  }
  .next_btn {
    width: 100%;
  }
}
.err_area {
  background-color: #FFF5F5;
  border: 1px solid #FFDEDE;
  border-radius: 5px;
  padding: 15px;
  margin: 20px 0;
}

.err_area p {
  margin-bottom: 10px;
  color: #666;
}

.err_area p:last-child {
  margin-bottom: 0;
}

.small {
  font-size: 0.5em;
  color: gray;
}

.red {
  color: #D9534F;
  font-weight: bold;
}

/* カレンダー全体のスタイル */
.calendar_button {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 20px;
}

/* カレンダーの日付セルのスタイル */
.mycld_td {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border: 1px solid #ccc;
}

/* 選択された日付セルのスタイル */
.mycld_td.on {
  background-color: #B3D39B;
  color: black;
}

/* カレンダーのヘッダーのスタイル */
.calendar_button th {
  background-color: #f2f2f2;
  padding: 10px;
  text-align: center;
}

/* カレンダーの月表示のスタイル */
.calendar_button th[colspan="7"] {
  color: #333;
}

/* リセットボタンのスタイル */
.mycld_month_off {
  display: inline-block;
  padding: 5px 10px;
  background-color: #ddd;
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

select {
  width: 100%;
  padding: 12px;
  border: 1px solid #E3E3E3;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 25px;
  background-color: #FFFEF8;
  color: var(--text-color);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

select:focus {
  outline: none;
  border-color: var(--main-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* 希望設定のスタイル */
.setting_area p[id] {
  position: relative;
  padding: 0.8rem 1rem;
  margin: 1rem 0;
  background-color: white;
  border-radius: 4px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.setting_area p[id]::after {
  content: "\f285";
  font-family: "bootstrap-icons";
  position: absolute;
  right: 1rem;
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.setting_area p[id]:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#food_ok::before {
  content: "\f42e";
  font-family: "bootstrap-icons";
  margin-right: 0.8rem;
  color: var(--gold-primary);
  font-size: 1.2rem;
}

#food_ng::before {
  content: "\f623";
  font-family: "bootstrap-icons";
  margin-right: 0.8rem;
  color: var(--red);
  font-size: 1.2rem;
}

/* モーダルのスタイル */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  position: relative;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: var(--gold-dark);
}

.close-modal {
  font-size: 1.8rem;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
}

.close-modal:hover {
  color: var(--gold-primary);
}

.modal-body {
  margin-bottom: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  border-top: 2px solid var(--gold-light);
  padding-top: 1.5rem;
}

.modal-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cancel-btn {
  background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
  border: none;
  color: white;
}

.cancel-btn:hover {
  background-color: #e1e1e1;
}

.save-btn {
  background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
  border: none;
  color: white;
}

.save-btn:hover {
  background: linear-gradient(to right, var(--gold-dark), var(--gold-primary));
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* フォーム要素 */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input[type=text] {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input[type=text]:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
  outline: none;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  background-color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.remove-tag {
  cursor: pointer;
  color: var(--gold-dark);
  font-weight: bold;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-item input[type=checkbox] {
  accent-color: var(--gold-primary);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 1.5rem;
  }
  .checkbox-group {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  .modal-footer {
    flex-direction: column;
  }
  .modal-btn {
    width: 100%;
    text-align: center;
  }
}/*# sourceMappingURL=plus.css.map */