@charset "UTF-8";
/*Theme Name: 物販NAVI*/
@import url("https://fonts.googleapis.com/css2?family=Akshar:wght@300..700&family=Zen+Kaku+Gothic+Antique:wght@400;500;700;900&display=swap");
@font-face {
  font-family: "yugothic";
  src: url("../font/yu-gothic-bold.ttf") format("truetype");
}

@media (min-width: 768px) {
  html {
    font-size: 100%;
    scroll-padding-top: 80px;
  }
  body {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    margin: 0 auto;
    min-width: 1440px;
    width: 100%;
    line-height: 1.6;
    color: #222;
  }
  body img {
    height: auto;
  }
  body .imgleft {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  body .imgleft > div {
    width: 100%;
    margin-left: 40px;
  }
  body .imgleft > div p:not(:last-of-type) {
    margin-bottom: 30px;
  }
  body .imgright {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  body .imgright > div {
    width: 100%;
    margin-right: 40px;
  }
  body .imgright > div p:not(:last-of-type) {
    margin-bottom: 30px;
  }
  body .inner {
    width: 1280px;
    margin: 0 auto;
  }
  body .inner.narrow {
    width: 1200px;
  }
  body .inner.mini {
    width: 900px;
  }
  body .main_title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 40px;
  }
  body .main_title.white {
    color: #fff;
  }
  body .main_title div span {
    background: -webkit-gradient(linear, left top, right top, from(#1c499e), to(#2cb3e9));
    background: linear-gradient(90deg, #1c499e 0%, #2cb3e9 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.75rem;
  }
  body .main_title div span.blue {
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    background-clip: text;
    font-size: 3.75rem;
    line-height: 1;
    font-family: "Akshar", sans-serif;
  }
  body .main_title div em {
    font-size: 4rem;
    line-height: 1.2;
    font-family: "Akshar", sans-serif;
    font-weight: 600;
  }
  body .main_title > span {
    display: block;
    font-family: "yugothic", sans-serif;
    font-size: 1.125rem;
  }
  body .sub_title {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
  }
  body .sub_title.center {
    text-align: center;
  }
  body .sub_title:not(:last-child) {
    margin-bottom: 20px;
  }
  body .sub_title span {
    color: #e90101;
  }
  body .btn {
    position: relative;
    overflow: hidden;
    display: block;
    font-family: "yugothic", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 100px;
    text-align: center;
    width: 480px;
    background: #11c654;
    color: #fff;
    padding: 20px;
    -webkit-filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
    -webkit-box-shadow: 0 6px 10px 0 rgba(255, 255, 255, 0.5) inset;
            box-shadow: 0 6px 10px 0 rgba(255, 255, 255, 0.5) inset;
  }
  body .btn:before {
    position: absolute;
    content: "";
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background: #fff;
    -webkit-animation: btn_animation 2.5s ease-in-out infinite;
            animation: btn_animation 2.5s ease-in-out infinite;
  }
  @-webkit-keyframes btn_animation {
    0% {
      -webkit-transform: scale(0) rotate(45deg);
    }
    80% {
      -webkit-transform: scale(0) rotate(45deg);
      opacity: 0.5;
    }
    81% {
      -webkit-transform: scale(4) rotate(45deg);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(50) rotate(45deg);
      opacity: 0;
    }
  }
  @keyframes btn_animation {
    0% {
      -webkit-transform: scale(0) rotate(45deg);
    }
    80% {
      -webkit-transform: scale(0) rotate(45deg);
      opacity: 0.5;
    }
    81% {
      -webkit-transform: scale(4) rotate(45deg);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(50) rotate(45deg);
      opacity: 0;
    }
  }
  body .btn:hover {
    background: #1c499e;
  }
  body .btn span {
    position: relative;
    overflow: hidden;
    display: block;
  }
  body .btn span:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 100px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 20px;
  }
  body .btn span:after {
    position: absolute;
    content: "";
    border: 8px solid transparent;
    border-left: 8px solid #fff;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 22px;
  }
  body .cta_btn {
    position: relative;
  }
  body .cta_btn p {
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
  }
  body .cta_btn p span {
    color: #f8ff0a;
  }
  body .cta_btn p em {
    font-size: 2rem;
  }
  body .cta_btn img {
    position: absolute;
    bottom: 10px;
    left: 20px;
    z-index: 1;
  }
  body .cta_btn .btn {
    margin: 0 auto;
  }
  body .grecaptcha-badge {
    display: none;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background: #fff;
    padding: 8px;
  }
  header .h_blc {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 1360px;
    margin: 0 auto;
  }
  header .logo a {
    display: block;
  }
  header p {
    color: #272c30;
    font-size: 1.875rem;
    font-weight: bold;
  }
  header p strong {
    background: #222;
    padding: 0 10px;
    margin: 0 10px;
  }
  header p span {
    background: -webkit-gradient(linear, left top, right top, from(#c8ab68), color-stop(41.35%, #eedea4), to(#cdb473));
    background: linear-gradient(90deg, #c8ab68 0%, #eedea4 41.35%, #cdb473 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  header .btn {
    width: 240px;
    font-size: 1rem;
    padding: 10px 10px 5px;
  }
  main .fv {
    position: relative;
  }
  main .fv > img {
    width: 100%;
  }
  main .fv .copy {
    position: absolute;
    top: 70%;
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
    left: 40px;
    color: #fff;
    width: 50%;
  }
  main .fv .copy > p {
    position: relative;
    width: 92%;
    background: #222;
    -webkit-transform: skewX(165deg);
            transform: skewX(165deg);
    font-size: 2.75rem;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
    padding: 0 30px;
    margin: 0 auto 10px;
  }
  main .fv .copy > p span {
    display: block;
    -webkit-transform: skewX(-165deg);
            transform: skewX(-165deg);
  }
  main .fv .copy strong {
    display: block;
    width: 92%;
    margin: 0 auto;
    text-align: center;
    font-size: 5rem;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  main .fv .copy strong span {
    font-family: "Akshar", sans-serif;
    font-size: 7.8rem;
    font-weight: 500;
  }
  main .fv .copy .blc {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    font-weight: bold;
    margin-bottom: 40px;
  }
  main .fv .copy .blc div {
    position: relative;
  }
  main .fv .copy .blc div:before, main .fv .copy .blc div:after {
    position: absolute;
    content: "";
    left: 0;
    width: 165px;
    height: 2px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-100%, #bb9761), color-stop(-1.92%, #deca81), to(#a2854c));
    background: linear-gradient(180deg, #bb9761 -100%, #deca81 -1.92%, #a2854c 100%);
    z-index: 1;
  }
  main .fv .copy .blc div:before {
    top: -10px;
  }
  main .fv .copy .blc div:after {
    bottom: -5px;
  }
  main .fv .copy .blc div span {
    display: block;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #a57e45), color-stop(50%, #f8f0d2), color-stop(75%, #b3955b));
    background: linear-gradient(180deg, #a57e45 5%, #f8f0d2 50%, #b3955b 75%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    line-height: 1.4;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  }
  main .fv .copy .blc div span:before, main .fv .copy .blc div span:after {
    position: absolute;
    content: "";
    left: 0;
    width: 165px;
    height: 2px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-100%, #bb9761), color-stop(-1.92%, #deca81), to(#a2854c));
    background: linear-gradient(180deg, #bb9761 -100%, #deca81 -1.92%, #a2854c 100%);
    z-index: 1;
  }
  main .fv .copy .blc div span:before {
    top: -5px;
  }
  main .fv .copy .blc div span:after {
    bottom: 0;
  }
  main .fv .copy .blc p {
    font-family: "Akshar", sans-serif;
    font-size: 5.6rem;
    line-height: 1.2;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  main .fv .copy .cta_btn {
    max-width: 560px;
    margin: 0 auto;
  }
  main .fv .copy .cta_btn p {
    text-align: right;
    padding-right: 30px;
  }
  main .fv .copy .cta_btn .btn {
    width: 100%;
    padding: 20px 20px 20px 100px;
  }
  main .grade_lblue {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.09%, #f4fcff), color-stop(79.25%, #fff));
    background: linear-gradient(180deg, #f4fcff 0.09%, #fff 79.25%);
    padding: 160px 0;
  }
  main #case {
    margin-bottom: 180px;
  }
  main #case .main_title {
    margin-bottom: 90px;
  }
  main #case .main_title div {
    position: relative;
    display: inline-block;
  }
  main #case .main_title img {
    position: absolute;
    top: 50px;
    right: -20px;
  }
  main #case ul {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
        grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  main #case ul li {
    position: relative;
    border-radius: 4px;
    background: #fff;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    padding: 40px 25px 20px;
  }
  main #case ul li > span {
    position: absolute;
    top: -40px;
    left: 20px;
    color: #0287d1;
    font-family: "Akshar", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
  }
  main #case ul li img {
    position: absolute;
    top: -70px;
    right: 25px;
    z-index: 1;
  }
  main #case ul li h3 {
    position: absolute;
    top: -15px;
    left: 15px;
    width: 90%;
    background: #0287d1;
    color: #fff;
    -webkit-transform: skewX(165deg);
            transform: skewX(165deg);
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: bold;
    padding: 4px 20px;
  }
  main #case ul li h3 span {
    display: block;
    -webkit-transform: skewX(-165deg);
            transform: skewX(-165deg);
  }
  main #case ul li div {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main #case ul li p {
    font-weight: 500;
  }
  main #case ul li p span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #f8ff0a));
    background: linear-gradient(transparent 50%, #f8ff0a 50%);
  }
  main #media {
    background: radial-gradient(circle at 100% 100%, #fff 0, #fff 6px, transparent 6px) 0% 0%/10px 10px no-repeat, radial-gradient(circle at 0 100%, #fff 0, #fff 6px, transparent 6px) 100% 0%/10px 10px no-repeat, radial-gradient(circle at 100% 0, #fff 0, #fff 6px, transparent 6px) 0% 100%/10px 10px no-repeat, radial-gradient(circle at 0 0, #fff 0, #fff 6px, transparent 6px) 100% 100%/10px 10px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) 50% 50%/calc(100% - 8px) calc(100% - 20px) no-repeat, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) 50% 50%/calc(100% - 20px) calc(100% - 8px) no-repeat, -webkit-gradient(linear, left top, right top, from(#0287d1), color-stop(71%, #0a74c2), to(#3960aa));
    background: radial-gradient(circle at 100% 100%, #fff 0, #fff 6px, transparent 6px) 0% 0%/10px 10px no-repeat, radial-gradient(circle at 0 100%, #fff 0, #fff 6px, transparent 6px) 100% 0%/10px 10px no-repeat, radial-gradient(circle at 100% 0, #fff 0, #fff 6px, transparent 6px) 0% 100%/10px 10px no-repeat, radial-gradient(circle at 0 0, #fff 0, #fff 6px, transparent 6px) 100% 100%/10px 10px no-repeat, linear-gradient(#fff, #fff) 50% 50%/calc(100% - 8px) calc(100% - 20px) no-repeat, linear-gradient(#fff, #fff) 50% 50%/calc(100% - 20px) calc(100% - 8px) no-repeat, linear-gradient(90deg, #0287d1 0%, #0a74c2 71%, #3960aa 100%);
    border-radius: 10px;
    padding: 4px;
    position: relative;
  }
  main #media .bg {
    background: rgba(244, 252, 255, 0.5);
    padding: 40px;
    border-radius: 10px;
  }
  main #media .bg > img {
    position: absolute;
    top: -75px;
  }
  main #media .bg > img:first-of-type {
    left: -50px;
  }
  main #media .bg > img:last-of-type {
    right: -50px;
  }
  main #media strong {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    display: block;
    width: 240px;
    color: #fff;
    font-size: 2rem;
    line-height: 1.4;
    font-weight: bold;
    background: -webkit-gradient(linear, left top, right top, color-stop(2.48%, #0287d1), color-stop(71.68%, #0a74c2), color-stop(99.7%, #3960aa));
    background: linear-gradient(90deg, #0287d1 2.48%, #0a74c2 71.68%, #3960aa 99.7%);
  }
  main #media ul {
    display: -webkit-box;
    display: flex;
  }
  main #media ul li {
    position: relative;
  }
  main #media ul li:first-child {
    bottom: 0;
    left: 30px;
  }
  main #media ul li:first-child p {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
    position: relative;
    bottom: -20px;
    left: -30px;
  }
  main #media ul li:last-child {
    bottom: 0;
    right: 30px;
  }
  main #media ul li:last-child p {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
    position: relative;
    bottom: -20px;
    right: -30px;
  }
  main #media ul p {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
  }
  main #media ul p span {
    color: #e90101;
  }
  main #media ul img {
    margin-bottom: 20px;
    -webkit-filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  }
  main #cta {
    background: url("../images/bg_cta.webp") no-repeat;
    background-size: cover;
    padding: 80px 0;
  }
  main #cta .inner > .roadmap_title {
    color: #fff;
    position: relative;
    text-align: center;
    font-size: 1.875rem;
    font-weight: bold;
  }
  main #cta .inner > .roadmap_title:after {
    position: absolute;
    content: "";
    width: 560px;
    height: 1px;
    background: #fff;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  main #cta .inner > .roadmap_title span {
    background-image: radial-gradient(circle at center, #fff 20%, transparent 25%);
    background-position: top left;
    background-repeat: repeat-x;
    background-size: 1em 0.6em;
    padding-top: 10px;
  }
  main #cta .inner .benefits_title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
  }
  main #cta .inner .benefits_title_inner {
    position: relative;
    display: inline-block;
  }
  main #cta .inner .benefits_title_inner:before {
    position: absolute;
    content: "";
    background: url("../images/leaf_cta01.svg") no-repeat;
    background-size: 100%;
    top: 15%;
    left: -60px;
    width: 39px;
    height: 91px;
  }
  main #cta .inner .benefits_title_inner:after {
    position: absolute;
    content: "";
    background: url("../images/leaf_cta02.svg") no-repeat;
    background-size: 100%;
    top: 15%;
    right: -30px;
    width: 39px;
    height: 91px;
  }
  main #cta .inner .benefits_title strong {
    color: #f8ff0a;
  }
  main #cta .inner .benefits_title strong em {
    font-size: 5.6rem;
  }
  main #cta .inner .benefits_title strong + span {
    font-size: 3rem;
  }
  main #cta .inner .blc {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    margin-bottom: 80px;
  }
  main #cta .inner .blc img {
    position: absolute;
    left: 0;
    top: 0;
  }
  main #cta .inner ul {
    display: -ms-grid;
    display: grid;
        grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    width: 835px;
    margin-left: auto;
  }
  main #cta .inner ul li {
    background: #fff;
    border-radius: 6px;
    padding: 5px;
    position: relative;
  }
  main #cta .inner ul div {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 5px;
    border: 1px solid #1c499e;
    height: 100%;
    padding: 30px;
  }
  main #cta .inner ul div > span {
    position: absolute;
    content: "";
    background: url("../images/cta_gold.svg") no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
    top: -20px;
    left: -20px;
    color: #462900;
    font-weight: bold;
    text-align: center;
    padding: 5px;
  }
  main #cta .inner ul div > span em {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    font-family: "Akshar", sans-serif;
    font-weight: 500;
  }
  main #cta .inner ul h3 {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
  }
  main #cta .inner ul h3 span {
    color: #e90101;
  }
  main #about {
    padding: 160px 0;
    background: url("../images/bg_about.svg") no-repeat;
    background-size: cover;
  }
  main #nayami {
    background: url("../images/bg_nayami.svg") no-repeat;
    background-size: cover;
    background-position: center;
    padding: 12vw 0 17vw;
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
    min-height: 593px;
  }
  main #nayami ul {
    width: 640px;
    margin: 0 auto;
  }
  main #nayami li {
    position: relative;
    padding-left: 40px;
    font-weight: bold;
    color: #fff;
  }
  main #nayami li:not(:last-child) {
    margin-bottom: 15px;
  }
  main #nayami li:after {
    position: absolute;
    content: "";
    background: url("../images/icon_check.svg") no-repeat;
    background-size: 100%;
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
  }
  main .l_blue {
    background: #f5fcff;
    padding: 160px 0;
  }
  main #fail {
    margin-bottom: 120px;
    padding-top: 130px;
  }
  main #fail ul {
    display: -ms-grid;
    display: grid;
        grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
  }
  main #fail ul li {
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1.25rem;
    border-radius: 6px;
    background: url("../images/bg_fail.svg") no-repeat;
    background-size: cover;
    padding: 30px;
  }
  main #fail p {
    text-align: center;
    font-weight: bold;
  }
  main #fail p:not(:last-child) {
    margin-bottom: 40px;
  }
  main #fail p strong {
    display: inline-block;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    color: #fff;
    font-size: 1.5rem;
    padding: 0 10px;
  }
  main #grow {
    background: url("../images/bg_grow.svg") no-repeat;
    background-size: cover;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    margin-bottom: 160px;
  }
  main #grow div {
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 60px 0;
  }
  main #grow h2 {
    margin-bottom: 30px;
  }
  main #grow h2 span {
    display: block;
    color: #f8ff0a;
    font-size: 2.25rem;
  }
  main #grow p:not(:last-child) {
    margin-bottom: 20px;
  }
  main #point {
    background: #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
  }
  main #point > img {
    position: absolute;
    top: -20px;
    left: 20px;
  }
  main #point ul {
    display: -ms-grid;
    display: grid;
        grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  main #point ul img {
    border-radius: 10px;
    margin-bottom: 20px;
  }
  main #point ul .title {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    margin-bottom: 10px;
  }
  main #point ul .title span {
    display: block;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4rem;
    font-family: "Akshar", sans-serif;
    line-height: 1;
    font-weight: 600;
    margin-bottom: -10px;
  }
  main #point ul p {
    font-weight: bold;
  }
  main #voice {
    background: url("../images/bg_voice.svg") no-repeat;
    background-size: cover;
    padding: 160px 0 100px;
  }
  main #voice .main_title h2 {
    display: inline-block;
    padding: 0 10px;
  }
  main #voice .swiper {
    position: relative;
    overflow: hidden;
  }
  main #voice .swiper-slide {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    height: auto;
  }
  main #voice .imgleft {
    margin-bottom: 30px;
  }
  main #voice .imgleft img {
    border-radius: 100px;
    width: 100px;
    height: 100px;
  }
  main #voice .imgleft > div {
    margin-left: 20px;
  }
  main #voice .imgleft > div .sub_title {
    font-size: 1.25rem;
  }
  main #voice .imgleft > div > span {
    display: block;
    text-align: right;
    font-weight: bold;
    font-size: 0.875rem;
  }
  main #voice p {
    font-weight: 500;
  }
  main #voice .swiper-pagination {
    position: relative;
    bottom: 0;
    padding-top: 40px;
  }
  main #voice .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 5px !important;
    background: #d9d9d9;
    opacity: 1;
  }
  main #voice .swiper-pagination-bullet-active {
    background: #2cb3e9;
  }
  main #reason .main_title {
    margin-bottom: 100px;
  }
  main #reason li {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main #reason li:not(:last-child) {
    margin-bottom: 100px;
  }
  main #reason h3 {
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.25rem;
    font-weight: bold;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
  main #reason h3 span {
    display: inline-block;
    font-family: "Akshar", sans-serif;
    font-size: 4rem;
    line-height: 1;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 25px -10px 0;
  }
  main #reason p {
    font-weight: bold;
  }
  main #service {
    padding: 160px 0;
  }
  main #service .main_title {
    margin-bottom: 80px;
  }
  main #service ul {
    display: -ms-grid;
    display: grid;
        grid-template-columns: repeat(5, 1fr);
    gap: 25px;
  }
  main #service ul li {
    position: relative;
    font-weight: bold;
    border-radius: 10px;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    padding: 3px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main #service ul li:not(:last-child):after {
    position: absolute;
    content: "";
    background: url("../images/icon_arrow.svg") no-repeat;
    top: 43%;
    -webkit-transform: translateY(-43%);
            transform: translateY(-43%);
    right: -20px;
    width: 43px;
    height: 10px;
  }
  main #service ul li div {
    padding: 60px 20px 30px;
    background: #fff;
    border-radius: 8px;
    height: 100%;
  }
  main #service ul li div > span {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    color: #fff;
    font-family: "Akshar", sans-serif;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main #service ul li div > span em {
    font-size: 1.5rem;
    margin-left: 5px;
  }
  main #service ul li .sub_title {
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }
  main #service ul li .sub_title span {
    display: block;
    font-size: 1.25rem;
  }
  main #service ul li p {
    margin-top: auto;
  }
  main #teacher ul {
    display: -ms-grid;
    display: grid;
        grid-template-columns: repeat(2, 1fr);
    gap: 135px;
    max-width: 1000px;
    margin: 0 auto;
  }
  main #teacher ul li {
    position: relative;
  }
  main #teacher ul li:not(:last-child):after {
    position: absolute;
    content: "";
    background: url("../images/icon_cross.svg") no-repeat;
    background-size: contain;
    top: 100px;
    right: -160px;
    width: 196px;
    height: 196px;
    z-index: 1;
  }
  main #teacher ul img {
    display: block;
    margin: 0 auto;
  }
  main #teacher ul h3 {
    width: 370px;
    background: #222;
    color: #fff;
    -webkit-transform: skewX(170deg);
            transform: skewX(170deg);
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
    padding: 5px 20px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: -30px 0 30px -10px;
  }
  main #teacher ul h3 span {
    display: block;
    -webkit-transform: skewX(-170deg);
            transform: skewX(-170deg);
  }
  main #teacher ul h3 em {
    font-family: "Akshar", sans-serif;
    font-size: 1.25rem;
    color: #2cb3e9;
    margin-left: 15px;
    font-weight: normal;
  }
  main #teacher ul p {
    padding: 0 20px;
  }
  main #course {
    padding: 160px 0;
  }
  main #course ul {
    display: -ms-grid;
    display: grid;
        grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  main #course ul li {
    position: relative;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  main #course ul .medal {
    position: absolute;
    top: 0;
    left: 10px;
  }
  main #course ul div {
    padding: 30px 0 60px;
    text-align: center;
  }
  main #course ul h3 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  main #course ul dl {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  main #course ul dl dt {
    position: relative;
    background: #222;
    color: #fff;
    width: 180px;
    font-size: 1.125rem;
    font-weight: bold;
    padding-bottom: 2px;
  }
  main #course ul dl dt:before {
    position: absolute;
    content: "";
    right: -2px;
    top: -2px;
    border: none;
    border-right: 15px solid #fff;
    border-bottom: 50px solid transparent;
  }
  main #course ul dl dt span {
    font-size: 1.5rem;
    margin-left: 5px;
  }
  main #course ul dl dd {
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    font-weight: bold;
  }
  main #course ul dl dd span {
    line-height: 1;
    font-size: 3rem;
  }
  main #flow {
    margin-bottom: 160px;
  }
  main #flow ul {
    display: -ms-grid;
    display: grid;
        grid-template-columns: repeat(3, 1fr);
    gap: 70px;
  }
  main #flow ul li {
    border-radius: 50%;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    padding: 3px;
    width: 380px;
    height: 380px;
    text-align: center;
    position: relative;
    font-weight: bold;
  }
  main #flow ul li:not(:last-child):after {
    position: absolute;
    content: "";
    background: url("../images/icon_arrow_big.svg") no-repeat;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -60px;
    width: 88px;
    height: 20px;
  }
  main #flow ul li > div {
    background: #fff;
    border-radius: 50%;
    padding: 50px;
    width: 374px;
    height: 374px;
  }
  main #flow ul li > div > span {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    color: #fff;
    font-family: "Akshar", sans-serif;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.25rem;
    padding: 25px 0;
  }
  main #flow ul li > div > span em {
    font-size: 2rem;
  }
  main #flow ul .icon {
    margin-bottom: 20px;
    min-height: 80px;
  }
  main #flow ul .sub_title {
    margin-top: auto;
  }
  main #flow ul p {
    font-size: 0.875rem;
  }
  main #flow ul p span {
    font-size: 0.75rem;
  }
  main #faq {
    background: url("../images/bg_faq.webp") no-repeat;
    background-size: cover;
    padding: 160px 0;
  }
  main #faq li:not(:last-child) {
    margin-bottom: 30px;
  }
  main #faq h3 {
    cursor: pointer;
    position: relative;
    padding: 8px 15px;
    background: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  main #faq h3:before, main #faq h3:after {
    content: "";
    position: absolute;
    right: 20px;
    width: 20px;
    height: 3px;
    border-radius: 4px;
    background: #1c499e;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  main #faq h3:before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  main #faq h3:after {
    top: 47%;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  main #faq h3.open:after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  main #faq h3 .q {
    font-size: 2rem;
    line-height: 1;
    font-family: "Akshar", sans-serif;
    color: #1c499e;
  }
  main #faq h3 .title {
    width: 90%;
    font-weight: bold;
  }
  main #faq .cont {
    display: none;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
  }
  main #faq .cont .wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }
  main #faq .cont .wrap .a {
    font-family: "Akshar", sans-serif;
    font-size: 2rem;
    line-height: 1;
  }
  main #faq .cont .wrap .txt {
    width: 92%;
    font-weight: bold;
  }
  main #fcta {
    background: url("../images/bg_fcta.webp") no-repeat;
    background-size: cover;
    padding: 160px 0;
    color: #fff;
    text-align: center;
    font-weight: bold;
  }
  main #fcta p {
    margin-bottom: 20px;
  }
  main #fcta p span {
    color: #f8ff0a;
  }
  main #fcta .main_title {
    margin: 40px auto 80px;
  }
  footer {
    background: #222;
    padding: 40px 0 20px;
    color: #fff;
  }
  footer .f_blc {
    max-width: 1330px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 auto 100px;
  }
  footer .f_logo a {
    display: block;
  }
  footer ul {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
    font-size: 0.75rem;
  }
  footer ul a {
    display: block;
  }
  footer ul a:hover {
    color: #f8ff0a;
  }
  footer small {
    display: block;
    text-align: center;
    font-size: 0.75rem;
  }
  footer .pagetop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1c499e;
    color: #fff;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    border-radius: 5px;
    text-align: center;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    z-index: 10;
  }
  footer .pagetop:hover {
    cursor: pointer;
    background: #2cb3e9;
  }
  footer .fixbtn {
    opacity: 0;
  }
  .smonly {
    display: none;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 75%;
    scroll-padding-top: 80px;
  }
  body {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    margin: 0 auto;
    width: 100%;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    color: #222;
  }
  body img {
    height: auto;
  }
  body .imgleft img,
  body .imgright img {
    display: block;
    margin: 0 auto;
  }
  body .imgleft > div p:not(:last-child),
  body .imgright > div p:not(:last-child) {
    margin-bottom: 20px;
  }
  body .main_title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  body .main_title.white {
    color: #fff;
  }
  body .main_title div span {
    background: -webkit-gradient(linear, left top, right top, from(#1c499e), to(#2cb3e9));
    background: linear-gradient(90deg, #1c499e 0%, #2cb3e9 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
  }
  body .main_title div span.blue {
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    background-clip: text;
    font-size: 2.2rem;
    line-height: 1;
    font-family: "Akshar", sans-serif;
  }
  body .main_title div em {
    font-size: 2rem;
    line-height: 1.2;
    font-family: "Akshar", sans-serif;
    font-weight: 600;
  }
  body .main_title > span {
    display: block;
    font-family: "yugothic", sans-serif;
    font-size: 1.4rem;
  }
  body .sub_title {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.4;
  }
  body .sub_title.center {
    text-align: center;
  }
  body .sub_title:not(:last-child) {
    margin-bottom: 20px;
  }
  body .sub_title span {
    color: #e90101;
  }
  body .btn {
    display: block;
    position: relative;
    overflow: hidden;
    font-family: "yugothic", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 100px;
    text-align: center;
    width: 340px;
    background: #11c654;
    color: #fff;
    padding: 15px 20px;
    -webkit-filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
            filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
    -webkit-box-shadow: 0 6px 10px 0 rgba(255, 255, 255, 0.5) inset;
            box-shadow: 0 6px 10px 0 rgba(255, 255, 255, 0.5) inset;
  }
  body .btn:before {
    position: absolute;
    content: "";
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background: #fff;
    -webkit-animation: btn_animation 2.5s ease-in-out infinite;
            animation: btn_animation 2.5s ease-in-out infinite;
  }
  @-webkit-keyframes btn_animation {
    0% {
      -webkit-transform: scale(0) rotate(45deg);
    }
    80% {
      -webkit-transform: scale(0) rotate(45deg);
      opacity: 0.5;
    }
    81% {
      -webkit-transform: scale(4) rotate(45deg);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(50) rotate(45deg);
      opacity: 0;
    }
  }
  @keyframes btn_animation {
    0% {
      -webkit-transform: scale(0) rotate(45deg);
    }
    80% {
      -webkit-transform: scale(0) rotate(45deg);
      opacity: 0.5;
    }
    81% {
      -webkit-transform: scale(4) rotate(45deg);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(50) rotate(45deg);
      opacity: 0;
    }
  }
  body .btn span {
    position: relative;
    overflow: hidden;
    display: block;
  }
  body .btn span:before {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    border: 1px solid #fff;
    border-radius: 100px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
  body .btn span:after {
    position: absolute;
    content: "";
    border: 6px solid transparent;
    border-left: 6px solid #fff;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 2px;
  }
  body .cta_btn {
    position: relative;
  }
  body .cta_btn p {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
  }
  body .cta_btn p span {
    color: #f8ff0a;
  }
  body .cta_btn p em {
    font-size: 1.6rem;
  }
  body .cta_btn img {
    position: absolute;
    top: -20px;
    left: 5px;
    z-index: 1;
    width: 100px;
  }
  body .cta_btn .btn {
    margin: 0 auto;
  }
  body .grecaptcha-badge {
    display: none;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background: #fff;
    padding: 8px;
    min-height: 80px;
  }
  header .h_blc {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
  header .h_blc .logo a {
    display: block;
    width: 80px;
  }
  header .h_blc .btn {
    width: 160px;
    font-size: 1rem;
    padding: 10px 10px 5px;
  }
  header p {
    color: #272c30;
    font-weight: bold;
    text-align: center;
  }
  header p strong {
    background: #222;
    padding: 0 3px;
    margin: 0 3px 0 0;
  }
  header p span {
    background: -webkit-gradient(linear, left top, right top, from(#c8ab68), color-stop(41.35%, #eedea4), to(#cdb473));
    background: linear-gradient(90deg, #c8ab68 0%, #eedea4 41.35%, #cdb473 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  main .fv {
    position: relative;
    padding-top: 80px;
  }
  main .fv > img {
    width: 100%;
  }
  main .fv .copy {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 330px;
    width: 88%;
    color: #fff;
  }
  main .fv .copy > p {
    position: relative;
    width: 92%;
    background: #222;
    -webkit-transform: skewX(165deg);
            transform: skewX(165deg);
    font-size: 1.7rem;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
    margin: 0 auto 10px;
  }
  main .fv .copy > p span {
    display: block;
    -webkit-transform: skewX(-165deg);
            transform: skewX(-165deg);
  }
  main .fv .copy strong {
    display: block;
    width: 92%;
    margin: 0 auto;
    text-align: center;
    font-size: 3.3rem;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  main .fv .copy strong span {
    font-family: "Akshar", sans-serif;
    font-size: 4.7rem;
    font-weight: 500;
  }
  main .fv .copy .blc {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    font-weight: bold;
    margin-bottom: 40px;
  }
  main .fv .copy .blc div {
    position: relative;
  }
  main .fv .copy .blc div:before, main .fv .copy .blc div:after {
    position: absolute;
    content: "";
    left: 0;
    width: 80px;
    height: 1px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-100%, #bb9761), color-stop(-1.92%, #deca81), to(#a2854c));
    background: linear-gradient(180deg, #bb9761 -100%, #deca81 -1.92%, #a2854c 100%);
    z-index: 1;
  }
  main .fv .copy .blc div:before {
    top: -3px;
  }
  main .fv .copy .blc div:after {
    bottom: 7px;
  }
  main .fv .copy .blc div span {
    display: block;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #a57e45), color-stop(50%, #f8f0d2), color-stop(75%, #b3955b));
    background: linear-gradient(180deg, #a57e45 5%, #f8f0d2 50%, #b3955b 75%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.7rem;
    line-height: 1.4;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  }
  main .fv .copy .blc div span:before, main .fv .copy .blc div span:after {
    position: absolute;
    content: "";
    left: 0;
    width: 80px;
    height: 1px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-100%, #bb9761), color-stop(-1.92%, #deca81), to(#a2854c));
    background: linear-gradient(180deg, #bb9761 -100%, #deca81 -1.92%, #a2854c 100%);
    z-index: 1;
  }
  main .fv .copy .blc div span:before {
    top: 0;
  }
  main .fv .copy .blc div span:after {
    bottom: 10px;
  }
  main .fv .copy .blc p {
    font-family: "Akshar", sans-serif;
    font-size: 3.3rem;
    line-height: 1.2;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  main .fv .cta_btn {
    max-width: 340px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
  }
  main .fv .cta_btn p {
    margin-left: auto;
    width: 70%;
    position: relative;
  }
  main .fv .cta_btn p:before, main .fv .cta_btn p:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 32px;
    height: 1px;
    bottom: 20px;
  }
  main .fv .cta_btn p:before {
    -webkit-transform: rotate(70deg);
            transform: rotate(70deg);
    left: 5px;
  }
  main .fv .cta_btn p:after {
    -webkit-transform: rotate(110deg);
            transform: rotate(110deg);
    right: 10px;
  }
  main .fv .cta_btn .btn {
    width: 100%;
  }
  main .grade_lblue {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.09%, #f4fcff), color-stop(79.25%, #fff));
    background: linear-gradient(180deg, #f4fcff 0.09%, #fff 79.25%);
    padding: 40px 20px;
  }
  main #case {
    margin-bottom: 60px;
  }
  main #case .main_title {
    margin-bottom: 80px;
  }
  main #case .main_title div {
    position: relative;
    display: inline-block;
  }
  main #case .main_title img {
    position: absolute;
    top: 10px;
    right: -10px;
    width: 15px;
  }
  main #case li {
    position: relative;
    border-radius: 4px;
    background: #fff;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  main #case li:not(:last-child) {
    margin-bottom: 80px;
  }
  main #case li > span {
    position: absolute;
    top: -35px;
    left: 20px;
    color: #0287d1;
    font-family: "Akshar", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
  }
  main #case li img {
    position: absolute;
    top: -60px;
    right: 10px;
    z-index: 1;
    height: 80px;
  }
  main #case li h3 {
    position: absolute;
    top: -15px;
    left: 15px;
    width: 90%;
    background: #0287d1;
    color: #fff;
    -webkit-transform: skewX(165deg);
            transform: skewX(165deg);
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: bold;
    padding: 2px 10px;
  }
  main #case li h3 span {
    display: block;
    -webkit-transform: skewX(-165deg);
            transform: skewX(-165deg);
  }
  main #case li div {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main #case li p {
    font-weight: 500;
  }
  main #case li p span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #f8ff0a));
    background: linear-gradient(transparent 50%, #f8ff0a 50%);
  }
  main #media {
    background: radial-gradient(circle at 100% 100%, #fff 0, #fff 6px, transparent 6px) 0% 0%/10px 10px no-repeat, radial-gradient(circle at 0 100%, #fff 0, #fff 6px, transparent 6px) 100% 0%/10px 10px no-repeat, radial-gradient(circle at 100% 0, #fff 0, #fff 6px, transparent 6px) 0% 100%/10px 10px no-repeat, radial-gradient(circle at 0 0, #fff 0, #fff 6px, transparent 6px) 100% 100%/10px 10px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) 50% 50%/calc(100% - 8px) calc(100% - 20px) no-repeat, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) 50% 50%/calc(100% - 20px) calc(100% - 8px) no-repeat, -webkit-gradient(linear, left top, right top, from(#0287d1), color-stop(71%, #0a74c2), to(#3960aa));
    background: radial-gradient(circle at 100% 100%, #fff 0, #fff 6px, transparent 6px) 0% 0%/10px 10px no-repeat, radial-gradient(circle at 0 100%, #fff 0, #fff 6px, transparent 6px) 100% 0%/10px 10px no-repeat, radial-gradient(circle at 100% 0, #fff 0, #fff 6px, transparent 6px) 0% 100%/10px 10px no-repeat, radial-gradient(circle at 0 0, #fff 0, #fff 6px, transparent 6px) 100% 100%/10px 10px no-repeat, linear-gradient(#fff, #fff) 50% 50%/calc(100% - 8px) calc(100% - 20px) no-repeat, linear-gradient(#fff, #fff) 50% 50%/calc(100% - 20px) calc(100% - 8px) no-repeat, linear-gradient(90deg, #0287d1 0%, #0a74c2 71%, #3960aa 100%);
    border-radius: 10px;
    padding: 4px;
    position: relative;
  }
  main #media .bg {
    background: rgba(244, 252, 255, 0.5);
    padding: 40px 20px;
    border-radius: 10px;
  }
  main #media .bg > img {
    position: absolute;
    top: -10px;
    width: 30%;
  }
  main #media .bg > img:first-of-type {
    left: -20px;
  }
  main #media .bg > img:last-of-type {
    right: -20px;
  }
  main #media strong {
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    display: block;
    width: 150px;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: bold;
    background: -webkit-gradient(linear, left top, right top, color-stop(2.48%, #0287d1), color-stop(71.68%, #0a74c2), color-stop(99.7%, #3960aa));
    background: linear-gradient(90deg, #0287d1 2.48%, #0a74c2 71.68%, #3960aa 99.7%);
  }
  main #media li:first-child {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  main #media li:first-child p {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
    margin: -15px 0 20px 30px;
  }
  main #media li:last-child {
    -webkit-transform: rotate(-9deg);
            transform: rotate(-9deg);
  }
  main #media li:last-child p {
    -webkit-transform: rotate(9deg);
            transform: rotate(9deg);
    margin: -15px 30px 0 0;
  }
  main #media p {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
  }
  main #media p span {
    color: #e90101;
  }
  main #media img {
    width: 100%;
    margin-bottom: 10px;
    -webkit-filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  }
  main #cta {
    background: url("../images/bg_cta.webp") no-repeat;
    background-size: cover;
    padding: 40px 20px;
  }
  main #cta .inner > .roadmap_title {
    color: #fff;
    position: relative;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
  }
  main #cta .inner > .roadmap_title:after {
    position: absolute;
    content: "";
    width: 320px;
    height: 1px;
    background: #fff;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  main #cta .inner > .roadmap_title span {
    background-image: radial-gradient(circle at center, #fff 20%, transparent 25%);
    background-position: top left;
    background-repeat: repeat-x;
    background-size: 1em 0.6em;
    padding-top: 5px;
  }
  main #cta .inner .benefits_title {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
  }
  main #cta .inner .benefits_title_inner {
    position: relative;
    display: inline-block;
  }
  main #cta .inner .benefits_title_inner:before {
    position: absolute;
    content: "";
    background: url("../images/leaf_cta01.svg") no-repeat;
    background-size: 100%;
    top: 15%;
    left: -20px;
    width: 15px;
    height: 35px;
  }
  main #cta .inner .benefits_title_inner:after {
    position: absolute;
    content: "";
    background: url("../images/leaf_cta02.svg") no-repeat;
    background-size: 100%;
    top: 15%;
    right: -15px;
    width: 15px;
    height: 35px;
  }
  main #cta .inner .benefits_title strong {
    color: #f8ff0a;
  }
  main #cta .inner .benefits_title strong em {
    font-size: 3rem;
  }
  main #cta .inner .benefits_title strong + span {
    font-size: 1.6rem;
  }
  main #cta .inner .blc {
    position: relative;
    margin-bottom: 40px;
  }
  main #cta .inner .blc img {
    display: block;
    max-width: 300px;
    margin: 0 auto;
  }
  main #cta .inner li {
    background: #fff;
    border-radius: 6px;
    padding: 5px;
    position: relative;
  }
  main #cta .inner li:not(:last-child) {
    margin-bottom: 30px;
  }
  main #cta .inner li div {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 5px;
    border: 1px solid #1c499e;
    height: 100%;
    padding: 10px;
  }
  main #cta .inner li div > span {
    position: absolute;
    content: "";
    background: url("../images/cta_gold.svg") no-repeat;
    background-size: 100%;
    width: 60px;
    height: 60px;
    top: -20px;
    left: -10px;
    color: #462900;
    font-weight: bold;
    text-align: center;
    padding: 8px;
  }
  main #cta .inner li div > span em {
    display: block;
    font-size: 2rem;
    line-height: 1;
    font-family: "Akshar", sans-serif;
    font-weight: 500;
  }
  main #cta .inner li h3 {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
  }
  main #cta .inner li h3 span {
    color: #e90101;
  }
  main #about {
    padding: 40px 20px;
    background: url("../images/bg_about.svg") no-repeat;
    background-size: cover;
  }
  main #nayami {
    background: url("../images/bg_nayami.svg") no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 20px 85px;
    margin-bottom: -130px;
    position: relative;
    z-index: 1;
  }
  main #nayami li {
    position: relative;
    padding-left: 30px;
    font-weight: bold;
    color: #fff;
  }
  main #nayami li:not(:last-child) {
    margin-bottom: 15px;
  }
  main #nayami li:after {
    position: absolute;
    content: "";
    background: url("../images/icon_check.svg") no-repeat;
    background-size: 100%;
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
  }
  main .l_blue {
    background: #f5fcff;
    padding: 40px 20px;
  }
  main #fail {
    margin-bottom: 40px;
    padding-top: 130px;
  }
  main #fail ul {
    display: -ms-grid;
    display: grid;
        grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }
  main #fail ul li {
    color: #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 6px;
    background: url("../images/bg_fail.svg") no-repeat;
    background-size: cover;
    padding: 20px;
  }
  main #fail p {
    font-weight: bold;
  }
  main #fail p:not(:last-child) {
    margin-bottom: 20px;
  }
  main #fail p strong {
    display: inline-block;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    color: #fff;
    padding: 0 5px;
  }
  main #grow {
    background: url("../images/bg_grow.svg") no-repeat;
    background-size: cover;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 40px;
  }
  main #grow div {
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 20px;
  }
  main #grow h2 {
    margin-bottom: 20px;
    text-align: center;
  }
  main #grow h2 span {
    display: block;
    color: #f8ff0a;
    font-size: 1.5rem;
  }
  main #grow p:not(:last-child) {
    margin-bottom: 20px;
  }
  main #point {
    background: #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
  }
  main #point > img {
    position: absolute;
    top: -20px;
    left: -10px;
    width: 70px;
  }
  main #point li:not(:last-child) {
    margin-bottom: 30px;
  }
  main #point li img {
    border-radius: 10px;
    display: block;
    margin: 0 auto 10px;
  }
  main #point li .title {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  main #point li .title span {
    display: block;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
    font-family: "Akshar", sans-serif;
    line-height: 1;
    font-weight: 600;
    margin-bottom: -10px;
  }
  main #point li p {
    font-weight: bold;
  }
  main #voice {
    background: url("../images/bg_voice.svg") no-repeat;
    background-size: cover;
    padding: 40px 0;
  }
  main #voice .main_title h2 {
    display: inline-block;
    padding: 0 5px;
  }
  main #voice .main_title img {
    width: 20px;
  }
  main #voice .swiper {
    position: relative;
    overflow: hidden;
  }
  main #voice .swiper-slide {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    height: auto;
  }
  main #voice .imgleft {
    margin-bottom: 20px;
  }
  main #voice .imgleft img {
    border-radius: 100px;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }
  main #voice .imgleft > div .sub_title {
    font-size: 1.2rem;
  }
  main #voice .imgleft > div > span {
    display: block;
    text-align: right;
    font-weight: bold;
    font-size: 0.8rem;
  }
  main #voice p {
    font-weight: 500;
  }
  main #voice .swiper-pagination {
    position: relative;
    bottom: 0;
    padding-top: 20px;
  }
  main #voice .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 5px !important;
    background: #d9d9d9;
    opacity: 1;
  }
  main #voice .swiper-pagination-bullet-active {
    background: #2cb3e9;
  }
  main #reason li {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main #reason li:not(:last-child) {
    margin-bottom: 40px;
  }
  main #reason img {
    margin-bottom: 10px;
  }
  main #reason h3 {
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
    font-weight: bold;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
  main #reason h3 span {
    display: inline-block;
    font-family: "Akshar", sans-serif;
    font-size: 3rem;
    line-height: 1;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 10px -5px 0;
  }
  main #reason p {
    font-weight: bold;
  }
  main #service {
    padding: 40px 20px;
  }
  main #service .main_title {
    margin-bottom: 60px;
  }
  main #service li {
    position: relative;
    font-weight: bold;
    border-radius: 10px;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    padding: 3px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main #service li:not(:last-child) {
    margin-bottom: 60px;
  }
  main #service li:not(:last-child):after {
    position: absolute;
    content: "";
    background: url("../images/icon_arrow.svg") no-repeat;
    bottom: -10px;
    right: 0;
    left: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin: auto;
    width: 43px;
    height: 10px;
  }
  main #service li div {
    padding: 40px 20px 20px;
    background: #fff;
    border-radius: 8px;
    height: 100%;
  }
  main #service li div > span {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    color: #fff;
    font-family: "Akshar", sans-serif;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main #service li div > span em {
    font-size: 1.4rem;
    margin-left: 5px;
  }
  main #service li .sub_title {
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }
  main #service li .sub_title span {
    display: block;
    font-size: 1.2rem;
  }
  main #service li p {
    text-align: center;
  }
  main #teacher li {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
  }
  main #teacher li:not(:last-child) {
    margin: 0 auto 120px;
  }
  main #teacher li:not(:last-child):after {
    position: absolute;
    content: "";
    background: url("../images/icon_cross.svg") no-repeat;
    background-size: contain;
    bottom: -100px;
    right: 0;
    left: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    z-index: 1;
  }
  main #teacher img {
    display: block;
    margin: 0 auto;
  }
  main #teacher h3 {
    width: 300px;
    background: #222;
    color: #fff;
    -webkit-transform: skewX(170deg);
            transform: skewX(170deg);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    padding: 5px 20px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: -20px 0 20px -10px;
  }
  main #teacher h3 span {
    display: block;
    -webkit-transform: skewX(-170deg);
            transform: skewX(-170deg);
  }
  main #teacher h3 em {
    font-family: "Akshar", sans-serif;
    font-size: 1.2rem;
    color: #2cb3e9;
    margin-left: 10px;
    font-weight: normal;
  }
  main #teacher p {
    padding: 0 10px;
  }
  main #course {
    padding: 40px 20px;
  }
  main #course li {
    position: relative;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  main #course li:not(:last-child) {
    margin-bottom: 30px;
  }
  main #course .medal {
    position: absolute;
    top: 0;
    left: 10px;
    width: 50px;
  }
  main #course img:last-of-type {
    width: 100%;
  }
  main #course div {
    padding: 20px;
  }
  main #course h3 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  main #course dl {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  main #course dl dt {
    position: relative;
    background: #222;
    color: #fff;
    width: 140px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    padding-bottom: 2px;
  }
  main #course dl dt:before {
    position: absolute;
    content: "";
    right: -2px;
    top: -2px;
    border: none;
    border-right: 15px solid #fff;
    border-bottom: 50px solid transparent;
  }
  main #course dl dt span {
    font-size: 1.4rem;
    margin-left: 5px;
  }
  main #course dl dd {
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    font-weight: bold;
  }
  main #course dl dd span {
    line-height: 1;
    font-size: 2.6rem;
  }
  main #flow {
    margin-bottom: 40px;
  }
  main #flow li {
    border-radius: 50%;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    padding: 3px;
    width: 280px;
    height: 280px;
    text-align: center;
    position: relative;
    font-weight: bold;
    margin: 0 auto;
  }
  main #flow li:not(:last-child) {
    margin: 0 auto 40px;
  }
  main #flow li:not(:last-child):after {
    position: absolute;
    content: "";
    background: url("../images/icon_arrow_big.svg") no-repeat;
    background-size: 100%;
    bottom: -10px;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 60px;
    height: 15px;
  }
  main #flow li > div {
    background: #fff;
    border-radius: 50%;
    padding: 25px;
    width: 274px;
    height: 274px;
  }
  main #flow li > div > span {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    color: #fff;
    font-family: "Akshar", sans-serif;
    background: linear-gradient(88deg, #1c499e -51.12%, #2cb3e9 106.63%);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.2rem;
    padding: 15px 0;
  }
  main #flow li > div > span em {
    font-size: 1.8rem;
  }
  main #flow .icon {
    margin-bottom: 20px;
  }
  main #flow .sub_title {
    margin-top: auto;
  }
  main #flow p {
    font-size: 0.875rem;
  }
  main #flow p span {
    font-size: 0.75rem;
  }
  main #faq {
    background: url("../images/bg_faq.webp") no-repeat;
    background-size: cover;
    padding: 40px 20px;
  }
  main #faq li:not(:last-child) {
    margin-bottom: 20px;
  }
  main #faq h3 {
    cursor: pointer;
    position: relative;
    padding: 5px 10px;
    background: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  main #faq h3:before, main #faq h3:after {
    content: "";
    position: absolute;
    right: 10px;
    width: 10px;
    height: 2px;
    border-radius: 4px;
    background: #1c499e;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  main #faq h3:before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  main #faq h3:after {
    top: 47%;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  main #faq h3.open:after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  main #faq h3 .q {
    font-size: 1.8rem;
    line-height: 1;
    font-family: "Akshar", sans-serif;
    color: #1c499e;
  }
  main #faq h3 .title {
    width: 85%;
    font-weight: bold;
  }
  main #faq .cont {
    display: none;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
  }
  main #faq .cont .wrap {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  main #faq .cont .wrap .a {
    font-family: "Akshar", sans-serif;
    font-size: 1.8rem;
    line-height: 1;
  }
  main #faq .cont .wrap .txt {
    width: 90%;
    font-weight: bold;
  }
  main #fcta {
    background: url("../images/bg_fcta.webp") no-repeat;
    background-size: cover;
    padding: 40px 10px;
    color: #fff;
    text-align: center;
    font-weight: bold;
  }
  main #fcta p {
    margin-bottom: 20px;
  }
  main #fcta p span {
    color: #f8ff0a;
  }
  main #fcta .main_title {
    margin: 20px auto 40px;
  }
  footer {
    background: #222;
    padding: 20px;
    color: #fff;
  }
  footer .f_logo a {
    display: block;
    text-align: center;
    margin: 0 auto 20px;
  }
  footer ul {
    margin-bottom: 20px;
  }
  footer ul a {
    display: block;
    border-bottom: 1px solid #fff;
    padding: 10px;
  }
  footer small {
    display: block;
    text-align: center;
    font-size: 0.8rem;
  }
  footer .pagetop {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 10px;
    background: #1c499e;
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    border-radius: 5px;
    text-align: center;
    -webkit-transition: 0.7s;
    transition: 0.7s;
    z-index: 10;
  }
  footer .fixbtn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
    background: #0287d1;
    padding-bottom: 10px;
  }
  .pconly {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
