/* ************************************************************************
   ************************************************************************

    COMMON SETTINGS

   ************************************************************************
   ************************************************************************ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");
@font-face {
  font-family: "quentin";
  src: url("../fonts/Quentin.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --color-main: #21a59e;
  --color-main2: #47af5d;
  --color-main3: #e6df42;
  --color-gradient: linear-gradient(138deg,rgba(33, 165, 158, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
  --color-accent: #21a59e;
  --color-base: #f8f6ed;
  --color-white: #ffffff;
  --font-unique-en: "quentin", serrif;
}

/* ------------------------------
    RESPONSIVE SETTINGS
  ------------------------------ */
/* ------------------------------
    FONT
  ------------------------------ */
.t__min {
  font-family: serif !important;
}

/* ------------------------------
    COLOR SETTINGS
  ------------------------------ */
svg {
  fill: currentColor;
}

/* ------------------------------
    MIXIN
  ------------------------------ */
/* ------------------------------
    KEYFRAME
  ------------------------------ */
@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
}
@keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
}
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes countDown {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0% 0 0);
            clip-path: inset(0 0% 0 0);
  }
}
@keyframes countDown {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0% 0 0);
            clip-path: inset(0 0% 0 0);
  }
}
@-webkit-keyframes rotateInf {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
@keyframes rotateInf {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
html {
  background: #f8f6ed;
}
html::before {
  position: fixed;
  content: "";
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 5rem 5rem #FFF;
          box-shadow: 0 0 5rem 5rem #FFF;
  z-index: 10;
  pointer-events: none;
}
@media screen and (min-width: 320px) {
  html::before {
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
}
@media screen and (min-width: 600px) {
  html::before {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

#__headerLogo::before, #__headerLogo::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  -webkit-box-shadow: -50px -50px #FFF;
          box-shadow: -50px -50px #FFF;
}
@media screen and (min-width: 320px) {
  #__headerLogo::before, #__headerLogo::after {
    border-radius: 20%;
  }
}
@media screen and (min-width: 600px) {
  #__headerLogo::before, #__headerLogo::after {
    border-radius: 50%;
  }
}
#__headerLogo::before {
  right: -100px;
}
@media screen and (min-width: 320px) {
  #__headerLogo::before {
    top: 5px;
  }
}
@media screen and (min-width: 600px) {
  #__headerLogo::before {
    top: 15px;
  }
}
#__headerLogo::after {
  bottom: -100px;
}
@media screen and (min-width: 320px) {
  #__headerLogo::after {
    left: 5px;
  }
}
@media screen and (min-width: 600px) {
  #__headerLogo::after {
    left: 15px;
  }
}

#__headerNav .__menu.__main {
  left: 50%;
  border-radius: 3rem;
  -webkit-transform: translate(-50%, 2rem) !important;
          transform: translate(-50%, 2rem) !important;
}

#__headerNav .__menu.__cv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (min-width: 320px) {
  #__headerNav .__menu.__cv {
    top: 1.3rem;
    right: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  #__headerNav .__menu.__cv {
    top: 2rem;
    right: 2rem;
  }
}
#__headerNav .__menu.__cv li {
  -webkit-writing-mode: unset;
      -ms-writing-mode: unset;
          writing-mode: unset;
}
#__headerNav .__menu.__cv li:nth-child(1) {
  margin-right: 1rem;
}
#__headerNav .__menu.__cv li:nth-child(1) a {
  padding: 0 1.2rem 0 0;
}
#__headerNav .__menu.__cv li:nth-child(1) .__icon {
  border: unset;
}
#__headerNav .__menu.__cv li:nth-child(2) a {
  padding: 0;
}
#__headerNav .__menu.__cv li:nth-child(2) .__text {
  display: none;
}
#__headerNav .__menu.__cv a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: unset;
  padding: 0;
  border-radius: 4rem;
}
#__headerNav .__menu.__cv .__icon {
  margin: 0;
  border-radius: 50%;
}
@media screen and (min-width: 320px) {
  #__headerNav .__menu.__cv .__icon {
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (min-width: 600px) {
  #__headerNav .__menu.__cv .__icon {
    width: 5rem;
    height: 5rem;
  }
}

.pageNav {
  width: 100%;
}
@media screen and (min-width: 320px) {
  .pageNav {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 600px) {
  .pageNav {
    margin-top: 0.9rem;
  }
}
.pageNav .pageNavList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 320px) {
  .pageNav .pageNavList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .pageNav .pageNavList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.3rem 0;
  }
}
.pageNav .pageNavItem {
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  .pageNav .pageNavItem {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 600px) {
  .pageNav .pageNavItem {
    font-size: 1.4rem;
  }
}
.pageNav .pageNavItem::before {
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -2.5rem;
  width: 1rem;
  height: 1rem;
  background: #67a4c3;
  border-radius: 50%;
}
@media screen and (min-width: 320px) {
  .pageNav .pageNavItem::before {
    content: none;
  }
}
@media screen and (min-width: 600px) {
  .pageNav .pageNavItem::before {
    content: "";
  }
}

.pageAbout {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 320px) {
  .pageAbout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 6rem 5vw 5.2rem;
  }
}
@media screen and (min-width: 600px) {
  .pageAbout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 0 5vw 7.2rem;
  }
}
@media screen and (min-width: 320px) {
  .pageAbout .textWrapper {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .pageAbout .textWrapper {
    width: 50%;
  }
}
.pageAbout .imgWrapper {
  background: #D7E9F3;
  border-radius: 1.3rem;
  overflow: hidden;
}
@media screen and (min-width: 320px) {
  .pageAbout .imgWrapper {
    width: 100%;
    height: 15rem;
    margin-top: 3rem;
  }
}
@media screen and (min-width: 600px) {
  .pageAbout .imgWrapper {
    width: 41.6%;
    height: 30.2rem;
    margin-top: 15rem;
  }
}
.pageAbout .imgWrapper img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageAbout .aboutTitle {
  color: var(--color-main);
  font-weight: 900;
  line-height: 1.348;
}
@media screen and (min-width: 320px) {
  .pageAbout .aboutTitle {
    font-size: 2rem;
  }
}
@media screen and (min-width: 600px) {
  .pageAbout .aboutTitle {
    font-size: 2.9rem;
  }
}
.pageAbout .aboutDesc {
  opacity: 0.8;
  line-height: 1.9;
}
@media screen and (min-width: 320px) {
  .pageAbout .aboutDesc {
    font-size: 1.2rem;
    margin-top: 3rem;
  }
}
@media screen and (min-width: 600px) {
  .pageAbout .aboutDesc {
    font-size: 1.2rem;
    margin-top: 2.2rem;
  }
}
@media screen and (min-width: 320px) {
  .pageAbout .pc {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .pageAbout .pc {
    display: block;
  }
}

@-webkit-keyframes scrollText {
  100% {
    translate: -100%;
  }
}

@keyframes scrollText {
  100% {
    translate: -100%;
  }
}
.bgTextWrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  width: 100%;
  opacity: 0.15;
  overflow: hidden;
  z-index: -1;
}

.bgText {
  font-family: acumin-pro, sans-serif;
  font-weight: 900;
  color: var(--color-main);
  line-height: 1;
  -webkit-animation: scrollText 20s linear infinite;
          animation: scrollText 20s linear infinite;
}
@media screen and (min-width: 320px) {
  .bgText {
    font-size: 8rem;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 600px) {
  .bgText {
    font-size: 16rem;
    padding-right: 4rem;
  }
}

.pageTitle {
  position: relative;
  color: var(--color-main);
  font-weight: 900;
}
.pageTitle .pageTitleLogo {
  position: absolute;
}
@media screen and (min-width: 320px) {
  .pageTitle .pageTitleLogo {
    top: -1rem;
    left: -8rem;
    width: 6.5rem;
  }
}
@media screen and (min-width: 600px) {
  .pageTitle .pageTitleLogo {
    top: -3rem;
    left: -13.5rem;
    width: 11.3rem;
  }
}
.pageTitle .pageTitleEn {
  font-family: acumin-pro, sans-serif;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 320px) {
  .pageTitle .pageTitleEn {
    font-size: 3rem;
  }
}
@media screen and (min-width: 600px) {
  .pageTitle .pageTitleEn {
    font-size: 5.1rem;
  }
}
@media screen and (min-width: 320px) {
  .pageTitle .pageTitleJA {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 600px) {
  .pageTitle .pageTitleJA {
    font-size: 1.9rem;
  }
}

.pageService {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 320px) {
  .pageService {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 6rem 5vw 10rem;
  }
}
@media screen and (min-width: 600px) {
  .pageService {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 17.2rem 5vw 11rem 16vw;
  }
}
@media screen and (min-width: 320px) {
  .pageService .sectionHead {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .pageService .sectionHead {
    width: 34%;
  }
}
.pageService .textWrapper {
  position: sticky;
  top: 5rem;
  left: 0;
}
.pageService .sectionDesc {
  opacity: 0.8;
  line-height: 1.9;
  margin-top: 4.5rem;
}
@media screen and (min-width: 320px) {
  .pageService .sectionDesc {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 600px) {
  .pageService .sectionDesc {
    font-size: 1.2rem;
  }
}
.pageService .serviceList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 320px) {
  .pageService .serviceList {
    width: 100%;
    gap: 1.2rem 4%;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 600px) {
  .pageService .serviceList {
    width: 62%;
    gap: 2rem 3.5%;
    margin-top: 14.1rem;
  }
}
.pageService .serviceItem {
  position: relative;
  background: #FFF;
  border-radius: 0.5rem;
}
@media screen and (min-width: 320px) {
  .pageService .serviceItem {
    width: 48%;
  }
}
@media screen and (min-width: 600px) {
  .pageService .serviceItem {
    width: 31%;
  }
}
.pageService .serviceItem:hover .plus {
  background-color: var(--color-main);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.pageService .serviceItemInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 320px) {
  .pageService .serviceItemInner {
    padding: 2rem 1.5rem 1.7rem;
  }
}
@media screen and (min-width: 600px) {
  .pageService .serviceItemInner {
    padding: 3rem 1.5rem 1.7rem;
  }
}
.pageService .iconWrapper {
  height: 4rem;
  background: #67a4c3;
}
.pageService .serviceTitle {
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  line-height: 1.45;
  margin-top: 1.9rem;
}
@media screen and (min-width: 320px) {
  .pageService .serviceTitle {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 600px) {
  .pageService .serviceTitle {
    font-size: 1.6rem;
  }
}
.pageService .plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #B8B8B8;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: background-color 0.4s ease, -webkit-transform 0.4s ease;
  transition: background-color 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background-color 0.4s ease;
  transition: transform 0.4s ease, background-color 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (min-width: 320px) {
  .pageService .plus {
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .pageService .plus {
    width: 3rem;
    height: 3rem;
    margin-top: 0.8rem;
  }
}
.pageService .plusSVG {
  stroke: #FFF;
  width: 2.5rem;
}

.serviceModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  z-index: -1;
  -webkit-transition: z-index 0.4s ease;
  transition: z-index 0.4s ease;
}
.serviceModal.isActive {
  opacity: 1;
  z-index: 1000;
}
.serviceModal.isActive .modalBG {
  opacity: 1;
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
}
.serviceModal.isActive .modalInner {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.serviceModal .modalBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  -webkit-transition: opacity 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  transition: opacity 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}
.serviceModal .closeIcon {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 4rem;
  cursor: pointer;
}
.serviceModal .modalInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 25rem;
  background: #FFF;
  z-index: 1;
  -webkit-box-shadow: 0.5rem 0.5rem 2rem 0.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0.5rem 0.5rem 2rem 0.5rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (min-width: 320px) {
  .serviceModal .modalInner {
    width: 30rem;
    padding: 2rem;
  }
}
@media screen and (min-width: 600px) {
  .serviceModal .modalInner {
    width: 60rem;
    padding: 5rem;
  }
}
.serviceModal .modalTitle {
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  .serviceModal .modalTitle {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 600px) {
  .serviceModal .modalTitle {
    font-size: 1.4rem;
  }
}
.serviceModal .modalDesc {
  line-height: 1.9;
  margin-top: 1.5rem;
}
@media screen and (min-width: 320px) {
  .serviceModal .modalDesc {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 600px) {
  .serviceModal .modalDesc {
    font-size: 1.2rem;
  }
}

.parallaxImgWrapper {
  width: 100%;
  background: #67a4c3;
}
@media screen and (min-width: 320px) {
  .parallaxImgWrapper {
    height: 17rem;
  }
}
@media screen and (min-width: 600px) {
  .parallaxImgWrapper {
    height: 42rem;
  }
}

.pageRequires .requiresInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 11rem 5vw 0 0;
}
.pageRequires .requireContent {
  background: #FFF;
}
@media screen and (min-width: 320px) {
  .pageRequires .requireContent {
    width: 95vw;
    margin: -3rem 0 0 0;
    padding: 7.8rem 5vw 8rem;
  }
}
@media screen and (min-width: 600px) {
  .pageRequires .requireContent {
    width: 90vw;
    margin: -5rem 5vw 0 0;
    padding: 7.8rem 22vw 14rem 11vw;
  }
}
.pageRequires .require {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 320px) {
  .pageRequires .require {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 600px) {
  .pageRequires .require {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1.5rem;
  }
}
.pageRequires .requireTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: #67a4c3;
  color: #FFF;
  font-weight: 900;
}
@media screen and (min-width: 320px) {
  .pageRequires .requireTitle {
    width: 6rem;
    height: 6rem;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 600px) {
  .pageRequires .requireTitle {
    width: 12rem;
    height: 12rem;
    font-size: 2rem;
  }
}
.pageRequires .requireDesc {
  line-height: 2.25;
}
@media screen and (min-width: 320px) {
  .pageRequires .requireDesc {
    width: 70%;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 600px) {
  .pageRequires .requireDesc {
    width: 78%;
    font-size: 1rem;
  }
}

@media screen and (min-width: 320px) {
  .requiresSwiper {
    margin-top: -6rem;
  }
}
@media screen and (min-width: 600px) {
  .requiresSwiper {
    margin-top: -11.2rem;
  }
}
.requiresSwiper .requiresSwiperWrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.requiresSwiper .requireSlide {
  background: #67a4c3;
  overflow: hidden;
  border-radius: 1.2rem;
}
@media screen and (min-width: 320px) {
  .requiresSwiper .requireSlide {
    height: 10rem;
  }
}
@media screen and (min-width: 600px) {
  .requiresSwiper .requireSlide {
    height: 23.4rem;
  }
}
.requiresSwiper .requireSlide:nth-of-type(2n) {
  margin-top: 3.1rem;
}

@media screen and (min-width: 320px) {
  .pageProcess {
    margin-top: 11rem;
  }
}
@media screen and (min-width: 600px) {
  .pageProcess {
    margin-top: 16.7rem;
  }
}
@media screen and (min-width: 320px) {
  .pageProcess .pageTitle {
    margin-top: 11rem;
    margin-left: 46vw;
  }
}
@media screen and (min-width: 600px) {
  .pageProcess .pageTitle {
    margin-top: 16.7rem;
    margin-left: 16vw;
  }
}

@media screen and (min-width: 320px) {
  .processSwiper {
    padding: 5rem 10vw 4rem;
  }
}
@media screen and (min-width: 600px) {
  .processSwiper {
    padding: 13.6rem 10vw 9.8rem;
  }
}
.processSwiper .processSlide {
  position: relative;
  height: auto;
  border-radius: 2rem;
  background: #FFF;
  counter-increment: count;
}
@media screen and (min-width: 320px) {
  .processSwiper .processSlide {
    padding: 1.3rem 1.3rem 3.5rem;
  }
}
@media screen and (min-width: 600px) {
  .processSwiper .processSlide {
    padding: 1.3rem 1.3rem 4.5rem;
  }
}
.processSwiper .processSlide::before {
  position: absolute;
  content: counter(count, decimal-leading-zero);
  color: #FFF;
  font-family: acumin-pro, sans-serif;
  font-weight: 700;
  letter-spacing: 0.3rem;
  background: #67a4c3;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .processSwiper .processSlide::before {
    top: -2rem;
    left: -1rem;
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .processSwiper .processSlide::before {
    top: -6.3rem;
    left: -6.3rem;
    width: 12.6rem;
    height: 12.6rem;
    font-size: 5rem;
  }
}
.processSwiper .imgWrapper {
  background: #f8f6ed;
  border-radius: 1.8rem;
}
@media screen and (min-width: 320px) {
  .processSwiper .imgWrapper {
    height: 17rem;
  }
}
@media screen and (min-width: 600px) {
  .processSwiper .imgWrapper {
    height: 24.4rem;
  }
}
.processSwiper .processTitle {
  font-weight: 700;
}
@media screen and (min-width: 320px) {
  .processSwiper .processTitle {
    font-size: 1.8rem;
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 600px) {
  .processSwiper .processTitle {
    font-size: 2.2rem;
    margin-top: 3.9rem;
  }
}
.processSwiper .processDesc {
  line-height: 1.9;
}
@media screen and (min-width: 320px) {
  .processSwiper .processDesc {
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .processSwiper .processDesc {
    font-size: 1.2rem;
    margin-top: 2rem;
  }
}
.processSwiper .swiper-scrollbar {
  background: rgba(103, 164, 195, 0.1);
  border-radius: 2rem;
  z-index: 1;
  cursor: pointer;
}
@media screen and (min-width: 320px) {
  .processSwiper .swiper-scrollbar {
    left: 12.5%;
    width: 75%;
    height: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .processSwiper .swiper-scrollbar {
    left: 25%;
    width: 50%;
    height: 1.8rem;
  }
}
.processSwiper .swiper-scrollbar-drag {
  background: rgba(103, 164, 195, 0.5);
  border-radius: 2rem;
  cursor: -webkit-grab;
  cursor: grab;
}
.processSwiper .swiper-scrollbar-drag:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}/*# sourceMappingURL=service.css.map */