@charset "utf-8";

.access .inner {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.access .catch {
  font-size: clamp(0.875rem, 0.723rem + 0.65vw, 1.5rem);
  text-align: center;
  color: #000;
}

.access .sec-body {
  display: flex;
  gap: 4%;
  justify-content: space-between;
}

.access .sec-body .map {
  max-width: 595px;
  width: 100%;
  height: 396px;
}

.access .sec-body .map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.access .sec-text {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.access .sec-text .item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid #150E06;
}

.access .sec-text .item-tit {
  display: flex;
  align-items: center;
  gap: 8px;
}

.access .sec-text .item-tit .icon {
  width: 26px;
  aspect-ratio: 1/1;
}

.access .sec-text .item-tit .ttl {
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  color: #150e06;
}

.access .sec-text .desc {
  padding-left: 34px;
}

.access .sec-text .desc p {
  line-height: calc(24/16);
}

.sec-form .inner {
  max-width: 1137px;
  width: 90%;
  margin: 0 auto;
  padding: 0 0 160px;
}

.sec-form .box {
  background: #e6e2d8;
}

.sec-form .box .box-inner {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 54px;
  width: 70%;
  margin: 0 auto;
}

.sec-form .box .box-inner .tit-ja {
  font-size: clamp(1.25rem, 1.068rem + 0.78vw, 2rem);
  text-align: center;
  color: #000;
}



.form-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.privacyBox {
  height: 180px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 5%;
  border: 1px solid #898989;
  background-color: #ffffff;
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
  color: #000;
}

form .policy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

form .policy input {
  width: 24px;
  height: 24px;
  appearance: auto;
}

form .policy label {
  margin: 0;
  font-weight: 400;
  font-size: clamp(0.938rem, 0.922rem + 0.06vw, 1rem);
  color: #000;
  text-align: left;
}

form .policy .check {
  display: flex;
  align-items: center;
  gap: 8px;
}

form .policy label br {
  display: none;
}

.privacyBox a {
  color: #000 !important;
  font-weight: 400;
}

.labelText02 {
  font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
  letter-spacing: 0.1em;
  color: #401a33;
  margin: 0;
}

input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border-radius: 0 !important;
  border: 1px solid #9f9f9f;
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  margin-right: 10px;
}


::placeholder {
  color: #868686;
}



.radioArea {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

input[type="radio"]::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 0 !important;
  background-color: #000;
  transform: scale(0);
  transition: transform 0.2s ease;
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

.requiredText {
  font-weight: 300;
  font-size: clamp(0.75rem, 0.72rem + 0.13vw, 0.875rem);
  text-align: center;
  color: #fff;
  padding: 2px 10px;
  background: #150e06;
}

.requiredText.nini {
  background-color: #adadad;
}

.formTh {
  display: flex;
  gap: 16px;
  align-items: center;
}

.formTd {
  width: 100%;
}

.formTh label {
  margin-bottom: 0;
}

.formTh.ais {
  align-items: flex-start;
  margin-top: 20px;
}

/*
.formRow {
  display: grid;
  grid-template-columns: 28% 1fr;
  width: 100%;
  gap: 5%;
}
    */

.formRow {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}


.addArea {
  display: grid;
  grid-template-columns: 10% 1fr;
  align-items: center;
  gap: 16px;
}

.addTd {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.addArea select {
  width: 265px;
}

.labelText01 {
  font-family: var(--zenkaku);
  font-weight: 500;
  font-size: clamp(0.875rem, 0.709rem + 0.35vw, 1.125rem);
  color: #401a33;
}

input[type="text"],
input[type="email"],
select,
textarea {
  padding: 13px 19px;
  width: 100%;
  color: #000;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-appearance: none;
  appearance: none;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
  line-height: calc(28 / 16);
}

textarea {
  min-height: 174px !important;
  max-height: 174px;
}

.formWrap .column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.formRow.formbtn {
  padding-bottom: 0;
  border: none;
}

.submitbtn {
  max-width: 192px;
  width: 100%;
}

.formBtnTd {
  width: 100%;
  height: 56px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  background: #150e06;
  padding: 0;
  position: relative;
  transition: 0.3s;
  line-height: 1;
  border: none;
  background: none;
  margin: 0 auto;
}

.formBtnTd:hover {
  opacity: 50%;
}

button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
  font-weight: 700;
  font-size: clamp(1.188rem, 1.172rem + 0.06vw, 1.25rem);
  text-align: center;
  color: #e6e2d8;
  border-radius: 4px;
  background: #150e06;
  border: none;
}


.thanks .inner {
  padding: 120px 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thanks .tit-ja {
  font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
  text-align: center;
  color: #000;
  margin-bottom: 32px;
}

.thanks .tit-ja br {
  display: none;
}

.thanks .desc p {
  line-height: calc(24 / 16);
  text-align: center;
}

.thanks .desc {
  margin-bottom: 44px;
}

.thanks .backtop {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  border-radius: 4px;
  background: #150e06;
  max-width: 192px;
  width: 100%;
  margin: 0 auto;
}

.thanks .backtop .link-text {
  font-size: 16px;
  text-align: center;
  color: #e6e2d8;
}

@media (max-width: 1024px) {
  .access .sec-body {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .access .sec-body .map {
    height: 201px;
    width: 100%;
  }


  .formRow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .access .inner {
    padding: 40px 0;
    gap: 24px;
  }

  .sec-form .box .box-inner {
    padding: 40px 0;
    width: 90%;
  }

  .sec-form .inner {
    padding-bottom: 120px;
  }

  input[type="text"],
  input[type="email"],
  textarea {
    padding: 16px;
  }


  .labelText01 {
    margin-bottom: 0;
  }

  .form-column {
    gap: 23px;
  }

  .formRow {
    gap: 17px;
  }

  form .policy label br {
    display: inline-block;
  }

  .radioArea {
    gap: 4px;
  }

  .addArea {
    grid-template-columns: auto 1fr;
  }

  .addArea select {
    width: calc(218 / 400 * 100vw);
  }

  .addArea input {
    width: calc(255 / 400 * 100vw);
  }

  .thanks .inner {
    padding: 64px 0 80px;
    width: 91%;
    margin: 0 auto;
  }

  .thanks .tit-ja {
    font-feature-settings: "palt";
    text-align: center;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .thanks .desc {
    margin-bottom: 24px;
  }

  .thanks .tit-ja br {
    display: block;
  }

}