article {
  background: var(--surface-variant, #fff);
  display: grid;
  grid-template-columns: 1fr min(100vw, 430px) 1fr;
  position: relative;
}

/*============================
#aside-logo
============================*/
article aside#aside-logo {
  width: 100%;
  display: flex;
  height: 544px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  position: sticky;
  top: 0;
}
article aside#aside-logo a.custom-logo-link {
  width: 210px;
}
article aside#aside-logo a.custom-logo-link img.custom-logo {
  width: 100%;
  height: auto;
}
article main {
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.16);
  position: relative;
}

article main .wp-block-image {
  margin: 0;
}

article main section.cta ul.cta__buttons {
  display: flex;
  padding: min(100vw / 424 * 20, 20px);
  align-items: center;
  gap: min(100vw / 424 * 16, 16px);
  background: var(--primary);
  justify-content: center;
}

article main section.cta ul.cta__buttons li a span.material-symbols-rounded {
  font-size: calc(1em / 16 * 24);
}

article main section.cta ul.cta__buttons li a {
  display: flex;
  padding: min(100vw / 424 * 16, 16px) min(100vw / 424 * 32, 32px)
    min(100vw / 424 * 16, 16px) min(100vw / 424 * 16, 16px);
  justify-content: center;
  align-items: center;
  gap: min(100vw / 424 * 8, 8px);
  flex: 1 0 0;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: min(100vw / 424 * 16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 31.5px */
  text-decoration: none;

  border: 1px solid #fff;
}
article main section.cta ul.cta__buttons li a big {
  font-size: calc(1em / 16 * 21);
}

article main section.cta--floating {
  position: fixed;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: 100;
}

article main section.cta--floating ul.cta__buttons {
  padding: min(100vw / 424 * 10, 20px);
  gap: min(100vw / 424 * 8, 16px);
}

article main section.cta--floating ul.cta__buttons li a {
  padding: min(100vw / 424 * 8, 16px) min(100vw / 424 * 16, 32px)
    min(100vw / 424 * 8, 16px) min(100vw / 424 * 8, 16px);
  gap: min(100vw / 424 * 8, 8px);
}

@media screen and (min-width: 1280px) {
  article main section.cta--floating {
    display: none;
  }
}

/*============================
#aside-cta
============================*/
article aside#aside-cta {
  display: flex;
  width: 100%;
  height: 544px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: sticky;
  top: 0;
}
aside#aside-cta div.aside-cta__container {
  display: flex;
  width: calc(100% - 96px);
  max-width: 400px;
  padding: 64px 24px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 24px 0px #e9bcc9;
  margin-inline: auto;
}

article aside#aside-cta div.aside-cta__headline {
  color: var(--on-surface, #000);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: end;
  font-feature-settings: "palt";
}
article aside#aside-cta div.aside-cta__headline:before {
  content: "";
  width: 0.5em;
  height: 1em;
  border-left: 1.5px solid var(--on-surface, #000);
  display: inline-block;
  transform: rotate(-40deg) translateY(-0.5em);
}
article aside#aside-cta div.aside-cta__headline:after {
  content: "";
  width: 0.5em;
  height: 1em;
  border-right: 1.5px solid var(--on-surface, #000);
  display: inline-block;
  transform: rotate(40deg) translateY(-0.5em);
}

article aside#aside-cta div.aside-cta__headline p {
  margin: 0;
}
article aside#aside-cta ul.aside-cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
article aside#aside-cta ul.aside-cta__buttons li {
  width: 100%;
}
article aside#aside-cta ul.aside-cta__buttons li a {
  display: flex;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border: 1px solid #fff;
  text-decoration: none;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
}

article
  aside#aside-cta
  ul.aside-cta__buttons
  li
  a
  span.material-symbols-rounded {
  font-size: calc(1em / 16 * 24);
}

@media screen and (max-width: 1280px) {
  article aside .custom-logo-link,
  article aside#aside-cta .aside-cta__container {
    display: none;
  }
}

/*============================
#footer
============================*/
footer#footer.footer {
  display: flex;
  padding: 40px 0;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--secondary, #3a3d74);
  color: var(--on-secondary, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
