@charset "UTF-8";
@media screen and (max-width: 1100px) {
  html, body {
    overflow-x: clip;
  }
}
/* ============
wsa-anchor
============ */
section#wsa-anchor {
  margin: 5rem 0;
}
@media screen and (max-width: 767px) {
  section#wsa-anchor {
    margin: 3rem 0;
  }
}
section#wsa-anchor .contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  section#wsa-anchor .contents {
    grid-template-columns: 1fr;
  }
}
section#wsa-anchor .contents__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #EAEEF6;
  border-radius: 20px;
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: #252525;
  transition: opacity 0.3s ease;
}
section#wsa-anchor .contents__item:hover {
  opacity: 0.75;
}
section#wsa-anchor .contents__item--label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  section#wsa-anchor .contents__item--label {
    font-size: 0.95rem;
  }
}
section#wsa-anchor .contents__item--arrow {
  color: #2C55A7;
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

/* ============
wsa-feature
============ */
section#wsa-feature {
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  section#wsa-feature {
    margin: 5rem 0;
  }
}
section#wsa-feature .contents {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
section#wsa-feature .contents__item {
  background-color: #EAEEF6;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  section#wsa-feature .contents__item {
    padding: 2rem 1.5rem;
  }
}
section#wsa-feature .contents__item--num {
  font-family: "new-atten", sans-serif;
  color: #2C55A7;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  section#wsa-feature .contents__item--num {
    font-size: 2.25rem;
  }
}
section#wsa-feature .contents__item--title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #252525;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  section#wsa-feature .contents__item--title {
    font-size: 1.2rem;
  }
}
section#wsa-feature .contents__item--desc {
  line-height: 2;
  font-size: 0.875rem;
}
section#wsa-feature .contents__item--desc .emphasis {
  color: #2C55A7;
  font-weight: 700;
  color: #2C55A7;
  padding: 0 0.2rem;
}
section#wsa-feature .contents__item--list {
  list-style: none;
  padding: 0;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0 1rem;
}
section#wsa-feature .contents__item--list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 2;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
section#wsa-feature .contents__item--list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #2C55A7;
  font-weight: 700;
}
section#wsa-feature .contents__item--list li:last-child {
  margin-bottom: 0;
}
section#wsa-feature .contents__item--note {
  line-height: 2;
  font-size: 0.8125rem;
  color: #888888;
  margin-top: 1rem;
}

/* ============
wsa-function
============ */
section#wsa-function .bg {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  section#wsa-function .bg {
    padding: 5rem 0;
  }
}
section#wsa-function .contents {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
section#wsa-function .contents__group {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  section#wsa-function .contents__group {
    padding: 2rem 1.5rem;
  }
}
section#wsa-function .contents__group--title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #2C55A7;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(44, 85, 167, 0.25);
}
@media screen and (max-width: 767px) {
  section#wsa-function .contents__group--title {
    font-size: 1.2rem;
  }
}
section#wsa-function .contents__group--list dt {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #EAEEF6;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #252525;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  section#wsa-function .contents__group--list dt {
    font-size: 1rem;
  }
}
section#wsa-function .contents__group--list dt:first-child {
  margin-top: 0;
}
section#wsa-function .contents__group--list dt .num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background-color: #2C55A7;
  color: #ffffff;
  border-radius: 50%;
  font-family: "new-atten", sans-serif;
  font-size: 0.8125rem;
  flex-shrink: 0;
}
section#wsa-function .contents__group--list dd {
  padding-left: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 2;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  section#wsa-function .contents__group--list dd {
    padding-left: 1rem;
  }
}
section#wsa-function .contents__group--list dd ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}
section#wsa-function .contents__group--list dd ul li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 2;
  font-size: 0.875rem;
}
section#wsa-function .contents__group--list dd ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #2C55A7;
  font-weight: 700;
}
section#wsa-function .contents__group--list dd ul li ul {
  margin-top: 0.3rem;
}
section#wsa-function .contents__group--list dd ul li ul li {
  font-size: 0.8125rem;
  color: #888888;
}
section#wsa-function .contents__group--list dd ul li ul li::before {
  color: #888888;
}
section#wsa-function .contents__group--list dd p {
  line-height: 2;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
section#wsa-function .contents__group--list dd p.note {
  font-size: 0.75rem;
  color: #888888;
  background-color: #EAEEF6;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}

/* ============
wsa-price
============ */
section#wsa-price {
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  section#wsa-price {
    margin: 5rem 0;
  }
}
section#wsa-price .contents {
  margin-top: 4rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  border: 1px solid #aaa;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  section#wsa-price .contents {
    padding: 2rem 1.5rem;
  }
}
section#wsa-price .contents__main {
  border-bottom: 1px solid #EAEEF6;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
section#wsa-price .contents__main--label {
  font-size: 1rem;
  font-weight: 700;
  color: #2C55A7;
  margin-bottom: 1rem;
}
section#wsa-price .contents__main--price {
  font-family: "new-atten", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #2C55A7;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
}
@media screen and (max-width: 767px) {
  section#wsa-price .contents__main--price {
    font-size: 3rem;
  }
}
section#wsa-price .contents__main--price small {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Noto Sans JP", "Noto Sans JP Fallback", sans-serif;
  color: #252525;
}
@media screen and (max-width: 767px) {
  section#wsa-price .contents__main--price small {
    font-size: 1.1rem;
  }
}
section#wsa-price .contents__main--note {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #888888;
}
section#wsa-price .contents__desc {
  line-height: 2;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
section#wsa-price .contents__note {
  list-style: none;
  padding: 0;
  background-color: #EAEEF6;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}
section#wsa-price .contents__note li {
  line-height: 1.8;
  font-size: 0.75rem;
  color: #888888;
  margin-bottom: 0.3rem;
}
section#wsa-price .contents__note li:last-child {
  margin-bottom: 0;
}

/* ============
wsa-howto
============ */
section#wsa-howto .bg {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  section#wsa-howto .bg {
    padding: 5rem 0;
  }
}
section#wsa-howto .contents {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  section#wsa-howto .contents {
    grid-template-columns: 1fr;
  }
}
section#wsa-howto .contents__item {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  text-decoration: none;
  color: #252525;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  section#wsa-howto .contents__item {
    padding: 2rem 1.5rem;
  }
}
section#wsa-howto .contents__item:hover {
  opacity: 0.75;
}
section#wsa-howto .contents__item--label {
  display: inline-block;
  background-color: #2C55A7;
  color: #ffffff;
  font-family: "new-atten", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  width: fit-content;
}
section#wsa-howto .contents__item--title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  section#wsa-howto .contents__item--title {
    font-size: 1.1rem;
  }
}
section#wsa-howto .contents__item--arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #EAEEF6;
  color: #2C55A7;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}
