* {
  box-sizing: border-box;
}
body {
  background: #f5f5f5;
  margin: auto;
  color: #333;
}
header {
  background: #000;
  padding: 5px 15px 0 5px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header img {
  width: 70px;
}
section {
  padding: 70px 0 0;
}
h2 {
  text-align: center;
  color: #333;
  font-family: "Noto Serif JP", serif;
}

br + br {
  display: none;
}
#event-extra {padding: 10px; border: 1px dashed #999;}

#eventText01 {padding: 10px 0;}


@media screen and (min-width: 769px) {
  .pc {
    display: inline;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
}
address {
  padding: 15px 0;
  font-style: normal;
  font-size: 70%;
  background: #413c3e;
  color: #ffffff;
  font-weight: 100;
  letter-spacing: 1px;
  border-top: 1px solid #666666;
  text-align: center;
}
form, #thanksBox {
  max-width: 800px;
  margin: 20px auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
span.required {
  display: inline-block;
  padding: 0 5px 0;
  color: #cc0000;
}
dl {
  display: grid;
  grid-template-columns: 210px 1fr;
  row-gap: 10px;
  column-gap: 20px;
  padding: 0 0 30px;
}
dt {
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
}
dt label {
  display: flex;
  justify-content: flex-end;
}
dd {
  margin: 0;
}
textarea {
  margin: 10px 0 0;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
input[type="radio"], input[type="checkbox"] {
  margin-right: 0.5rem;
}
button {
  background-color: #0d7f6c;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  margin: auto;
}
button:hover {
  opacity: 0.8;
}
#closeButton {
    background: #666;
}

.error {
  color: red;
  font-size: 0.9rem;
}
#countdown {
  font-weight: bold;
  color: #f1c0c0;
}
.btnBox {
  display: flex;
}
.btnBox .btn {
  margin: auto;
}
.btnBox .btn a {
  padding: 10px;
  text-decoration: none;
  background: #666;
  color: #fff;
}
#thanksBox p {
  padding: 0 0 40px;
  text-align: center;
}
.btnBox .btn a:visited {
  color: #fff;
}

/*----------------------------------------------------------- 640px */
@media screen and (max-width: 640px) {
  form, #thanksBox {
    padding: 20px;
    margin: 10px;
  }
  dl {
    display: flex;
    flex-flow: column;
  }
  dt {
    justify-content: flex-start;
  }
  dt label {
    justify-content: flex-start;
  }
  #confirm dd {
    border-bottom: 1px dashed #999;
    padding: 0 0 15px;
  }
  #thanksBox p {
    text-align: left;
  }
}

/* ご予約イベント / ご予約希望日 / ご来場予定人数 */
.reserve-event-group label {
  display: inline-block;
  margin-right: 1em;
}

.reserve-date-group {
  display: none;
}

.reserve-date-inner,
.reserve-time-inner {
  margin-bottom: 0.5em;
}

.reserve-people-inner input[type="number"] {
  text-align: right;
}

/* スマホでご希望日入力時にキーボードを出さない用の見た目調整 */
#reserve_date[readonly] {
  background-color: #fff;
  cursor: pointer;
}
