@charset "UTF-8";
html {
  font-size: 16px;
}

/*! transitionベース ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/*! 予約リスト *********************************************************************** */
.scroll-text {
  display: none;
}
@media (max-width: 1025px) {
  .scroll-text {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-right: 20px;
  }
  .scroll-text::after {
    content: "\f04b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 10px;
    animation: side-scroll 1.5s ease-in-out infinite;
  }
}

@keyframes side-scroll {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}
.reserve-container {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 50px auto 0;
  padding: 20px;
}
@media (max-width: 1025px) {
  .reserve-container {
    margin: 5px auto 0;
  }
}
@media (max-width: 640px) {
  .reserve-container {
    padding: 0;
  }
}
.reserve-container__info {
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  padding: 50px;
  margin: 0 auto 20px;
  border-radius: 10px;
  background: #fff;
}
@media (max-width: 1025px) {
  .reserve-container__info {
    width: auto;
  }
}
@media (max-width: 820px) {
  .reserve-container__info {
    padding: 20px;
  }
}
.reserve-container__inner {
  margin-bottom: 30px;
}
.reserve-container__inner:last-child {
  margin-bottom: 0;
}
.reserve-container__head {
  font-size: 0.75rem;
  margin-bottom: 10px;
}
.reserve-container__head::before {
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  color: #432;
  margin-right: 10px;
  font-size: 0.75rem;
}
.reserve-container__head.day::before {
  content: "\f073";
}
.reserve-container__head.reserve::before {
  content: "\f3cf";
}
.reserve-container__head.access::before {
  content: "\f0ac";
}
.reserve-container__head.list::before {
  content: "\f00b";
}
.reserve-container__data {
  margin-left: calc(0.75rem + 10px);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1.9;
  list-style: circle;
}
@media (max-width: 1025px) {
  .reserve-container__form-wrapper {
    overflow-x: auto;
    overflow-y: auto;
  }
}
.reserve-container__form-wrapper .advance-btn {
  display: block;
  margin: 50px auto 0;
}
.reserve-container__form {
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  table-layout: auto;
  border: 2px solid #e3cdd1;
}
@media (max-width: 640px) {
  .reserve-container__form.first_come {
    transform-origin: top left;
    width: auto;
    display: inline-block;
    margin: 0;
  }
}
.reserve-container__form thead th {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff1f4;
  line-height: 1.4;
}
.reserve-container__form thead th:first-child {
  left: 0;
  z-index: 20;
}
.reserve-container__form tbody td:first-child {
  position: sticky;
  left: 0;
  z-index: 5;
  background: #fff;
  border-right: 2px solid #e3cdd1;
}
.reserve-container__form tr .head-td {
  line-height: 1.5;
  font-size: 0.875rem;
  min-width: 100px;
}
@media (max-width: 1025px) {
  .reserve-container__form tr .head-td {
    font-size: 0.625rem;
    min-width: 80px;
  }
}
.reserve-container__form tr .advance-btn.lottery-btn {
  margin-top: 0;
  padding: 8px;
  min-width: auto;
  background: #920f43;
  border: none;
  color: #fff;
  box-shadow: 0 4px 0 #c16586;
  transition: all 0.6s ease;
  transform: translateY(0);
}
.reserve-container__form tr .advance-btn.lottery-btn:hover {
  opacity: 0.9;
  box-shadow: none;
  transform: translateY(3px);
  color: #fff;
}
.reserve-container__form tr .advance-btn.lottery-btn::after {
  content: "";
  position: absolute;
  top: -50%; /* ボタンの上からはみ出させる */
  left: -150%; /* ボタンの左からはみ出させる（スタート地点） */
  width: 200%; /* 光の筋を長くする */
  height: 200%; /* 光の筋を太くする */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg); /* 光の筋を斜めにする */
  animation: shine-loop 3s infinite; /* 4秒ごとに無限にアニメーション */
}
.reserve-container__form tr .advance-btn.lottery-btn {
  /* --- アニメーションの動き --- */
}
@keyframes shine-loop {
  0% {
    left: -150%; /* スタート地点（ボタンの左外） */
  }
  10% {
    left: 150%; /* ゴール地点（ボタンの右外） */
  }
  100% {
    left: 150%; /* 100%までここに留める（これで「待ち時間」を作る） */
  }
}
.reserve-container__form tr .lottery-count-label {
  color: #333;
  display: block;
  font-size: 0.8em;
  margin-bottom: 2px;
}
.reserve-container__form tr .lottery-count-num {
  font-weight: bold;
  font-size: 1.2em;
  display: block;
  line-height: 1.2;
}
.reserve-container__form tr .lottery-count-num small {
  font-size: 0.6em;
  margin-left: 2px;
}
.reserve-container__form tr .lottery-details {
  font-size: 0.625rem;
  text-align: left;
  margin-top: 5px;
  padding-top: 3px;
  border-top: 1px solid #eee;
  line-height: 1.3;
}
.reserve-container__form tr .lottery-details .lottery-details-1, .reserve-container__form tr .lottery-details .lottery-details-2, .reserve-container__form tr .lottery-details .lottery-details-3, .reserve-container__form tr .lottery-details .lottery-details-4 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #989898;
}
.reserve-container__form tr .full span {
  display: grid;
  place-content: center;
  color: #fff;
  background: #df4440;
  padding: 15px;
  border-radius: 5px;
}
@media (max-width: 640px) {
  .reserve-container__form tr .full span {
    padding: 9px;
  }
}
.reserve-container__form tr .empty .reception {
  display: grid;
  place-content: center;
  color: #fff;
  background: #60b7d4;
  padding: 15px;
  border-radius: 5px;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: all 0.6s ease;
  font-size: 1rem;
}
@media (max-width: 640px) {
  .reserve-container__form tr .empty .reception {
    padding: 9px;
    font-size: 0.875rem;
  }
}
.reserve-container__form tr .empty .reception:hover {
  transition: all 0.6s ease;
  opacity: 0.6;
}
.reserve-container__form tr .empty .lottery-text {
  display: grid;
  place-content: center;
  background: rgb(203, 162, 114);
  padding: 15px;
  border-radius: 5px;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: all 0.6s ease;
}
@media (max-width: 820px) {
  .reserve-container__form tr .empty .lottery-text {
    padding: 5px;
    font-size: 0.75rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-underline-offset: 2px;
  }
}
.reserve-container__form tr .empty .lottery-text:hover {
  transition: all 0.6s ease;
  opacity: 0.6;
}
.reserve-container__form tr .closed-text {
  background: #eeeeee;
  padding: 15px;
  border-radius: 5px;
}
.reserve-container__form tr .part-number {
  font-family: "Sirivennela", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.reserve-container__form tr th,
.reserve-container__form tr td {
  padding: 10px;
  border: 2px solid #e3cdd1;
  font-size: 0.875rem;
}
@media (max-width: 1025px) {
  .reserve-container__form tr th,
  .reserve-container__form tr td {
    font-size: 0.625rem;
  }
}
.reserve-container__form tr td:first-of-type {
  white-space: nowrap;
  max-width: 100px;
}
.reserve-container__form tr td:last-of-type {
  white-space: nowrap;
  min-width: 100px;
}
.reserve-container__form .add-entry {
  color: #df4440;
}
.reserve-container__form .full-text {
  font-size: 1rem;
}
@media (max-width: 640px) {
  .reserve-container__form .full-text {
    font-size: 0.875rem;
  }
}
.reserve-container__models {
  transition: all 0.6s ease;
  display: block;
}
.reserve-container__models .name {
  font-size: 0.75rem;
}
.reserve-container__models:hover {
  transition: all 0.6s ease;
  transform: scale(0.95);
}

.lottery-count-label {
  font-size: 0.75rem;
}
@media (max-width: 640px) {
  .lottery-count-label {
    font-size: 0.625rem;
  }
}

.lottery-count-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 5px 5px;
}

/* 0件 */
.lottery-count-num.count-zero {
  color: #333;
}

/* 1〜4件 */
.lottery-count-num.count-mid {
  color: #1976d2;
}

/* 5件以上 */
.lottery-count-num.count-high {
  color: #c62828;
}

.lottery-main-row .advance-btn {
  margin-top: 0;
}

.btn-area {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .lottery-main-row td {
    padding: 6px;
  }
  .lottery-main-row .advance-btn {
    display: block;
    width: 100%;
    white-space: nowrap;
    padding: 12px 10px;
    font-size: 0.625rem;
    line-height: 1.4;
    text-align: center;
  }
  .reserve-container__form td:last-child {
    width: 160px;
  }
}
.frame-price {
  margin-top: 5px;
  font-size: 0.875rem;
}

.booking-notes {
  font-size: 0.875rem;
}
@media (max-width: 640px) {
  .booking-notes {
    font-size: 0.75rem;
  }
}

.irregular-frame {
  color: #cf3d32 !important;
}

.irregular-column {
  color: #cf3d32 !important;
}

/*! カート *********************************************************************** */
.cart-box {
  margin-bottom: 50px;
}

.reserve-cart-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  justify-self: center;
  margin-bottom: 20px;
  border: 1px solid #a27a81;
  padding: 10px;
}
@media (max-width: 820px) {
  .reserve-cart-container {
    width: 80%;
  }
}
@media (max-width: 640px) {
  .reserve-cart-container {
    flex-wrap: wrap;
  }
}
.reserve-cart-container .thumb {
  width: auto;
}
@media (max-width: 640px) {
  .reserve-cart-container .thumb {
    width: 60px;
  }
}
.reserve-cart-container .thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reserve-cart-container .data {
  width: 100%;
  justify-self: stretch;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 10px;
  background: #fff9fb;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .reserve-cart-container .data {
    width: auto;
  }
}
.reserve-cart-container .del .delete {
  background: #ed9390;
  border: none;
  color: #fff;
  font-size: 0.8125rem;
  width: auto;
  padding: 10px 16px;
  margin-top: 0;
  min-width: none;
}
.reserve-cart-container .del .delete:hover {
  opacity: 0.7;
  border: none;
}

.cart-flex .advance-btn {
  margin-top: 50px;
}
.cart-flex .reserve-container__info {
  position: relative;
}
.cart-flex .reserve-container__info .reserve-cart-icon {
  position: fixed;
  top: 25%;
  z-index: 9999;
  background: #fff;
  border-radius: 5px;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.6s ease;
  color: #a27a81;
  font-size: 0.625rem;
}
@media (max-width: 640px) {
  .cart-flex .reserve-container__info .reserve-cart-icon {
    position: absolute;
    top: -100px;
    right: 0;
    font-size: 0.5rem;
    padding: 8px;
  }
}
.cart-flex .reserve-container__info .reserve-cart-icon::before {
  content: "\f07a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #432;
  font-size: 1.25rem;
  margin-right: 5px;
}
@media (max-width: 820px) {
  .cart-flex .reserve-container__info .reserve-cart-icon::before {
    font-size: 1rem;
    top: 30px;
    right: 30px;
  }
}
.cart-flex .reserve-container__info .reserve-cart-icon:hover {
  transform: scale(1.5);
  transition: all 0.6s ease;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #a27a81;
  color: #fff;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
@media (max-width: 640px) {
  .cart-count {
    font-size: 0.5rem;
    width: 15px;
    height: 15px;
  }
}

/*! 予約詳細 *********************************************************************** */
.reserve-detail-container {
  max-width: 1000px;
  margin: 50px auto 0;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}
.reserve-detail-container__info {
  margin-left: 1em;
}
.reserve-detail-container__info.info-lottery {
  margin-left: 0;
}
.reserve-detail-container.vertical {
  display: block;
}
@media (max-width: 820px) {
  .reserve-detail-container {
    margin: 100px auto 0;
  }
}
@media (max-width: 640px) {
  .reserve-detail-container {
    margin: 30px auto 0;
    padding: 20px;
    flex-direction: column-reverse;
    gap: 0;
  }
}
.reserve-detail-container .reserve-detail-block1 {
  width: 60%;
}
@media (max-width: 640px) {
  .reserve-detail-container .reserve-detail-block1 {
    width: 100%;
  }
}
.reserve-detail-container .reserve-detail-block2 {
  width: 40%;
}
@media (max-width: 640px) {
  .reserve-detail-container .reserve-detail-block2 {
    width: 100%;
  }
}
.reserve-detail-container .reserve-number {
  font-size: 1.125rem;
  margin-top: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.reserve-detail-container__section-title {
  color: #a27a81;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 1.4375rem;
}
@media (max-width: 640px) {
  .reserve-detail-container__section-title {
    font-size: 1.25rem;
  }
}
.reserve-detail-container__inner {
  margin-bottom: 3px;
}
.reserve-detail-container__inner.cart {
  margin-left: 0;
}
.reserve-detail-container__head, .reserve-detail-container__data {
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.reserve-detail-container__head {
  width: 25%;
}
.reserve-detail-container__head::before {
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  color: #432;
  margin-right: 10px;
  font-size: 1rem;
}
.reserve-detail-container__head.loca, .reserve-detail-container__head.number, .reserve-detail-container__head.model, .reserve-detail-container__head.price {
  background: transparent;
  box-shadow: none;
  padding: 0;
  font-size: 1rem;
  margin-left: 0;
}
.reserve-detail-container__head.loca::before {
  content: "\f3c5";
}
.reserve-detail-container__head.number::before {
  content: "#";
}
.reserve-detail-container__head.model::before {
  content: "\f182";
}
.reserve-detail-container__head.price::before {
  content: "\f157";
}
.reserve-detail-container__data {
  width: auto;
  overflow: hidden;
  font-size: 0.875rem;
}
.reserve-detail-container .reserve-total-price {
  padding: 15px 0 0 0;
  letter-spacing: 0.1em;
}
.reserve-detail-container__form {
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .reserve-detail-container__form {
    margin-bottom: 50px;
  }
}
.reserve-detail-container__form .item {
  margin-bottom: 10px;
}
.reserve-detail-container__form .item input:not([type=radio]),
.reserve-detail-container__form .item textarea,
.reserve-detail-container__form .item select {
  width: calc(100% - 1rem);
  padding: 10px;
  margin-top: 10px;
  margin-left: 1rem;
  border: none;
  outline: none;
  background: #e3cdd1;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.reserve-detail-container__form .item input:not([type=radio])::-moz-placeholder, .reserve-detail-container__form .item textarea::-moz-placeholder, .reserve-detail-container__form .item select::-moz-placeholder {
  font-size: 0.75rem;
  color: #fbf8f8;
}
.reserve-detail-container__form .item input:not([type=radio])::placeholder,
.reserve-detail-container__form .item textarea::placeholder,
.reserve-detail-container__form .item select::placeholder {
  font-size: 0.75rem;
  color: #fbf8f8;
}
.reserve-detail-container__form .item.winning-limit {
  margin-top: 20px;
}
.reserve-detail-container__form .item select {
  color: #432;
  font-size: 0.75rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #e3cdd1 url(../img/pulldown.png) no-repeat right 1rem center/12px auto;
  line-height: 2.3;
  font-size: 1rem;
}
.reserve-detail-container__form .item dd .gender-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  min-inline-size: auto;
}
.reserve-detail-container__form .item dd .gender-fieldset .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}
.reserve-detail-container__form .item dd .radiolist {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  margin-left: 1rem;
}
.reserve-detail-container__form .item dd .radiolist-frame {
  margin-top: 10px;
  margin-left: 1em;
}
.reserve-detail-container__form .item dd .radiolist-frame li {
  line-height: 1.8;
}
.reserve-detail-container__form .item dd .radiolist-frame .requested-notes {
  margin-left: 1em;
}
.reserve-detail-container__form .item .zipcode {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
@media (max-width: 640px) {
  .reserve-detail-container__form .item .zipcode {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
.reserve-detail-container__form .item .zipcode #zip {
  width: 150px;
}
@media (max-width: 640px) {
  .reserve-detail-container__form .item .zipcode #zip {
    width: calc(100% - 1rem);
  }
}
.reserve-detail-container__form .item .zipcode .back-btn {
  margin-top: 10px;
}
.reserve-detail-container__form .item input[type=radio] {
  opacity: 0;
  position: absolute;
}
.reserve-detail-container__form .item input[type=radio] + span {
  display: inline-block;
  position: relative;
  margin: 0 2em 0 0;
  padding: 0.3em 0.3em 0.3em 2em;
  font-size: 0.875rem;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
}
.reserve-detail-container__form .item input[type=radio] + span::before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 1.375em;
  height: 1.375em;
  border: 1px solid #e3cdd1;
  border-radius: 50%;
  line-height: 1;
  background: #fff;
}
.reserve-detail-container__form .item input[type=radio] + span::after {
  content: "";
  display: none;
}
.reserve-detail-container__form .item input[type=radio]:focus + span {
  outline: 1px solid #e3cdd1;
}
.reserve-detail-container__form .item input[type=radio]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.45em;
  left: 0.2em;
  width: 1em;
  height: 1em;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #98371b;
  line-height: 1;
}
.reserve-detail-container__form .item .require {
  color: #df4440;
  padding: 0 5px;
  border: 1px solid #df4440;
  margin-left: 10px;
  font-size: 0.75rem;
}
.reserve-detail-container__form .customer {
  margin-top: 30px;
}
.reserve-detail-container .requested-notes {
  margin: 5px 0 10px 0;
  font-size: 0.75rem;
}
.reserve-detail-container .back-btn {
  display: block;
  margin: 30px auto 0;
  width: auto;
}
@media (max-width: 640px) {
  .reserve-detail-container .back-btn {
    margin: 20px auto 0;
  }
}
.reserve-detail-container .back-btn.zip {
  margin: 0;
}
.reserve-detail-container .advance-btn {
  display: block;
  width: 300px;
  margin-top: 50px;
}
.reserve-detail-container .advance-btn.btn-confirm {
  margin: 20px auto 0;
  width: 50%;
}
@media (max-width: 640px) {
  .reserve-detail-container .advance-btn.btn-confirm {
    width: 100%;
  }
}

.choices {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.choice-btn {
  padding: 5px 5px;
  border: 1px solid #a27a81;
  background: #fff9fb;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.2s;
  font-size: 0.875rem;
}
@media (max-width: 640px) {
  .choice-btn {
    font-size: 0.75rem;
  }
}

.choice-btn.active {
  background: #920f43;
  color: #fff;
  font-size: 0.875rem;
}
@media (max-width: 640px) {
  .choice-btn.active {
    font-size: 0.75rem;
  }
}

.choice-btn:hover {
  opacity: 0.7;
}

.thumb-lottery {
  width: 60px;
  margin-left: 20px;
}
.thumb-lottery img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.is-highlight {
  color: #cf3d32;
}

/*! 予約確認画面 *********************************************************************** */
.confirm-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
@media (max-width: 640px) {
  .confirm-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.confirm-container__wrapper {
  margin-left: 0.5em;
}
.confirm-container__wrapper .inner .head {
  width: 150px;
  background: transparent;
  box-shadow: none;
}
.confirm-container__wrapper .inner .data {
  margin: 0 0 10px 1em;
  overflow: hidden;
  font-size: 0.875rem;
  padding: 5px;
}
.confirm-container__wrapper .inner .data.contents {
  background: #fff1f4;
}
.confirm-container__wrapper .inner.frame {
  margin-left: 0.5em;
}

.no-back {
  background: transparent;
  box-shadow: none;
  margin-top: 0;
  margin-left: 0.5rem;
}

/* 抽選申込内容のスリム化設定 */
.confirm-item-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  background: #fff;
  gap: 10px;
}

.confirm-item-row__number {
  background: #333;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  flex-shrink: 0;
}

.confirm-item-row__main {
  flex-grow: 1;
}

.confirm-item-row__top {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.priority-badge {
  background: #d32f2f;
  color: #fff;
  padding: 2px 6px;
  font-size: 10px;
  border-radius: 3px;
  font-weight: bold;
}

.model-name {
  font-weight: bold;
  font-size: 14px;
}

.part-info {
  font-size: 13px;
  color: #666;
}

.schedule-info {
  font-size: 11px;
  color: #999;
}

.confirm-item-row__price {
  font-weight: bold;
  color: #d32f2f;
  white-space: nowrap;
  font-size: 15px;
}

/*! 予約完了画面 *********************************************************************** */
.reserve-thanks-container {
  max-width: 700px;
  margin: 50px auto 0;
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}
.reserve-thanks-container__text {
  text-align: center;
  font-size: 1rem;
}
.reserve-thanks-container__text p + p {
  margin-top: 15px;
}
.reserve-thanks-container__image {
  margin-top: 30px;
  text-align: center;
}
.reserve-thanks-container__image.error-img {
  margin-bottom: 25px;
}

.back-btn-box {
  margin-top: 25px;
  text-align: center;
}
.back-btn-box .back-btn {
  transition: all 0.6s ease;
}

.reserve-complete-message {
  font-weight: bold;
}

.reserve-error-message {
  color: #432;
}

.reserve-error-message-important {
  color: #df4440;
}

.reserve-alert__list li {
  color: #df4440;
  font-weight: bold;
}

/*! バリデーションチェック *********************************************************************** */
.error {
  color: #df4440;
  font-weight: bold;
  margin-left: 1em;
  margin-top: 10px;
  display: block;
}

.error-banner {
  background: #df4440;
  color: #fff;
  padding: 10px 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-weight: bold;
}

/*! 満席エラー *********************************************************************** */
.reserve-error-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.reserve-error-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.reserve-error-box .show-more-btn:hover {
  color: #a27a81 !important;
}

.reserve-error-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #df4440;
  margin-bottom: 15px;
}

.reserve-error-message {
  line-height: 1.7;
  margin-bottom: 25px;
}

.cancel-btn-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.cancel-btn-box .advance-btn, .cancel-btn-box .back-btn {
  width: 200px;
}

.mail-notice {
  margin-top: 1.5em;
  padding: 12px 16px;
  background: #fff9fb;
  border-left: 4px solid #a27a81;
  font-size: 0.9375rem;
  line-height: 1.6;
  text-align: left;
}

.page-template-page-reserve-cancel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
}

.page-template-page-reserve-cancel .reserve-error-container {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}/*# sourceMappingURL=reserve.css.map */