﻿:root {
  --bg-start: #F6602E;
  --bg-end: #FD8545;
  --text: #1f1f1f;
  --line: #2a2d33;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(
    180deg,
    #FDB545 0%,
    #F6602E 100%
  );
  color: var(--text);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "MS PMincho", serif;
  font-style: normal;
  font-weight: 400;
}

.notice {
  width: min(920px, calc(100% - 48px));
  margin: clamp(28px, 5vw, 52px) auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.notice-text {
  margin: 0;
  max-width: 760px;
  text-align: left;
  color: var(--text);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.thanks-image {
  display: block;
  width: min(760px, 100%);
  max-width: 760px;
  height: auto;
  margin: clamp(24px, 4vw, 40px) auto 0;
}

@media (max-width: 767px) {
  .notice {
    width: min(920px, calc(100% - 28px));
    margin: 22px auto;
  }

  .notice-text {
    font-size: clamp(0.98rem, 3.8vw, 1.15rem);
    line-height: 1.45;
  }

  .thanks-image {
  display: block;
  width: min(760px, 100%);
  max-width: 760px;
  height: auto;
  margin: clamp(24px, 4vw, 40px) auto 0;
}
}









