html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 768px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #3a3a3a;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  body {
    font-size: 2.75vw;
  }
}
@media print {
  body {
    zoom: 0.64;
    padding-top: 0;
    -webkit-print-color-adjust: exact;
  }
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 160px;
}

@media screen and (max-width: 768px){
  .container {
    margin-top: 120px;
  }
}

.header-title {
  width: 100%;
  background-color: #007c7c;
  color: #ffffff;
  text-align: center;
  padding: 12px 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
  line-height: 1.4;
  box-sizing: border-box;
  z-index: 1000;
  position: relative;
}

@media (min-width: 768px) {
  .header-title {
    font-size: 1.6rem;
  }
}

.title-text {
  margin: 0;
}

header {
  position: absolute;
  inset: 0 auto auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5.0vw 3.25vw 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  header {
    padding: 18.0vw 4.5vw 0;
  }
}
header .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 240px;
  height: 60px;
  border-bottom: 1px solid #b2b2b2;
  margin-top: 2.5em;
  font-size: 1.4rem;
  font-weight: 400;
  align-items: end;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  header .user {
    width: 40vw;
    margin-top: 2.5vw;
    font-size: 4.5vw;
  }
}
header .customer-id {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 360px;
  height: 45px;
  font-size: 1.2rem;
  border: 1px solid #b2b2b2;
  white-space: nowrap;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  header .customer-id {
    width: 46.875vw;
    height: 7.8125vw;
    font-size: 3.2vw;
  }
}
header .customer-id label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 100%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  header .customer-id label {
    width: 20.3125vw;
  }
}
header .customer-id label::after {
  position: absolute;
  inset: 0 auto auto 150px;
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #b2b2b2;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  header .customer-id label::after {
    inset: 0 auto auto 20.3125vw;
  }
}
header .customer-id > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 210px;
  height: 100%;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  header .customer-id > span {
    width: 26.5625vw;
  }
}

h1 {
  margin-top: 25px;
  font-size: 2.0rem;
  color: #007c7c;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  h1 {
    font-size: 6.25vw;
  }
}

.subtext {
  text-align: center;
  color: #3a3a3a;
  margin-bottom: 3rem;
  font-size: 1.0rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .subtext {
    margin-bottom: 0;
    font-size: 3.2vw;
  }
}

.payment-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0rem 0 2rem;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .payment-options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5vw;
    max-width: 81.25vw;
    margin: 7.5vw 0 7.5vw;
  }
}
.payment-options .custom-radio {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  gap: 0.75rem;
  line-height: 1;
  font-size: 1.0rem;
  border: 1px solid #b2b2b2;
  border-radius: 6px;
  padding: 20px;
  box-sizing: border-box;
  width: 250px;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .payment-options .custom-radio {
    font-size: 3.645833vw;
    width: 81.25vw;
  }
}
.payment-options .custom-radio input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}
.payment-options .custom-radio .radio-circle {
  width: 1.2rem;
  height: 1.2rem;
  border: 1px solid #3a3a3a;
  border-radius: 50%;
  background: white;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border 0.25s ease, background 0.25s ease;
  transition: border 0.25s ease, background 0.25s ease;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .payment-options .custom-radio .radio-circle {
    width: 4.375vw;
    height: 4.375vw;
  }
}
.payment-options .custom-radio .radio-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.6rem;
  height: 0.6rem;
  background: #57bc9d;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .payment-options .custom-radio .radio-circle::after {
    width: 2.75vw;
    height: 2.75vw;
  }
}
.payment-options .custom-radio input[type=radio]:checked + .radio-circle {
  border: 2px solid #57bc9d;
}
.payment-options .custom-radio input[type=radio]:checked + .radio-circle::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.payment-options .custom-radio .label-text {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.payment-options .custom-radio:has(input[type=radio]:checked) {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border:  2px solid #85c0c0;
}

.notice {
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  background: #fff;
  max-width: 730px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .notice {
    max-width: 81.25vw;
    line-height: 1.6;
    padding: 3vw;
    margin: 0 0 1vw;
    text-align: left;
    font-size: 3.5vw;
  }
}

.btn-main, .btn-secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.15em;
  border: none;
  border-radius: 0.5em;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn-main:hover, .btn-secondary:hover {
  background: #57bc9d;
  color: white;
}
.btn-main:active, .btn-secondary:active {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
  opacity: 0.85;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .btn-main, .btn-secondary {
    max-width: 81.25vw;
    padding: 5vw;
    border-radius: 1.25vw;
    font-size: 4.375vw;
  }
}

.btn-main {
  background-color: #007c7c;
  color: white;
}

.btn-secondary {
  display: block;
  width: auto;
  margin: 1.5rem auto;
  padding: 1rem 2.5rem;
  text-align: center;
  font-size: 1.0rem;
  border: 2px solid #007c7c;
  border-radius: 0.5em;
  color: #007c7c;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .btn-secondary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0.6rem 2.0rem;
    border-radius: 1.25vw;
    font-size: 4.0vw;
    font-weight: bold
  }
}

.check-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background-color: #007c7c;
  border-radius: 50%;
  margin-top: 40px;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .check-icon {
    margin: 20vw auto 10vw;
  }
}
.check-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-animation: fadeIn 0.6s ease-out forwards;
          animation: fadeIn 0.6s ease-out forwards;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
footer {
  text-align: center;
  font-size: 0.8rem;
  background: #007c7c;
  color: white;
  padding: 1rem 0;
  width: 100%;
  margin-top: auto;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  footer {
    padding: 2.5vw 0;
    font-size: 2vw;
  }
}

@media (max-width: 767px) {
  .fade-in {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-animation: none;
            animation: none;
  }
}

.thanks-h1{
  margin-top: 30px;
  font-size: clamp(20px, 8vw, 40px);
}

.thanks-subtext{
  font-size: clamp(12px,4.5vw,20px);
  margin-top: 10px;
  text-align: center;
  line-height: 1.8;
}


/*# sourceMappingURL=style.css.map */