@charset "UTF-8";

:root {
  --main-color: #16a34a;
  --color-gray01: #f9fafb;
  --font-gray01: #6B7280;
  --font-green01: #047857;
  --border-color01: #e5e7eb;
}

.page {
  overflow-x: hidden;
}

.page > .head,
.page__thumb {
  display: none;
}

.page__inner {
  padding: 0 5rem;
  max-width: 1020px;
}

.sec {
  padding: 8rem 0;
}

.sec__ttl {
  margin-bottom: 4.8rem;
  font-size: 30px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
}

.hero {
  position: relative;
  z-index: 1;
}

.hero:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-image: url(../images/eos_bg01.webp);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero:after {
  content: "";
  display: block;
  width: 100vw;
  height: calc(100% + 5px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  opacity: 0.9;
  z-index: -1;
}

.hero__ttl {
  margin-bottom: 3rem;
  font-size: 48px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
}

.hero p.hero__lead {
  font-size: 18px;
  line-height: 3;
  margin: 0;
}

.pricing {
  position: relative;
  z-index: 1;
}

.pricing:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-gray01);
  z-index: -1;
}

.pricing:after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--border-color01);
}


.pricing__box {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  padding: 3.0rem;
  border-radius: 0.5rem;
}

.pricing__listItem {
  display: flex;
}

.pricing__listItem:not(:last-of-type) {
  border-bottom: 1px solid var(--border-color01);
}

.pricing__listTtl,
.pricing__listCont {
  width: 50%;
  padding: 2rem 0;
  font-size: 16px;
}

.pricing__listTtl {
  font-weight: normal;
}

.pricing__listCont {
  font-weight: bold;
}

.pricing p.note {
  margin: 1.5rem 0 0;
  font-size: 14px;
  color: var(--font-gray01);
}

.features {
  background-color: #fff;
}

.features__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.features__list .box {
  background-color: var(--color-gray01);
  padding: 2.5rem 2.5rem 3rem;
  border-radius: 0.5rem;
}

.features__list .box__ttl {
  color: var(--font-green01);
  margin: 0 0 2rem;
  font-size: 20px;
  font-weight: bold;
}

.features__list .box__ttl svg {
  vertical-align: middle;
  margin-right: 0.5em;
  position: relative;
  top: -2px;
}

.features__list .box__list li {
  font-size: 16px;
}

.features__list .box__list li:not(:last-child) {
  margin-bottom: 1.5rem;
}


@media screen and (max-width: 750px) {
  .page__inner {
    padding: 0 1.5rem;
    max-width: inherit;
  }

  .sec {
    padding: 6rem 0;
  }

  .hero p.hero__lead {
    line-height: 2;
  }

  .features__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .features__list .box {
    padding: 2.5rem 2.5rem 3rem;
  }

  .features__list .box__ttl svg {
    top: -2px;
  }

}