@charset "UTF-8";
.flex, .flex-column, .flex-wrap, .container.contact section.info, .container.home article.part2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-wrap, .container.contact section.info, .container.home article.part2 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.block, .container.contact section.info span.txt, .container.contact section.info span.img, .container.home article.part5 button.more, .container.home article.part4 label, .container.home article.part4 img {
  display: block;
}

.inline, .container.home article.part4 input:checked ~ p, .container button.mobile::before, .container button::after, .container button, header section.menu input:checked + label + ul {
  display: inline-block;
}

.hide, .container.home article.part4 input ~ p, .container.home article.part4 input, header section.menu input {
  display: none;
}

.mg-auto, .container.contact section.info span.img, .container.home article.part5 button, .container.home article.part4 img, .wrap {
  margin: auto;
}

.align-center, .container.contact section.info span.txt, .container.contact section.info span.img, .container.home article.part5 section, .container.home article.part1 {
  text-align: center;
}

.pointer, .container.home article.part4 label, header section.menu label {
  cursor: pointer;
}

.tureWhite {
  -webkit-filter: brightness(100);
          filter: brightness(100);
}

.abs, .container h2::before, .abs-center, .abs-y-center, .container.contact article, .container.home article.part4 label::after, .container button.mobile::before, .container button::after, header section.menu label::before, .abs-x-center, .container.home article.part2 section img {
  position: absolute;
}

.rela, .container.contact, .container.home article.part4 label, .container.home article.part4, .container.home article.part1, .container button, .rela-y-center, .container.home article.part2 section h2 {
  position: relative;
}

.r0, .container.home article.part4 label::after {
  right: 0;
}

.t0 {
  top: 0;
}

.l0 {
  left: 0;
}

.b0 {
  bottom: 0;
}

.l50, .abs-center, .abs-x-center, .container.home article.part2 section img {
  left: 50%;
}

.t50, .abs-center, .abs-y-center, .container.contact article, .container.home article.part4 label::after, .container button.mobile::before, .container button::after, header section.menu label::before, .rela-y-center, .container.home article.part2 section h2 {
  top: 50%;
}

.translateX-50, .abs-x-center, .container.home article.part2 section img {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.translateY-50, .abs-y-center, .container.contact article, .container.home article.part4 label::after, .container button.mobile::before, .container button::after, header section.menu label::before, .rela-y-center, .container.home article.part2 section h2 {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.translateXY-50, .abs-center {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.w100, .container.contact article, .container.home article.part2, header .wrap, header {
  width: 100%;
}

:root {
  --main-color: #379CEA;
  --sub-color: #e6f6ff;
  --black: #101010;
  --gray6: #666;
  --gray9: #999;
  --grayc: #ccc;
  --header-height: 9rem;
}
@media (max-width: 768px) {
  :root {
    font-size: 2vw;
  }
}
@media (max-width: 1024px) {
  :root {
    font-size: 10px;
  }
}
@media (min-width: 769px) {
  :root {
    font-size: 12px;
    --header-height: 8rem;
  }
}

html {
  background-color: #fff;
}
html body {
  margin: auto;
  font-family: "Microsoft YaHei", Arial, "Times New Roman", SimHei, Helvetica, sans-serif;
}

@media (min-width: 769px) {
  .wrap {
    max-width: 1024px;
  }
}

header {
  height: var(--header-height);
  position: sticky;
  z-index: 10;
  left: 0;
  top: -5px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 16px 0 rgba(16, 16, 16, 0.2);
          box-shadow: 0 4px 16px 0 rgba(16, 16, 16, 0.2);
  padding: 2.1rem 2.5rem;
}
header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header section.logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
header section.logo a {
  height: 3.6rem;
}
header section.logo a img {
  height: 100%;
}
@media (min-width: 769px) {
  header section.logo a {
    height: 4.2rem;
  }
}
header section.menu label {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--main-color);
}
header section.menu label::before {
  content: "";
  right: 1rem;
  background-image: url("../images/menu-btn.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 3rem;
  height: 3rem;
  background-position-y: 5px;
  display: block;
}
@media (min-width: 769px) {
  header section.menu label {
    display: none;
  }
}
@media (max-width: 768px) {
  header section.menu ul {
    border-top: 3px solid rgba(16, 16, 16, 0.2);
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: -0.1rem;
    display: none;
  }
  header section.menu ul a li {
    padding: 2.1rem 2rem;
    border-bottom: 0.2rem solid #ccc;
    font-size: 1.6rem;
  }
  header section.menu ul a:active li {
    background: var(--sub-color);
  }
}
@media (min-width: 769px) {
  header section.menu ul {
    display: inline-block;
  }
  header section.menu ul a {
    margin-left: 4rem;
  }
  header section.menu ul a li {
    display: inline-block;
    font-size: 1.5rem;
    position: relative;
  }
  header section.menu ul a:hover li::after {
    content: "";
    position: absolute;
    width: 150%;
    height: 0.3rem;
    bottom: -1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: var(--main-color);
  }
}
header section.menu input:checked + label {
  color: #fff;
}
header section.menu input:checked + label::before {
  background-image: url("../images/menu-open-btn.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.5rem;
  height: 2.5rem;
  background-position-y: 0;
}
.container {
  min-height: calc(100vh - var(--header-height));
}
.container h2 {
  margin-bottom: 0.5rem;
  position: relative;
  padding-top: 3rem;
  color: var(--black);
  font-size: 2.6rem;
}
.container h2 + p {
  margin-bottom: 2rem;
}
.container h2::before {
  content: "";
  left: 0;
  top: 0;
  background-image: url("../images/icon-chat.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.5rem;
  height: 2.5rem;
  display: block;
}
@media (min-width: 769px) {
  .container h2 {
    font-size: 3rem;
  }
  .container h2::before {
    margin-bottom: 1rem;
    width: 3.2rem;
    height: 3.2rem;
    top: -0.8rem;
    font-weight: bold;
  }
}
.container h3 {
  color: var(--black);
  font-size: 1.6rem;
}
@media (min-width: 769px) {
  .container h3 {
    font-size: 1.9rem;
  }
}
.container p {
  color: var(--gray6);
  font-size: 1.1rem;
}
@media (min-width: 769px) {
  .container p {
    font-size: 1.3rem;
  }
}
.container button {
  font-weight: normal;
  padding: 1rem 2rem;
  padding-right: 4rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1.2rem;
}
@media (min-width: 769px) {
  .container button {
    font-size: 1.3rem;
  }
}
.container button::after {
  content: "";
  right: 0;
  background-image: url("../images/more-b.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  margin-right: 1rem;
  font-weight: bold;
}
.container button.mobile {
  color: #fff;
  background: var(--main-color);
  padding-left: 4rem;
}
.container button.mobile::after {
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
.container button.mobile::before {
  content: "";
  left: 0;
  margin-left: 1.2rem;
  font-weight: bold;
}
.container button.mobile.ios::before {
  background-image: url("../images/device-ios.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
}
.container button.mobile.ad::before {
  background-image: url("../images/device-android.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
}
.container.home article {
  padding: 3rem 2rem;
}
@media (min-width: 769px) {
  .container.home article {
    padding: 3rem 2rem;
  }
}
.container.home article.part1 {
  color: #fff;
  height: calc(100vh - var(--header-height));
  background: url("../images/part1-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
}
.container.home article.part1 h1 {
  font-size: 3rem;
}
.container.home article.part1 h1 + p {
  font-size: 1.8rem;
  line-height: 2.5rem;
}
@media (min-width: 769px) {
  .container.home article.part1 .wrap {
    padding-top: 8vh;
  }
  .container.home article.part1 h1 {
    font-size: 3.2rem;
  }
  .container.home article.part1 + p {
    font-size: 3rem;
    line-height: 3rem;
  }
}
@media (max-width: 768px) {
  .container.home article.part1 button {
    margin-bottom: 16vh;
    color: #fff;
    background: var(--main-color);
  }
  .container.home article.part1 button::after {
    -webkit-filter: brightness(100);
            filter: brightness(100);
  }
}
@media (min-width: 769px) {
  .container.home article.part1 button {
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
    font-size: 1.5rem;
    min-width: 14rem;
    margin-right: 1rem;
    margin-top: 3.2rem;
  }
  .container.home article.part1 button::after {
    -webkit-filter: brightness(100);
            filter: brightness(100);
  }
}
@media (max-width: 768px) {
  .container.home article.part1 section {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .container.home article.part1 section p {
    width: 80vw;
  }
}
@media (min-width: 769px) {
  .container.home article.part1 section {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container.home article.part1 section div {
    margin-top: calc(var(--header-height) / 2 * -1);
  }
  .container.home article.part1 section div:first-of-type {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .container.home article.part1 section div:last-of-type {
    margin: auto 5vw auto 8vw;
  }
}
.container.home article.part1 section p {
  margin: 2rem 0;
  color: #fff;
}
.container.home article.part1 img.phone {
  height: calc(100vh - 5vh - var(--header-height) * 1.5);
  max-height: 48rem;
}
.container.home article.part2 {
  margin-bottom: 2rem;
}
.container.home article.part2 section {
  width: 50%;
  height: 27vh;
  margin-bottom: 2rem;
  min-height: 300px;
  position: relative;
  border-radius: 1rem;
}
@media (min-width: 769px) {
  .container.home article.part2 section {
    width: 25%;
    height: 5rem;
  }
}
.container.home article.part2 section:nth-child(2), .container.home article.part2 section:nth-child(5), .container.home article.part2 section:nth-child(7) {
  background-color: var(--sub-color);
}
.container.home article.part2 section h3 {
  margin: 3rem auto 1rem auto;
}
@media (min-width: 769px) {
  .container.home article.part2 section h3 {
    margin: 2.8rem auto 0.5rem auto;
  }
}
.container.home article.part2 section h3, .container.home article.part2 section p {
  text-align: center;
}
.container.home article.part2 section img {
  bottom: 0;
  max-width: 40vw;
}
@media (min-width: 769px) {
  .container.home article.part2 section img {
    max-width: 80%;
  }
}
.container.home article.part4 {
  background-color: var(--sub-color);
}
.container.home article.part4 img {
  max-width: 55vw;
}
.container.home article.part4 h2 + p {
  margin-bottom: 2rem;
}
.container.home article.part4 section {
  border-bottom: 0.1rem solid var(--grayc);
}
.container.home article.part4 section:last-of-type {
  border-bottom-color: var(--main-color);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.container.home article.part4 label {
  padding: 1rem 0;
  font-size: 1.6rem;
  padding-right: 0.7rem;
}
@media (min-width: 769px) {
  .container.home article.part4 label {
    font-size: 1.8rem;
  }
}
.container.home article.part4 label::after {
  color: var(--main-color);
  content: "＋";
}
.container.home article.part4 label + p {
  padding-bottom: 1rem;
  line-height: 1.8rem;
}
.container.home article.part4 input:checked + label::after {
  content: "－";
  color: var(--grayc);
}
.container.home article.part4 input ~ p {
  color: var(--gray6);
}
.container.home article.part4 p {
  color: var(--gray6);
}
@media (max-width: 768px) {
  .container.home article.part4 button {
    color: #fff;
    background: var(--main-color);
  }
  .container.home article.part4 button::after {
    -webkit-filter: brightness(100);
            filter: brightness(100);
  }
}
@media (min-width: 769px) {
  .container.home article.part4 button {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    background: #fff;
  }
}
@media (min-width: 769px) {
  .container.home article.part4 .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .container.home article.part4 .wrap img {
    width: 40%;
    margin-right: 5vw;
    margin-top: 0;
  }
  .container.home article.part4 .wrap div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.container.home article.part5 section {
  margin-bottom: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.container.home article.part5 section:nth-of-type(1) {
  background-position: top center;
  background-image: url("../images/part5-bg-blue.png");
  padding-top: 8rem;
}
.container.home article.part5 section:nth-of-type(2) {
  background-position: bottom center;
  background-image: url("../images/part5-bg-purple.png");
  padding-bottom: 5rem;
}
.container.home article.part5 button.mobile {
  margin-bottom: 2.2rem;
  width: 26vw;
  display: block;
}
.container.home article.part5 button.more {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  background: #fff;
  margin-bottom: 2.6rem;
}
.container.home article.part5 img {
  width: 30vw;
  max-width: 300px;
}
@media (min-width: 769px) {
  .container.home article.part5 .txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .container.home article.part5 section {
    width: 45%;
  }
  .container.home article.part5 button.mobile {
    width: 14rem;
  }
  .container.home article.part5 img {
    width: 50%;
    max-width: 15rem;
  }
}
.container.home article.part6 {
  padding-top: 7vh;
  padding-bottom: 11vh;
  background: url("../images/part6-bg.png") no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 769px) {
  .container.home article.part6 {
    padding-top: 11rem;
    padding-bottom: 16rem;
  }
}
.container.home article.part6 *, .container.home article.part6 h2 {
  color: white;
}
.container.home article.part6 h2::before {
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
.container.home article.part6 button {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
}
.container.home article.part6 button::after {
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
.container.contact article {
  padding: 0 2rem;
}
.container.contact section.info p {
  padding: 8vh 0;
  margin-bottom: 2rem;
  width: 50%;
}
.container.contact section.info p:nth-child(1), .container.contact section.info p:nth-child(4) {
  background-color: var(--sub-color);
}
@media (min-width: 769px) {
  .container.contact section.info p {
    width: 25%;
    margin-top: 4rem;
  }
}
.container.contact section.info span.img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 2rem;
}
.container.contact section.info span.img.mail {
  background-image: url("../images/icon-mail.svg");
  background-color: #fff;
}
.container.contact section.info span.img.phone {
  background-image: url("../images/icon-phone.svg");
}
.container.contact section.info span.img.globe {
  background-image: url("../images/icon-globe.svg");
}
.container.contact section.info span.img.telegram {
  background-color: #fff;
  background-image: url("../images/icon-telegram.svg");
}
.container.contact section.info span.txt {
  font-size: 1.2rem;
  color: var(--black);
}

.anchor {
  padding-top: calc(3rem + var(--header-height) ) !important;
  margin-top: calc(3rem + var(--header-height) * -1 ) !important;
}

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

@media (min-width: 769px) {
  .only-mobile {
    display: none !important;
  }
}