@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

:root {
  --black: #272727;
  --red: #FF2E2E;
  --white: #fff;
}

.sp-br {
  display: none;
}
@media (max-width: 550px) {
  .sp-br {
    display: block;
  }
}

.header {
  height: 110px;
  width: 100%;
  background-color: var(--red);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99999;
}
.header .header-content {
  height: 110px;
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-content .header-logo {
  width: 225px;
  height: 46px;
  text-decoration: none;
}
@media (max-width: 950px) {
  .header .header-content .header-logo {
    width: 112px;
  }
}
.header .header-content .header-logo img {
  width: 100%;
}
.header .header-btn {
  display: flex;
  flex-direction: column;
}
.header .header-btn a {
  font-size: 36px;
  text-decoration: none;
  color: var(--red);
  font-weight: 700;
  background-color: var(--white);
  padding-top: 1px;
  padding-right: 30px;
  padding-left: 30px;
  border-radius: 100px;
  border: 2px solid var(--red);
  transition: 0.3s;
  text-align: center;
  width: auto;
}
@media (max-width: 950px) {
  .header .header-btn a {
    font-size: 24px;
  }
}
@media (max-width: 550px) {
  .header .header-btn a {
    font-size: 20px;
    padding-top: 1px;
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 20px;
  }
}
.header .header-btn a img {
  width: 29px;
  height: 29px;
}
@media (max-width: 950px) {
  .header .header-btn a img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 550px) {
  .header .header-btn a img {
    width: 16px;
    height: 16px;
  }
}
.header .header-btn a:hover {
  transform: scale(1.05);
}
.header .header-btn p {
  font-size: 16px;
  color: var(--white);
  text-align: center;
  margin-top: 5px;
  font-weight: 500;
}
@media (max-width: 550px) {
  .header .header-btn p {
    font-size: 12px;
  }
}

.hero h2 {
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
  font-size: 115px;
  font-weight: 500;
  color: var(--red);
}
@media (max-width: 950px) {
  .hero h2 {
    font-size: 60px;
  }
}
@media (max-width: 550px) {
  .hero h2 {
    font-size: 40px;
  }
}
.hero h2 span {
  font-size: 90px;
  font-weight: 500;
}
@media (max-width: 950px) {
  .hero h2 span {
    font-size: 40px;
  }
}
@media (max-width: 550px) {
  .hero h2 span {
    font-size: 30px;
  }
}
.hero .hero-list {
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.hero .hero-list span {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  color: var(--red);
  position: relative;
  white-space: nowrap;
  padding-left: 25px;
  margin-right: 20px;
  margin-top: 10px;
}
@media (max-width: 950px) {
  .hero .hero-list span {
    font-size: 18px;
    padding-left: 18px;
  }
}
@media (max-width: 550px) {
  .hero .hero-list span {
    font-size: 14px;
    padding-left: 13px;
  }
}
.hero .hero-list span::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--red);
  border-radius: 50%;
  top: 9px;
  left: 0;
}
@media (max-width: 950px) {
  .hero .hero-list span::after {
    width: 14px;
    height: 14px;
    top: 7px;
  }
}
@media (max-width: 550px) {
  .hero .hero-list span::after {
    width: 10px;
    height: 10px;
    top: 5px;
  }
}
.hero .hero-content {
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
}
@media (max-width: 550px) {
  .hero .hero-content {
    grid-template-columns: 2fr 3fr;
  }
}
.hero .hero-content .hero-left .hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 30px auto auto 0;
}
@media (max-width: 950px) {
  .hero .hero-content .hero-left .hero-cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "a b" "c c";
  }
  .hero .hero-content .hero-left .hero-cards .hero-card1 {
    grid-area: a;
  }
  .hero .hero-content .hero-left .hero-cards .hero-card2 {
    grid-area: b;
  }
  .hero .hero-content .hero-left .hero-cards .hero-card3 {
    grid-area: c;
  }
}
@media (max-width: 950px) {
  .hero .hero-content .hero-left .hero-cards {
    gap: 5px;
    margin: 0 auto;
  }
}
.hero .hero-content .hero-left .hero-cards .hero-card {
  width: 100%;
  height: 170px;
  border: 4px solid var(--red);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
@media (max-width: 950px) {
  .hero .hero-content .hero-left .hero-cards .hero-card {
    height: 140px;
  }
}
@media (max-width: 550px) {
  .hero .hero-content .hero-left .hero-cards .hero-card {
    height: 100px;
    border: 3px solid var(--red);
  }
}
.hero .hero-content .hero-left .hero-cards .hero-card img {
  width: 150px;
}
@media (max-width: 950px) {
  .hero .hero-content .hero-left .hero-cards .hero-card img {
    width: 100px;
  }
}
@media (max-width: 550px) {
  .hero .hero-content .hero-left .hero-cards .hero-card img {
    width: 50px;
  }
}
.hero .hero-content .hero-left .hero-cards .hero-card p {
  font-size: 18px;
  font-weight: 500;
  color: var(--red);
}
@media (max-width: 950px) {
  .hero .hero-content .hero-left .hero-cards .hero-card p {
    font-size: 14px;
  }
}
.hero .hero-content .hero-left .hero-contact {
  margin-top: 30px;
  background-color: #FEF2E7;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 30px;
}
@media (max-width: 950px) {
  .hero .hero-content .hero-left .hero-contact {
    display: none;
  }
}
.hero .hero-content .hero-left .hero-contact .hero-contact-c {
  width: 100%;
  text-align: center;
}
.hero .hero-content .hero-left .hero-contact .hero-contact-c p {
  margin-bottom: 10px;
}
.hero .hero-content .hero-left .hero-contact .hero-contact-c .hero-btn {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--red);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 30px;
  width: 100%;
  max-width: 400px;
  border: 2px solid var(--red);
  transition: 0.3s;
}
.hero .hero-content .hero-left .hero-contact .hero-contact-c .hero-btn:hover {
  background-color: var(--white);
  color: var(--red);
}
.hero .hero-content .hero-right {
  padding: 20px;
  margin: 0 0 0 auto;
}
.hero .hero-content .hero-right img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
}
@media (max-width: 550px) {
  .hero .hero-content .hero-right {
    padding: 5px;
  }
}
.hero .hero-contact {
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 30px;
  background-color: #FEF2E7;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 30px;
  display: none;
}
@media (max-width: 950px) {
  .hero .hero-contact {
    display: grid;
  }
}
@media (max-width: 550px) {
  .hero .hero-contact {
    grid-template-columns: 1fr;
  }
}
.hero .hero-contact .hero-contact-c {
  width: 100%;
  text-align: center;
}
.hero .hero-contact .hero-contact-c p {
  margin-bottom: 10px;
}
.hero .hero-contact .hero-contact-c .hero-btn {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--red);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 30px;
  width: 100%;
  max-width: 400px;
  border: 2px solid var(--red);
  transition: 0.3s;
}
.hero .hero-contact .hero-contact-c .hero-btn:hover {
  background-color: var(--white);
  color: var(--red);
}

.price {
  margin: 0 auto;
  position: relative;
  margin-top: 100px;
}
.price h2 {
  font-size: 40px;
  text-align: center;
  padding: 10px 100px;
  border-radius: 50px;
  display: inline-block;
  background-color: var(--red);
  color: var(--white);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 950px) {
  .price h2 {
    padding: 10px 50px;
    font-size: 24px;
  }
}
@media (max-width: 550px) {
  .price h2 {
    padding: 10px 20px;
    font-size: 18px;
  }
}
.price .price-box {
  width: calc(100% - 40px);
  max-width: 1080px;
  margin: 0 auto;
  border: 5px solid var(--red);
  border-radius: 20px;
}
.price .price-box .price-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: calc(100% - 10px);
  margin: 0 auto;
  margin-top: 100px;
  gap: 5px;
}
@media (max-width: 550px) {
  .price .price-box .price-header {
    margin-top: 50px;
  }
}
.price .price-box .price-header p {
  text-align: center;
  font-size: 20px;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  padding: 4px;
  border-radius: 10px;
  background-color: var(--red);
  color: var(--white);
}
@media (max-width: 550px) {
  .price .price-box .price-header p {
    font-size: 14px;
  }
}
.price .price-box .price-content {
  display: grid;
  grid-template-columns: 1fr 3px 1fr;
  margin: 0 auto;
  width: calc(100% - 10px);
  text-align: center;
  align-items: center;
  margin-top: 50px;
  position: relative;
}
.price .price-box .price-content:nth-child(8) {
  margin-bottom: 30px;
}
.price .price-box .price-content::after {
  position: absolute;
  content: "";
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ccc;
}
@media (max-width: 550px) {
  .price .price-box .price-content::after {
    height: 2px;
  }
}
.price .price-box .price-content:nth-child(8)::after {
  background-color: transparent;
}
.price .price-box .price-content .price-left {
  display: flex;
  margin: 0 auto;
}
.price .price-box .price-content .price-left p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 0.7em;
}
.price .price-box .price-content .price-left p span {
  font-size: 20px;
}
@media (max-width: 950px) {
  .price .price-box .price-content .price-left p {
    font-size: 20px;
  }
  .price .price-box .price-content .price-left p span {
    font-size: 16px;
  }
}
@media (max-width: 550px) {
  .price .price-box .price-content .price-left p {
    font-size: 20px;
  }
  .price .price-box .price-content .price-left p span {
    font-size: 12px;
  }
}
.price .price-box .price-content .price-left img {
  margin-right: 20px;
  width: 70px;
}
@media (max-width: 950px) {
  .price .price-box .price-content .price-left img {
    width: 50px;
    margin-top: 10px;
  }
}
@media (max-width: 550px) {
  .price .price-box .price-content .price-left img {
    display: none;
  }
}
.price .price-box .price-content .price-bar {
  width: 3px;
  height: 70px;
  background-color: #ccc;
}
@media (max-width: 550px) {
  .price .price-box .price-content .price-bar {
    width: 2px;
  }
}
.price .price-box .price-content .price-right {
  margin: 0 auto;
}
.price .price-box .price-content .price-right p {
  font-size: 70px;
  text-align: center;
  font-weight: bold;
  color: var(--red);
  line-height: 0.7em;
}
.price .price-box .price-content .price-right p span {
  font-size: 34px;
}
@media (max-width: 950px) {
  .price .price-box .price-content .price-right p {
    font-size: 30px;
  }
  .price .price-box .price-content .price-right p span {
    font-size: 18px;
  }
}
.price .price-text {
  width: calc(100% - 40px);
  max-width: 1080px;
  margin: 0 auto;
  border: 5px solid var(--red);
  border-radius: 20px;
  margin-top: 70px;
  padding: 30px;
}
.price .price-text h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--red);
  font-weight: bold;
}

.choice {
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 150px;
}
.choice .choice-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: var(--red);
  position: relative;
}
@media (max-width: 950px) {
  .choice .choice-title {
    font-size: 30px;
  }
}
.choice .choice-title span {
  font-size: 32px;
}
@media (max-width: 950px) {
  .choice .choice-title span {
    font-size: 20px;
  }
}
.choice .choice-title::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 5px;
  background-color: var(--red);
  z-index: -100;
}
.choice .choice-title::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 10px;
  background-color: var(--white);
  z-index: -99;
}
@media (max-width: 950px) {
  .choice .choice-title::before {
    width: 320px;
  }
}
.choice .choice-cards {
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 150px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 550px) {
  .choice .choice-cards {
    grid-template-columns: 1fr;
  }
}
.choice .choice-cards .choice-card {
  width: 100%;
  border: 5px solid var(--red);
  border-radius: 20px;
  align-items: center;
  text-align: center;
  position: relative;
  margin-bottom: 100px;
}
.choice .choice-cards .choice-card .choice-header {
  width: 150px;
  margin-top: -75px;
  z-index: 100;
}
.choice .choice-cards .choice-card h3 {
  font-size: 32px;
  margin-top: 20px;
  font-weight: bold;
}
@media (max-width: 950px) {
  .choice .choice-cards .choice-card h3 {
    font-size: 20px;
  }
}
.choice .choice-cards .choice-card .next {
  margin: 20px auto;
}
.choice .choice-cards .choice-card .next img {
  width: 40px;
}
.choice .choice-cards .choice-card .choice-price {
  width: calc(100% - 60px);
}
.choice .choice-cards .choice-card p {
  margin: 30px auto;
}

.cta-box .cta-img {
  width: 300px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 550px) {
  .cta-box .cta-img {
    width: 150px;
  }
}
.cta-box .cta-bg {
  margin-top: -5px;
  width: 100vw;
  background-color: var(--red);
  padding-bottom: 50px;
}
.cta-box .cta-bg .cta-box {
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding-top: 50px;
  text-align: center;
}
.cta-box .cta-bg .cta-box .cta-p {
  color: var(--white);
  margin-top: 30px;
}
.cta-box .cta-bg .cta-box .cta-title {
  display: flex;
  margin: 0 auto;
  text-align: center;
  width: 340px;
}
.cta-box .cta-bg .cta-box .cta-title h3 {
  font-size: 32px;
  color: var(--white);
  font-weight: bold;
  position: relative;
  text-align: center;
}
.cta-box .cta-bg .cta-box .cta-title img {
  width: 40px;
}
.cta-box .cta-bg .cta-box .cta-title img:nth-child(2) {
  transform: scaleX(-1);
}
.cta-box .cta-bg .cta-box .cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 950px) {
  .cta-box .cta-bg .cta-box .cta-cards {
    grid-template-columns: 1fr;
  }
}
.cta-box .cta-bg .cta-box .cta-cards .cta-card {
  background-color: var(--white);
  border-radius: 20px;
  padding-bottom: 30px;
}
.cta-box .cta-bg .cta-box .cta-cards .cta-card p {
  font-size: 32px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
  color: var(--black);
}
@media (max-width: 550px) {
  .cta-box .cta-bg .cta-box .cta-cards .cta-card p {
    font-size: 18px;
  }
}
.cta-box .cta-bg .cta-box .cta-cards .cta-card a {
  background-color: var(--red);
  padding: 10px 70px;
  font-size: 40px;
  border-radius: 100px;
  color: var(--white);
  text-decoration: none;
}
@media (max-width: 550px) {
  .cta-box .cta-bg .cta-box .cta-cards .cta-card a {
    font-size: 20px;
  }
}

.otoku {
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 150px;
}
.otoku .otoku-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: var(--red);
  position: relative;
}
@media (max-width: 950px) {
  .otoku .otoku-title {
    font-size: 30px;
  }
}
.otoku .otoku-title span {
  font-size: 32px;
}
@media (max-width: 950px) {
  .otoku .otoku-title span {
    font-size: 20px;
  }
}
.otoku .otoku-title::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 5px;
  background-color: var(--red);
  z-index: -100;
}
.otoku .otoku-title::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 10px;
  background-color: var(--white);
  z-index: -99;
}
@media (max-width: 950px) {
  .otoku .otoku-title::before {
    width: 430px;
  }
}
@media (max-width: 550px) {
  .otoku .otoku-title::before {
    width: 300px;
  }
}
.otoku p {
  text-align: center;
  margin: 50px auto;
}
@media (max-width: 550px) {
  .otoku p {
    font-size: 12px;
  }
}
.otoku .otoku-img {
  display: grid;
  place-items: center;
}
.otoku .otoku-img img {
  width: 70%;
}
@media (max-width: 950px) {
  .otoku .otoku-img img {
    width: 90%;
  }
}
@media (max-width: 550px) {
  .otoku .otoku-img .otoku-grid {
    display: none;
  }
}
.otoku .otoku-img .otoku-grid-sp {
  display: none;
}
@media (max-width: 550px) {
  .otoku .otoku-img .otoku-grid-sp {
    display: block;
  }
}
.otoku h3 {
  font-size: 30px;
  width: calc(100% - 40px);
  max-width: 1080px;
  font-weight: bold;
  padding: 15px 50px;
  color: var(--white);
  background-color: var(--red);
  text-align: center;
  border-radius: 130px;
  margin: 50px auto;
}
@media (max-width: 950px) {
  .otoku h3 {
    font-size: 20px;
  }
}

.flow {
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 150px;
}
.flow .flow-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: var(--red);
  position: relative;
}
@media (max-width: 950px) {
  .flow .flow-title {
    font-size: 30px;
  }
}
.flow .flow-title span {
  font-size: 32px;
}
@media (max-width: 950px) {
  .flow .flow-title span {
    font-size: 20px;
  }
}
.flow .flow-title::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 5px;
  background-color: var(--red);
  z-index: -100;
}
.flow .flow-title::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 10px;
  background-color: var(--white);
  z-index: -99;
}
@media (max-width: 950px) {
  .flow .flow-title::before {
    width: 430px;
  }
}
@media (max-width: 550px) {
  .flow .flow-title::before {
    width: 300px;
  }
}
.flow p {
  text-align: center;
  margin: 50px auto;
}
@media (max-width: 550px) {
  .flow p {
    font-size: 12px;
  }
}
.flow .flow-img {
  display: grid;
  place-items: center;
}
.flow .flow-img img {
  width: 70%;
}
@media (max-width: 950px) {
  .flow .flow-img img {
    width: 90%;
  }
}
@media (max-width: 550px) {
  .flow .flow-img .otoku-grid {
    display: none;
  }
}
.flow .flow-img .otoku-grid-sp {
  display: none;
}
@media (max-width: 550px) {
  .flow .flow-img .otoku-grid-sp {
    display: block;
  }
}
.flow h3 {
  font-size: 30px;
  width: calc(100% - 40px);
  max-width: 1080px;
  font-weight: bold;
  padding: 15px 50px;
  color: var(--white);
  background-color: var(--red);
  text-align: center;
  border-radius: 130px;
  margin: 50px auto;
}
@media (max-width: 950px) {
  .flow h3 {
    font-size: 20px;
  }
}
.flow .flow-text {
  width: calc(100% - 40px);
  margin: 100px auto;
  max-width: 1080px;
  border: 5px solid var(--red);
  border-radius: 20px;
  padding: 20px;
}
.flow .flow-text p {
  text-align: left;
}

.qa {
  margin-top: 200px;
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 100px auto;
}
.qa .qa-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: var(--red);
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 950px) {
  .qa .qa-title {
    font-size: 30px;
  }
}
.qa .qa-title span {
  font-size: 32px;
}
@media (max-width: 950px) {
  .qa .qa-title span {
    font-size: 20px;
  }
}
.qa .qa-title::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 5px;
  background-color: var(--red);
  z-index: -100;
}
.qa .qa-title::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 10px;
  background-color: var(--white);
  z-index: -99;
}
@media (max-width: 950px) {
  .qa .qa-title::before {
    width: 430px;
  }
}
@media (max-width: 550px) {
  .qa .qa-title::before {
    width: 350px;
  }
}
.qa .qa-box {
  max-width: 1080px;
  margin: 0 auto;
}
.qa .qa-box .qa-item {
  margin-bottom: 30px;
}
.qa .qa-box .qa-item .qa-block {
  margin: 0 auto;
  background-color: var(--red);
  height: 80px;
  border-radius: 20px;
  display: flex;
  color: #fff;
  align-items: center;
  cursor: pointer;
}
.qa .qa-box .qa-item .qa-block span {
  font-size: 30px;
  margin-right: 30px;
  margin-left: 70px;
}
@media (max-width: 950px) {
  .qa .qa-box .qa-item .qa-block span {
    font-size: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.qa .qa-box .qa-item .qa-block p {
  font-size: 24px;
}
@media (max-width: 550px) {
  .qa .qa-box .qa-item .qa-block p {
    font-size: 16px;
  }
}
.qa .qa-box .qa-item .qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  border-radius: 0 0 20px 20px;
  padding: 0 70px;
}
@media (max-width: 550px) {
  .qa .qa-box .qa-item .qa-answer {
    padding: 0 35px;
  }
}
.qa .qa-box .qa-item .qa-answer p {
  font-size: 20px;
  color: #333;
  padding: 20px 0;
}
@media (max-width: 950px) {
  .qa .qa-box .qa-item .qa-answer p {
    font-size: 16px;
  }
}
.qa .qa-box .qa-item.active .qa-answer {
  max-height: 1000px;
  padding: 0 70px 20px;
}
@media (max-width: 550px) {
  .qa .qa-box .qa-item.active .qa-answer {
    padding: 0 35px 20px;
  }
}

.footer {
  width: 100vw;
  background-color: var(--red);
  height: 300px;
  padding-top: 60px;
}
.footer .footer-box {
  text-align: center;
  color: var(--white);
}
.footer .footer-box h3 {
  font-size: 32px;
  margin-bottom: 20px;
}
.footer .footer-box p {
  font-size: 16px;
}/*# sourceMappingURL=style.css.map */