:root {
  --LP_COLOR_WHITE: #fff;
  --LP_BACKGROUND-COLOR_RED: #ea0437;
  --LP_TRANSITION: cubic-bezier(0.23, 1, 0.32, 1);
}

.lp-layout-container {
  width: 960px;
  margin-inline: auto;
  padding: 40px 20px;
  font-size: 16px;
}
.lp-layout-container p {
  margin-top: 0;
}
#main .lp-layout-container p {
  margin-top: 0;
}
.lp-layout-container :where(p) {
  margin-bottom: 16px;
}
.lp-layout-container > *:last-child {
  margin-bottom: 0;
}

.lp-section {
  margin-bottom: 24px;
}
.lp-section-header {
  margin-bottom: 8px;
}
.lp-section-header > *:last-child {
  margin-bottom: 0;
}
.lp-section-body.of-indent-primary {
  padding-left: 1em;
}
.lp-section-body > *:last-child {
  margin-bottom: 0;
}
.lp-section > *:last-child {
  margin-bottom: 0;
}
.lp-section.of-primary {
  margin-bottom: 48px;
}
.lp-section.of-primary > .lp-section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-bottom: 40px;
  gap: 48px 16px;
}
.lp-section.of-primary > .lp-section-header > .lp-section-headerBody.of-area-title {
  grid-row: 2/3;
  grid-column: 1/-1;
}
.lp-section.of-primary > .lp-section-header > .lp-section-headerBody.of-area-to {
  grid-row: 1/2;
}
.lp-section.of-primary > .lp-section-header > .lp-section-headerBody.of-area-date {
  grid-row: 1/2;
}
.lp-section.of-primary > .lp-section-header > .lp-section-headerBody > *:last-child {
  margin-bottom: 0;
}

.lp-headingLevel1 {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
  margin-inline: auto;
  font-size: 22px;
  text-decoration: underline;
}

.lp-headingLevel2 {
  margin-bottom: 48px;
}

.lp-headingLevel3 {
  margin-bottom: 8px;
}

.lp-textAnnotation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px;
}

.lp-buttonConversion {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 4px;
  background-image: linear-gradient(rgba(34, 34, 34, 0.2), rgba(34, 34, 34, 0.2));
  background-position: 100% 100%;
  background-size: 0 100%;
  background-repeat: no-repeat;
  background-color: var(--LP_BACKGROUND-COLOR_RED);
  color: var(--LP_COLOR_WHITE);
  font-weight: bold;
  transition: background-size 0.4s var(--LP_TRANSITION), color 0.4s var(--LP_TRANSITION);
}
@media (hover: hover) {
  .lp-buttonConversion:hover {
    background-position: 0 100%;
    background-size: 100% 100%;
    opacity: 1;
  }
}
.lp-buttonConversion:focus {
  opacity: 1;
}
.lp-buttonConversion-body {
  display: flex;
  column-gap: 4px;
  align-items: center;
}
.lp-buttonConversion-text {
  flex: 1;
}
.lp-buttonConversion-icon {
  width: 30px;
  height: 30px;
  fill: var(--LP_COLOR_WHITE);
}

a.lp-buttonConversion {
  color: var(--LP_COLOR_WHITE);
}

.lp-listDescription {
  display: grid;
  margin-bottom: 16px;
  gap: 8px;
}
.lp-listDescription-body {
  display: grid;
  grid-template-columns: auto 1fr;
}

.lp-listButton {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 16px;
}

.lp-utility-textAlign-left {
  text-align: left;
}
.lp-utility-textAlign-center {
  text-align: center;
}
.lp-utility-textAlign-right {
  text-align: right;
}
.lp-utility-marginBottom-8 {
  margin-bottom: 8px;
}
.lp-utility-marginBottom-16 {
  margin-bottom: 16px;
}
.lp-utility-marginBottom-24 {
  margin-bottom: 24px;
}
.lp-utility-marginBottom-32 {
  margin-bottom: 32px;
}
.lp-utility-marginBottom-40 {
  margin-bottom: 40px;
}
.lp-utility-justifyContent-center {
  justify-content: center;
}
