html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  letter-spacing: 0.05em;
}

p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.thanks-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 60vh;
}

.thanks-message {
  padding: 0 20px;
  width: 100%;
}
.thanks-message .thanks-title {
  font-size: 24px;
  font-weight: 700;
  color: #33302B;
  margin-bottom: 30px;
  line-height: 1.4;
}
.thanks-message .thanks-text {
  font-size: 16px;
  line-height: 2;
  color: #33302B;
  margin-bottom: 20px;
}
.thanks-message .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-bottom: 60px;
}
.thanks-message .contact-info .contact-item .contact-value {
  font-size: 14px;
  color: #33302B;
}
.thanks-message .thanks-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@-webkit-keyframes checkAnimation {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes checkAnimation {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 960px) {
  .thanks-content {
    padding: 60px 0;
  }
  .thanks-message .thanks-icon {
    margin-bottom: 30px;
  }
  .thanks-message .thanks-icon .icon-circle {
    width: 50px;
    height: 50px;
  }
  .thanks-message .thanks-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .thanks-message .thanks-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  .thanks-message .contact-info {
    margin-bottom: 40px;
  }
  .thanks-message .contact-info .contact-item .contact-value {
    font-size: 16px;
  }
}