.categorySect {
  container-type: inline-size;
}
.categorySect__inner {
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .categorySect__inner {
    max-width: 1104px;
    margin-inline: auto;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .categorySect__inner {
    padding: 0 3.9800995025vw;
  }
}
.categorySect__head {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
@media screen and (min-width: 768px) {
  .categorySect__head {
    box-sizing: content-box;
    padding-block: 40px;
  }
}
@media screen and (max-width: 767px) {
  .categorySect__head {
    padding-block: 28px;
  }
}
.categorySect__head:before {
  content: "";
  display: block;
  background-color: var(--color-gray-100);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100cqw;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .categorySect__body {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .categorySect__body {
    padding-bottom: 30px;
  }
}

.presentFormSect__head {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
@media screen and (min-width: 768px) {
  .presentFormSect__head {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .presentFormSect__head {
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  .presentFormSect__head .heading {
    font-weight: 600;
    font-size: calc(26rem / 10);
    line-height: 1.4615384615;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .presentFormSect__head .heading {
    font-weight: 600;
    font-size: calc(20rem / 10);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.presentFormSect__body {
  display: grid;
}
@media screen and (min-width: 768px) {
  .presentFormSect__body {
    grid-template-area: "presentDetail AForm";
    grid-template-columns: 320px 1fr;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .presentFormSect__body {
    grid-template-area: "presentDetail" "AForm";
    row-gap: 32px;
  }
}

.presentCategory {
  display: inline-block;
  color: var(--color-orange-300);
  background-color: var(--color-orange-100);
  padding: 4.5px 16px;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .presentCategory {
    font-weight: 600;
    font-size: calc(17rem / 10);
    line-height: 1.3529411765;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .presentCategory {
    font-weight: 600;
    font-size: calc(16rem / 10);
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}

.targetContents {
  display: grid;
  grid-row: auto;
}
@media screen and (min-width: 768px) {
  .targetContents {
    grid-template-areas: "media" "head";
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
  }
}
@media screen and (max-width: 767px) {
  .targetContents {
    grid-template-areas: "media head";
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
}
.targetContents__media {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .targetContents__media {
    max-width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .targetContents__media {
    max-width: 110px;
  }
}
.targetContents__media img {
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .targetContents__head .presentCategory {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .targetContents__head .presentCategory {
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 768px) {
  .targetContents__head .heading {
    font-size: calc(20rem / 10);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .targetContents__head .heading {
    font-size: calc(18rem / 10);
    line-height: 1.3333333333;
    letter-spacing: 0.04em;
  }
}

.aform {
  position: relative;
}
.aform .aform-input-wrap {
  background-color: var(--color-gray-100);
}
@media screen and (min-width: 768px) {
  .aform .aform-input-wrap {
    padding: 48px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 767px) {
  .aform .aform-input-wrap {
    margin-left: -3.9800995025vw;
    margin-right: -3.9800995025vw;
    padding: 40px 24px;
  }
}
.aform .aform-header {
  display: none;
}
.aform .aform-label {
  font-weight: 600;
  font-size: calc(16rem / 10);
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  margin-bottom: 8px;
  white-space: nowrap;
}
.aform .aform-label .aform-required {
  font-size: calc(12rem / 10);
  line-height: 1.3333333333;
  letter-spacing: 0.06em;
  font-weight: normal;
  color: var(--color-white);
  background-color: var(--color-orange-300);
  padding: 3px;
  border-radius: 4px;
}
.aform .aform-input {
  display: inline-block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--color-gray-300);
  padding: 0;
  margin: 0;
  min-height: 48px;
  padding-inline: 16px 24px;
  font-size: calc(16rem / 10);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-gray-500);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.aform .aform-input.aform-radio {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
.aform .aform-input-example {
  color: var(--color-gray-500);
  font-size: calc(13rem / 10);
  line-height: 1.3846153846;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.aform dl:not(:first-of-type) {
  margin-top: 24px;
}
.aform .aform-textarea {
  padding-block: 16px;
}
.aform .aform-button-area {
  margin-inline: auto;
  text-align: center;
  margin-top: 40px;
}
.aform .aform-button-area input[type=submit],
.aform .aform-button-area input[type=button] {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-blueGreen-300);
  text-decoration: none;
  border-radius: 40px;
  min-width: 300px;
  min-height: 56px;
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  justify-self: center;
}
@media screen and (min-width: 768px) {
  .aform .aform-button-area input[type=submit],
  .aform .aform-button-area input[type=button] {
    font-weight: 600;
    font-size: calc(18rem / 10);
    line-height: 1.3333333333;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .aform .aform-button-area input[type=submit],
  .aform .aform-button-area input[type=button] {
    font-weight: 600;
    font-size: calc(16rem / 10);
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
.aform .aform-button-area input[type=submit]:hover,
.aform .aform-button-area input[type=button]:hover {
  background-color: var(--color-blueGreen-300);
  color: var(--color-white);
  border: 1px solid var(--color-blueGreen-300);
}
.aform .aform-error {
  color: var(--color-red);
  font-size: calc(13rem / 10);
  line-height: 1.3846153846;
  letter-spacing: 0.06em;
  margin-top: 4px;
  width: 100%;
}
.aform .aform-error-list {
  color: var(--color-red);
  font-size: calc(16rem / 10);
  line-height: 1.5;
  letter-spacing: 0.04em;
  width: 100%;
}
.aform .aform-confirm,
.aform #aform_confirm_msg {
  font-size: calc(16rem / 10);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.aform #aform_confirm_btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2em;
}

.aform .aform-input-wrap {
  background-color: var(--color-orange-100);
}
.aform .aform-input.parts-5 {
  width: 240px;
  position: relative;
}
.aform .aform-input.parts-8 {
  width: 120px;
}
.aform dl.dl_parts-5 dd {
  position: relative;
}
.aform dl.dl_parts-5 dd::after {
  content: "";
  display: block;
  position: absolute;
  left: 200px;
  top: 25px;
  width: 14px;
  height: 8px;
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.75 1L7.375 7L13 1" stroke="%230666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}
.aform .aform-input-example {
  color: var(--color-gray-500);
  font-size: calc(13rem / 10);
  line-height: 1.3846153846;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.aform .aform-input-example a {
  font-size: inherit;
  color: inherit;
}
.aform .aform-checkbox-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
.aform .aform-checkbox-ul li {
  display: flex;
  align-items: center;
  color: var(--color-gray-500);
  font-size: calc(16rem / 10);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.aform .aform-checkbox-ul .aform-input {
  margin: 0;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  margin-bottom: 2.5px;
  padding: 0;
  min-height: unset;
  border-radius: 2px;
  padding-inline: unset;
}
.aform .aform-checkbox-ul .aform-input {
  margin: 0;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  margin-bottom: 2.5px;
  padding: 0;
  min-height: unset;
  border-radius: 2px;
  padding-inline: unset;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  accent-color: var(--color-orange-300);
}
.aform .aform-textarea {
  padding-block: 16px;
}
.aform .aform-button-area {
  margin-inline: auto;
  text-align: center;
  margin-top: 40px;
}
.aform .aform-button-area input[type=submit],
.aform .aform-button-area input[type=button] {
  border: 1px solid var(--color-orange-300);
}
.aform .aform-button-area input[type=submit]:hover,
.aform .aform-button-area input[type=button]:hover {
  background-color: var(--color-orange-300);
  border: 1px solid var(--color-orange-300);
}
.aform #aform-confirm-form dl.dl_parts-5 dd::after {
  display: none;
}

@media screen and (min-width: 768px) {
  .bread-crumb {
    max-width: 1104px;
    margin-inline: auto;
    padding: 17px 24px;
  }
}
@media screen and (max-width: 767px) {
  .bread-crumb {
    padding: 12px 3.9800995025vw;
  }
}

@media screen and (min-width: 768px) {
  .present-contents {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .present-contents {
    padding-top: 32px;
  }
}/*# sourceMappingURL=article.css.map */