@charset "UTF-8";
:root {
  --display: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --line: #e3e9f1;
  --ink: #1b2536;
  --gray: #5d6b7c;
  --navy: #14315f;
  --mist2: #f8fafd;
  --red: #c8102e;
  --red-d: #a30b24;
}

html, body {
  overflow: hidden;
  height: 100%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.alert .preset {
  display: none;
}

.mailform {
  font-family: var(--sans);
  color: var(--ink);
}
.mailform fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.mailform table {
  width: 100%;
  border-collapse: collapse;
}
.mailform tr {
  vertical-align: top;
}
.mailform th,
.mailform td {
  padding: 0 0 20px;
}
.mailform th {
  width: 220px;
  text-align: left;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: var(--ink);
  padding-right: 16px;
}
.mailform .required {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 8px;
  letter-spacing: 0.06em;
}
.mailform .item {
  display: inline-block;
}
.mailform input[type="text"],
.mailform input[type="email"],
.mailform input[type="tel"],
.mailform select,
.mailform textarea {
  width: 100%;
  max-width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--mist2);
  border: 1.5px solid var(--line);
  border-radius: 9px;
  padding: 13px 14px;
  transition: 0.18s;
  appearance: none;
}
.mailform input[type="text"]:focus,
.mailform input[type="email"]:focus,
.mailform input[type="tel"]:focus,
.mailform select:focus,
.mailform textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(20, 49, 95, 0.1);
}
.mailform .sizeM {
  max-width: 240px;
}
.mailform .sizeLL,
.mailform .type2 {
  max-width: none;
}
.mailform textarea {
  resize: vertical;
  min-height: 92px;
  line-height: 1.8;
}
.mailform .help-block {
  display: block;
  margin-top: 5px;
  font-size: 11.5px;
  color: var(--gray);
  line-height: 1.7;
}
.mailform tr.title td,
.mailform tr.customer_furigana_f td {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mailform tr.title td span.sub,
.mailform tr.customer_furigana_f td span.sub {
  flex: 0 0 auto;
}
.mailform tr.title td input,
.mailform tr.customer_furigana_f td input {
  width: auto;
  flex: 1 1 40%;
}
.mailform .zipcode td {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.mailform .zipcode td input {
  flex: 1 1 auto;
}
.mailform .zipcode td .btn {
  flex: 0 0 auto;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--navy);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 11px 14px;
  cursor: pointer;
  transition: 0.18s;
}
.mailform .zipcode td .btn:hover {
  border-color: var(--navy);
  background: #f2f7ff;
}
.mailform div.errormessage {
  color: #ff2121;
  padding: 0 4px;
  clear: left;
  font-weight: bold;
}
.mailform .consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  background: var(--mist2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 15px 16px;
  margin: 6px 0 22px;
}
.mailform .consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--navy);
}
.mailform .consent label {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.7;
}
.mailform .consent a {
  color: var(--navy);
  text-decoration: underline;
}
.mailform .submit {
  margin-top: 6px;
  display: flex;
  gap: 30px 10px;
  padding: 10px 40px 40px;
}
.mailform .submit input {
  flex: 1 1 auto;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, #d8203c, var(--red-d));
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.04em;
  padding: 19px;
  border-radius: 11px;
  box-shadow: 0 14px 30px rgba(200, 16, 46, 0.3);
  transition: transform 0.18s, box-shadow 0.18s;
}
.mailform .submit input:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(200, 16, 46, 0.4);
}
.mailform .submit input.modify {
  flex: 0 0 auto;
  background: linear-gradient(180deg, var(--mist2), var(--line));
  box-shadow: 0 14px 30px rgba(20, 48, 94, 0.4);
  color: var(--navy);
}
.mailform.confirm .submit {
  flex-direction: column-reverse;
  align-items: center;
}
.mailform.confirm .submit .send {
  width: 100%;
}
@media (max-width: 860px) {
  .mailform table,
  .mailform tbody,
  .mailform tr,
  .mailform th,
  .mailform td {
    display: block;
    width: 100%;
  }
  .mailform th {
    padding: 0 0 7px;
  }
  .mailform td {
    padding: 0 0 18px;
  }
  .mailform .sizeM {
    max-width: none;
  }
  .mailform .zip .btn {
    margin: 10px 0 0;
    display: inline-block;
  }
}

.thanks {
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 46px 34px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(20, 49, 95, 0.1);
}
.thanks .mk {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.thanks h2 {
  font-family: var(--display);
  font-weight: 900;
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 12px;
}
.thanks p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.9;
}
.thanks .home {
  display: inline-block;
  margin-top: 22px;
  background: var(--navy);
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 9px;
  text-decoration: none;
}

/*# sourceMappingURL=queen-anne-tajimi-catalog-form.css.map */
