body {
  background: #fffdfa;
}

.global-nav .is-current::after {
  transform: scaleX(1);
}

.icon-link svg {
  width: 2.6rem;
  height: 2.6rem;
}

.example-hero {
  display: grid;
  grid-template-columns: 48% 52%;
  height: 40rem;
}

.example-left {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: repeating-linear-gradient(
    90deg,
    #fff 0,
    #fff 22px,
    #a3d6cc5c 22px,
    #a3d6cc5c 44px
  );
}

.example-left .pagetop-frame {
  position: absolute;
  inset: 3rem;
  display: grid;
  place-items: center;
}

.example-left .pagetop-frame__content {
  position: relative;
  z-index: 3;
  padding: 3rem;
  text-align: center;
}

.example-hero h1 {
  font-family: var(--en);
  font-size: 6rem;
  font-weight: 400;
  line-height: 1.2;
}

.example-hero__jp {
  margin: 0.5rem 0 2.5rem;
  font-size: 2rem;
}

.example-hero__image {
  align-self: stretch;
  justify-self: stretch;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  font-size: 2rem;
}

/* 下層トップ右側：div.sampleをimgへ差し替えた場合もセクション内の同じ大きさに収める */
img.example-hero__image {
  display: block;
  background: none;
}

.example-list-section {
  padding: 5rem 0 2rem;
}

.example-container {
  width: min(calc(100% - 6rem), 112rem);
  margin-inline: auto;
}

.example-heading-row {
  display: grid;
  grid-template-columns: minmax(6rem, 1fr) auto minmax(6rem, 1fr);
  align-items: center;
  gap: 2rem;
  width: min(78rem, 100%);
  margin-inline: auto;
}

.example-heading-row img {
  width: 100%;
  max-height: 2rem;
  object-fit: contain;
}

.example-heading {
  color: var(--blue);
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.example-heading::before,
.example-heading::after {
  display: none;
}

.example-filters {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  width: min(88rem, 100%);
  margin: 2rem auto;
}

.example-filters button {
  padding: 1rem 1.5rem;
  border: 1px solid #c9a98e;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: 0.25s;
}

.example-filters button:hover,
.example-filters button.is-active {
  border-color: #72bcae;
  background: #72bcae;
  color: #fff;
}

.example-cards {
  border: 1px solid #add8d1;
  border-radius: 0.8rem;
  overflow: hidden;
  background: #fff;
}

.example-card {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  min-height: 24rem;
  scroll-margin-top: 9rem;
  border-bottom: 1px solid #c7e1dc;
}

.example-card:last-child {
  border-bottom: 0;
}

.example-card:nth-child(even) {
  grid-template-columns: 1.45fr 1fr;
}

.example-card:nth-child(even) .example-card__image {
  order: 2;
}

.example-card[hidden] {
  display: none;
}

.example-card__image {
  min-height: 24rem;
  width: 100%;
  height: 35rem;
  object-fit: cover;
  object-position: 70% 100%;
}

.example-card__content {
  display: grid;
  align-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 4rem;
  padding: 3rem 4rem;
}

.example-card__content h3 {
  grid-column: 1 / -1;
}

.example-card__content h3 {
  font-family: var(--en);
  font-size: 2.4rem;
  font-weight: 400;
}

.example-card__content h3 span {
  margin-right: 1.5rem;
  color: #72bcae;
}

.example-card dl {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}

.example-card dl div {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  column-gap: 2rem;
  padding: 0.3rem 0;
  border-bottom: 1px dotted #c7e1dc;
}

.example-card dd {
  margin: 0;
}

.example-instagram {
  padding: 2rem 0;
}

.example-instagram__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 4rem;
  border: 1px solid #add8d1;
  border-radius: 0.8rem;
}

.example-instagram h2 {
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 500;
}

.example-instagram a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.2rem 2rem;
  border: 1px solid #c9a98e;
  border-radius: 0.8rem;
  transition: 0.25s;
}

.example-instagram a:hover,
.example-contact a:hover {
  border-color: #dceeea;
  background: #dceeea;
  color: var(--ink);
}

.example-instagram a img {
  width: 3rem;
  height: 3rem;
}

.example-instagram__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.example-instagram__grid .example-sample {
  aspect-ratio: 1;
  font-size: 1rem;
}

.example-contact {
  padding: 1rem 0 3rem;
}

.example-contact > .example-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.example-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #c9a98e;
  border-radius: 0.8rem;
  transition: 0.25s;
}

.example-contact .example-contact__reserve {
  border-color: #72bcae;
  background: #72bcae;
  color: #fff;
}

.example-contact img,
.example-contact svg {
  width: 3.8rem;
  height: 3.8rem;
  object-fit: contain;
}

.example-contact small {
  display: block;
  font-size: 1rem;
}

.example-footer {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem max(4rem, calc((100% - 110rem) / 2));
  background: linear-gradient(90deg, #cae8e2, #fff 30%, #fff 70%, #cae8e2);
}

.example-footer__brand {
  text-align: center;
}

.example-footer__brand img {
  width: 13rem;
  height: 8rem;
  margin: auto;
  object-fit: contain;
}

.example-footer h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.example-footer h2 svg {
  color: #66b5a8;
}

.example-footer p {
  font-size: 1.2rem;
  text-align: l;
}

.example-copyright {
  padding: 0.7rem;
  background: #8dccbf;
  color: #fff;
  font-family: var(--en);
  font-size: 1rem;
  text-align: center;
}

@media (max-width: 1000px) {
  .example-card__content {
    gap: 1.5rem 2rem;
    padding: 2.5rem;
  }
}

@media (max-width: 767px) {
  .example-hero {
    grid-template-columns: 1fr;
    height: auto;
  }
  .example-hero__image {
    width: 100%;
    height: 20rem;
    object-position: 1% center;
  }
  .example-left {
    min-height: 30rem;
  }

  .example-left .pagetop-frame {
    inset: 1.5rem;
  }

  .example-left .fv__corner {
    width: 6rem;
  }

  .example-left .fv__corner--lt,
  .example-left .fv__corner--rt {
    top: 0;
  }

  .example-left .fv__corner--lb,
  .example-left .fv__corner--rb {
    bottom: 0;
  }

  .example-left .fv__corner--lt,
  .example-left .fv__corner--lb {
    left: 0;
  }

  .example-left .fv__corner--rt,
  .example-left .fv__corner--rb {
    right: 0;
  }

  .example-hero h1 {
    font-size: 4rem;
  }

  .example-hero__jp {
    font-size: 1.7rem;
  }

  .example-list-section {
    padding-top: 4rem;
  }

  .-row {
    grid-template-columns: minmax(4rem, 1fr) auto minmax(4rem, 1fr);
    gap: 0.8rem;
  }

  .example-heading-row img {
    max-height: 2rem;
  }

  .example-heading {
    font-size: 2.6rem;
    font-weight: 500;
  }

  .example-container {
    width: min(calc(100% - 3.2rem), 112rem);
  }

  .example-filters {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .example-card,
  .example-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .example-card:nth-child(even) .example-card__image {
    order: 0;
  }

  .example-card__image {
    min-height: 20rem;
  }

  .example-card__content {
    grid-template-columns: 1fr;
    padding: 2rem 1.6rem;
  }

  .example-card__content h3 {
    grid-column: 1;
  }

  .example-instagram__inner {
    grid-template-columns: 1fr;
    padding: 2rem 1.6rem;
  }

  .example-contact > .example-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .example-footer {
    grid-template-columns: 0.8fr 1fr 1.2fr;
    gap: 1rem;
    padding: 2rem 1rem;
    text-align: left;
  }

  .example-footer h2 {
    justify-content: left;
    gap: 0.4rem;
    font-size: 1rem;
    margin: 1rem 0;
  }

  .example-footer h2 svg {
    width: 1.8rem;
    height: 1.8rem;
  }

  .example-footer p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .example-footer__brand img {
    width: 7rem;
    height: 5rem;
  }
}

@media (max-width: 420px) {
  .example-instagram__grid {
    grid-template-columns: 1fr 1fr;
  }
}
