@charset "UTF-8";
/* CSS Document */

.c-icon-text {
  background-color: #4391c7;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  border-radius: 0.4rem;
  line-height: 1;
  padding: 0.5em 0.8em 0.4em;
}

.c-notes {
  /* padding-left: 1em; */
  display: flex;
  font-size: 1.4rem;
  line-height: 1.5;
}
.c-notes:before {
  content: "※";
}
@media (max-width: 599px) {
  .c-notes {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

/* マーカー */
.c-marker {
  display: inline;
  position: relative;
  padding-bottom: 0.2em;
}

.c-marker--red {
  color: #ff4646;
  font-weight: bold;
  background: #ffecec;
  background: linear-gradient(0deg, rgba(255, 236, 236, 1) 0%, rgba(255, 236, 236, 1) 60%, rgba(255, 236, 236, 0) 60%, rgba(255, 236, 236, 0) 100%);
}

/* qr-code */
.c-qr-code {
  background-color: #ecf6e5;
  padding: 0.8rem;
}

.c-qr-code__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.2rem;
}

.c-qr-code__caption {
  color: #5cb230;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 599px) {
  .c-qr-code__figure.is--pc {
    display: none;
  }
  .c-qr-code__button a {
    background-color: #06c755;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5em 1em;
    display: block;
    line-height: 1.4;
    position: relative;
    border-radius: 50rem;
    text-align: center;
  }
  .c-qr-code__button a:after {
    content: "";
    width: 1rem;
    height: 1rem;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%) rotate(-45deg);
  }
}
@media (min-width: 600px) {
  .c-qr-code__button.is--sp {
    display: none;
  }
}

/* STEP */
.c-step {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.c-step__item {
  border: 2px solid #85c459;
  border-radius: 0.4rem;
  display: flex;
  position: relative;
}

/* 矢印 */
.c-step__item:not(:last-child):after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  border-right: 3px solid #4792c6;
  border-bottom: 3px solid #4792c6;
  position: absolute;
  bottom: -2.4rem;
  left: 50%;
  transform: translate(-50%, 100%) rotate(45deg);
}

.c-step__head {
  background-color: #f3f9ef;
  border-right: 1px dashed #85c459;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 0.2rem 0 0 0.2rem;
  position: relative;
}
@media (max-width: 599px) {
  .c-step__head {
    padding: 1.5rem 1.2rem;
  }
}

#main-contents .c-step__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#main-contents .c-step__title-label,
#main-contents .c-step__title-number {
  padding: 0;
  line-height: 1;
  letter-spacing: 0;
  color: #5cb231;
}
#main-contents .c-step__title-label {
  font-size: 1.6rem;
}
#main-contents .c-step__title-number {
  font-size: 4.2rem;
}
@media (max-width: 599px) {
  #main-contents .c-step__title {
    position: sticky;
    top: 6rem;
    left: 0;
  }

  #main-contents .c-step__title-label {
    font-size: 1.2rem;
  }
  #main-contents .c-step__title-number {
    font-size: 3.2rem;
  }
}

.c-step__body {
  padding: 3rem;
  flex: 1;
}
@media (max-width: 599px) {
  .c-step__body {
    padding: 2rem;
  }
}

#main-contents .c-step__body > *:first-child {
  margin-top: 0;
}
#main-contents .c-step__body > *:last-child {
  margin-bottom: 0;
}

#main-contents .c-step__heading {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  color: #5cb231;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 599px) {
  #main-contents .c-step__heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    font-size: 2rem;
  }
}

.c-step__body p:not([class]) {
  letter-spacing: 0.03em;
  line-height: 1.7;
  font-size: 1.7rem;
}
@media (max-width: 599px) {
  .c-step__body p:not([class]) {
    font-size: 1.6rem;
  }
}

.c-step__body .has--flex-content {
  display: flex;
  gap: 4rem;
}
@media (max-width: 599px) {
  .c-step__body .has--flex-content {
    flex-direction: column;
    gap: 1rem;
  }
}

#main-contents .c-step__body b {
  color: #4792c6 !important;
  font-weight: bold;
}

.c-step__body-qr {
  margin: -2rem -2rem -2rem auto;
}
@media (max-width: 599px) {
  .c-step__body-qr {
    margin: 0;
  }
}
