@charset "UTF-8";
.entry-header {
  padding: 180px 160px 80px 160px;
  border-bottom: solid 1px var(--black-10);
}
.entry-header .entry-header-subtitle {
  font-size: 14px;
  line-height: 170%;
  margin-bottom: 8px;
}
.entry-header .entry-header-title {
  font-size: 44px;
  font-weight: bold;
}

.entry-description {
  padding: 80px 160px 120px 160px;
  margin-top: 80px;
  max-width: 800px;
}
.entry-description .entry-description-header {
  margin-bottom: 40px;
}
.entry-description .entry-description-header .entry-description-title {
  font-size: 28px;
  font-weight: bold;
}
.entry-description .entry-description-items .entry-description-item {
  display: flex;
  font-size: 14px;
  line-height: 170%;
  padding: 40px 0;
  border-top: solid 1px var(--black-10);
}
.entry-description
  .entry-description-items
  .entry-description-item
  .entry-description-item-title {
  min-width: 160px;
  width: 160px;
  margin-right: 16px;
  font-weight: bold;
}

.entry-form {
  background-color: var(--white);
  padding: 120px 160px 120px 160px;
}
.entry-form .entry-form-container {
  max-width: 800px;
}
.entry-form .entry-form-container .entry-form-header .entry-form-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 170%;
}
.entry-form .entry-form-container .entry-form-header .entry-form-description {
  margin-top: 24px;
  font-size: 14px;
  line-height: 170%;
}
.entry-form .entry-form-container .entry-form-contents .entry-form-group {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item.full {
  width: 100%;
}
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item.half {
  width: 45%;
}
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .label-area {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .label-area
  .label {
  font-weight: bold;
  line-height: 170%;
  margin-right: 16px;
}
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .label-area
  .required {
  color: var(--white);
  font-size: 12px;
  line-height: 170%;
  padding: 0 6px;
  border-radius: 4px;
  background-color: var(--red-variant);
}
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .form
  input,
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .form
  textarea,
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .form
  select {
  outline: none;
  border-radius: 8px;
  border: 1px solid var(--black-10);
  background: var(--white);
  padding: 16px;
  width: calc(100% - 32px);
}
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .form
  select {
  width: 100%;
}
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .form
  input:focus,
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .form
  textarea:focus,
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .form
  select:focus {
  border: 1px solid var(--red-variant);
}
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .form
  select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .select-form {
  position: relative;
}
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .select-form
  .select-form-inner::after {
  content: "▼";
  position: absolute;
  top: 8px;
  right: 20px;
}
.entry-form
  .entry-form-container
  .entry-form-contents
  .entry-form-group
  .entry-form-item
  .notice {
  margin-top: 8px;
  font-size: 14px;
  line-height: 170%;
  color: var(--gray-35);
}

.entry-form {
  /* ラジオボタンのカスタマイズ */
}
.entry-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 14px;
  line-height: 170%;
  color: var(--red);
}
.entry-form .wpcf7-list-item {
  margin: 0;
  width: 256px;
  height: 24px;
}
.entry-form .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}
.entry-form input[type="radio"] {
  opacity: 0;
  position: absolute;
}
.entry-form .wpcf7-list-item-label::before {
  border: 1px solid var(--black-10);
  border-radius: 100%;
  content: "";
  height: 22px;
  margin-bottom: auto;
  margin-right: 16px;
  margin-top: auto;
  transition: background-color 0.5s;
  width: 22px;
}
.entry-form input[type="radio"]:checked + .wpcf7-list-item-label::before {
  background-image: url("../images/check-circle-red.svg?v=24.09.18.01");
  border: none;
  background-size: cover;
  height: 24px;
  width: 24px;
}
.entry-form .custom-file-upload input[type="file"] {
  display: none;
}
.entry-form .file-form {
  max-width: 400px;
}
.entry-form .file-form .file-uploader {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid var(--black-10);
  margin-bottom: 8px;
}
.entry-form .file-form .file-uploader img {
  margin-right: 24px;
}
.entry-form .file-form .file-info {
  display: flex;
  align-items: center;
  padding: 8px 24px 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--black-10);
}
.entry-form .file-form .file-info #filename {
  margin: 0 16px;
}
.entry-form .file-form .file-info .cancel-icon {
  margin-left: auto;
  cursor: pointer;
}

.entry-form .entry-form-footer .entry-form-footer-description {
  margin-top: 40px;
  font-size: 12px;
  line-height: 170%;
}
.entry-form .entry-form-footer .entry-form-footer-description .strong {
  text-decoration: underline;
}
.entry-form .entry-form-footer .entry-form-button {
  margin-top: 40px;
  display: flex;
  align-items: center;
}

/* サーバからのメッセージ表示領域 */
.entry-form .wpcf7-form.sent .wpcf7-response-output,
.entry-form .wpcf7-form.invalid .wpcf7-response-output {
  border: none;
  padding: 0;
  margin: 0;
  margin-top: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 30px;
}
.entry-form .wpcf7-form.sent .wpcf7-response-output::before,
.entry-form .wpcf7-form.invalid .wpcf7-response-output::before {
  margin-right: 8px;
  content: "";
  display: block;
  background-size: cover;
  height: 20px;
  width: 20px;
}
.entry-form .wpcf7-form.sent .wpcf7-response-output {
  color: var(--green);
}
.entry-form .wpcf7-form.sent .wpcf7-response-output::before {
  background-image: url(../images/check-icon-green.svg?v=24.09.18.01);
}
.entry-form .wpcf7-form.invalid .wpcf7-response-output {
  color: var(--red);
}
.entry-form .wpcf7-form.invalid .wpcf7-response-output::before {
  background-image: url(../images/exclamation-icon-red.svg?v=24.09.18.01);
}

@media screen and (max-width: 1439px) {
  .entry-header {
    padding: 180px 80px 80px 80px;
  }

  .entry-description {
    padding: 80px 80px 120px 80px;
  }

  .entry-form {
    padding: 120px 80px 120px 80px;
  }
}
@media screen and (max-width: 767px) {
  .entry-header {
    padding: 180px 24px 80px 24px;
  }
  .entry-header .entry-header-title {
    font-size: 32px;
  }

  .entry-description {
    padding: 80px 24px 80px 24px;
    margin-top: 80px;
    max-width: 800px;
  }
  .entry-description .entry-description-items .entry-description-item {
    flex-direction: column;
  }
  .entry-description
    .entry-description-items
    .entry-description-item
    .entry-description-item-title {
    min-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }

  .entry-form {
    padding: 80px 24px 80px 24px;
  }
  .entry-form .entry-form-container .entry-form-contents .entry-form-group {
    flex-direction: column;
  }
  .entry-form
    .entry-form-container
    .entry-form-contents
    .entry-form-group
    .entry-form-item.half {
    width: 100%;
  }
  .entry-form
    .entry-form-container
    .entry-form-contents
    .entry-form-group
    .entry-form-item.half:not(:first-child) {
    margin-top: 40px;
  }
}

/*# sourceMappingURL=page-entry.css.map */
