html {
  position: relative;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  max-width: 2560px;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 0vw;
  height: 100%;
  color: #000;
  letter-spacing: 0em;
  font-weight: normal;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin: 0;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: #4150a2;
}

p {
  padding: 0.5em 0;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.header {
  background-color: #4150a2;
  padding: 8px;
  text-align: center;
  width: 100%;
  height: 96px;
}
.header__logo {
  height: 70px;
  width: auto;
}

.page-title {
  font-size: 30px;
  margin: 0.5em 0;
  width: 100%;
}

.tc {
  text-align: center;
}

.container {
  width: 940px;
  max-width: 90%;
  margin: 80px auto;
  font-size: 18px;
  text-align: left;
}

.font-m {
  font-size: 16px;
}

.required {
  font-size: 12px;
  color: red;
}

.form label {
  display: block;
}
.form__group {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0;
  border-top: 1px solid #c2c2c2;
}
@media screen and (max-width: 600px) {
  .form__group {
    display: block;
  }
}
.form__label {
  flex: 0 0 25%;
  padding: 16px 0;
  border-bottom: 1px solid #c2c2c2;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .form__label {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.form__input {
  flex: 0 0 75%;
  padding: 16px 0;
  border-bottom: 1px solid #c2c2c2;
}

input, textarea {
  font-size: 16px;
  background-color: #ededed;
  border: 1px solid #c2c2c2;
  padding: 4px 8px;
  border-radius: 4px;
}

input[type=text], input[type=email] {
  width: 100%;
  height: 40px;
}

textarea {
  width: 100%;
  height: 100px;
}

label {
  min-height: 30px;
}

input[type=checkbox] {
  margin-right: 8px;
}

.button:hover {
  cursor: pointer;
}
.button__area {
  text-align: center;
  margin: 40px 16px;
}
.button-success {
  width: 300px;
  height: 50px;
  background-color: #4150a2;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  color: #ffffff;
}
.button-success:hover {
  cursor: pointer;
}
.button-reset {
  background-color: #ffffff !important;
  border: none;
  text-decoration: underline;
}

.footer {
  background-color: #eeeddb;
  text-align: center;
  padding: 20px;
  width: 100%;
  margin-top: auto;
}
.footer img {
  width: 100px;
}/*# sourceMappingURL=booking.css.map */