/* Fonts */

.noto-sans-regular {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.noto-sans-jp-regular {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  background-color: #f2f2f2;
  color: #333;
}

/* Header */
.header {
  background-color: #1aa550;
  padding: 16px 24px;
}

.logo {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 1px;
}

.header .logo img {
  width: 108px;
  height: auto;
  display: block;
}

/* Main content */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px 60px;
  text-align: center;
}

.thanks-title {
  color: #1aa550;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 22px;
}
/* 
.thanks-title::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 2px;
  background-color: #1aa550;
}

.thanks-title::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  border-right: 2px solid #1aa550;
  border-bottom: 2px solid #1aa550;
} */
.thanks-desc {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

/* Info card */
.info-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 40px 24px;
  margin-top: 44px;
  text-align: center;
}

.info-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #222;
}

.info-card-title .highlight {
  background: linear-gradient(transparent 62%, #ffe680 62%);
}

.info-card-desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}
.info-card-desc span:nth-of-type(3){
  display: block;
}
.info-card-desc span:nth-of-type(5){
  display: block;
}
.info-card-desc span:nth-of-type(4) span{
  display: none;
}

.phone-block {
  margin-top: 24px;
}

.phone-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  font-weight: 700;
  color: #1aa550;
  text-decoration: none;
}

.phone-number svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.phone-hours {
  margin-top: 6px;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -1%;
  text-align: center;
  color: #009f42;
}

/* Call to action button (tap-to-call) */
.call-btn {
  display: none;
  margin-top: 28px;
  background: #b4ee64;
  color: #ffffff;
  font-size: 15px;
  border: 3px solid #009f42;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 14px;
  box-shadow: 0 0px 0 #0d7d3a;
}

/* Footer */
.site-footer {
  background-color: #191d33;
  padding: 60px 24px 40px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover {
  opacity: 0.8;
}

.footer-copyright {
  text-align: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
}

/* Mobile */
@media (max-width: 640px) {
  .thanks-title span {
    display: block;
  }
  .content {
    padding: 36px 16px 40px;
  }

  .thanks-title {
    font-size: 19px;
  }

  .thanks-desc {
    margin-top: 16px;
    font-size: 16px;
    text-align: center;
        display: flex;
    flex-direction: column;
  }

  .info-card {
    padding: 28px 18px;
    margin-top: 32px;
  }

  .info-card-title {
    font-size: 18px;
    text-align: center;
  }

  .info-card-desc {
    font-size: 16px;
        display: flex;
    flex-direction: column;
    text-align: left;
  }
  .info-card-desc span:nth-of-type(4) span{
  display: inline;
}
  .info-card-desc span:nth-of-type(5){
  display: none;
}
  .phone-block {
    display: none;
  }

  .phone-number {
    font-size: 24px;
  }

  .call-btn {
    display: block;
    text-align: center;
    background-color: #B4EE64;
    color: #009F42;
    border: 3px solid #009F42;
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;

    align-items: flex-start;
  }
  .footer-copyright{
    display: none;
  }
}
