@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  background-color: #fff;
  min-height: 100vh;
  height: 100%;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  font-weight: 300;
  font-style: normal;
  font-size: 3.2vw;
  letter-spacing: 0.1em;
  min-height: 100vh;
}
@media (min-width: 574px) {
  body {
    font-size: 18.368px;
  }
}

.catalog-container {
  box-sizing: border-box;
  margin: 0 auto 10em auto;
  padding: 0;
  width: 100%;
  background-color: #f0ede8;
  text-align: center;
}
@media (min-width: 574px) {
  .catalog-container {
    max-width: 574px;
    margin: 0 auto 10em auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
}
.catalog-container form {
  padding: 0 1em;
}
@media (min-width: 574px) {
  .catalog-container form {
    padding: 0 1.5em;
  }
}

h1 {
  box-sizing: border-box;
  margin: 0;
  padding: 0 0 0.5em 0;
  font-size: 1.5em;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-style: normal;
}

.menu_tab {
  box-sizing: border-box;
  margin: 0;
  padding: 1em 1em 1em 1em;
  background-color: #22b573;
  color: white;
  text-align: center;
}
.menu_tab h1,
.menu_tab h2,
.menu_tab h3 {
  box-sizing: border-box;
  margin: 0;
  padding: 0.5em 0 0.5em 0;
  font-size: 1.7em;
  line-height: 1.5em;
  letter-spacing: 0.01em;
  font-weight: 600;
  font-style: normal;
}
.menu_tab p {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: 0.02em;
}

.menu_tab_sankaku {
  width: 0;
  height: 0;
  border-left: 1.2em solid transparent;
  border-right: 1.2em solid transparent;
  border-top: 1.2em solid #22b573;
  margin: 0 auto;
  margin-bottom: 1em;
}

.form-group {
  margin-bottom: 1.5em;
}

.form-label {
  display: block;
  font-size: 1.1em;
  font-weight: 400;
  margin-bottom: 0.5em;
  text-align: left;
}
.form-label.required::after {
  content: " *";
  color: #f85353;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 0.8em;
  font-size: 1.4em;
  border: 1px solid #ccc;
  border-radius: 0.5em;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

textarea {
  resize: vertical;
  min-height: 5em;
  line-height: 1.5em;
}

p.cap {
  box-sizing: border-box;
  margin: 0 0 1em 0;
  display: inline-block;
  padding: 0 1em 0 1em;
  font-size: 1em;
  text-align: left;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 3em;
  height: 3em;
  border: 0px solid #ccc;
  border-radius: 50%;
  background-color: white;
  outline: none;
  margin-right: 0.5em;
  cursor: pointer;
  vertical-align: middle;
  transition: border-color 0.3s, background-color 0.3s;
  position: relative;
}
input[type=radio]:before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}
input[type=radio]:checked {
  border-color: #4CAF50;
  background-color: #4CAF50;
}
input[type=radio]:checked:before {
  opacity: 1;
}
input[type=radio]:hover {
  border-color: #999;
}

.radio-label {
  font-weight: 400;
  font-size: 1.1em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-right: 2em;
}

.error-message {
  color: #f85353;
  font-size: 1em;
  margin-top: 0.5em;
  text-align: left;
  padding: 0 1em;
}

button.gray {
  background-color: #b7b3ae;
  color: #fff;
}

button {
  margin: 0 auto 0 auto;
  display: block;
  width: 100%;
  padding: 1em 0 1em 0;
  border: none;
  border-radius: 2em;
  background-color: #22b573;
  color: white;
  font-size: 2em;
  font-weight: 700;
  font-style: normal;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1em;
}

button:hover {
  background-color: #169e5d;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 2em;
}

.confirmation-section p {
  display: block;
  font-size: 1.2em;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 1.5em;
  margin-bottom: 1em;
  text-align: left;
  padding: 0 1em;
}
.confirmation-section p strong {
  font-weight: 600;
}

.thanks-section p {
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.8em;
  margin-bottom: 1.5em;
  text-align: left;
  padding: 0 1em;
}

.contact-section {
  margin-top: 2em;
}
.contact-section .title {
  margin-bottom: 1em;
}
.contact-section .title a {
  color: #22b573;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: 500;
}
.contact-section .title a:hover {
  text-decoration: underline;
}

.company-info {
  margin-top: 3em;
}
.company-info .copy {
  font-size: 1em;
  line-height: 1.8em;
  color: #666;
}

/*# sourceMappingURL=catalog_sp.css.map */
