@charset "utf-8";

/* =============================================================

clm



















*  ============================================================= */

.clm {
  display: flex;
  width: 90%;
  max-width: 1020px;
  margin: 0 auto;
  container-type: inline-size;
}

@media (max-width: 1020px) {
  .clm {
    width: 88%;
    margin-top: 40px;
  }
}

@media (max-width: 800px) {
  .clm {
    flex-direction: column;
    max-width: 480px;
    margin-top: 0;
  }
}

/* =============================================================

heading

*  ============================================================= */

.heading {
  flex: 1;
  margin-top: 56px;
}

@media (max-width: 800px) {
  .heading {
    width: 100%;
    margin-top: 64px;
  }
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.heading__ttl {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
}

@media (max-width: 800px) {
  .heading__ttl {
    font-size: 2.8rem;
  }
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.heading__subttl {
  margin-top: 56px;
  margin-left: -3px;
  font-size: 5.2rem;
  font-family:
    "Google Sans Flex", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 0.9;
}

@media (max-width: 800px) {
  .heading__subttl {
    display: none;
  }
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.heading__txt {
  margin-top: 24px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.heading__img {
  width: 72%;
  max-width: 360px;
}

@media (max-width: 800px) {
  .heading__img {
    display: none;
  }
}

/* =============================================================

form-wrap

*  ============================================================= */

.form-wrap {
  width: 100%;
  flex: 0 0 400px;
}

@media (max-width: 800px) {
  .form-wrap {
    flex: 0 0 auto;
    width: 100%;
  }
}

.form {
  width: 100%;
}

@media (max-width: 800px) {
  .form {
    margin-top: 40px;
  }
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.field-label {
  display: inline-flex;
  align-items: center;
  color: #111;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 800px) {
  .field-label {
    font-size: 1.4rem;
  }
}

.field .control {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 10px;
  border: 1px solid rgba(30, 69, 84, 0.25);
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  appearance: none;
  scroll-margin-top: 120px;
}

.field .control:focus {
  outline: none;
  border-color: #0f172a;
}

.field .control.is-invalid {
  border-color: #b02a2a;
}

.field textarea.control {
  min-height: 180px;
  resize: vertical;
}

.field .error {
  flex: 0 0 auto;
  margin: 0;
  padding-top: 2px;
  color: #b02a2a;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.formblk-agreement {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 24px;
}

@media (max-width: 800px) {
  .formblk-agreement {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 32px;
  }
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.formblk-agreement-check {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.agreement-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.agreement-check-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.agreement-check-box {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid rgba(30, 69, 84, 0.25);
  box-sizing: border-box;
}

.agreement-check-box::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 7px;
  height: 12px;
  border-right: 2px solid #0f172a;
  border-bottom: 2px solid #0f172a;
  transform: rotate(45deg);
  opacity: 0;
}

.agreement-check-input:checked
  + .agreement-check-label
  .agreement-check-box::after {
  opacity: 1;
}

.agreement-check-input:focus + .agreement-check-label .agreement-check-box {
  border-color: #0f172a;
}

.agreement-check-input.is-invalid
  + .agreement-check-label
  .agreement-check-box {
  border-color: #b02a2a;
}

.agreement-check-text {
  color: #111;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}

.agreement-error {
  margin: 6px 0 0;
  color: #b02a2a;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.formblk-agreement-link {
  flex: 0 0 auto;
}

@media (max-width: 800px) {
  .formblk-agreement-link {
    margin-top: 20px;
  }
}

.agreement-link-txt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.agreement-link-txt:hover {
  opacity: 0.4;
}

.agreement-link-arrow {
  display: block;
  width: 24px;
  height: auto;
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.actions {
  margin-top: 20px;
}

@media (max-width: 800px) {
  .actions {
    margin-top: 40px;
  }
}

.actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64%;
  min-height: 48px;
  padding: 10px 12px;
  border: none;
  border-radius: 5px;
  background: #0f172a;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease;
}

.actions .btn:hover {
  background: #e2c182;
}

.actions .btn:disabled {
  cursor: not-allowed;
}

.actions .btn.is-loading {
  pointer-events: none;
  color: transparent;
  position: relative;
}

.actions .btn.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: btn-spinner 0.8s linear infinite;
}

@keyframes btn-spinner {
  to { transform: rotate(360deg); }
}

@media (max-width: 800px) {
  .actions .btn {
    width: 80%;
  }
}

/* =============================================================

thanks



















*  ============================================================= */

.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 72vh;
  width: 94%;
  background-color: #e6e1d8;
  border-radius: 12px;
  container-type: inline-size;
}

@media (max-width: 1020px) {
  .thanks {
    width: 88%;
    margin: 40px auto 0;
  }
}

@media (max-width: 800px) {
  .thanks {
    max-width: 480px;
    padding: 12% 0;
  }
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.thanks-ttl {
  font-size: 3.2rem;
  font-family:
    "Google Sans Flex", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 800px) {
  .thanks-ttl {
    font-size: 2.2rem;
  }
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.thanks-line {
  width: 80px;
  height: 4px;
  margin: 20px auto;
  background: #0f172a;
  border-radius: 4px;
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.thanks-txt {
  margin-top: 40px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 800px) {
  .thanks-txt {
    font-size: 1.5rem;
  }
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.thanks-dl {
  width: 240px;
  margin: 32px auto 0;
}

.thanks-dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: none;
  border-radius: 5px;
  background: #0f172a;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition:
    background-color .3s ease,
    opacity .3s ease;
}

.thanks-dl-btn:hover {
  background: #e2c182;
}

@media (max-width: 800px) {
  .thanks-dl-btn {

  }
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.thanks-subtxt {
  margin-top: 40px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 800px) {
  .thanks-subtxt {
    font-size: 1.3rem;
  }
}

/* =============================================================

policy



















*  ============================================================= */

.policy-sec {
  width: 90%;
}

@media (max-width: 1020px) {
  .policy-sec {
    width: 88%;
    margin: 40px auto 0;
  }
}

@media (max-width: 800px) {
  .policy-sec {
    max-width: 480px;
    margin: 80px auto 0;
  }
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.policy-main-ttl {
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid #0f172a;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

@media (max-width: 800px) {
  .policy-main-ttl {
    font-size: 2.4rem;
  }
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.policy-ttl {
  margin: 88px 0 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #0f172a;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

@media (max-width: 800px) {
  .policy-ttl {
    font-size: 2.4rem;
  }
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.policy-block {
  margin-top: 56px;
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.policy-heading {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.policy-txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.policy-txt + .policy-txt {
  margin-top: 32px;
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.policy-list {
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.policy-list-item {
  position: relative;
  padding-left: 1em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.policy-list-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.policy-list-item + .policy-list-item {
  margin-top: 16px;
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.policy-purpose-list {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #c9beab;
}

.policy-purpose-item {
  padding: 20px 0;
  border-bottom: 1px solid #c9beab;
}

.policy-purpose-ttl {
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.policy-note {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #c9beab;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.policy-contact-box {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid #c9beab;
  border-radius: 5px;
}

.policy-contact-box + .policy-txt {
  margin-top: 32px;
}

/* - - - - - - - - - - - - - - - - - - - - - - */

.policy-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  table-layout: fixed;
  border-top: 1px solid #c9beab;
  border-bottom: 1px solid #c9beab;
}

.policy-table-row {
  border-bottom: 1px solid #c9beab;
}

.policy-table-row:last-child {
  border-bottom: none;
}

.policy-table-head,
.policy-table-data {
  vertical-align: top;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.policy-table-head {
  width: 34%;
  padding: 24px 0;
  text-align: left;
  font-weight: 700;
}

.policy-table-head-inner {
  display: flex;
  align-items: flex-start;
}

.policy-table-num {
  flex: 0 0 2em;
}

.policy-table-label {
  flex: 1 1 auto;
  min-width: 0;
}

.policy-table-data {
  width: 66%;
  padding: 24px 0 24px 32px;
  font-weight: 500;
}

@media (max-width: 800px) {
  .policy-table,
  .policy-table-body,
  .policy-table-row,
  .policy-table-head,
  .policy-table-data {
    display: block;
    width: 100%;
  }
  .policy-table {
    border-top: 1px solid #c9beab;
    border-bottom: 1px solid #c9beab;
  }
  .policy-table-row {
    border-bottom: 1px solid #c9beab;
  }
  .policy-table-head {
    padding: 16px 0 12px;
  }
  .policy-table-num {
    flex: 0 0 2.6em;
  }
  .policy-table-data {
    padding: 12px 0 16px;
  }
}

/* = = = = = = = = = = = = = = = = = = = = = = = = = = = */

.policy-footer {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid #0f172a;
}

.policy-footer .policy-txt + .policy-txt {
  margin-top: 8px;
}
