:root {
  /* --viewport-width: min(100vw, 1600px); */
  --viewport-width: 100vw;
  --b: calc(var(--viewport-width) / 160);
}

@media screen and (max-width: 550px) {
  :root {
    --viewport-width: max(100vw, 550px);
    --b: calc(var(--viewport-width) / 55);
  }
}
.arrow {
  width: 100px;
  height: 35px;
  margin: 0 auto;
  background: #007440;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.top {
  position: relative;
  margin-top: 10rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 550px) {
  .top {
    margin-top: 50px;
    padding-bottom: 30px;
  }
}
.top h3 {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .top h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 550px) {
  .top h3 {
    text-align: left;
  }
}
.top h3 span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.top .deco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42rem;
  z-index: -1;
}
@media screen and (max-width: 550px) {
  .top .deco {
    width: 180px;
  }
}
.top .btn {
  color: #fff;
  width: max(92rem, 500px);
  margin: 35px auto 6.5rem;
  font-size: max(2.1rem, 14px);
  text-align: center;
  background: #007440;
}
@media screen and (max-width: 768px) {
  .top .btn {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .top .btn {
    width: 100%;
    margin: 30px auto;
    font-size: 14px;
    text-align: left;
  }
}
.top .btn .line {
  background: rgba(255, 255, 255, 0.25);
}
.top .btn .line::before {
  background: #fff;
}
.top .btn:hover {
  color: #007440;
  background: #DEF0EA;
}
.top .btn:hover .line {
  background: rgba(0, 116, 64, 0.25);
}
.top .btn:hover .line::before {
  background: #007440;
}
.top__about {
  display: flex;
  margin: auto;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top__about {
    flex-wrap: wrap;
  }
}
.top__about .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(29.5rem, 150px);
  margin: 0 -2rem;
  margin-bottom: 5%;
  aspect-ratio: 1/1;
  background: linear-gradient(to bottom, #FDFFFE 0%, #DBF2E9 100%);
  border-radius: 50%;
  border: 0.6rem solid #fff;
}
@media screen and (max-width: 768px) {
  .top__about .circle {
    width: 50%;
    margin: 0 -4rem;
  }
}
@media screen and (max-width: 550px) {
  .top__about .circle {
    width: max(50%, 165px);
    margin: 0 -10px;
    border: 3px solid #fff;
  }
}
.top__about .circle:nth-of-type(even) {
  transform: translateY(20%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top__about .circle:nth-of-type(even) {
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .top__about .circle:nth-of-type(1), .top__about .circle:nth-of-type(2) {
    margin-bottom: -8rem;
  }
}
@media screen and (max-width: 768px) {
  .top__about .circle:nth-of-type(1), .top__about .circle:nth-of-type(2) {
    margin-bottom: -20px;
  }
}
.top__about .circle p {
  color: #007440;
  font-size: max(2.5rem, 16px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .top__about .circle p {
    font-size: 25px;
  }
}
@media screen and (max-width: 550px) {
  .top__about .circle p {
    font-size: 16px;
  }
}
.top__about .circle p span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.top__about .circle p span.break {
  display: inline-block;
}
.top__about .circle p span.accent {
  position: relative;
}
.top__about .circle p span.accent::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 6px;
  background-image: radial-gradient(circle closest-side at center, #007440 60%, transparent 100%);
  background-size: 1.1em 6px;
  background-position: center;
  background-repeat: space;
}
@media screen and (max-width: 550px) {
  .top__about .circle p span.accent::before {
    background-size: 1.05em 6px;
  }
}
.top__about.stay .circle {
  opacity: 0;
  transition: 2s transform ease, 2s opacity ease;
}
.top__about.stay .circle:nth-of-type(odd) {
  transform: translateY(10%);
}
.top__about.stay .circle:nth-of-type(even) {
  transform: translateY(30%);
}
@media screen and (max-width: 768px) {
  .top__about.stay .circle:nth-of-type(even) {
    transform: translateY(10%);
  }
}
.top__about.stay.active .circle {
  opacity: 1;
}
.top__about.stay.active .circle:nth-of-type(odd) {
  transform: translateY(0);
}
.top__about.stay.active .circle:nth-of-type(even) {
  transform: translateY(20%);
}
@media screen and (max-width: 768px) {
  .top__about.stay.active .circle:nth-of-type(even) {
    transform: translateY(0);
  }
}
.top__about.stay.active .circle:nth-of-type(2) {
  transition-delay: 0.3s;
}
.top__about.stay.active .circle:nth-of-type(3) {
  transition-delay: 0.1s;
}
.top__about.stay.active .circle:nth-of-type(4) {
  transition-delay: 0.5s;
}
.top__arrow {
  margin-top: 25px;
}

.qa .attention {
  color: #007440;
  display: block;
  text-align: right;
  font-size: 12px;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .qa .attention {
    text-align: left;
    margin-top: 15px;
  }
}
.qa__title {
  background: #007440;
}
.qa__title h4 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.4em;
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 18rem;
}
@media screen and (max-width: 550px) {
  .qa__title h4 {
    text-align: left;
    letter-spacing: 0.15em;
  }
}
.qa__title h4 span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.qa__detail {
  width: 80%;
  position: relative;
  margin: -13rem auto 0;
  background: #fff;
  border: 2px solid #007440;
  z-index: 10;
}
@media screen and (max-width: 550px) {
  .qa__detail {
    width: 90%;
  }
}
.qa__detail--title {
  text-align: center;
  background: linear-gradient(to right, #FDFFFE 0%, #DBF2E9 100%);
}
@media screen and (max-width: 550px) {
  .qa__detail--title {
    text-align: left;
  }
}
.qa__detail--title p {
  color: #007440;
  font-size: max(2.1rem, 21px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.2em;
  padding: 2rem;
}
.qa__detail--title p span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.qa__detail--text {
  padding: 2.5% 5%;
}
@media screen and (max-width: 550px) {
  .qa__detail--text {
    padding: 45px 5%;
  }
}
.qa__detail--text ul {
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
}
.qa__detail--text ul li {
  gap: 1.5rem;
  display: flex;
  align-items: center;
}
.qa__detail--text ul li:nth-of-type(odd) {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .qa__detail--text ul li:nth-of-type(odd) {
    width: 100%;
  }
}
.qa__detail--text ul li:nth-of-type(even) {
  width: calc(55% - 2.5rem);
}
@media screen and (max-width: 768px) {
  .qa__detail--text ul li:nth-of-type(even) {
    width: 100%;
  }
}
.qa__detail--text ul li span {
  color: #007440;
  display: grid;
  place-items: center;
  font-size: max(2.1rem, 12px);
  line-height: 1;
  letter-spacing: 0;
  width: max(7.5rem, 45px);
  min-width: max(7.5rem, 45px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #007440;
}
@media screen and (max-width: 550px) {
  .qa__detail--text ul li span {
    width: 45px;
    min-width: 45px;
    font-size: 12px;
  }
}
.qa__detail--text ul li p {
  color: #007440;
  font-size: max(2.1rem, 15px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 550px) {
  .qa__detail--text ul li p {
    font-size: 15px;
  }
}
.qa__detail--text ul.stay li {
  position: relative;
}
.qa__detail--text ul.stay li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  transform-origin: right;
  transition: 1s left ease;
  z-index: 100;
}
.qa__detail--text ul.stay.active li::before {
  left: 100%;
}
.qa__arrow {
  margin-top: 5.5rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 550px) {
  .qa__arrow {
    margin-top: 35px;
    margin-bottom: 40px;
  }
}

.flow {
  position: relative;
  text-align: center;
  padding-bottom: 14rem;
}
@media screen and (max-width: 550px) {
  .flow {
    text-align: left;
    padding-bottom: 20px;
  }
}
.flow .deco {
  position: absolute;
  width: 39.5rem;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 550px) {
  .flow .deco {
    display: none;
  }
}
.flow > b {
  display: block;
  color: #007440;
  font-size: 26px;
  line-height: 2;
  letter-spacing: 0.4em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 550px) {
  .flow > b {
    letter-spacing: 0.15em;
    margin-bottom: 30px;
  }
}
.flow > b span {
  color: inherit;
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.flow > p {
  letter-spacing: 0.4em;
}
@media screen and (max-width: 550px) {
  .flow > p {
    letter-spacing: 0.15em;
  }
}
.flow__detail {
  gap: 35px;
  display: flex;
  flex-direction: column;
  margin-top: max(8rem, 50px);
}
@media screen and (max-width: 550px) {
  .flow__detail {
    gap: 35px;
    margin-top: 50px;
  }
}
.flow__detail--inner {
  display: flex;
  background: linear-gradient(to right, #FDFFFE 0%, #DBF2E9 100%);
}
.flow__detail--inner dt {
  position: relative;
  display: grid;
  place-items: center;
  width: 20rem;
  height: auto;
  background: #007440;
}
@media screen and (max-width: 550px) {
  .flow__detail--inner dt {
    width: 80px;
  }
}
.flow__detail--inner dt:not(.flow__detail--inner dt.step7)::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 22px;
  aspect-ratio: 1/1;
  background: #007440;
  border-radius: 50%;
  border: 2px solid #fff;
  transform: translate(-50%, 50%);
  z-index: 100;
}
@media screen and (max-width: 550px) {
  .flow__detail--inner dt:not(.flow__detail--inner dt.step7)::before {
    width: 15px;
  }
}
.flow__detail--inner dt:not(.flow__detail--inner dt.step7)::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 3px;
  height: 35px;
  background-image: linear-gradient(to bottom, #007440 3px, transparent 3px);
  background-size: 3px 6px;
  background-repeat: repeat-y;
  transform: translate(-50%, 100%);
}
@media screen and (max-width: 550px) {
  .flow__detail--inner dt:not(.flow__detail--inner dt.step7)::after {
    width: 2px;
    background-size: 2px 4px;
  }
}
.flow__detail--inner dt p {
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
  font-size: max(6rem, 36px);
}
@media screen and (max-width: 550px) {
  .flow__detail--inner dt p {
    font-size: 36px;
  }
}
.flow__detail--inner dt p span {
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-size: max(2.6rem, 16px);
}
@media screen and (max-width: 550px) {
  .flow__detail--inner dt p span {
    font-size: 16px;
  }
}
.flow__detail--inner dd {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  padding: max(4rem, 15px) 0 max(4rem, 15px) 6rem;
  border-right: max(1.2rem, 1px) solid #007440;
}
@media screen and (max-width: 550px) {
  .flow__detail--inner dd {
    padding: 15px 5px 15px 20px;
    border-right: 4px solid #007440;
  }
}
.flow__detail--inner dd b {
  color: #007440;
  font-size: max(1.8rem, 17px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 550px) {
  .flow__detail--inner dd b {
    font-size: 17px;
  }
}
.flow__detail--inner dd p {
  margin-top: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 550px) {
  .flow__detail--inner dd p {
    line-height: 2.5;
    letter-spacing: 0.05em;
  }
}
.flow__detail--inner .js-flowStep {
  transform: scaleX(0.95);
}
.flow__cta {
  margin-top: 13rem;
}
@media screen and (max-width: 550px) {
  .flow__cta {
    margin-top: 50px;
  }
}
.flow__cta h5 {
  color: #007440;
  font-size: max(2.9rem, 26px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: max(4rem, 20px);
}
@media screen and (max-width: 550px) {
  .flow__cta h5 {
    font-size: 26px;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
  }
}
.flow__cta h5 span {
  display: inline-block;
  color: inherit;
}
.flow__cta .btn {
  width: 75%;
  margin: auto;
  color: #fff;
  font-size: max(2.1rem, 14px);
  letter-spacing: 0.3em;
  background: #007440;
}
@media screen and (max-width: 1000px) {
  .flow__cta .btn {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .flow__cta .btn {
    font-size: 14px;
    letter-spacing: 0.15em;
  }
}
.flow__cta .btn .line {
  background: rgba(255, 255, 255, 0.25);
}
.flow__cta .btn .line::before {
  background: #fff;
}
.flow__cta .btn:hover {
  color: #007440;
  background: #DEF0EA;
}
.flow__cta .btn:hover .line {
  background: rgba(0, 116, 64, 0.25);
}
.flow__cta .btn:hover .line::before {
  background: #007440;
}/*# sourceMappingURL=sell.css.map */