@charset "utf-8";

:root {
  --bg-color: #DA8899;
  --black: #0C000A;
  --white: #FFFFFB;
  --box-color: #CA5069;
  --border-color: #B50C6C;
  --button-color: #89006E;
  --font: "Mochiy Pop One", sans-serif;
  --shadow: rgba(0, 0, 0, 0.3);
}

main {
  position: relative;
  overflow: hidden;
  font-size: 17px;
}

.svg {
  position: absolute;
  z-index: -10;
  width: 100%;
  fill: #57004B;
}

.ue {
  top: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
}

.shita {
  bottom: 0;
  filter: drop-shadow(0 -1px 2px rgba(0, 0, 0, 0.8));
}
.shita svg{
  vertical-align: bottom;
}
main h1 {
  padding: 80px 0 60px;
}
main article {
  width: 1440px;
  max-width: 93%;
  margin: 0 auto;
}

main article hgroup {
  text-align: center;
  color: white;
  margin-bottom: 4em;
  font-family: var(--font);
  text-shadow: 2px 2px 0 var(--black);
}

main article hgroup h2 {
  position: relative;
  font-weight: normal;
  width: fit-content;
  margin: 0 auto 8px;
  padding: 0 5px;
  font-size: 40px;
  line-height: 1.25;
}

main article hgroup h2::after {
  position: absolute;
  z-index: -1;
  content: '';
  width: 100%;
  height: 28%;
  bottom: 0;
  left: 0;
  background-color: #BA9C00;
  transform: skew(-4deg);
  border-radius: 100px;
}

main article hgroup h2 span {
  font-size: 48px;
  -webkit-text-stroke: 1px var(--white);
}

main article hgroup h2 span:nth-child(2n) {
  color: #61842A;
}

main article hgroup h2 span:nth-child(2n-1) {
  color: #B10024;
}

main article hgroup p {
  font-size: 20px;
  line-height: 1.98;
}

main article section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 1em;
  align-items: center;
}

main article section>div:first-child {
  margin: 0 auto;
  width: 90%;
}

.bun {
  background-color: var(--white);
  height: fit-content;
  padding: 5px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.bun>div{
  border: 4px dashed #57004B;
  padding: 19px;
  border-radius: 16px;
}
.bun h2 {
  font-family: var(--font);
  font-weight: normal;
  text-align: center;
  margin-bottom: 17px;
}

.bun p {
  line-height: 1.98;
}

.maid a {
  margin-bottom: 84px;
}

@media (max-width: 800px) {

  main article hgroup {
    margin-bottom: 2em;
  }

  main article hgroup h2 {
    font-size: 26px;
  }

  main article hgroup h2 span {
    font-size: 30px;
    -webkit-text-stroke: 0.7px var(--white);
  }

  main article hgroup p {
    font-size: 19px;
  }

  main article section {
    grid-template-columns: 1fr;
  }

  .bun {
    padding: 1em 1em 1.1em;
  }

  .bun h2 {
    text-align: center;
    margin-bottom: 12px;
  }
}