@charset "UTF-8";
/* =========================================================
page
========================================================= */
.p-page {
  /* =====================
     Title
  ===================== */
  /* =====================
     Body (文章ページ)
  ===================== */
  /* =====================
     Company Highlight
  ===================== */
  /* =====================
     Table (特商法・会社概要)
  ===================== */
}
.p-page--wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 6vh 4vw 10vh;
}
.p-page--title {
  text-align: center;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 5vh;
}
.p-page--body {
  font-size: 1.6rem;
  line-height: 2;
  word-break: break-word;
}
.p-page--body p {
  margin-bottom: 2rem;
}
.p-page--body h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 4rem 0 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #ddd;
}
.p-page--body ul {
  margin: 1rem 0 2rem 1.5rem;
  list-style: disc;
}
.p-page--body ul li {
  margin-bottom: 0.8rem;
}
.p-page--company {
  margin-top: 3rem;
  font-weight: 600;
  line-height: 1.8;
}
.p-page--table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
  line-height: 1.8;
}
.p-page--table th,
.p-page--table td {
  padding: 1.6rem 1.2rem;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: top;
  text-align: left;
}
.p-page--table th {
  width: 30%;
  font-weight: 700;
  background: #f7f7f7;
  white-space: nowrap;
}
.p-page--table td {
  width: 70%;
}

/* =========================================================
Tablet / PC
========================================================= */
@media screen and (min-width: 768px) {
  .p-page--wrap {
    padding: 8vh 2rem 12vh;
  }
  .p-page--body {
    font-size: 1.7rem;
  }
  .p-page--body h2 {
    font-size: 2rem;
  }
  .p-page--table {
    font-size: 1.6rem;
  }
  .p-page--table th {
    width: 25%;
  }
}
/* =========================================================
Contact
========================================================= */
.p-contact--wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 6vh 4vw 10vh;
}
.p-contact--title {
  text-align: center;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 2vh;
}
.p-contact--lead {
  text-align: center;
  line-height: 1.9;
  margin-bottom: 4vh;
  opacity: 0.9;
}

/* =========================================================
Form
========================================================= */
.p-contact-form {
  display: grid;
  gap: 2rem;
}
.p-contact-form--row {
  display: grid;
  gap: 0.8rem;
}
.p-contact-form--label {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.p-contact-form--req {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: #333;
  color: #fff;
  line-height: 1.6;
}
.p-contact-form--input, .p-contact-form--textarea {
  width: 100%;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  background: #fff;
  outline: none;
}
.p-contact-form--input:focus, .p-contact-form--textarea:focus {
  border-color: #333;
}
.p-contact-form--textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.8;
}
.p-contact-form--actions {
  margin-top: 1rem;
  display: grid;
  place-items: center;
}
.p-contact-form--submit {
  width: min(420px, 100%);
  border: 1px solid #333;
  border-radius: 999px;
  padding: 1.4rem 2rem;
  font-weight: 900;
  cursor: pointer;
  background: #111;
  color: #fff;
  transition: 0.25s;
}
.p-contact-form--submit:hover {
  opacity: 0.85;
}
.p-contact-form--note {
  text-align: center;
  font-size: 1.3rem;
  opacity: 0.75;
  margin-top: 1.2rem;
}

@media screen and (min-width: 768px) {
  .p-contact-form {
    gap: 2.4rem;
  }
  .p-contact-form--input, .p-contact-form--textarea {
    padding: 1.4rem 1.6rem;
  }
}
/*# sourceMappingURL=style-page.css.map */