@charset "UTF-8";

/* Common
------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  overflow: hidden;
  position: relative;
  color: #80808b;
}

@media screen and (min-width: 0\0) and (min-resolution: +72dpi) {
  .selector {
    property: value;
  }

  body {
    font-family: "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS PGothic", sans-serif;
  }
}

img {
  max-width: 100%;
  height: auto;
}

#wrapper {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  overflow: hidden;
}

.overlayLoad {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #FFF;
  z-index: 100000;
}

.cautionColor {
  color: #d14836;
}

/* Ribbon
------------------------------------- */
.ribbon {
  font-size: 20px;
  color: #fff;
  width: 416px;
  height: 44px;
  background-color: rgb(51, 51, 51);
  background: linear-gradient(-45deg, rgba(246, 255, 0, .8), rgba(255, 0, 161, .8));
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 50px;
  top: -50px;
  transform: rotate(-45deg) translate(-50%, -50%);
  z-index: 1000;
}

/* Hamburger
------------------------------------- */
.hamburger {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 50px;
  top: 50px;
  z-index: 2000;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.hamburger:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
  transform: translateY(-0.1875em);
}

.hamburgerBox {
  width: 32px;
  height: 16px;
  position: relative;
}

.hamburgerInner,
.hamburgerInner::before,
.hamburgerInner::after {
  width: 32px;
  height: 3px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
}

.hamburgerInner::before,
.hamburgerInner::after {
  content: "";
  display: block;
}

.hamburgerInner::before {
  top: -8px;
  bottom: auto;
}

.hamburgerInner::after {
  top: auto;
  bottom: -8px;
}

.hamburger.is-active .hamburgerInner {
  transform: rotate(45deg);
}

.hamburger.is-active .hamburgerInner::before {
  opacity: 0;
}

.hamburger.is-active .hamburgerInner::after {
  bottom: 0;
  transform: rotate(90deg);
}


/* Overlay menu
------------------------------------- */
.overlayMenu {
  width: 35px;
  height: 35px;
  background-color: #333f48;
  border-radius: 50%;
  position: fixed;
  right: 64px;
  top: 90px;
  z-index: 1100;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

.overlayMenu.is-active {
  visibility: visible;
  transform: scale(200);
  opacity: 1;
}


/* Main menu
------------------------------------- */
#mainMenu {
  color: #FFF;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 1500;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

#mainMenu.is-active {
  visibility: visible;
  opacity: 1;
}

.logoMenu {
  text-align: center;
  position: absolute;
  left: 50px;
  top: 50px;
}

.logoMenu strong {
  font-size: 84px;
  font-weight: normal;
  letter-spacing: 13px;
  display: block;
}

.logoMenu span {
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 1px;
}

.contentMenu {
  width: 100%;
  max-width: 600px;
  padding-bottom: 30px;
}


.link a {
  text-decoration: none;
  color: #fff;
}

.listMenu {
  font-size: 60px;
  font-family: "MS Pゴシック";
  font-weight: bold;
}

.listMenu li {
  list-style-type: none;
  margin-top: 30px;
  line-height: 1.3rem;
}


.listMenu li a {
  width: 100%;
  color: #fff;
  text-decoration: none;
}

.listMenu li a:hover {
  padding-left: 1rem;
}

.listMenuWrap {
  margin: 0 auto;
}

.contactMenu {
  text-align: center;
  padding-top: 50px;
  margin-top: 50px;
}

.contactMenu a {
  width: 48.28%;
}

.bottomMenu {
  font-size: 13px;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

.bottomMenuTxt {
  margin-bottom: 5px;
}

.bottomMenuTxt a {
  color: #fff;
  text-decoration: none;
}

.bottomMenuTxt a:hover {
  text-decoration: underline;
}


.bottomMenuCopy {
  padding: 15px;
  background-color: #000;
}

/* Button
------------------------------------- */
.button {
  font-size: 1.48vh;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 4.26vh;
  border-width: 1px;
  border-style: solid;
  position: relative;
  transition: all 0.6s ease-in-out;

}

.button::before {
  content: "＞";
  font-family: Meiryo;
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.button-white {
  color: #fff;
  border-color: #FFF;
}

.button-white:hover {
  color: #000;
  background-color: #FFF;
}

.button-black {
  color: #fff;
  background: #2a3333;
  border-radius: 3px;
}

.button-black:hover {
  color: #FFF;
  background-color: #000;
}

/* Overview
------------------------------------- */
#mainContent {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: url(../images/bg.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.pageSlide .pageSlide-background {
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -100;
  transition: transform 1s ease-in;
}

#mainContent .pageSlide-background {
  background: #fbfbfb;
}

.pageSlide.swiper-slide-active .pageSlide-background {
  transform: scale(1) !important;
}

.pagesPagination {
  width: auto !important;
  left: auto !important;
  right: 10px;
  top: 50%;
  bottom: auto !important;
  transform: translate3d(0px, -50%, 0);
  z-index: 1000;
}

.pagesPagination span {
  padding: 10px !important;
  display: block;
  width: 15px;
  height: 15px;
  background-color: transparent;
  opacity: 1;
  position: relative;
}

.pagesPagination span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #707070;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pagesPagination span.swiper-pagination-bullet-active::before {
  background-color: #000;
  width: 9px;
  height: 9px;
}

.pagesPagination span::after {
  font-size: 16px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  visibility: hidden;
}

.pagesPagination span:hover::after {
  visibility: visible;
}

.pagesPagination span:nth-child(1)::after {
  content: "Home";
}

.pagesPagination span:nth-child(2)::after {
  content: "News";
}

.pagesPagination span:nth-child(3)::after {
  content: "Solution";
}

.pagesPagination span:nth-child(4)::after {
  content: "Package";
}

.pagesPagination span:nth-child(5)::after {
  content: "FAQ";
}

.pagesPagination span:nth-child(6)::after {
  content: "Contact";
}

.pagesPagination span:nth-child(7)::after {
  content: "Company";
}

.scrollAttention {
  font-size: 13px;
  padding-bottom: 50px;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1000;
}

.scrollAttention::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-size: 30px;
  color: #000;
  font-weight: 900;
  width: 17px;
  height: 9px;
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  -webkit-animation-name: scroll-attention;
  animation-name: scroll-attention;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.scrollAttention.is-hide {
  display: none;
}

@-webkit-keyframes scroll-attention {
  from {
    top: 15px;
  }

  to {
    top: 40px
  }
}

@keyframes scroll-attention {
  from {
    top: 20px;
  }

  to {
    top: 40px
  }
}

#topLogo {
  text-align: center;
  position: fixed;
  right: 150px;
  top: 70px;
  z-index: 1000;
  transition: all 0.6s ease-in-out;
}

#topLogo strong {
  font-size: 25px;

  display: block;
}

#topLogo span {
  font-size: 13px;
  letter-spacing: 1px;
  display: block;
}

#topLogo.is-hide {
  visibility: hidden;
  opacity: 0;
}

.cursor-follower {
  position: absolute;
  background-color: rgba(174, 181, 187, 0.78);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 100000;
  transform: translate(5px, 5px);
}

.cursor-follower.active {
  opacity: 0.7;
  transform: scale(3);
}

.cursor-follower.hovered {
  opacity: 0.08;
}

.dline {
  position: absolute;
  width: 3px;
  height: 50vh;
  left: 97%;
  top: 0;
  transform: translate(0, -100%) rotate(17.62deg);
  transform-origin: left bottom;
  z-index: -1000;
}

.dline-inner {
  position: absolute;
  width: 100%;
  height: 400%;
  left: 0;
  top: 0;
  background-color: #dc0032;
}

/* Page components
------------------------------------- */
.pageContainer {
  width: 100%;
  height: 100%;
  padding: 18.24vh 11.04% 70px 10.26%;
  position: relative;
}

.pageContent {
  color: #707070;
}

.pageHeading {
  font-size: 50px;
  font-weight: normal;
  letter-spacing: 10px;
  margin-bottom: 10px;
  transform: translateY(4.63vh);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease-out 0.8s;
  color: #4d4d4d;
}

.swiper-slide-active .pageHeading {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  font-family: 'Didact Gothic', sans-serif;
}

.pageTextbox {
  color: #888888;
  line-height: 1.3;
  transform: translateY(4.63vh);
  visibility: hidden;
  opacity: 0;
}

.pageTextbox dt {
  color: #4d4d4d;
  padding: 7px 15px 7px 0;
  font-weight: 600;
  margin-bottom: 10px;
  border-bottom: 1px solid #4d4d4d
}

.pageTextbox dd {
  padding-left: .5rem;
  letter-spacing: 1px;
}

.pageTextbox a {
  color: #707070;
  text-decoration: none;
}

.pageTextbox a:hover {
  text-decoration: underline;
}

.swiper-slide-active .pageTextbox {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition: all 0.6s ease-in-out 0.9s;
}

.buttonList {
  width: 100%;
  max-width: 870px;
}

.buttonList ul {
  display: flex;
  flex-wrap: wrap;
}

.buttonList ul li {
  list-style-type: none;
  flex-basis: 48.28%;
  margin-right: 3.44%;
  margin-bottom: 2.78vh;
  transform: translateY(-1.85vh);
  visibility: hidden;
  opacity: 0;
  transition: all 0s ease-out;
}

.buttonList ul li:nth-child(even) {
  margin-right: 0;
}

.buttonList ul li:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

.buttonList ul li a {
  width: 100%;
}

.swiper-slide-active .buttonList ul li {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition: all 0.6s ease-out;
}

.swiper-slide-active .buttonList ul li:nth-child(1) {
  transition-delay: 0.8s;
}

.swiper-slide-active .buttonList ul li:nth-child(2) {
  transition-delay: 1.0s;
}

.swiper-slide-active .buttonList ul li:nth-child(3) {
  transition-delay: 1.2s;
}

.swiper-slide-active .buttonList ul li:nth-child(4) {
  transition-delay: 1.4s;
}

.swiper-slide-active .buttonList ul li:nth-child(5) {
  transition-delay: 1.6s;
}

.swiper-slide-active .buttonList ul li:nth-child(6) {
  transition-delay: 1.8s;
}

.swiper-slide-active .buttonList ul li:nth-child(7) {
  transition-delay: 2.0s;
}

.swiper-slide-active .buttonList ul li:nth-child(8) {
  transition-delay: 2.2s;
}

.swiper-slide-active .buttonList ul li:nth-child(9) {
  transition-delay: 2.4s;
}

.popupOverlay {
  width: 100%;
  height: 100%;
  background-color: rgba(14, 11, 11, 0.81);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

.popupOverlay.is-active {
  visibility: visible;
  opacity: 1;
}

.close-area {
  width: 100%;
  height: 100%;
}

.popupContainer {
  width: 100%;
  max-width: 500px;
  min-height: 481px;
  max-height: 80%;
  background-color: #f5f3ef;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3px;

}

.popupSlideInner {
  position: relative;
  height: 100%;
  overflow-y: auto;
}

.popupHeading {
  font-size: 25px;
  font-weight: 500;
  color: #17090a;
  margin: 30px auto;
  position: relative;
  text-align: center;
}

.popupHeading::before {
  width: 33px;
  left: 0;
}

.popupHeading::after {
  width: 104px;
  left: 34px;
}

.popupSubHeading {
  font-size: 13px;
  position: relative;
  color: #fff;
  padding: 5px 15px;
  display: inline-block;
  margin: auto;
}

.popupSubHeading::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #000;
  z-index: -1;
  transform: skew(-25deg);
}

.popupContent {
  line-height: 1.8;
  letter-spacing: 1.8;
  color: #707070;
}

.popupContent p {
  padding: 20px 30px;
  font-size: 16px;
  font-weight: 500;
  color: #17090a;
}

.popupContent ol {
  padding: 0 0 20px;
}

.popupContent ol li {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-bottom: dotted 1px #707070;
  color: #000;
  padding: 0;
}

.popupCloseButton.is-pc {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  right: -10px;
  top: 30px;
  cursor: pointer;
  z-index: 3500;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.lineLinkWrap {
  border-radius: 100% 0 0 0;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
}

.lineLinkWrap a {
  color: #00b900;
  text-decoration: none;
  padding: 100px 30px 30px 100px;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 40px;
}

.lineLinkWrap .fa-line {
  color: #000;
  font-size: 100px;
}

/* TOP
------------------------------------- */
.siteBrand {
  font-weight: normal;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: -67px;
}

.siteBrand img {
  width: 300px;
}


.siteBrand span {
  font-size: 16px;
  letter-spacing: 2px;
}

.ityped-cursor {
  font-size: 1em;
  opacity: 1;
  -webkit-animation: blink 0.3s infinite;
  animation: blink 0.3s infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

@keyframes blink {
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes blink {
  100% {
    opacity: 0;
  }
}

.siteBrand div {
  margin-top: 10px;
  letter-spacing: 2px;
}

.siteBrand strong::after {
  content: "";
  display: block;
  width: 100%;
  height: 110%;
  background: #fbfbfb;
  position: absolute;
  right: 0;
  top: 0;
}

.swiper-slide-active .siteBrand strong::after {
  transition: all 0.8s ease-in-out 0.3s;
  width: 0;
}


/* NEWS 
------------------------------------- */
#news .pageContent {
  display: flex;
  justify-content: flex-end;
  padding-right: 20%;
}

#news .pageTextbox a {
  color: #2270b1;
}

/* COMPANY 
------------------------------------- */
#company .pageContent {
  display: flex;
  justify-content: flex-end;
  padding-right: 20%;
}

#company .pageTextbox {
  font-size: 16px;
}

#company .pageTextbox dt {
  color: #4d4d4d;
  font-size: 13px;
  margin-bottom: 10px;
}

#company .pageTextbox a {
  color: #2270b1;
}

.thanks {
  font-size: 4vh;
  font-family: 'Homemade Apple', cursive;
  color: #000;
  text-align: right;
  padding-right: 24%;
  margin-top: 30px;
  transform: translateY(4.63vh);
  visibility: hidden;
  opacity: 0;
}

.swiper-slide-active .thanks {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  transition: all 0.6s ease-in-out 1s;
}

.backToTop {
  font-size: 13px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  padding: 0 0 30px;
  position: absolute;
  left: 50%;
  bottom: 0;
  visibility: hidden;
  transition: all 0s linear 0s;
  z-index: 1000;
  transform: translateX(-50%);
}

.backToTop::before {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-size: 30px;
  font-weight: 900;
  width: 17px;
  height: 9px;
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translateX(-50%);
}

.swiper-slide-active .backToTop {
  visibility: visible;
  transition: all 0s linear 0.3s;
}

.fa-phone-square-alt,
.fa-envelope-square,
.fa-line {
  color: #4d4d4d;
}

/* SOLUTION 
------------------------------------- */
#solution .pageContent {
  display: flex;
  justify-content: flex-end;
}

#solution .buttonList ul {
  justify-content: flex-end;
}

#solution .buttonList ul li:last-child {
  margin-right: 0;
}

/* PACKAGE 
------------------------------------- */

.packagePrice {
  text-align: center;
  margin: 5px auto 10px;
}

.packagePrice {
  padding: 0 !important;
}

.packagePrice strong {
  color: #fff;
  font-size: 20px;
  font-weight: normal;
  background: #ec8c8c;
  border-radius: 3px;
  padding: 5px 15px;
  margin: 5px;
}

.packagePrice .demoLink {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  border-radius: 3px;
  padding: 5px 15px;
  margin: 5px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  display: none;
}

.demoLink::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: -15px;
  left: 13px;
  margin: auto;
  width: 120px;
  height: 10px;
  border-bottom: 1px solid #000;
}

.demoLink::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: -29px;
  right: -11px;
  margin: auto;
  width: 15px;
  height: 10px;
  border-top: 1px solid #000;
  transform: rotate(20deg);
}

#package-popup h4 {
  font-size: 18px;
  text-align: center;
  border-bottom: dotted 1px #707070;
}

.popupContent .packageSupport li {
  font-size: 18px;
}

#package .pp-content ol,
ul {
  -webkit-padding-start: 0 !important;
  padding-inline-start: 0 !important;
}

#package-popup .popupHeading {
  margin-bottom: 0;
}

.popupContent .annotation {
  font-size: 14px;
}

/* Q&A 
------------------------------------- */
#qa .pageContent {
  display: flex;
  justify-content: center;
}


/* CONTACT 
------------------------------------- */
#contact .pageContent {
  display: flex;
  flex-wrap: wrap;
}

#contact .contactForm {
  width: 100%;
  max-width: 420px;
  position: relative;
  top: 65px;
  margin: 0 auto;
  visibility: hidden;
  opacity: 0;
}

#contact .contactFormRow {
  margin-bottom: 2.78vh;
  position: relative;
}

#contact .contactFormRow:last-child {
  margin-bottom: 0;
}

#contact .contactFormRow .invalid {
  font-size: 1.48vh;
  color: #FFF;
  display: inline-block;
  padding: 1.48vh 48px;
  background: #000;
  border-radius: 17px;
  position: absolute;
  left: 4px;
  bottom: calc(100% + 2.31vh);
  visibility: hidden;
}

#contact .contactFormRow .invalid::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.3vh 9px 0 9px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  left: 30px;
  top: 100%;
}

#contact .contactFormRow .invalid.is-active {
  visibility: visible;
}

#contact .contactForm input,
#contact .contactForm textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 1.48vh;
  color: #707070;
  background: #fbfbfb;
  line-height: 1.2;
  width: 100%;
  padding: 15px;
  border: none;
  border-bottom: 1px solid #707070;
}

#contact .contactForm textarea {
  height: 200px;
}

#contact .contactForm input[type="button"] {
  color: #FFF;
  background-color: #000;
  border-color: #000;
  cursor: pointer;
  border-radius: 3px;
  font-weight: bold;
}

#contact.swiper-slide-active .contactForm {
  top: 0;
  visibility: visible;
  opacity: 1;
  transition: all 0.6s ease-in-out 0.8s;
}

#contact .complete {
  text-align: center;
  margin: 0 auto;
  display: none;
}

#contact .complete p {
  font-size: 30px;
  line-height: 1.6;
  margin-top: 30px;
}

/* privacy―policy
------------------------------------- */
.privacy―policy-wrap {
  max-width: 800px;
  margin: 5rem auto;
  line-height: 1.5rem;
}

.pp-content h1 {
  margin: 3rem 0;
}

.pp-content ol,
ul {
  -webkit-padding-start: 20px;
  padding-inline-start: 20px;
}

.privacy―policy-wrap p {
  color: #000;
}

@media screen and (max-width: 750px) {
  .spMenu {
    display: inline-block;
    padding: 10px;
    margin: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1000;
    text-align: center;
  }

  .spMenu div a {
    color: #000;
    text-decoration: none;
  }

  .spMenu ul li a {
    font-size: 10px;
    color: #514a4a;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 35px;
  }

  .spMenu .fas {
    font-size: 25px;
  }

  .spMenu ul li:nth-child(1) a {
    background-image: url(../images/icon-menu-01.png);
  }

  .spMenu ul li:nth-child(2) a {
    background-image: url(../images/icon-menu-02.png);
  }

  .spMenu ul li:nth-child(3) a {
    background-image: url(../images/icon-menu-03.png);
  }

  .spMenu ul li:nth-child(4) a {
    background-image: url(../images/icon-menu-04.png);
  }

  .lineLinkWrap {
    bottom: 0;
    right: 0;
    z-index: 1000;
  }

  .lineLinkWrap a {
    padding: 40px 20px 20px 40px;
    font-size: 25px;
  }

  .lineLinkWrap .fa-line {
    font-size: 70px;
  }

  .overlayMenu {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    right: auto;
    left: -100vw;
    top: 0;
  }

  .overlayMenu.is-active {
    transform: none;
    left: 0;
  }

  .contentMenu {
    padding: 0 6.4% 34px;
  }

  .listMenu li {
    flex-basis: 100%;
    margin-top: 25px !important;
    font-size: 45px;
    line-height: 1.0;
  }

  .listMenu li:first-child {
    margin-top: 0 !important;
  }

  .contactMenu {
    padding-top: 20px;
    margin-top: 20px;
  }

  .contactMenu a {
    width: 100%;
  }

  .bottomMenuTxt {
    margin-bottom: 5px;
  }

  .bottomMenuCopy {
    padding: 8px;
  }

  .closeMenu {
    width: 40px;
    height: 40px;
    position: absolute;
    right: -20px;
    top: 40px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }

  .button {
    font-size: 16px;
    height: 35px;
  }

  .button::before {
    font-size: 7px;
  }

  .button-white:hover {
    color: #FFF;
    background-color: transparent;
  }

  .button-black:hover {
    color: #000;
    background-color: transparent;
  }

  .ico-swipe {
    font-size: 16px;
    font-style: normal;
    color: #707070;
    display: inline-block;
    position: absolute;
    -webkit-animation-name: swipe-flash;
    animation-name: swipe-flash;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
  }

  .ico-swipe::after {
    content: "\f100";
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    font-weight: 900;
  }

  @-webkit-keyframes swipe-flash {
    from {
      opacity: 0.2;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes swipe-flash {
    from {
      opacity: 0.2;
    }

    to {
      opacity: 1;
    }
  }

  #topLogo {
    right: 24px;
    top: 20px;
    visibility: visible !important;
    opacity: 1 !important;
  }

  #topLogo strong {
    font-size: 15px;
  }

  #topLogo span {
    font-size: 7px;
  }

  .cursor-follower {
    display: none;
  }

  .dline {
    width: 1px;
  }

  .pageContainer {
    padding: 12vh 6.4% 60px;
  }

  .pageHeading {
    font-size: 40px;
    letter-spacing: 1px;
    border-bottom: #000 dotted 1px;
    transform: translateY(20px);
  }

  #news .pageHeading,
  #qa .pageHeading,
  #contact .pageHeading,
  #company .pageHeading {
    border-bottom: none;
  }

  .pageTextbox {
    transform: translateY(20px);
  }

  .buttonList ul li {
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 26px !important;
    transform: translateY(-20px);
  }

  .buttonList ul li:last-child {
    margin-bottom: 0;
  }

  .pageTextframe {
    font-size: 16px;
    line-height: 1.6;
    padding: 10px;
    margin-bottom: 15px;
    visibility: hidden;
    opacity: 0;
  }

  .swiper-slide-active .pageTextframe {
    visibility: visible;
    opacity: 1;
    transition: all 0.6s ease-in-out 0.8s;
  }

  .popupOpenButton {
    width: 100%;
    height: 46px;
    border-color: #707070;
    visibility: hidden;
    opacity: 0;
  }

  .swiper-slide-active .popupOpenButton {
    visibility: visible;
    opacity: 1;
    transition: all 0.6s ease-in-out 0.9s;
  }

  .popupOverlay {
    padding: 60px 5.33% 5.33%;
  }

  .popupContainer {
    width: 100%;
    height: 100%;
    min-height: auto;
    max-height: none;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }

  .popupSlide {
    padding: 0 0 65px;
  }

  .popupHeading {
    font-size: 20px;
    text-align: center;
    padding: 0 10px 10px;
    margin-bottom: 22px;
  }

  .popupHeading::before {
    width: 43px;
    left: 50%;
    transform: translateX(-50%);
  }

  .popupHeading::after {
    display: none;
  }

  .popupContent {
    line-height: 2;
  }

  .popupContainer .ico-swipe {
    position: absolute;
    left: 50%;
    bottom: 45px;
    transform: translateX(-50%);
  }

  .popupCloseButton.is-sp {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    top: 20px;
    color: #fff;
  }

  .siteBrand {
    margin-top: -22px;
  }

  .siteBrand span {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .siteBrandBalloon {
    font-size: 20px;
    font-style: normal;
    color: #FFF;
    letter-spacing: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 48px;
    background-color: #000;
    background: linear-gradient(-45deg, rgba(246, 255, 0, .8), rgba(255, 0, 161, .8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-radius: 17px;
    position: absolute;
    left: 50%;
    top: -73px;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
  }

  .swiper-slide-active .siteBrandBalloon {
    transition: all 0.6s ease-in-out 0.9s;
    visibility: visible;
    opacity: 1;
  }

  #home .ico-swipe {
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
  }

  #news .pageContent {
    justify-content: flex-start;
    padding-right: 0;
  }

  #company .pageContent {
    justify-content: flex-start;
    padding-right: 0;
  }

  .thanks {
    font-size: 20px;
    padding-right: 0;
    margin-top: 0;
    transform: translateY(0);
    position: absolute;
    right: 24px;
    top: auto !important;
    bottom: 80px;
    z-index: 1000;
  }

  .backToTop {
    padding: 0;
    bottom: 10px;
    transition: none;
    visibility: hidden;
    opacity: 0;
  }

  .backToTop::before {
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    width: 25px;
    height: 25px;
    bottom: 30px;
  }


  .swiper-slide-active .backToTop {
    visibility: visible;
    opacity: 1;
    transition: all 0.6s ease-in-out 0.6s;
  }

  #solution .pageContent {
    display: block;
  }

  .popupContent ol li {
    font-size: 18px;
  }

  #qa .pageContent {
    display: block;
  }

  #contact .contactForm {
    top: 20px;
  }

  #contact .contactFormRow {
    margin-bottom: 2vh;
  }

  #contact .contactFormRow .invalid {
    font-size: 16px;
    padding: 16px 48px;
    bottom: calc(100% + 25px);
  }

  #contact .contactFormRow .invalid::before {
    border-width: 14px 9px 0 9px;
  }

  #contact .contactForm input,
  #contact .contactForm textarea {
    font-size: 2.3vh;
    padding: 1.8vh 35px;
  }

  #contact .complete {
    padding-top: 34px;
  }

  #contact .complete i {
    width: 23px;
  }

  #contact .complete p {
    font-size: 16px;
  }

  #contact .contactForm input[type="button"] {
    display: block;
    width: 50%;
  }
}

@media screen and (max-width: 1000px) {
  #contact .lineBtnWrap,
  #contact .contactSelect,
  #contact .contactForm {
    text-align: center;
    width: 100%;
  }
}

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

@media screen and (min-width: 750.98px) {
  .is-sp {
    display: none !important;
  }
}