.title {
  padding: 50px;
  background-color: #f0f0f0;
  background-blend-mode: lighten;
  background-image: url(../images/bgLogo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (max-width: 768px) {
  .title {
    margin-top: 57px;
    padding: 50px 10px;
  }
}

.title h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}

.plan {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
}

@media (max-width: 768px) {
  .plan {
    padding: 0;
  }
}

.plan-wrapper {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .plan-wrapper {
    flex-direction: column;
  }
}

.plan-card {
  width: 50%;
  margin-bottom: 50px;
  padding: 30px;
}

@media (max-width: 768px) {
  .plan-card {
    width: 100%;
  }
  .plan-card:nth-of-type(even) {
    background-color: #f8f8f8;
  }
  .plan-card:last-of-type {
    margin-bottom: unset;
  }
}

.plan-cardTtl {
  margin-bottom: 30px;
  padding: 30px;
  background-color: #fff;
  border: solid 3px #333;
  text-align: center;
}

.plan-cardTtl h3 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .plan-cardTtl h3 {
    font-size: 22px;
  }
}

.plan-cardTtl p {
  display: inline-block;
  padding-top: 15px;
  font-size: 12px;
  font-weight: bold;
  border-top: solid 3px #333;
}

.plan-card .cont {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  border-bottom: solid 3px #333;
}

.plan-card .cont p {
  font-size: 22px;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .plan-card .cont p {
    font-size: 18px;
  }
}

.plan-card .cont p span {
  font-size: 16px;
}

@media (max-width: 1024px) {
  .plan-card .cont p span {
    font-size: 12px;
  }
}

.plan-card .cont h4 {
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-size: 26px;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .plan-card .cont h4 {
    font-size: 22px;
  }
}

.plan-card .cont.marginBottom {
  margin-bottom: 30px;
}

.plan-card .text {
  line-height: 1.5;
  margin-bottom: 30px;
}

.plan-card small {
  display: block;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.5;
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 50px;
  border: solid 3px #333;
}

@media (max-width: 1024px) {
  .contact {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contact {
    display: none;
  }
}

.contact-ttl {
  text-align: center;
}

.contact-ttl h3 {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: bold;
}

.contact-ttl p {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .contact-ttl p {
    margin-bottom: 30px;
  }
}

.contact-button a {
  position: relative;
  padding: 15px 150px 15px 130px;
  font-size: 22px;
  font-weight: bold;
  white-space: nowrap;
  background-color: #69cc50;
  color: #fff;
  border-radius: 3px;
}

.contact-button a::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-size: 0.9rem;
}
