.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;
  }
}

.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;
  }
}

.presentDetail {
  border: 1px solid var(--color-gray-200);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.08);
  background-color: var(--color-white);
  border-radius: 8px;
  position: relative;
  display: grid;
}
@media screen and (min-width: 768px) {
  .presentDetail {
    padding: 40px;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    grid-template-areas: "media head" "media body" "media moreBtn";
    grid-template-columns: minmax(250px, 380px) 1fr;
  }
}
@media screen and (max-width: 767px) {
  .presentDetail {
    padding: 16px;
    grid-template-areas: "head" "media" "body" "moreBtn";
  }
}
.presentDetail:not(:has(.js-viewMore)) .presentDetail__body::after {
  display: none;
}
.presentDetail:before {
  content: "";
  display: block;
  background-color: var(--color-orange-100);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100cqw;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .presentDetail:before {
    min-height: 324px;
    bottom: -40px;
  }
}
@media screen and (max-width: 767px) {
  .presentDetail:before {
    min-height: 417px;
    bottom: -30px;
  }
}
.presentDetail__media {
  grid-area: media;
  max-width: 380px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .presentDetail__media {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--color-orange-300);
  }
}
.presentDetail__head {
  grid-area: head;
}
@media screen and (max-width: 767px) {
  .presentDetail__head {
    margin-bottom: 16px;
  }
}
.presentDetail__head .presentCategory {
  display: inline-block;
  color: var(--color-orange-300);
  background-color: var(--color-orange-100);
  padding: 4.5px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .presentDetail__head .presentCategory {
    font-weight: 600;
    font-size: calc(17rem / 10);
    line-height: 1.3529411765;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 767px) {
  .presentDetail__head .presentCategory {
    font-weight: 600;
    font-size: calc(16rem / 10);
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}
@media screen and (min-width: 768px) {
  .presentDetail__head .heading {
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-orange-300);
    font-weight: 600;
    font-size: calc(26rem / 10);
    line-height: 1.4615384615;
    letter-spacing: 0.04em;
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 767px) {
  .presentDetail__head .heading {
    font-weight: 600;
    font-size: calc(18rem / 10);
    line-height: 1.3333333333;
    letter-spacing: 0.04em;
  }
}
.presentDetail__body {
  grid-area: body;
  display: grid;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease-in;
}
.presentDetail__body::after {
  content: "";
  display: block;
  width: 100%;
  height: 72px;
  background: linear-gradient(to top, #fff 1%, transparent);
  position: absolute;
  bottom: 0;
  left: 0;
}
.presentDetail__body.is-visible::after {
  display: none;
}
.presentDetail__body p {
  font-size: calc(16rem / 10);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.presentDetail__body p strong {
  font-weight: 600;
  font-size: calc(16rem / 10);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.presentDetail__body p:not(:first-child) {
  padding-top: 24px;
}
.presentDetail__body p + .photo {
  padding-top: 24px;
}
.presentDetail__body .photoGroup {
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
.presentDetail__body .photoGroup + .txt {
  padding-top: 0;
}
.presentDetail__body .photo__image {
  width: auto;
}
.presentDetail__body .detailList {
  padding-top: 24px;
}
.presentDetail__body .detailList__desc {
  font-weight: 600;
  font-size: calc(16rem / 10);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.presentDetail__body .detailList + .photo {
  padding-top: 24px;
}
.presentDetail__body .generalButton {
  margin-top: 40px;
  justify-self: center;
}
.presentDetail button.generalButton {
  grid-area: moreBtn;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  justify-self: center;
  margin-top: 32px;
  height: 48px;
}

@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-section {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .present-section {
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .present-contents .presentDetail {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .present-contents .presentDetail {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .present-contents .presentDetail:first-child {
    margin-top: 30px;
  }
}/*# sourceMappingURL=index.css.map */