@charset "UTF-8";
html {
  scroll-padding-top: 5vw;
  font-size: 1.03146vw;
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.1025641vw;
    scroll-padding-top: 19vw;
  }
}

main {
  padding-top: 5vw;
  background: #fcfcfc;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 19vw;
  }
}

img {
  width: 100%;
}

a:hover {
  opacity: 0.7;
  transition: 0.5s;
}

.pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.bg-mainblue {
  background-color: #4A5A80;
}

.bg-blue {
  background-color: #8B9FCC;
  color: #fff;
}

.fw-b {
  font-weight: bold;
}

.fz-16 {
  font-size: 0.82516761vw;
}

.fz-18 {
  font-size: 0.92831356vw;
}

.fz-22 {
  font-size: 1.13460547vw;
}

.fz-24 {
  font-size: 1.237751vw;
}

.fz-26 {
  font-size: 1.34089737vw;
}

.fz-28 {
  font-size: 1.44404332vw;
}

.fz-30 {
  font-size: 1.5472vw;
}

@media screen and (max-width: 768px) {
  .fzsp-12 {
    font-size: 3.07692308vw;
  }
  .fzsp-14 {
    font-size: 3.58974359vw;
  }
  .fzsp-15 {
    font-size: 3.84615385vw;
  }
  .fzsp-16 {
    font-size: 4.1025641vw;
  }
  .fzsp-18 {
    font-size: 4.61538462vw;
  }
  .fzsp-20 {
    font-size: 5.12820513vw;
  }
  .fzsp-22 {
    font-size: 5.64102564vw;
  }
}
.button {
  position: relative;
  text-align: center;
  display: block;
  border: 1px solid #333;
  width: 21vw;
  line-height: 4vw;
  margin: auto;
}
.button input {
  width: 100%;
}
.buttonArrow::after {
  content: "";
  width: 1vw;
  height: 0.4vw;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  transform: skew(45deg) translateY(-50%);
  position: absolute;
  right: 3.3vw;
  top: 50%;
}
@media screen and (max-width: 768px) {
  .button {
    width: 43vw;
    line-height: 8vw;
  }
  .buttonArrow::after {
    width: 2.3vw;
    height: 0.7vw;
    right: 4.7vw;
  }
}

body.noscroll {
  overflow: hidden;
}

.header {
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  padding: 1.32vw 2.579vw;
  background: #fcfcfc;
  height: 5vw;
}
.header__logo {
  padding-left: 3vw;
  width: 11.5vw;
}
.header__nav__list {
  display: flex;
}
.header__nav__item {
  padding: 0.619vw 0;
}
.header__nav__item svg {
  height: auto;
}
.header__nav__item text {
  fill: #333;
}
.header__nav__item:hover text {
  fill: #8B9FCC;
}
.header__nav__item:not(:first-child) {
  margin-left: 2.579vw;
}
.header__nav__item:last-child {
  padding: 0;
  border-radius: 0.5vw;
}
.header__nav__item:last-child text {
  fill: #fff;
}
.header__nav__item:last-child a {
  border-radius: 0.5vw;
  padding: 0.67vw 1.289vw;
  display: block;
  width: 100%;
  height: 100%;
}
.header__nav__item:last-child a:hover {
  background: #CC9FB1;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .header__nav__item:last-child a:hover {
    background: inherit;
  }
}
.header__nav__item:nth-child(1) svg {
  width: 1.87vw;
}
@media screen and (max-width: 768px) {
  .header__nav__item:nth-child(1) svg {
    width: 10.25vw;
  }
}
.header__nav__item:nth-child(2) svg {
  width: 3.75vw;
}
@media screen and (max-width: 768px) {
  .header__nav__item:nth-child(2) svg {
    width: 20.51vw;
  }
}
.header__nav__item:nth-child(3) svg {
  width: 4.79vw;
}
@media screen and (max-width: 768px) {
  .header__nav__item:nth-child(3) svg {
    width: 26.15vw;
  }
}
.header__nav__item:nth-child(4) svg {
  width: 4.06vw;
}
@media screen and (max-width: 768px) {
  .header__nav__item:nth-child(4) svg {
    width: 22.05vw;
  }
}
.header__nav__hamburger {
  position: relative;
  background: #fff;
  border-radius: 50%;
  width: 11.5vw;
  height: 11.5vw;
  cursor: pointer;
}
.header__nav__hamburger span {
  position: absolute;
  left: 50%;
  width: 55%;
  height: 0.55vw;
  background: #333;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.header__nav__hamburger span:nth-child(1) {
  top: 3.5vw;
}
.header__nav__hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header__nav__hamburger span:nth-child(3) {
  bottom: 3.5vw;
}
.header__nav__hamburger.open span {
  left: 2vw;
}
.header__nav__hamburger.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.header__nav__hamburger.open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .header {
    padding: 3.3vw 5.2vw;
    height: 19vw;
  }
  .header__logo {
    padding-left: 0;
    width: 22vw;
    margin-top: 2.5vw;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: calc(100vh - 18vw);
    background-color: #687799;
    padding: 12.8vw 0;
    transition: all 0.3s ease;
    padding-top: 26vw;
    margin-top: 18vw;
  }
  .header__nav.open {
    right: 0;
  }
  .header__nav__list {
    display: block;
    text-align: center;
  }
  .header__nav__item {
    margin-bottom: 10vw;
  }
  .header__nav__item a {
    color: #fcfcfc;
  }
  .header__nav__item text {
    fill: #fff;
  }
  .header__nav__item.bg-blue {
    background: inherit;
  }
  .header__nav__foot {
    color: #fff;
    position: absolute;
    bottom: 7.5vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__nav__copyright {
    font-size: 2.56vw;
    margin-top: 5vw;
  }
  .header__nav a {
    text-align: center;
  }
  .header__nav a img {
    width: 38vw;
  }
}

.footer {
  color: #fff;
}
.footer img {
  width: 8.7vw;
}
.footer__inner {
  background: #687799;
  width: 91vw;
  padding: 4vw 12.5vw;
  border-radius: 0 7vw 0 0;
}
.footer__links {
  display: flex;
  margin-top: 3.6vw;
  gap: 2.5vw;
}
.footer__item:nth-child(1) img {
  width: 1.87vw;
}
@media screen and (max-width: 768px) {
  .footer__item:nth-child(1) img {
    width: 6.66vw;
  }
}
.footer__item:nth-child(2) img {
  width: 3.75vw;
}
@media screen and (max-width: 768px) {
  .footer__item:nth-child(2) img {
    width: 13.33vw;
  }
}
.footer__item:nth-child(3) img {
  width: 4.79vw;
}
@media screen and (max-width: 768px) {
  .footer__item:nth-child(3) img {
    width: 16.92vw;
  }
}
.footer__item:nth-child(4) img {
  width: 4.06vw;
}
@media screen and (max-width: 768px) {
  .footer__item:nth-child(4) img {
    width: 13.84vw;
  }
}
.footer__flex {
  display: flex;
  font-size: 0.722vw;
  margin-top: 3.5vw;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    width: 93vw;
    padding: 16vw 12.5vw;
    border-radius: 0 30vw 0 0;
  }
  .footer img {
    width: 21.5vw;
  }
  .footer__links {
    margin-top: 8.6vw;
    gap: 4vw;
    flex-direction: column;
  }
  .footer__flex {
    font-size: 3.07692308vw;
    margin-top: 7.7vw;
    flex-direction: column-reverse;
    gap: 4vw;
  }
}

.pro main {
  padding-top: 4.5vw;
  margin-bottom: 50px;
  color: #595959;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .pro main {
    padding-top: 18.5vw;
    margin-bottom: 13.3vw;
  }
}
.pro-button {
  display: block;
  font-size: 1.65975104vw;
  background: #8C9BC6;
  color: #fcfcfc;
  padding: 2.0746888vw 0;
  border-radius: 999vw;
  width: 29.66804979vw;
  font-weight: bold;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .pro-button {
    font-size: 4.01069519vw;
    padding: 5.88235294vw 0;
    width: 73.92245989vw;
  }
}
.pro .kv {
  position: relative;
  text-align: center;
  height: 81.32780083vw;
}
.pro .kv img {
  position: absolute;
  left: 0;
  width: 100vw;
}
.pro .kv__text--large {
  position: absolute;
  font-size: 2.90456432vw;
  top: 42.01244813vw;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  line-height: 1.4;
}
.pro .kv__text--small {
  position: absolute;
  font-size: 2.0746888vw;
  top: 53.31950207vw;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  line-height: 1.6;
}
.pro .kv .pro-button {
  position: absolute;
  top: 67.01244813vw;
  left: 50%;
  transform: translateX(-50%);
}
.pro .kv p {
  position: absolute;
  font-size: 1.24481328vw;
  top: 75.31120332vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .pro .kv {
    height: 200vw;
    white-space: nowrap;
  }
  .pro .kv img {
    top: -18.98395722vw;
  }
  .pro .kv__text--large {
    font-size: 5.34759358vw;
    top: 102.94117647vw;
    line-height: 1.6;
  }
  .pro .kv__text--small {
    font-size: 4.54545455vw;
    top: 124.86631016vw;
    line-height: 1.6;
  }
  .pro .kv .pro-button {
    top: 157.21925134vw;
  }
  .pro .kv p {
    position: absolute;
    font-size: 3.20855615vw;
    top: 178.07486631vw;
    line-height: 1.6;
  }
}
.pro h2 {
  font-size: 2.90456432vw;
  font-weight: bold;
  text-align: center;
}
.pro h2 span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.76348548vw;
  color: #B1C0DB;
  display: block;
  margin-top: 0.72614108vw;
}
@media screen and (max-width: 768px) {
  .pro h2 {
    font-size: 5.34759358vw;
  }
  .pro h2 span {
    font-size: 3.20855615vw;
    margin-top: 2.13903743vw;
  }
}
.pro__about {
  position: relative;
  z-index: 1;
  background-image: url(../images/pro/about-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 17.02738589vw 16.64937759vw 10.51437372vw;
  height: 128.1120332vw;
}
.pro__about h2 {
  color: #fcfcfc;
  margin-bottom: 7.10580913vw;
  line-height: 1;
}
.pro__about h2 span {
  color: #B1C0DB;
}
.pro__about-main {
  position: relative;
  margin: 0 0 4.14937759vw;
}
.pro__about-main img {
  position: absolute;
  width: 38.07053942vw;
  top: -1.24481328vw;
}
.pro__about-main .pro__about-text {
  width: 32.15767635vw;
}
.pro__about-text {
  padding: 2.7120332vw 2.7vw 2.59794661vw;
  margin: 0 0 0 auto;
  background: rgba(252, 252, 252, 0.2);
  border: 0.10373444vw solid rgba(252, 252, 252, 0.68);
  color: #fcfcfc;
  position: relative;
  z-index: 1;
}
.pro__about-text h3 {
  font-size: 2.0746888vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.53112033vw;
}
.pro__about-text p {
  font-size: 1.24481328vw;
  line-height: 1.6;
}
.pro__about-point {
  display: flex;
  justify-content: center;
  align-items: end;
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.90456432vw;
  font-weight: 600;
  margin-bottom: 1.742738589vw;
  line-height: 1;
}
.pro__about-point span {
  position: relative;
  font-size: 1.24481328vw;
  display: block;
  margin-bottom: 1vw;
  margin-right: 0.72614108vw;
}
.pro__about-point span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.10373444vw;
  background: #fcfcfc;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pro__about-sub {
  display: flex;
  justify-content: space-between;
  gap: 1.0373444vw;
}
.pro__about-sub .pro__about-text {
  padding: 2.57261411vw 2.3vw;
}
.pro__about-sub .pro__about-text h3 {
  font-size: 1.76348548vw;
  margin-bottom: 1.17043121vw;
}
@media screen and (max-width: 768px) {
  .pro__about {
    background-image: url(../images/pro/about-bg-sp.png);
    background-size: cover;
    height: 511.45721925vw;
    padding: 29.14438503vw 8.20855615vw 0vw;
  }
  .pro__about h2 {
    margin-bottom: 8.55614973vw;
  }
  .pro__about-main img {
    position: static;
    margin: 0 auto 5.48128342vw;
    width: 79.13636364vw;
  }
  .pro__about-main:first-of-type {
    margin-bottom: 14.83957219vw;
  }
  .pro__about-main:nth-of-type(2) {
    margin-bottom: 10.69518717vw;
  }
  .pro__about-main .pro__about-text {
    width: 100%;
    height: 100%;
  }
  .pro__about-text {
    padding: 8.02139037vw 7.52139037vw 6.36363636vw;
    margin: auto;
  }
  .pro__about-text h3 {
    font-size: 5.34759358vw;
    margin-bottom: 6.02406417vw;
    line-height: 1.36;
  }
  .pro__about-text p {
    font-size: 3.20855615vw;
  }
  .pro__about-point {
    font-size: 7.48663102vw;
    margin-bottom: 2vw;
  }
  .pro__about-point span {
    font-size: 3.20855615vw;
    margin-bottom: 2.5vw;
    margin-right: 1.87165775vw;
  }
  .pro__about-point span::after {
    height: 0.26737968vw;
  }
  .pro__about-sub {
    flex-direction: column;
    gap: 10.69518717vw;
  }
  .pro__about-sub .pro__about-text {
    padding: 6.4171123vw 8.28877005vw 6.51925134vw;
  }
  .pro__about-sub .pro__about-text h3 {
    font-size: 4.54545455vw;
    margin-bottom: 4.81283422vw;
  }
}
.pro__voice {
  margin-top: -29.94652406vw;
  padding: 36.38843277vw 16.59751037vw 10.37344398vw;
  background: #F5F7FA;
}
.pro__voice h2 {
  margin-bottom: 5.18672199vw;
}
.pro__voice-item {
  margin-bottom: 4.56431535vw;
}
.pro__voice-title {
  display: flex;
  align-items: center;
  margin-bottom: 1.86721992vw;
  padding: 0.62240664vw 0.4825462vw;
  font-size: 2.0746888vw;
  color: #fcfcfc;
  background: #B1C0DB;
  font-weight: bold;
}
.pro__voice-title img {
  width: auto;
  height: 2.0560166vw;
  margin-right: 1.12936345vw;
}
.pro__voice-content {
  display: flex;
  gap: 2.55186722vw;
  line-height: 1.6;
}
.pro__voice-content img {
  width: 17.42738589vw;
  border-radius: 2.0746888vw;
  -o-object-fit: contain;
     object-fit: contain;
}
.pro__voice-content h3 {
  padding-top: 0.84024896vw;
  font-size: 1.76348548vw;
  font-weight: bold;
  margin-bottom: 1.86721992vw;
}
.pro__voice-content p {
  font-size: 1.24481328vw;
}
.pro__voice-use {
  margin: 6.22406639vw 0 0vw;
  text-align: center;
}
.pro__voice-use img {
  width: 39.50622407vw;
}
.pro__voice-use .pro-button {
  margin: 3.2053942vw auto 2.28215768vw;
}
.pro__voice-use p {
  font-size: 1.24481328vw;
}
@media screen and (max-width: 768px) {
  .pro__voice {
    margin-top: -11.76470588vw;
    padding: 24.3315508vw 7.08663102vw 13.36898396vw;
  }
  .pro__voice h2 {
    margin-bottom: 10.69518717vw;
    line-height: 1.4;
  }
  .pro__voice-item {
    margin-bottom: 10.69518717vw;
    position: relative;
  }
  .pro__voice-title {
    position: absolute;
    flex-direction: column;
    align-items: start;
    gap: 0.82887701vw;
    margin: 0;
    padding: 0;
    font-size: 4.54545455vw;
    background: none;
    top: 44.65240642vw;
    left: 0;
  }
  .pro__voice-title img {
    width: auto;
    height: 5.65775401vw;
    margin-right: 0.56016598vw;
    margin-top: 0.4vw;
    margin-bottom: 2.43529412vw;
  }
  .pro__voice-title span {
    display: inline-block;
    background: #B1C0DB;
    padding: 1.3368984vw;
  }
  .pro__voice-content {
    flex-direction: column;
    gap: 21.39037433vw;
  }
  .pro__voice-content img {
    width: 65.77540107vw;
    border-radius: 5.34759358w;
    margin: auto;
    margin-right: 0;
  }
  .pro__voice-content h3 {
    padding-top: 0;
    margin: 0 0 4.27807487vw;
    font-size: 4.27807487vw;
  }
  .pro__voice-content p {
    font-size: 3.20855615vw;
  }
  .pro__voice-use {
    margin: 11.22994652vw 0 0;
  }
  .pro__voice-use img {
    width: 74.06417112vw;
  }
  .pro__voice-use .pro-button {
    margin: 5.34759358vw auto;
  }
  .pro__voice-use p {
    font-size: 3.20855615vw;
    line-height: 1.6;
  }
}
.pro__flow {
  padding: 10.37344398vw 14.62655602vw 0;
  height: 64.21161826vw;
  background-image: url(../images/pro/flow-bg.png);
  background-size: cover;
}
.pro__flow-content {
  display: flex;
  gap: 4.7406639vw;
  margin-top: 4.75103734vw;
}
.pro__flow-img img {
  display: none;
  width: 35.26970954vw;
  border-radius: 2.0746888vw;
}
.pro__flow-img img.active {
  display: block;
}
.pro__flow-text {
  position: relative;
  padding-left: 2.593361vw;
  margin-bottom: 1.51452282vw;
}
.pro__flow-text h3 {
  white-space: nowrap;
  font-size: 1.76348548vw;
  font-weight: bold;
  padding: 0.56639004vw 0;
  color: #BDBDBD;
}
.pro__flow-text p {
  display: none;
  font-size: 1.5560166vw;
  line-height: 1.7;
}
.pro__flow-text::before {
  content: "";
  position: absolute;
  width: 0.41493776vw;
  height: 100%;
  background: #fcfcfc;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pro__flow-text.active {
  padding-top: 1.45228216vw;
  padding-bottom: 1.34128631vw;
  margin-bottom: 1.92946058vw;
}
.pro__flow-text.active h3 {
  font-size: 2.0746888vw;
  padding: 0;
  margin-bottom: 1.67842324vw;
  color: #595959;
}
.pro__flow-text.active p {
  display: block;
}
.pro__flow-text.active::after {
  content: "";
  position: absolute;
  width: 0.41493776vw;
  height: 100%;
  background: #8C9BC6;
  left: 0;
  top: 0;
  animation: flow 4s infinite linear;
}
@keyframes flow {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .pro__flow {
    padding: 13.36898396vw 8.02139037vw 13.36898396vw;
    height: 100%;
    background-image: url(../images/pro/flow-bg-sp.png);
  }
  .pro__flow-content {
    flex-direction: column;
    gap: 5.34759358vw;
    margin-top: 10.69518717vw;
  }
  .pro__flow-img img {
    width: 100%;
    border-radius: 5.34759358vw;
  }
  .pro__flow-text {
    padding-left: 5.34759358vw;
    margin-bottom: 2.67379679vw;
  }
  .pro__flow-text h3 {
    font-size: 4.54545455vw;
    padding: 1.3vw 0;
  }
  .pro__flow-text p {
    font-size: 3.20855615vw;
    line-height: 1.6;
  }
  .pro__flow-text::before {
    width: 1.06951872vw;
  }
  .pro__flow-text.active {
    padding-top: 2.67379679vw;
    padding-bottom: 3.20855615vw;
    margin-bottom: 2.67379679vw;
  }
  .pro__flow-text.active h3 {
    font-size: 4.54545455vw;
    padding: 0;
    margin-bottom: 2.67379679vw;
  }
  .pro__flow-text.active p {
    display: block;
  }
  .pro__flow-text.active::after {
    width: 1.06951872vw;
  }
}
.pro__price {
  padding: 10.37344398vw 0 5.18672199vw;
  background-image: url(../images/pro/price-bg.png);
  background-size: cover;
}
.pro__price h2 {
  margin-bottom: 5.1659751vw;
}
.pro__price-table {
  margin-left: 16.49377593vw;
  width: 66.90871369vw;
  text-align: center;
  font-size: 1.65975104vw;
  margin-bottom: 7.46887967vw;
  font-weight: bold;
}
.pro__price-table img {
  margin-bottom: 3.1120332vw;
  width: 100%;
}
.pro__price-item {
  display: flex;
  background: #F5F7FA;
  border-radius: 3.1120332vw 0 0 3.1120332vw;
  gap: 1.0373444vw;
  padding: 3.73443983vw 4.14937759vw 3.73443983vw 3.73443983vw;
  width: 81.22406639vw;
  margin: 0 0 6.22406639vw auto;
  box-shadow: 0 0 1.34854772vw rgba(0, 0, 0, 0.1);
}
.pro__price-item img {
  width: 11.09958506vw;
  border-radius: 2.0746888vw;
}
.pro__price-item div {
  display: flex;
  font-size: 1.76348548vw;
  font-weight: bold;
  height: 11.09958506vw;
  align-items: center;
  line-height: 1.6;
}
.pro__price-item span {
  display: flex;
  align-items: end;
  font-size: 1.76348548vw;
  color: #B1C0DB;
  font-weight: bold;
  font-family: "Josefin Sans", sans-serif;
}
.pro__price p {
  text-align: center;
  font-size: 2.0746888vw;
  font-weight: bold;
  margin-top: 4.87551867vw;
  line-height: 1.6;
}
.pro__price .pro-button {
  text-align: center;
  color: #8C9BC6;
  border: 0.20746888vw solid #8C9BC6;
  background: #fcfcfc;
  margin: 4.06639004vw auto 0;
}
@media screen and (max-width: 768px) {
  .pro__price {
    background-image: url(../images/pro/price-bg-sp.png);
    background-size: cover;
    padding: 13.36898396vw 0 10.69518717vw;
  }
  .pro__price h2 {
    margin-bottom: 10.58823529vw;
  }
  .pro__price-table {
    margin: 0 8.28877005vw;
    width: 83.95721925vw;
    font-size: 3.20855615vw;
    margin-bottom: 6.60427807vw;
  }
  .pro__price-table img {
    margin-bottom: 8.02139037vw;
  }
  .pro__price-item {
    flex-wrap: wrap;
    border-radius: 8.02139037vw 0 0 8.02139037vw;
    gap: 1.87165775vw;
    padding: 5.34759358vw 5.6684492vw 5.34759358vw 8.02139037vw;
    width: 91.91176471vw;
    margin-bottom: 13.36898396VW;
    box-shadow: 0 0 3.47593583vw rgba(0, 0, 0, 0.1);
  }
  .pro__price-item img {
    width: 16.04278075vw;
    border-radius: 5.34759358vw;
  }
  .pro__price-item div {
    width: 100%;
    font-size: 3.20855615vw;
    height: 1em;
    margin-bottom: 2.70053476;
  }
  .pro__price-item span {
    font-size: 3.20855615vw;
  }
  .pro__price p {
    font-size: 4.27807487vw;
    margin-top: 7.48663102vw;
  }
  .pro__price .pro-button {
    border-width: 0.53475936vw;
    margin: 8.02139037vw auto 0;
  }
}
.pro__app {
  padding-top: 5.10373444vw;
  text-align: center;
  background-image: url(../images/pro/app-bg.png);
  background-size: cover;
  position: relative;
}
.pro__app-text {
  width: 66.80497925vw;
  margin: 0 auto 4.92738589vw;
}
.pro__app-img {
  width: 60.96576763vw;
  margin: 0 auto;
}
.pro__app-link {
  position: absolute;
  left: 53.99377593vw;
  top: 37.68672199vw;
  width: 14.67427386vw;
}
@media screen and (max-width: 768px) {
  .pro__app {
    padding-top: 13.36898396vw;
    background-image: url(../images/pro/app-bg-sp.png);
    background-size: cover;
  }
  .pro__app-text {
    width: 100%;
    margin-bottom: 5.0802139vw;
  }
  .pro__app-img {
    width: 84.00534759vw;
  }
  .pro__app-link {
    left: 56.68449198vw;
    top: 73.36898396vw;
    width: 31.45989305vw;
  }
}
.pro__print {
  background: #8C9BC6;
  padding: 10.26970954vw 0 10.11410788vw;
  text-align: center;
}
.pro__print img {
  width: 49.68879668vw;
  margin-bottom: 4.14937759vw;
}
.pro__print .pro-button {
  color: #8C9BC6;
  background: #fcfcfc;
  margin-bottom: 2.0746888vw;
}
.pro__print p {
  font-size: 1.24481328vw;
  color: #fcfcfc;
}
@media screen and (max-width: 768px) {
  .pro__print {
    padding: 16.04278075vw 0;
  }
  .pro__print img {
    width: 74.06417112vw;
    margin-bottom: 5.32085561vw;
  }
  .pro__print .pro-button {
    margin-bottom: 5.34759358vw;
  }
  .pro__print p {
    font-size: 3.20855615vw;
    line-height: 1.6;
  }
}
.pro__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.02282158vw 10.10373444vw 1.61825726vw 10.12448133vw;
  font-family: "Josefin Sans", sans-serif;
}
.pro__footer img {
  width: 19.04149378vw;
}
.pro__footer nav ul {
  display: flex;
  align-items: center;
  gap: 3.1120332vw;
  font-size: 1.76348548vw;
  color: #B1C0DB;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .pro__footer {
    flex-direction: column;
    justify-content: center;
    gap: 4.59893048vw;
    align-items: center;
    padding: 7.29946524vw 0;
  }
  .pro__footer img {
    width: 49.0802139vw;
  }
  .pro__footer nav ul {
    gap: 14.70588235vw;
    font-size: 3.20855615vw;
  }
}/*# sourceMappingURL=pro.css.map */