@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
.l-content a {
  color: inherit;
  text-decoration: none;
}
.l-content img {
  height: auto;
}
.l-content main,
.l-content picture {
  display: block;
  margin: 0;
  padding: 0;
}

.l-main {
  overflow: hidden;
}

.c-text {
  font-size: 1.4rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .c-text {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}

.c-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media (min-width: 768px) {
  .c-container {
    max-width: calc(1040px + 4rem);
  }
}

.c-sectionHeading__ja {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 768px) {
  .c-sectionHeading__ja {
    font-size: 2.4rem;
  }
}

.c-sectionHeading__en {
  color: #EF6D22;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0.5em;
}
@media (min-width: 768px) {
  .c-sectionHeading__en {
    font-size: 2rem;
  }
}

.c-buttonPill {
  display: inline-grid;
  place-items: center;
  max-width: 100%;
  min-height: 65px;
  color: #fff !important;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.375;
  text-align: center;
  background-color: #EF6D22;
  border-radius: calc(infinity * 1px);
  padding: 1rem 2.4rem;
  transition: opacity 0.2s ease-out;
}
@media (any-hover: hover) {
  .c-buttonPill:hover {
    opacity: 0.7;
  }
}

.c-pageHeader {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}
.c-pageHeader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #a3a3a3;
  mix-blend-mode: multiply;
  z-index: -1;
}

.c-pageHeader__inner {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.c-pageHeader__content {
  color: #fff;
}

.c-pageHeader__title,
.c-pageHeaderLeadTop,
.c-pageHeaderLeadBottom {
  font-weight: 500;
  text-align: center;
  text-shadow: 0 0 0.17em #000;
}

@media (max-width: 767px) {
  .u-sp-none {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .u-pc-none {
    display: none !important;
  }
}

.lazy {
  opacity: 0;
  transform: translateY(5rem);
  transition: 1s ease-out;
}

.lazy--inview {
  opacity: 1;
  transform: translateY(0);
}