@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;
}
main h1 {
  padding: 80px 0 60px;
}
.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 article {
  width: 1440px;
  max-width: 93%;
  margin: 0 auto;
}

main article section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  row-gap: 20px;
  align-items: center;
  color: var(--white);
  text-shadow: 2px 2px 0 var(--black);
}

main article section div:first-child {
  border: 2px solid var(--black);
  border-radius: 34px;
  overflow: hidden;
}

main article section dl {
  font-size: 18px;
  padding-bottom: 18px;
  height: fit-content;
}

main article section dl dt {
  font-weight: bold;
}

main article section dl dd {
  margin-bottom: 18px;
}
.maid a {
  margin-bottom: 84px;
}
@media (max-width: 800px) {
  main article section{
    grid-template-columns: 1fr;
  }
  main article section div:first-child {
    border-radius: 24px;
  }

  main article section dl {
    font-size: 16px;
    padding-bottom: 16px;
  }
}