a {
  text-decoration: none;
  color: #333;
}

li {
  list-style-type: none;
}

img {
  vertical-align: bottom;
}

body {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  color: #333;
}

.section-title {
  font-weight: 500;
  text-align: center;
}
.section-title .section-title__main {
  display: block;
  color: #333;
  font-size: 1.5em;
}
.section-title .section-title__main::first-letter {
  color: #2BC0E4;
}
.section-title .section-title__sub {
  display: inline-block;
  font-size: 0.5em;
}

.contact__btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  border: 2px solid #2BC0E4;
  border-radius: 12px;
  background: linear-gradient(61deg, #64B3F4, #0ED2F7);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}
@media (max-width: 1186px) {
  .contact__btn {
    font-size: 14px;
  }
}
.contact__btn:hover {
  background: #fff;
  color: #2BC0E4;
  transition: all 0.3s;
}

.pagetop {
  position: fixed;
  bottom: 25px;
  right: -100px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  background: url("../images/pagetop-d.png") no-repeat center/contain;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  opacity: 0;
}
.pagetop:hover {
  background: url("../images/pagetop-h.png") no-repeat center/contain;
}

#page-top.LeftMove {
  -webkit-animation: LeftAnime 0.5s forwards;
          animation: LeftAnime 0.5s forwards;
}

@-webkit-keyframes LeftAnime {
  from {
    opacity: 0;
    right: -100px;
  }
  to {
    opacity: 1;
    right: 25px;
  }
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    right: -100px;
  }
  to {
    opacity: 1;
    right: 25px;
  }
}
#page-top.RightMove {
  -webkit-animation: RightAnime 0.5s forwards;
          animation: RightAnime 0.5s forwards;
}

@-webkit-keyframes RightAnime {
  from {
    opacity: 1;
    right: 25px;
  }
  to {
    opacity: 0;
    right: -100px;
  }
}

@keyframes RightAnime {
  from {
    opacity: 1;
    right: 25px;
  }
  to {
    opacity: 0;
    right: -100px;
  }
}
.header {
  padding-top: 40px;
}
.header__wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-inline: 40px;
}
.header__wrapper .header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 64px;
  flex-grow: 1;
}
@media (max-width: 1186px) {
  .header__wrapper .header__nav {
    justify-content: flex-start;
    flex-direction: column;
    gap: 32px;
    opacity: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 20;
    transform: translate(-50%, -50%) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
    max-width: 400px;
    width: 80%;
    height: 300px;
    margin-left: 0;
    padding: 40px 5%;
    overflow-y: auto;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    pointer-events: none;
  }
}
.header__wrapper .header__nav-list {
  display: flex;
  gap: 64px;
}
@media (max-width: 1186px) {
  .header__wrapper .header__nav-list {
    flex-direction: column;
    gap: 32px;
  }
}
.header__wrapper .header__nav-list .header__nav-link {
  position: relative;
  text-decoration: none;
  color: inherit;
}
.header__wrapper .header__nav-list .header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.header__wrapper .header__nav-list .header__nav-link:hover::after {
  width: 100%;
}
@media (max-width: 1186px) {
  .header__wrapper .header__nav-list .header__nav-link {
    color: #333;
  }
}
.header__wrapper .header__contact {
  transition: all 0.3s;
}
.header__wrapper .header__hamburger {
  display: none;
  width: 32px;
  cursor: pointer;
  z-index: 20;
}
@media (max-width: 1186px) {
  .header__wrapper .header__hamburger {
    display: flex;
  }
}
.header__wrapper .header__hamburger-button {
  width: 100%;
}
.header__wrapper .header__hamburger-bar {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  margin-block: 5px;
  transition: all 0.3s ease;
}
.header__wrapper .header__hamburger-label {
  display: block;
  font-size: 0.5em;
  color: #333;
}
.header__wrapper .header__mask {
  display: none;
  transition: all 0.3s ease;
}
.header.is-open .header__wrapper .header__nav {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.header.is-open .header__wrapper .header__hamburger-bar {
  transform-origin: center center;
  background: #fff;
}
.header.is-open .header__wrapper .header__hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(-315deg);
}
.header.is-open .header__wrapper .header__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.header.is-open .header__wrapper .header__hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(315deg);
}
.header.is-open .header__wrapper .header__hamburger-label {
  color: #fff;
  font-size: 0.5em;
}
.header.is-open .header__wrapper .header__mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10;
  cursor: pointer;
}

.fv {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: url(../images/fv-bg.jpg) no-repeat center center/cover;
  z-index: -1;
  overflow: hidden;
}
.fv__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.fv__inner::before {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../images/fv-pc.png");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1186px) {
  .fv__inner::before {
    top: 30vh;
  }
}
@media (max-width: 800px) {
  .fv__inner::before {
    top: 38vh;
  }
}
@media (max-width: 500px) {
  .fv__inner::before {
    top: 55vh;
  }
}
.fv__inner .fv__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 150px;
  padding: 32px 138px;
  background: #1A4859;
  font-family: "Kiwi Maru", serif;
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 800px) {
  .fv__inner .fv__title {
    padding: 24px 32px;
    font-size: 2rem;
  }
}
.fv__inner .fv__contents {
  margin-top: 4vh;
}
@media (max-width: 800px) {
  .fv__inner .fv__contents {
    margin-top: 0;
  }
}
.fv__inner .fv__contents-list {
  display: flex;
  font-size: 1.5rem;
  font-family: "Kiwi Maru", serif;
}
@media (max-width: 1186px) {
  .fv__inner .fv__contents-list {
    width: 100%;
    justify-content: flex-start;
    font-size: 1.3rem;
  }
}
@media (max-width: 800px) {
  .fv__inner .fv__contents-list {
    max-width: 400px;
    flex-direction: column;
    font-size: 1.2rem;
  }
}
.fv__inner .fv__contents-list .fv__contents-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 264px;
  height: 264px;
  background: url(../images/fv__contents-item-bg.png) no-repeat center center/cover;
}
@media (max-width: 1186px) {
  .fv__inner .fv__contents-list .fv__contents-item {
    width: 240px;
    height: 240px;
  }
  .fv__inner .fv__contents-list .fv__contents-item:not(:first-child) {
    margin-left: -40px;
  }
}
@media (max-width: 800px) {
  .fv__inner .fv__contents-list .fv__contents-item:nth-child(odd) {
    margin-inline: 0 auto;
  }
  .fv__inner .fv__contents-list .fv__contents-item:nth-child(even) {
    margin-inline: auto 0;
  }
  .fv__inner .fv__contents-list .fv__contents-item:not(:first-child) {
    margin-top: -130px;
  }
}
.fv .scrolldown {
  position: absolute;
  bottom: 1%;
  right: 3%;
  -webkit-animation: arrowmove 1.2s ease-in-out infinite;
          animation: arrowmove 1.2s ease-in-out infinite;
}
.fv .scrolldown span {
  position: absolute;
  left: -32px;
  bottom: 10px;
  color: #1A4859;
  font-family: "Chathura", sans-serif;
  font-size: 1.5em;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
.fv .scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -3px;
  width: 1px;
  height: 10px;
  background: #1A4859;
  transform: skewX(-31deg);
}
.fv .scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #1A4859;
}

@-webkit-keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}

@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
.fv-spacer {
  height: 100vh;
}

.about {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (max-width: 800px) {
  .about {
    margin-bottom: 100px;
  }
}
.about .section-title {
  margin-bottom: 40px;
}
.about__lead {
  font-size: 0.9rem;
  line-height: 1.6;
}
.about__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.about__contents-title {
  margin-bottom: 16px;
}
.about__contents-title-main {
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(61deg, #64B3F4, #0ED2F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.about__contents-title-sub {
  display: block;
  position: relative;
  padding-left: 1rem;
  color: #333;
  font-size: 0.8rem;
}
.about__contents-title-sub::before {
  display: inline-block;
  position: absolute;
  content: "";
  left: 0;
  top: 0.4em;
  width: 0.7em;
  height: 0.7em;
  background-color: #333;
}
.about__contents-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
}
.about__contents-list .about__contents-item {
  width: 80px;
}
.about__contents-list .about__contents-item .about__contents-image {
  width: 100%;
  height: 80px;
  border: 2px solid #2BC0E4;
  border-radius: 50%;
}
.about__contents-list .about__contents-item .about__contents-image img {
  width: 100%;
  padding: 16px;
}
.about__contents-list .about__contents-item .p20 img {
  padding: 20px;
}
.about__contents-list .about__contents-item .p22-18 img {
  padding: 22px 18px 18px 22px;
}
.about__contents-list .about__contents-item .about__contents-label {
  margin-top: 8px;
  text-align: center;
}

.service {
  padding-block: 180px 220px;
  background-color: #1A4859;
  -webkit-clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
          clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
  color: #fff;
}
@media (max-width: 1186px) {
  .service {
    padding-block: 160px 180px;
    -webkit-clip-path: polygon(0 8%, 100% 0, 100% 92%, 0% 100%);
            clip-path: polygon(0 8%, 100% 0, 100% 92%, 0% 100%);
  }
}
@media (max-width: 800px) {
  .service {
    padding: 80px 16px 100px;
    -webkit-clip-path: polygon(0 4%, 100% 0, 100% 96%, 0% 100%);
            clip-path: polygon(0 4%, 100% 0, 100% 96%, 0% 100%);
  }
}
.service .section-title {
  margin-bottom: 64px;
}
.service .section-title__main, .service .section-title__sub {
  color: #fff;
}
.service-list {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin-inline: auto;
}
@media (max-width: 1186px) {
  .service-list {
    flex-direction: column;
    gap: 40px;
    padding-inline: 16px;
  }
}
.service-list__item {
  width: 30%;
  margin-inline: auto;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
}
@media (max-width: 1186px) {
  .service-list__item {
    width: 100%;
    max-width: 500px;
  }
}
.service-list__item .service-list__number {
  font-family: "Chathura", sans-serif;
  font-size: 6rem;
  line-height: 0.5;
  text-align: center;
  background: linear-gradient(61deg, #64B3F4, #0ED2F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.service-list__item .service-list__label {
  margin-top: 8px;
  color: #333;
  text-align: center;
}
.service-list__item .service-list__image {
  height: 130px;
  margin-block: 32px;
}
.service-list__item .service-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service-list__item .service-list__description {
  color: #333;
  line-height: 1.6;
}
.service-list__item .service-list__description-mb1rem {
  margin-bottom: 1rem;
}

.works {
  margin-block: 64px 180px;
}
@media (max-width: 1186px) {
  .works {
    margin-bottom: 100px;
  }
}
.works .section-title {
  margin-bottom: 64px;
}
.works__container {
  position: relative;
}
@media (max-width: 1186px) {
  .works__container {
    width: 80%;
    margin-inline: auto;
  }
}
@media (max-width: 800px) {
  .works__container {
    width: 90%;
  }
}
.works__container .works-swiper {
  max-width: 1000px;
  margin-inline: auto;
}
.works__container .works-swiper .works__slide {
  padding-block: 45px;
  background: #EAECC6;
}
.works__container .works-swiper .works__slide .works__heading {
  position: relative;
  margin-left: 28px;
  padding-left: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.works__container .works-swiper .works__slide .works__heading::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 24px;
  background: #1A4859;
}
.works__container .works-swiper .works__slide-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 367px;
  margin-top: 32px;
}
@media (max-width: 1186px) {
  .works__container .works-swiper .works__slide-inner {
    flex-direction: column;
    gap: 32px;
    height: auto;
  }
}
.works__container .works-swiper .works__slide-inner .works__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 55%;
  max-width: 485px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (max-width: 1186px) {
  .works__container .works-swiper .works__slide-inner .works__text {
    width: 80%;
    padding: 32px 16px;
  }
}
.works__container .works-swiper .works__slide-inner .works__text .works__info {
  height: 100%;
}
.works__container .works-swiper .works__slide-inner .works__text .works__info-item {
  display: flex;
  gap: 30px;
  margin-bottom: 24px;
}
.works__container .works-swiper .works__slide-inner .works__text .works__info-item dt {
  white-space: nowrap;
}
.works__container .works-swiper .works__slide-inner .works__text .works__link {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 24px;
  border: 2px solid #2BC0E4;
  border-radius: 12px;
  color: #2BC0E4;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .works__container .works-swiper .works__slide-inner .works__text .works__link {
    padding: 8px;
  }
}
.works__container .works-swiper .works__slide-inner .works__text .works__link .material-symbols-outlined {
  margin-left: 8px;
  font-size: 1.25rem;
  vertical-align: text-bottom;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  .works__container .works-swiper .works__slide-inner .works__text .works__link .material-symbols-outlined {
    margin-left: 4px;
  }
}
.works__container .works-swiper .works__slide-inner .works__text .works__link:hover {
  background: linear-gradient(61deg, #64B3F4, #0ED2F7);
  color: #fff;
}
.works__container .works-swiper .works__slide-inner .works__image {
  width: 45%;
  max-width: 400px;
}
.works__container .works-swiper .works__slide-inner .works__image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.works__container .swiper-pagination {
  bottom: -45px !important;
}
@media (max-width: 800px) {
  .works__container .swiper-pagination {
    bottom: -16px !important;
  }
}
.works__container .swiper-pagination .swiper-pagination-bullet {
  background: #686d74;
}
.works__container .swiper-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(61deg, #64B3F4, #0ED2F7);
}
.works__container .swiper-button-wrapper {
  position: relative;
  top: 262px;
  max-width: 1000px;
  margin-inline: auto;
}
@media (max-width: 1186px) {
  .works__container .swiper-button-wrapper {
    top: 329px;
  }
}
.works__container .swiper-button-wrapper .swiper-button-prev {
  left: -40px;
  color: #1A4859;
  font-size: 20px;
}
@media (max-width: 800px) {
  .works__container .swiper-button-wrapper .swiper-button-prev {
    left: 0;
  }
}
.works__container .swiper-button-wrapper .swiper-button-prev::after {
  font-size: 20px;
}
.works__container .swiper-button-wrapper .swiper-button-next {
  right: -40px;
  color: #1A4859;
  font-size: 20px;
}
@media (max-width: 800px) {
  .works__container .swiper-button-wrapper .swiper-button-next {
    right: 0;
  }
}
.works__container .swiper-button-wrapper .swiper-button-next::after {
  font-size: 20px;
}

.contact {
  position: relative;
  background-color: #1A4859;
  padding: 120px 20px 120px;
  -webkit-clip-path: ellipse(80% 100% at 50% 100%);
          clip-path: ellipse(80% 100% at 50% 100%);
  color: #fff;
}
@media (max-width: 1186px) {
  .contact {
    -webkit-clip-path: ellipse(100% 100% at 50% 100%);
            clip-path: ellipse(100% 100% at 50% 100%);
  }
}
@media (max-width: 800px) {
  .contact {
    -webkit-clip-path: ellipse(150% 100% at 50% 100%);
            clip-path: ellipse(150% 100% at 50% 100%);
  }
}
@media (max-width: 500px) {
  .contact {
    padding-top: 80px;
    -webkit-clip-path: ellipse(180% 100% at 50% 100%);
            clip-path: ellipse(180% 100% at 50% 100%);
  }
}
.contact .section-title__main, .contact .section-title__sub {
  color: #fff;
}
.contact__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 54px auto;
  line-height: 1.6;
}
.contact__form {
  width: 100%;
  max-width: 608px;
  margin-inline: auto;
  padding: 64px;
  border-radius: 12px;
  background: #fff;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 800px) {
  .contact__form {
    padding: 64px 16px;
  }
}
.contact__form .form__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  font-weight: 600;
}
.contact__form .form__item .required {
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 4px;
  background: linear-gradient(61deg, #64B3F4, #0ED2F7);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.contact__form .form__item input,
.contact__form .form__item textarea {
  margin-top: 8px;
  padding: 14px 18px;
  border: 1px solid #333;
  border-radius: 8px;
}
.contact__form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact__form .form__button {
  text-align: center;
}
.contact__form .form__button button {
  margin-top: 24px;
  padding: 18px 56px;
  border-radius: 12px;
  background: linear-gradient(61deg, #64B3F4, #0ED2F7);
  color: #fff;
  font-weight: 600;
  box-shadow: 2px 8px 8px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: all 0.3s;
}
.contact__form .form__button button span {
  margin-left: 24px;
  font-size: 1.25rem;
  vertical-align: text-bottom;
}
.contact__form .form__button button:hover {
  box-shadow: none;
  transform: translateY(2px);
}
.contact__form .form__button button:active {
  box-shadow: none;
  transform: translateY(4px);
}
.contact .field-errors li {
  color: red;
}

.thanks-page {
  padding-block: 20vh;
  background: #1A4859;
}
.thanks-page .thanks__inner {
  padding: 100px 24px;
  background: #EAECC6;
  text-align: center;
}
.thanks-page .thanks__inner .thanks-title {
  font-size: 40px;
}
@media (max-width: 800px) {
  .thanks-page .thanks__inner .thanks-title {
    font-size: 32px;
  }
}
.thanks-page .thanks__inner .thanks-image {
  max-width: 300px;
  margin: 32px auto;
}
.thanks-page .thanks__inner .thanks-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.thanks-page .thanks__inner .thanks-message {
  margin-bottom: 32px;
}
.thanks-page .thanks__inner .thanks__button {
  text-decoration: underline;
  color: #2BC0E4;
  transition: all 0.8s ease;
}
.thanks-page .thanks__inner .thanks__button:hover {
  opacity: 0.6;
}

.footer {
  text-align: center;
}
.footer__copy {
  padding-block: 24px;
  font-size: 0.8rem;
}
/*# sourceMappingURL=style.css.map */