
:root {
  --text-font: "Noto Sans JP", serif;
  --text-color1: #222;
  --text-color-strong: #FE2C55;
}

html {
  font-family: var(--text-font);
  color: var(--text-color1);
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  overflow: hidden;
}
img {
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: var(--text-color1);
}
.l-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-content-wrapper {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: center;
}

.l-thanks__content-wrapper {
  flex-direction: column;
  align-items: center;
  padding: 5px 14px;
}
.c-thanks-img {
  width: clamp(134px, calc(9.01vw + 100.2px), 230px);
  height: clamp(134px, calc(9.01vw + 100.2px), 230px);
}
.l-thanks__content-wrapper h2{
  margin-top: 20px;
  font-size: 28px;
  letter-spacing: 1px;
  line-height: 1.5;
  font-weight: bold;
  color: var(--text-color-strong);
  width: 92.53%;
  text-align: center;
}
.l-thanks__content-wrapper p{
  margin-top: 30px;
  font-size: 20px;      
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: var(--text-color-strong);
  width: 92.53%;
  text-align: center;
}
.l-thanks__content-wrapper a {
  margin-top: 81px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text-color1);
}
@media screen and (max-width: 699px) {
  .l-thanks__content-wrapper {
    padding-top: 62px;
  }
  .l-thanks__content-wrapper h2 {
    margin-top: 11px;
    font-size: 20px;
    letter-spacing: 0.5px;
    text-align: start;
  }
  .l-thanks__content-wrapper p {
    margin-top: 10px;
    font-size: 16px;
    text-align: start;
  }
  .l-thanks__content-wrapper a {
    margin-top: 74px;
    font-size: 16px;
  }
}