html,
body {
  height: 100%;
}

body {
  background-color: #fcfcfc;
  font-family: 'Noto Sans JP';
}

@font-face {
  font-display: swap;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-jp-v53-japanese-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-sans-jp-v53-japanese-700.woff2') format('woff2');
}

.page-layout {
  display: grid;
  place-content: center;
  height: 100%;
}

.page-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 16px 23px;
}

.page-title {
  color: #FFF;
  margin: 0;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 120% */
}

.page-title-logo {
  width: calc(100% - 20px);
  height: 100%;
}

.content-card {
  display: flex;
  width: 512px;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #EFEFEF;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.10), 0px 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.content-card-title {
  flex-shrink: 0;
  margin: 0;
  align-self: stretch;
  text-align: center;
  color: #1F2937;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.ribbon-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 248px;
  height: 300px;
  background-color: #3AA195;
  mix-blend-mode: multiply;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}


.ribbon-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 627px;
  background-color: #E5E5E5;
  mix-blend-mode: multiply;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.alert-danger {
  overflow: hidden;
  color: #D42E31;
  text-overflow: ellipsis;
}