@charset "UTF-8";

:root {
  --font-color: #444444;
  --theme-color: #000000;
  --point-color: #a62834;

  /* グレー系 */
  --gray-light: #f7f7f7;
  --gray: #cccccc;
  --gray-dark: #707070;
  --gray-deep: #333333;

  --inner: 740px;
  --side-padding: 0;
  --section-margin: 20em;
  --content-margin: 10em;
  --content-padding: 5em;

  --font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  :root {
    --side-padding: 10%;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --side-padding: 10%;
  }
}

div.restaurant_name_info {
  display: none;
}

/*----------------------------------------共通----------------------------------------*/
.inner {
  width: 100%;
  max-width: var(--inner);
  margin: 0 auto;
}

section {
  padding: var(--content-padding) var(--side-padding);
}

/*----------------------------------------header----------------------------------------*/
header {
  margin: 2em auto 0;
}

header .inner {
  padding: 0 var(--side-padding);
}

header h1 {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
  padding: 0 0 1em;
  border-bottom: 1px solid;
}

/* フォーム全体 */
#form {
  font-size: 62.5%;
  padding: 1em var(--side-padding) var(--content-padding);
}

#form .attention {
  color: #CC0000;
  margin: 0 auto 1em;
}

/*---------------------------------------- フォーム ----------------------------------------*/
#form .box {
  --text-width: 180px;
  padding: 2em 0 1em;
  margin: 0 0 1em;
  border-top: 1px solid #e0e0e0;
}

#form .box:last-child {
  border-bottom: none;
}

#form .box.notice {
  background: #f5f5f5;
  padding: 1em;
  margin: 2em auto;
  border-top: none;
}

#form .text {
  width: var(--text-width);
  font-size: 1.5em;
  font-weight: bold;
  padding-top: 8px;
}

#form .text .must {
  color: #b70000;
  margin-left: 4px;
}

#form .input {
  width: calc(100% - var(--text-width));
}

#form .input input[type="text"],
#form .input input[type="email"],
#form .input input[type="tel"],
#form .input input[type="number"],
#form .input input[type="date"],
#form .input input[type="time"],
#form .input select,
#form .input textarea {
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
  color: #333;
  font-size: 16px;
  line-height: 1.42857;
  padding: 6px 12px;
  -webkit-transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  width: auto;
  box-sizing: border-box;
}

#form .input input[type="text"]:focus,
#form .input input[type="password"]:focus,
#form .input input[type="email"]:focus,
#form .input input[type="search"]:focus,
#form .input input[type="url"]:focus,
#form .input input[type="tel"]:focus,
#form .input textarea:focus,
#form .input select:focus {
  border: 1px solid #ff69b4 !important;
  background: #fff !important;
  box-shadow: 0 0 3px rgba(255, 105, 180, 1) !important;
  color: #444 !important;
}

#form .input input[type="text"].readonly {
  border: 0px solid #ccc;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.075) inset;
}

#form .input input[type="text"].readonly.mfp_ok {
  background-color: initial;
}

#form .input input[type="number"] {
  width: 60px;
}

#form .input textarea {
  width: 100% !important;
  min-height: 150px;
}

#form .input .sub {
  color: #333;
  font-size: 0.95em;
  margin-top: 4px;
  margin-bottom: 4px;
}

#form .input label {
  font-weight: normal;
  margin-right: 4px;
  cursor: pointer;
}

#form .input span {
  margin-right: 8px;
}

#form .input .color_box {
  display: inline-block;
  padding: 1em;
  margin: 1em auto 0;
  background: #fee;
  cursor: pointer;
}

#form .margin {
  margin-top: 24px;
  margin-bottom: 24px;
}

#form .submit {
  margin-top: 32px;
  text-align: center;
}

#form #submit-btn {
  background: #a62834;
  color: #fff;
  width: 300px;
  height: 48px;
  font-size: 1.2em;
  border: 1px solid #a62834;
  border-radius: 4px;
  cursor: pointer;
}

#form #submit-btn:hover {
  color: #a62834;
  background: #fff;
}

#form .box[style*="background"] {
  border: none;
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 0.95em;
  color: #333;
}

#form .box[style*="background"] p {
  margin: 0;
  line-height: 1.7;
}

#form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  cursor: pointer;
}

#form a {
  color: #a94442;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  #form .flex {
    flex-direction: column;
    align-items: stretch;
  }

  #form .text {
    width: 100%;
    min-width: 0;
    margin-bottom: 4px;
    padding-top: 0;
  }

  #form .input {
    width: 100%;
  }

  #form .input.flex.v-center {
    flex-direction: column;
    align-items: flex-start;
  }

  #form #submit-btn {
    width: 100%;
    min-width: 0;
  }
}