:root {
  --color-main: #0a4fa1;
}

/* 全体のスタイル */
html {
  scroll-behavior: smooth;
}

body {
  font: normal 18px/1.7 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3",
    "Noto Sans JP", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Arial", "Verdana",
    sans-serif;
  color: #000;
  text-align: center;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  background-color: #fff;
}

.container {
  max-width: calc(1000 / 1920 * 100vw);
  padding-inline: 3.6%;
  margin-inline: auto;
}

.sec-ttl {
  color: var(--color-main);
  font-size: calc(60 / 1920 * 100vw);
  font-weight: 800;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .container {
    max-width: none;
  }

  .sec-ttl {
    font-size: 10vw;
  }
}

/* レスポンシブ設定 */
@media screen and (max-width: 640px) {
  body {
    min-width: inherit;
    height: 100%;
  }

  .sp-item {
    display: block !important;
  }

  .pc-item {
    display: none !important;
  }

  .sp-item img {
    width: 100%;
  }

  .sp img {
    max-width: 90%;
  }

  .sp02 img {
    max-width: 100%;
  }

  .sp03 img {
    max-width: 70%;
  }

  .btn img {
    max-width: 95%;
  }
}

@media screen and (min-width: 641px) {
  .sp-item {
    display: none !important;
  }

  .pc-item {
    display: block !important;
  }
}

/* 共通クラス */

.rollover:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

/* フォーム要素 */
input[type="radio"] {
  width: 15px;
  height: 15px;
  vertical-align: middle;
}

input[type="image"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

/* テキストスタイル */
em {
  text-decoration: underline;
  font-style: normal;
}

/* フォントスタイル */
a {
  text-decoration: none;
}

.bold {
  font-weight: bold !important;
}

strong {
  font-weight: bold;
}

/* フロート */
.fr {
  float: right !important;
}

.fl {
  float: left !important;
}

.clear {
  clear: both;
}

/* 画像 */
img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  line-height: 0;
  padding: 0;
}

/* クリアフィックス */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

/* レイアウト */
#wrapper {
  margin: 0 auto;
  margin-right: 14%;
  width: 40%;
  max-width: 480px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* ヘッダー */
header {
  position: relative;
  margin: 0 auto;
}

header img {
  width: 100%;
  height: auto;
  display: block;
}

.header-tel {
  position: absolute;
  top: 10px;
  right: 20%;
  width: 40%; /* max-widthをwidthに変更 */
}

.header-tel img {
  width: 100%; /* 親要素に合わせて100%に変更 */
  height: auto;
}

@media screen and (max-width: 344px) {
  .header-tel {
    top: 10px;
    right: 10px;
    width: 35%;
  }
}

@media screen and (min-width: 345px) and (max-width: 360px) {
  .header-tel {
    top: 5px;
    right: 12px;
    width: 38%;
  }
}

@media screen and (min-width: 361px) and (max-width: 375px) {
  .header-tel {
    top: 8px;
    right: 5px;
    width: 40%;
  }
}

@media screen and (min-width: 376px) and (max-width: 390px) {
  .header-tel {
    top: 7px;
    right: 18px;
    width: 42%;
  }
}

@media screen and (min-width: 391px) and (max-width: 412px) {
  .header-tel {
    top: 8px;
    right: 20px;
    width: 44%;
  }
}

@media screen and (min-width: 413px) and (max-width: 414px) {
  .header-tel {
    top: 8px;
    right: 22px;
    width: 45%;
  }
}

@media screen and (min-width: 415px) and (max-width: 430px) {
  .header-tel {
    top: 9px;
    right: 25px;
    width: 46%;
  }
}

@media screen and (min-width: 431px) and (max-width: 540px) {
  .header-tel {
    top: 10px;
    right: 30px;
    width: 40%;
  }
}

@media screen and (min-width: 541px) and (max-width: 640px) {
  .header-tel {
    top: 12px;
    right: 35px;
    width: 50%;
  }
}
/* タブレット縦向き */
@media screen and (min-width: 641px) and (max-width: 768px) {
  .header-tel {
    top: 8px;
    right: 25%;
    width: 15%;
  }
}

/* タブレット横向き */
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .header-tel {
    top: 8px;
    right: 25%;
    width: 15%;
  }
}
/* デスクトップ共通 (1024px以上) */
@media screen and (min-width: 1024px) {
  header {
    position: relative;
    max-width: 1920px; /* 最大幅を設定 */
    margin: 0 auto;
  }

  .header-tel {
    position: absolute;
    top: 10%; /* 固定値の代わりに相対値を使用 */
    right: 15%;
    width: 15%; /* 固定幅ではなく、親要素に対する割合 */
    max-width: 300px; /* 最大幅を設定 */
  }

  .header-tel img {
    width: 100%;
    height: auto;
    top: 5%;
  }
}

/* 中型PC (1280px - 1919px) */
@media screen and (min-width: 1280px) and (max-width: 1919px) {
  .header-tel {
    top: 12%; /* 少し下に調整 */
    right: 12%;
    width: 14%;
  }
}

/* 大型PC (1920px以上) */
@media screen and (min-width: 1920px) {
  .header-tel {
    top: 12%; /* さらに下に調整 */
    right: 18%;
    width: 13%;
  }
}

/* フローティングバナー（SP用） */
@media screen and (max-width: 640px) {
  .sp-floating-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    z-index: 1000;
  }

  .sp-floating-banner a {
    display: block;
    width: auto;
  }

  .sp-floating-banner img {
    display: block;
    height: auto;
    width: auto;
    max-height: 80px;
  }
}

@media (min-width: 641px) {
  .sp-floating-banner {
    display: none;
  }
}

/* タブレット用フローティングバナー */
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .pc-floating-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 3px solid #0066cc;
    padding: 5px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .pc-floating-banner a {
    margin: 0 10px;
  }

  .pc-floating-banner img {
    height: 50px;
    width: auto;
  }

  body {
    padding-bottom: 130px;
  }

  .sp-floating-banner {
    display: none;
  }
}

/* PC用フローティングバナー */
@media screen and (min-width: 1025px) {
  .pc-floating-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 3px solid #0066cc;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .pc-floating-banner a {
    margin: 0 10px;
  }

  .pc-floating-banner img {
    height: 80px;
    width: auto;
  }

  body {
    padding-bottom: 130px;
  }

  .sp-floating-banner {
    display: none;
  }
}

/* CTA */
.cta-banner {
  padding-block: calc(25 / 1920 * 100vw) calc(50 / 1920 * 100vw);
  background-color: #fff;
}

.cta-banner__inner {
  position: relative;
}

.cta-area {
  padding-block: calc(25 / 1920 * 100vw) calc(10 / 1920 * 100vw);
  padding-inline: calc(20 / 1920 * 100vw);
  background-color: #fff;
  border: calc(5 / 1920 * 100vw) solid var(--color-main);
  border-radius: 10px;
  color: var(--color-main);
  line-height: 1.2;
}

.cta-area__ttl {
  font-size: calc(30 / 1920 * 100vw);
  font-weight: 700;

  strong {
    color: #cd000f;
  }
}

.cta-area__txt {
  font-size: calc(26 / 1920 * 100vw);
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: calc(24 / 1920 * 100vw);
}

.tel,
.mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(16 / 1920 * 100vw);
  flex: 1;
  padding: calc(15 / 1920 * 100vw) calc(30 / 1920 * 100vw);
  border-radius: 6px;

  &::before {
    content: "";
    background-repeat: no-repeat;
  }
}

.tel {
  background-color: #cd000f;
  box-shadow: -2px -2px 5px rgba(166, 0, 12, 0.4) inset,
    2px 2px 2px rgba(255, 255, 255, 0.4) inset, 0 5px 5px rgba(0, 0, 0, 0.2);
  color: #fff;

  &::before {
    display: block;
    width: calc(40 / 1920 * 100vw);
    height: calc(42 / 1920 * 100vw);
    background-image: url(../images/tel.png);
    background-size: contain;
  }
}

.tel__txt {
  font-size: calc(20 / 1920 * 100vw);
}

.tel__num {
  font-size: calc(42 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.mail {
  background-color: #00973c;
  box-shadow: -2px -2px 5px rgba(0, 123, 49, 0.4) inset,
    2px 2px 2px rgba(255, 255, 255, 0.4) inset, 0 5px 5px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: calc(40 / 1920 * 100vw);
  font-weight: 700;

  &::before {
    width: calc(56 / 1920 * 100vw);
    height: calc(36 / 1920 * 100vw);
    background-image: url(../images/mail.png);
    background-size: contain;
  }

  &::after {
    display: block;
    width: calc(40 / 1920 * 100vw);
    height: calc(40 / 1920 * 100vw);
    background-image: url(../images/mail_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
  }
}

.cta-area__open24-7 {
  margin-top: calc(20 / 1920 * 100vw);
  font-size: calc(26 / 1920 * 100vw);
  font-weight: 700;
}

.flyer {
  display: block;
  position: absolute;
  bottom: 0;
  right: calc(168 / 1920 * 100vw);
  padding: calc(20 / 1920 * 100vw) calc(30 / 1920 * 100vw);
  background-color: #0a4fa1;
  border-radius: 10px;
  color: #fff;
  box-shadow: -8px -8px 5px rgba(8, 68, 138, 0.9) inset,
    2px 2px 2px rgba(255, 255, 255, 0.4) inset;
}

.flyer__main {
  font-size: calc(40 / 1920 * 100vw);
  font-weight: 700;
  line-height: 1;
}

.flyer__notice {
  margin-top: calc(16 / 1920 * 100vw);
  font-size: calc(12 / 1920 * 100vw);
}

/*CTASP版*/
@media screen and (max-width: 640px) {
  .cta-banner {
    padding-block: calc(60 / 780 * 100vw);
  }

  .cta-area {
    padding: calc(30 / 780 * 100vw) calc(24 / 780 * 100vw)
      calc(20 / 780 * 100vw);
    border-width: calc(5 / 780 * 100vw);
  }

  .cta-area__ttl {
    font-size: calc(36 / 780 * 100vw);
    white-space: nowrap;
  }

  .cta-area__txt {
    margin-top: calc(14 / 780 * 100vw);
    font-size: calc(30 / 780 * 100vw);
  }

  .buttons {
    flex-direction: column;
    gap: calc(30 / 780 * 100vw);
    margin-top: calc(53 / 780 * 100vw);
  }

  .tel,
  .mail {
    flex: auto;
    justify-content: space-between;
    height: calc(170 / 780 * 100vw);
    padding-inline: calc(40 / 780 * 100vw);
  }

  .tel {
    &::before {
      width: calc(56 / 780 * 100vw);
      height: calc(74 / 780 * 100vw);
    }
  }

  .tel__txt {
    font-size: calc(30 / 780 * 100vw);
  }

  .tel__num {
    font-size: calc(64 / 780 * 100vw);
  }

  .mail {
    font-size: calc(50 / 780 * 100vw);

    &::before {
      width: calc(79 / 780 * 100vw);
      height: calc(54 / 780 * 100vw);
    }

    &::after {
      width: calc(55 / 780 * 100vw);
      height: calc(55 / 780 * 100vw);
    }
  }

  .cta-area__open24-7 {
    margin-top: calc(40 / 780 * 100vw);
    font-size: calc(30 / 780 * 100vw);
  }

  .flyer {
    display: none;
  }
}

/* トップに戻るボタン */
.gotop {
  display: block;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #999;
  padding-top: 30px;
  text-align: center;
  letter-spacing: -1px;
  font-size: 85%;
  text-decoration: none;
  color: #333;
  opacity: 0.5;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}

.gotop::before {
  content: "";
  display: block;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  width: 25%;
  height: 25%;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transform: rotate(-45deg);
}

.gotop:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .gotop {
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    bottom: 100px; /*フローティングバナー80px+height/2*/
    right: 10px;

    &::before {
      top: 46%;
    }
  }
}

/*よくある質問*/
#faq {
  padding: 64px 5%;
  background-image: url("../images/faq-bg.png");
  background-size: 100%;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: left;
}

.details {
  margin-top: 35px;
  max-width: 1000px;
  margin-inline: auto;
  border-radius: 10px;
  box-shadow: 2px 7px 2px 0px rgba(50, 129, 184, 0.5);
}

.summary {
  display: block;
  position: relative;
  padding-block: 34px;
  padding-inline: 15.5% 50px;
  background: linear-gradient(
    90deg,
    rgba(2, 31, 146, 1) 0%,
    rgba(9, 67, 191, 1) 50%,
    rgba(13, 90, 220, 1) 100%
  );
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: bold;
}

.summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消す */
  display: none;
}

.summary::before {
  content: "Q";
  position: absolute;
  top: 33px;
  left: 8.4%;
  font-weight: bold;
}

.summary::after {
  /*矢印*/
  content: "";
  position: absolute;
  top: 40px;
  right: 25px;
  width: 10px;
  height: 10px;
  border-bottom: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
  transition: all 0.2s 0s ease;
}

.details[open] .summary {
  border-radius: 10px 10px 0 0;
}

.details[open] .summary::after {
  transform: rotate(225deg);
}

.answer {
  position: relative;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  color: #313131;
  font-size: 1.125rem; /*18px*/
}

.answer::before {
  content: "A";
  position: absolute;
  top: 21px;
  left: 8.4%;
  color: #e60012;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: bold;
}

.answer__inner {
  padding-block: 25px;
  padding-inline: 15.5% 50px;
}

.details:last-child .answer__inner {
  padding-bottom: 0;
}

/*施工までの流れ*/
.flow {
  width: 57.8%;
  padding-block: 20px 25px;
  margin-inline: auto;
}

.flow li {
  position: relative;
  height: 50px;
  margin-top: 30px;
  background-color: #b9defb;
  line-height: 50px;
  text-align: center;
}

.flow li:first-child {
  margin-top: 0;
}

.flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  width: 126px;
  height: 19px;
  transform: translateX(-50%);
  background-color: #3184c9;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/*SP版FAQ*/
@media screen and (max-width: 640px) {
  .summary {
    font-size: clamp(1.5rem, 5.4vw, 3.34rem);
  }

  .summary::after {
    width: calc(20 / 640 * 100vw);
    height: calc(20 / 640 * 100vw);
  }

  .answer {
    font-size: clamp(1.125rem, 4.6vw, 3rem);
  }

  .answer::before {
    top: 26px;
    font-size: clamp(1.5rem, 5.4vw, 3.34rem);
  }

  .answer__inner {
    padding-right: 10%;
  }

  .flow {
    width: 80%;
  }
}

/* PC版フォーム */
#formWrap {
  width: 100%;
  margin: 0 auto;
  color: #555;
  line-height: 120%;
  font-size: 90%;
  background-color: #fff;
  overflow: hidden;
}

form {
  padding-inline: 5%;
}

table.formTable {
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  border-radius: 10px;
}

table.formTable td,
table.formTable th {
  border: 1px solid #ccc;
  padding: 15px;
  vertical-align: top;
}

table.formTable th {
  width: 25%;
  font-weight: bold;
  background: #f7f7f7;
  text-align: left;
}

table.formTable td {
  width: 30%;
  font-weight: normal;
  background: #fff;
  text-align: left;
}

table.formTable input::placeholder {
  color: #a3a3a3;
  opacity: 0.5;
}

table.formTable span {
  text-align: center;
  padding: 0 5px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  background-color: #eb6100;
}

.note {
  font-weight: 300;
  margin-top: 5px;
  font-size: 0.9em;
  color: #666;
}

.privacy-notice {
  text-align: center;
  padding: 10px;
  color: #555;
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0;
  line-height: 1.6;
}

.submit-button {
  background: transparent;
  display: inline-block;
  width: 30%;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}

.submit-button img {
  width: 100%;
  margin-inline: 0;
}

.error {
  --display: none;
  &::before {
    content: "※指定の形式で入力してください。";
    display: var(--display);
    margin-bottom: 10px;
    color: #eb6100;
    font-size: 12px;
    text-align: start;
  }
}

input:user-invalid {
  margin-bottom: 0 !important;
}

input:user-invalid + .error {
  --display: block;
}

input:valid + .error {
  --display: none;
}

form input[type="text"],
input[type="tel"],
input[type="email"],
form textarea {
  width: 95%;
  height: 50px;
  padding: 10px;
  font-size: 110%;
  display: block;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

form textarea {
  height: 150px;
}

/*　スマホ用フォーム（*/
@media screen and (max-width: 640px) {
  form {
    padding-inline: 0;
  }

  table.formTable {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    margin-right: 5px;
    border-collapse: collapse;
    align-items: center;
  }

  table.formTable th,
  table.formTable td {
    width: 85%;
    display: block;
  }

  table.formTable th {
    margin-top: 0;
    border-bottom: 0;
  }

  form input[type="text"],
  input[type="tel"],
  input[type="email"],
  form textarea {
    width: 95%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }

  .submit-button {
    width: 50%;
    padding: 0;
  }

  .submit-button img {
    height: auto;
    margin-bottom: 20px;
    margin-top: 0;
  }

  form input[type="reset"],
  form input[type="button"] {
    display: block;
    width: 100%;
    height: 40px;
  }

  .privacy-notice {
    text-align: center;
    padding: 10px;
    color: #555;
    font-size: 12px;
    font-weight: bold;
    margin-top: 20px;
    line-height: 1.6;
    margin-bottom: 0;
  }
}

/*　タブレット用フォーム*/
@media screen and (min-width: 641px) and (max-width: 1024px) {
  table.formTable {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    margin-right: 5px;
    border-collapse: collapse;
    align-items: center;
  }

  table.formTable th,
  table.formTable td {
    width: 85%;
    display: block;
  }

  table.formTable th {
    margin-top: 0;
    border-bottom: 0;
  }

  form input[type="text"],
  input[type="tel"],
  input[type="email"],
  form textarea {
    width: 95%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }

  .submit-button {
    padding: 0;
  }

  .submit-button img {
    height: auto;
    margin-bottom: 20px;
    margin-top: 0;
  }

  form input[type="reset"],
  form input[type="button"] {
    display: block;
    width: 100%;
    height: 40px;
  }
}

/*企業情報*/
#company-info {
  padding-block: calc(60 / 1920 * 100vw);
  background-image: url(../images/company-bg.png);

  img {
    width: calc(550 / 1920 * 100vw);
  }
}

.company-info__inner {
  padding: calc(25 / 1920 * 100vw) calc(36 / 1920 * 100vw)
    calc(60 / 1920 * 100vw);
  background-color: #fff;
  border-radius: 10px;
}

.company {
  margin-top: calc(30 / 1920 * 100vw);
  font-size: calc(24 / 1920 * 100vw);
  text-align: left;
}

.company__item {
  display: flex;
  align-items: center;
  gap: calc(30 / 1920 * 100vw);
  padding-block: calc(15 / 1920 * 100vw);
  padding-inline: calc(90 / 1920 * 100vw) calc(65 / 1920 * 100vw);

  &:nth-child(odd of .company__item) {
    background-color: rgba(185, 222, 251, 0.2);
  }

  &:nth-child(even of .company__item) {
    background-color: rgba(229, 229, 229, 0.3);
  }

  dt {
    width: 20%;
    font-weight: 600;
  }
}

/*SP版企業情報*/
@media screen and (max-width: 640px) {
  #company-info {
    background-image: none;
    background-color: #fff;
    img {
      width: 100%;
    }
  }

  .company {
    margin-top: calc(65 / 780 * 100vw);
    font-size: calc(36 / 780 * 100vw);
  }

  .company__item {
    padding: calc(35 / 780 * 100vw) 0 calc(35 / 780 * 100vw)
      calc(19 / 780 * 100vw);

    dt {
      width: 25%;
    }

    dd {
      width: 75%;
    }
  }

  .small {
    font-size: calc(30 / 780 * 100vw);
  }
}

/* フッター */
footer {
  background-color: #0b4188;
  text-align: center;
  padding: 16px 0;
  color: #ffffff;
  font-size: 90%;
  width: 100%;
  z-index: 999;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #1997d1;
}

footer a:visited {
  color: #fff;
}

@media screen and (max-width: 640px) {
  footer {
    font-size: clamp(10px calc(12 / 780 * 100vw) 12px);
    z-index: 900;
    padding-bottom: 116px;
  }

  body:not(.thanks-message) footer {
    padding-bottom: 200px;
  }
}

/* サンクスメッセージ */
.thanks-message {
  text-align: center;
  padding: 50px 20px;
  background-color: #edf6fd;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 50px auto;
}

.thanks-message h1 {
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-in-out;
}

.thanks-message p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
