/* =====================================================
  Example Category
===================================================== */
@media screen and (max-width: 767px) {
  .m-subpage-hero--archive > .wrapper {
    padding-right: 0;
    padding-left: 0;
  }
  .m-subpage-hero--archive .m-subpage-hero__content {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.m-subpage-hero--archive .m-subpage-hero__text {
  max-width: 520px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .m-subpage-hero--archive .m-subpage-hero__text {
    max-width: none;
    margin-top: 18px;
  }
}

.p-example-category {
  position: relative;
  z-index: 0;
  padding: 55px 0 65px;
  background-color: #ffffff;
  overflow: hidden;
}
.p-example-category::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(100vw - 115px);
  height: 100%;
  background-color: rgba(237, 239, 248, 0.63);
  content: "";
}
.p-example-category__inner {
  position: relative;
  width: 100%;
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
}
.p-example-category .m-section-heading {
  position: relative;
  z-index: 1;
}
.p-example-category__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 16px;
  margin-top: 32px;
}
.p-example-category__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid #0085c1;
  background-color: #ffffff;
  color: #0085c1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.p-example-category__button:hover, .p-example-category__button.is-current {
  background-color: #0085c1;
  color: #ffffff;
}
.p-example-category__button:focus-visible {
  outline: 2px solid #0085c1;
  outline-offset: 3px;
}
@media screen and (max-width: 1500px) {
  .p-example-category::before {
    width: calc(100vw - 85px);
  }
}
@media screen and (max-width: 1024px) {
  .p-example-category {
    padding: 45px 0 55px;
  }
  .p-example-category::before {
    width: calc(100vw - 35px);
  }
  .p-example-category__list {
    gap: 12px 14px;
    margin-top: 28px;
  }
}
@media screen and (max-width: 767px) {
  .p-example-category {
    padding: 32px 0 28px;
  }
  .p-example-category .wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
  .p-example-category::before {
    width: 100%;
  }
  .p-example-category__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }
  .p-example-category__button {
    width: 100%;
    min-height: 38px;
    padding: 6px 8px;
    font-size: 11.4px;
  }
}

/* =====================================================
  Example Archive
===================================================== */
.p-example-archive {
  margin-top: 100px;
  position: relative;
  z-index: 0;
  padding: 85px 0 110px;
  background-color: #ffffff;
  overflow: hidden;
}
.p-example-archive::before {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: calc(100vw - 115px);
  height: 100%;
  background-color: #e9ecef;
  content: "";
}
.p-example-archive::after {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 32%;
  height: 100%;
  background-image: url("../img/common/bg-hexagon.svg");
  background-repeat: repeat-y;
  background-position: right top;
  background-size: 100% auto;
  content: "";
  opacity: 0.38;
  pointer-events: none;
}
.p-example-archive__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 55px 45px;
  width: 100%;
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
}
.p-example-archive__list .m-works-card {
  width: 100%;
  background-color: #ffffff;
}
.p-example-archive__list .m-works-card__link {
  padding: 18px;
  background-color: #ffffff;
}
.p-example-archive__list .m-works-card__title {
  min-height: 0;
}
.p-example-archive__empty {
  position: relative;
  z-index: 1;
  grid-column: 1/-1;
  margin: 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}
.p-example-archive__pagination {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  max-width: 1050px;
  margin-top: 75px;
  margin-right: auto;
  margin-left: auto;
}
.p-example-archive--related {
  margin-top: 0;
}
.p-example-archive--related .m-section-heading {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  margin-right: auto;
  margin-bottom: 45px;
  margin-left: auto;
}
.p-example-archive > .wrapper > .m-section-heading {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  margin-right: auto;
  margin-bottom: 45px;
  margin-left: auto;
}
@media screen and (max-width: 1500px) {
  .p-example-archive::before {
    width: calc(100vw - 85px);
  }
  .p-example-archive__list {
    gap: 45px 35px;
  }
}
@media screen and (max-width: 1024px) {
  .p-example-archive {
    padding: 70px 0 90px;
  }
  .p-example-archive::before {
    width: calc(100vw - 35px);
  }
  .p-example-archive::after {
    width: 45%;
  }
  .p-example-archive__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 30px;
  }
  .p-example-archive__pagination {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-example-archive {
    margin-top: 0;
    padding: 40px 0 48px;
  }
  .p-example-archive .wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
  .p-example-archive::before {
    width: 100%;
  }
  .p-example-archive::after {
    width: 78%;
    opacity: 0.22;
  }
  .p-example-archive--related .m-section-heading {
    margin-bottom: 18px;
  }
  .p-example-archive > .wrapper > .m-section-heading {
    margin-bottom: 18px;
  }
  .p-example-archive__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 10px;
  }
  .p-example-archive__list .m-works-card__link {
    padding: 8px 8px 12px;
  }
  .p-example-archive__list .m-works-card__body {
    padding-top: 10px;
  }
  .p-example-archive__list .m-works-card__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.02em;
  }
  .p-example-archive__list .m-works-card__detail-row {
    margin-top: 6px;
  }
  .p-example-archive__list .m-works-card__detail-term {
    padding-bottom: 3px;
    padding-left: 12px;
    font-size: 11px;
  }
  .p-example-archive__list .m-works-card__detail-term::before {
    top: 5px;
    width: 6px;
    height: 6px;
  }
  .p-example-archive__list .m-works-card__detail-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.55;
  }
  .p-example-archive__list .m-works-card__more {
    padding-top: 12px;
    padding-bottom: 4px;
    font-size: 11px;
  }
  .p-example-archive__empty {
    font-size: 13px;
  }
  .p-example-archive__pagination {
    margin-top: 32px;
  }
}

/* =====================================================
  Example Single
===================================================== */
.p-example-single {
  --example-gap-thumb-title: 38px;
  --example-gap-title-terms: 28px;
  --example-gap-title-spec: 40px;
  --example-gap-terms-spec: 28px;
  --example-gap-to-consultation: 65px;
  --example-gap-to-gallery: 60px;
  --example-main-pad-top: 85px;
  --example-main-pad-bottom: 100px;
  --example-gallery-overlap: -90px;
  --example-free-pad-top: 90px;
  --example-free-pad-top-gallery: 140px;
  --example-free-pad-bottom: 110px;
  background-color: #ffffff;
}
.p-example-single__main {
  position: relative;
  z-index: 0;
  padding: var(--example-main-pad-top) 0 0;
  overflow: visible;
}
.p-example-single__main::before {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  width: calc(100vw - 115px);
  height: 100%;
  background-color: #edeff8;
  content: "";
}
.p-example-single__main::after {
  position: absolute;
  z-index: -1;
  top: 150px;
  right: 0;
  width: 30%;
  height: calc(100% - 150px);
  background-image: url("../img/common/bg-hexagon.svg");
  background-repeat: repeat-y;
  background-position: right top;
  background-size: 100% auto;
  content: "";
  opacity: 0.4;
  pointer-events: none;
}
.p-example-single__main:has(.p-example-single__gallery):has(+ .p-example-single__free-area) {
  padding-bottom: 0;
}
.p-example-single__main:has(.p-example-single__gallery):has(+ .p-example-single__free-area) .p-example-single__gallery {
  margin-bottom: var(--example-gallery-overlap);
}
.p-example-single__main:has(.p-example-single__gallery):not(:has(+ .p-example-single__free-area)):has(+ .p-example-archive) {
  padding-bottom: 0;
}
.p-example-single__main:not(:has(.p-example-single__gallery)):has(+ .p-example-single__free-area), .p-example-single__main:not(:has(.p-example-single__gallery)):has(+ .p-example-archive) {
  padding-bottom: 0;
}
.p-example-single__main:not(:has(.p-example-single__gallery)):not(:has(+ .p-example-single__free-area)):not(:has(+ .p-example-archive)), .p-example-single__main:has(.p-example-single__gallery):not(:has(+ .p-example-single__free-area)):not(:has(+ .p-example-archive)) {
  padding-bottom: var(--example-main-pad-bottom);
}
.p-example-single__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}
.p-example-single__thumbnail {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
}
.p-example-single__thumbnail-image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-example-single__header {
  margin: 0;
  text-align: center;
}
.p-example-single__thumbnail + .p-example-single__header {
  margin-top: var(--example-gap-thumb-title);
}
.p-example-single__title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 10px 12px;
  color: #222222;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.p-example-single__title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #0085c1;
  content: "";
}
.p-example-single__terms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-example-single__header + .p-example-single__terms {
  margin-top: var(--example-gap-title-terms);
}
.p-example-single__terms-item {
  margin: 0;
}
.p-example-single__terms-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 16px;
  border: 1px solid #0085c1;
  background-color: #ffffff;
  color: #0085c1;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.p-example-single__terms-link:hover {
  background-color: #0085c1;
  color: #ffffff;
}
.p-example-single__spec {
  width: 100%;
  margin: 0;
}
.p-example-single__header + .p-example-single__spec {
  margin-top: var(--example-gap-title-spec);
}
.p-example-single__terms + .p-example-single__spec {
  margin-top: var(--example-gap-terms-spec);
}
.p-example-single__spec-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  border-bottom: 1px solid #aeb8bf;
}
.p-example-single__spec-row:first-child {
  border-top: 1px solid #aeb8bf;
}
.p-example-single__spec-term, .p-example-single__spec-description {
  margin: 0;
  padding: 14px 15px;
}
.p-example-single__spec-term {
  position: relative;
  padding-left: 30px;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.p-example-single__spec-term::before {
  position: absolute;
  top: 20px;
  left: 12px;
  width: 8px;
  height: 8px;
  border: 1px solid #0085c1;
  border-radius: 50%;
  content: "";
}
.p-example-single__spec-description {
  color: #444444;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
.p-example-single__consultation {
  margin: 0;
}
.p-example-single__header + .p-example-single__consultation, .p-example-single__terms + .p-example-single__consultation, .p-example-single__spec + .p-example-single__consultation {
  margin-top: var(--example-gap-to-consultation);
}
.p-example-single__section-title {
  position: relative;
  margin: 0 0 30px;
  padding: 0 0 13px 20px;
  border-bottom: 1px solid #aeb8bf;
  color: #222222;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
.p-example-single__section-title::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0085c1;
  content: "";
}
.p-example-single__consultation-text p {
  margin: 0;
}
.p-example-single__consultation-text p + p {
  margin-top: 15px;
}
.p-example-single__gallery {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  width: 100%;
  max-width: 1150px;
  margin: var(--example-gap-to-gallery) auto 0;
}
.p-example-single__gallery-item {
  margin: 0;
  aspect-ratio: 360/210;
  border-radius: 5px;
  background-color: #dddddd;
  overflow: hidden;
}
.p-example-single__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-example-single__free-area {
  position: relative;
  z-index: 1;
  padding: var(--example-free-pad-top) 0 var(--example-free-pad-bottom);
  background-color: #ffffff;
}
.p-example-single__free-area.has-gallery {
  padding-top: var(--example-free-pad-top-gallery);
}
.p-example-single__free {
  margin-top: 0;
}
.p-example-single__free h2 {
  position: relative;
  margin: 55px 0 25px;
  padding: 0 0 13px 20px;
  border-bottom: 2px solid #0085c1;
  color: #222222;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}
.p-example-single__free h2::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0085c1;
  content: "";
}
.p-example-single__free h2:first-child {
  margin-top: 0;
}
.p-example-single__free h3 {
  position: relative;
  margin: 42px 0 20px;
  padding-left: 18px;
  color: #0085c1;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
.p-example-single__free h3::before {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 4px;
  background-color: #0085c1;
  content: "";
}
.p-example-single__free h4 {
  margin: 32px 0 16px;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.p-example-single__free p {
  margin: 0;
  color: #333333;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
}
.p-example-single__free p + p {
  margin-top: 15px;
}
.p-example-single__free ul,
.p-example-single__free ol {
  margin: 22px 0;
  padding-left: 25px;
}
.p-example-single__free ul li,
.p-example-single__free ol li {
  color: #333333;
  font-size: 15px;
  line-height: 1.9;
}
.p-example-single__free ul li + li,
.p-example-single__free ol li + li {
  margin-top: 8px;
}
.p-example-single__free ul {
  list-style: none;
  padding-left: 0;
}
.p-example-single__free ul li {
  position: relative;
  padding-left: 20px;
}
.p-example-single__free ul li::before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #0085c1;
  content: "";
}
.p-example-single__free a {
  color: #0085c1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: opacity 0.3s ease;
}
.p-example-single__free a:hover {
  opacity: 0.65;
}
.p-example-single__free strong {
  font-weight: 700;
}
.p-example-single__free blockquote {
  margin: 30px 0;
  padding: 22px 25px;
  border-left: 4px solid #0085c1;
  background-color: #f7f9fb;
  color: #444444;
}
.p-example-single__free blockquote p {
  margin: 0;
}
.p-example-single__free img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
}
@media screen and (max-width: 1500px) {
  .p-example-single {
    --example-main-pad-top: 75px;
    --example-gallery-overlap: -80px;
    --example-free-pad-top-gallery: 125px;
  }
  .p-example-single__main::before {
    width: calc(100vw - 85px);
  }
  .p-example-single__inner {
    max-width: 900px;
  }
  .p-example-single__gallery {
    max-width: 1050px;
  }
}
@media screen and (max-width: 1024px) {
  .p-example-single {
    --example-main-pad-top: 65px;
    --example-main-pad-bottom: 80px;
    --example-gap-title-terms: 24px;
    --example-gap-terms-spec: 24px;
    --example-gap-title-spec: 32px;
    --example-gap-to-consultation: 48px;
    --example-gap-to-gallery: 40px;
    --example-gallery-overlap: -70px;
    --example-free-pad-top: 75px;
    --example-free-pad-top-gallery: 110px;
    --example-free-pad-bottom: 90px;
  }
  .p-example-single__main::before {
    width: calc(100vw - 35px);
  }
  .p-example-single__main::after {
    width: 45%;
    opacity: 0.3;
  }
  .p-example-single__inner {
    max-width: 780px;
  }
  .p-example-single__thumbnail {
    max-width: 620px;
  }
  .p-example-single__title {
    font-size: 25px;
  }
  .p-example-single__gallery {
    gap: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-example-single {
    --example-main-pad-top: 40px;
    --example-main-pad-bottom: 48px;
    --example-gap-thumb-title: 20px;
    --example-gap-title-terms: 18px;
    --example-gap-title-spec: 22px;
    --example-gap-terms-spec: 18px;
    --example-gap-to-consultation: 28px;
    --example-gap-to-gallery: 24px;
    --example-gallery-overlap: -36px;
    --example-free-pad-top: 40px;
    --example-free-pad-top-gallery: 56px;
    --example-free-pad-bottom: 48px;
  }
  .p-example-single__main .wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
  .p-example-single__main::before {
    width: 100%;
  }
  .p-example-single__main::after {
    width: 78%;
    opacity: 0.2;
  }
  .p-example-single__thumbnail {
    border-radius: 6px;
  }
  .p-example-single__title {
    padding: 0 0 8px;
    font-size: 20px;
  }
  .p-example-single__title::after {
    height: 2px;
  }
  .p-example-single__terms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .p-example-single__terms-link {
    width: 100%;
    min-height: 36px;
    padding: 6px 8px;
    font-size: 12px;
  }
  .p-example-single__spec-row {
    display: block;
  }
  .p-example-single__spec-term, .p-example-single__spec-description {
    padding-right: 10px;
  }
  .p-example-single__spec-term {
    padding-top: 10px;
    padding-bottom: 2px;
    padding-left: 22px;
    color: #0085c1;
    font-size: 12px;
  }
  .p-example-single__spec-term::before {
    top: 14px;
    left: 8px;
    width: 6px;
    height: 6px;
  }
  .p-example-single__spec-description {
    padding-top: 2px;
    padding-bottom: 10px;
    padding-left: 22px;
    font-size: 13px;
    line-height: 1.7;
  }
  .p-example-single__section-title {
    margin-bottom: 14px;
    padding-bottom: 8px;
    padding-left: 16px;
    font-size: 16px;
  }
  .p-example-single__section-title::before {
    top: 8px;
    width: 6px;
    height: 6px;
  }
  .p-example-single__consultation-text p + p {
    margin-top: 8px;
  }
  .p-example-single__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .p-example-single__gallery-item {
    aspect-ratio: 16/9;
    border-radius: 4px;
  }
  .p-example-single__free-area .wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
  .p-example-single__free h2 {
    margin-top: 28px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    padding-left: 16px;
    font-size: 18px;
  }
  .p-example-single__free h2::before {
    top: 8px;
    width: 6px;
    height: 6px;
  }
  .p-example-single__free h3 {
    margin-top: 22px;
    margin-bottom: 12px;
    padding-left: 14px;
    font-size: 16px;
  }
  .p-example-single__free h4 {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .p-example-single__free p,
  .p-example-single__free ul li,
  .p-example-single__free ol li {
    font-size: 13px;
    line-height: 1.7;
  }
  .p-example-single__free p + p {
    margin-top: 8px;
  }
  .p-example-single__free ul,
  .p-example-single__free ol {
    margin: 14px 0;
  }
  .p-example-single__free img {
    margin: 16px auto;
  }
  .p-example-single__free blockquote {
    margin: 16px 0;
    padding: 14px 16px;
  }
}/*# sourceMappingURL=example.css.map */