@charset "UTF-8";
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* リセット用リスト */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5要素をブロック表示に */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* リスト装飾・引用符除去 */
ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* テーブルの境界線除去 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 全要素に box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* フォーム要素のフォント継承 */
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
  outline: none;
}

/* 画像の応答性 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  font-size: 1rem;
  box-sizing: border-box;
  scroll-padding-top: 80px;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2b2b2b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  padding-top: 80px;
}

a {
  color: #2b2b2b;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
.container--xs {
  max-width: 748px;
}
.container--sm {
  max-width: 1048px;
}
.container--md {
  max-width: 1348px;
}
.container--lg {
  max-width: 1648px;
}

.u-show-mobile {
  display: none !important;
}
@media (max-width: 768px) {
  .u-show-mobile {
    display: block !important;
  }
}

.u-hide-mobile {
  display: block !important;
}
@media (max-width: 768px) {
  .u-hide-mobile {
    display: none !important;
  }
}

.header {
  position: fixed;
  top: 0;
  z-index: 1200;
  background-color: #ffffff;
  width: 100%;
  display: flex;
  align-items: center;
  box-shadow: 3px 5px 10px rgba(43, 43, 43, 0.1);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  height: 80px;
  position: relative;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo-img {
  width: 150px;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .header__menu {
    display: none;
  }
  .header__menu.is-open {
    display: block;
    position: absolute;
    z-index: 1000;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
    background-color: #ffffff;
    opacity: 1;
    visibility: visible;
    padding: 80px 24px;
    transition: all 0.3s ease;
  }
}
.header__nav {
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .header__nav {
    margin-right: 0;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .header__nav-list {
    flex-direction: column;
    margin-bottom: 4rem;
    gap: 2rem;
  }
}
.header__nav-item:not(:last-child) {
  margin-right: 8px;
}
@media (max-width: 768px) {
  .header__nav-item:not(:last-child) {
    margin-right: 0;
  }
}
.header__nav-link {
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.header__nav-link:hover {
  color: #0e8ec6;
  text-decoration: underline;
}
.header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 50px;
  background: linear-gradient(to right, #18adef, #6ed9f9);
  color: #ffffff;
}
.header__button::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 6px;
  margin-left: 1rem;
  background: url("../img/icon-arrow-white.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .header__button {
    width: 100%;
  }
}
.header__hamburger {
  all: unset;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1100;
}
@media (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #2b2b2b;
  transition: 0.3s;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.fv {
  position: relative;
  margin-top: 2rem;
}
@media (max-width: 576px) {
  .fv {
    margin-top: 0;
  }
}
.fv__inner {
  width: 100%;
  max-width: 1348px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 1200px) {
  .fv__inner {
    flex-direction: column-reverse;
  }
}
@media (max-width: 576px) {
  .fv__inner {
    padding: 0;
  }
}
.fv__content {
  display: flex;
  align-items: center;
  height: 200px;
  animation: fade-in 1.5s ease forwards;
}
@media (max-width: 576px) {
  .fv__content {
    animation: none;
    display: block;
    height: auto;
    width: 100%;
    padding: 1rem 16px 2rem;
    background: linear-gradient(to right, #18adef 0%, #18adef 25%, #6ed9f9 75%, #6ed9f9 100%);
  }
}
.fv__catchphrase {
  font-size: 2rem;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-right: 2rem;
}
.fv__subtext {
  font-size: 0.75rem;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0.5rem;
}
@media (max-width: 576px) {
  .fv__subtext {
    font-size: 0.625rem;
  }
}
.fv__tagline {
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 700;
}
@media (max-width: 576px) {
  .fv__tagline {
    font-size: 0.75rem;
  }
}
.fv__visuals {
  width: 60%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media (max-width: 1200px) {
  .fv__visuals {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .fv__visuals {
    margin-bottom: 0;
  }
}
.fv__visual {
  width: 32%;
  aspect-ratio: 1/2;
  overflow: hidden;
  box-shadow: 1px 5px 10px rgba(43, 43, 43, 0.3);
  opacity: 0;
  animation: fade-in 1.5s ease forwards;
}
@media (max-width: 1200px) {
  .fv__visual {
    aspect-ratio: 1;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 576px) {
  .fv__visual {
    aspect-ratio: 1/2;
    width: 33%;
    box-shadow: none;
  }
}
.fv__visual:nth-of-type(1) {
  animation-delay: 0.1s;
}
.fv__visual:nth-of-type(2) {
  animation-delay: 0.5s;
}
.fv__visual:nth-of-type(3) {
  animation-delay: 0.9s;
}
.fv__visual:nth-child(2n) {
  margin-top: 4rem;
}
.fv__visual:nth-child(2n+1) {
  margin-bottom: 4rem;
}
.fv__visual-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.fv::after {
  position: absolute;
  content: "";
  display: inline-block;
  z-index: -1;
  width: 100%;
  height: 200px;
  bottom: 0;
  background: linear-gradient(to right, #18adef 0%, #18adef 25%, #6ed9f9 75%, #6ed9f9 100%);
}
@media (max-width: 576px) {
  .fv::after {
    display: none;
  }
}

.footer {
  padding: 4rem 0;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer__content {
    display: block;
  }
}
.footer__brand {
  width: 20%;
}
@media (max-width: 768px) {
  .footer__brand {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer__logo-img {
  width: 160px;
}
.footer__address-line {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .footer__address-line {
    text-align: center;
  }
}
.footer__nav-list {
  display: flex;
}
@media (max-width: 768px) {
  .footer__nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer__nav-item:not(:last-child) {
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .footer__nav-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
.footer__nav-link {
  padding: 0.5rem;
  font-size: 0.875rem;
}
.footer__contact {
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
}
.footer__copyright {
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
  display: block;
  text-align: center;
}

.breadcrumb {
  padding: 1rem 0;
}
.breadcrumb-separator {
  display: inline-block;
  margin: 0 1rem;
}

.breadcrumb,
.breadcrumb * {
  font-size: 0.875rem;
}

.card-work__category {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  z-index: 1;
  padding: 0.25rem 0.5rem;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(to right, #18adef, #6ed9f9);
  border-radius: 50vh;
}
.card-work__thumb {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
}
.card-work__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.card-work__info {
  padding: 1rem;
}
.card-work__info > .card-work__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
}
.card-work__info > .card-work__desc {
  font-size: 0.875rem;
}

.cta {
  padding: 2rem 0 4rem;
  background-image: linear-gradient(to right, rgba(24, 173, 239, 0.9), rgba(110, 217, 249, 0.9)), url("../img/cta-bg.jpg");
  background-size: cover;
  background-position: center;
}
.cta__title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.cta__desc {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
.cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 400px;
  height: 80px;
  background-color: #ffffff;
  color: #18adef;
  box-shadow: 3px 5px 10px rgba(112, 112, 112, 0.2);
}
.cta__button::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 7px;
  margin-left: 1rem;
  background: url("../img/icon-arrow-primary.svg") no-repeat center/contain;
}
@media (max-width: 992px) {
  .cta__button {
    width: 100%;
  }
}

.logo-carousel {
  overflow: hidden;
  margin-top: 4rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .logo-carousel {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
}
.logo-carousel__track {
  display: flex;
  animation: scroll-logos 40s linear infinite;
}
@media (max-width: 768px) {
  .logo-carousel__track {
    animation: scroll-logos 15s linear infinite;
  }
}
.logo-carousel__item {
  flex: 0 0 auto;
  margin-right: 4rem;
}
.logo-carousel__item img {
  display: block;
  max-height: 30px;
  height: auto;
  width: auto;
}

.section-header {
  position: relative;
  height: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.section-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(24, 173, 239, 0.85), rgba(110, 217, 249, 0.85));
  z-index: 1;
  pointer-events: none;
}
.section-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.section-header__title {
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.section-header__title-en {
  display: block;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.section-header__title-ja {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}

.works-list {
  padding: 2rem 0;
}
.works-list__items {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5%;
}
@media (max-width: 768px) {
  .works-list__items {
    display: block;
  }
}
.works-list__item {
  position: relative;
  width: 31%;
  box-shadow: 3px 5px 10px rgba(112, 112, 112, 0.2);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .works-list__item {
    width: 100%;
  }
}

.service {
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .service {
    margin-bottom: 4rem;
  }
}
.service__title {
  margin-bottom: 2rem;
}
.service__title-en {
  display: block;
  color: #18adef;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.service__title-ja {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}
.service__list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .service__list {
    display: block;
  }
}
.service__item {
  width: 32%;
}
@media (max-width: 768px) {
  .service__item {
    width: 100%;
  }
  .service__item:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.service__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
}
.service__item-title--business::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  height: 30px;
  background: url("../img/icon-business.png") no-repeat center/contain;
  margin-right: 0.5rem;
}
.service__item-title--offshore::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  height: 30px;
  background: url("../img/icon-offshore.png") no-repeat center/contain;
  margin-right: 0.5rem;
}
.service__item-title--dx::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  height: 30px;
  background: url("../img/icon-dx.png") no-repeat center/contain;
  margin-right: 0.5rem;
}
.service__image {
  aspect-ratio: 2/1;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}
.service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about {
  position: relative;
  padding: 2rem 0 4rem;
  margin-bottom: 6rem;
  background-image: linear-gradient(to right, #18adef 0%, #18adef 35%, rgba(110, 217, 249, 0.9) 80%, rgba(110, 217, 249, 0.9) 100%), url("../img/about-bg.jpg");
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .about {
    background: linear-gradient(to right, #18adef, #6ed9f9);
  }
}
.about__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .about__inner {
    display: block;
  }
}
.about__inner::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 1;
  opacity: 0.1;
  width: 260px;
  height: 245px;
  left: 0;
  top: -2rem;
  background: url("../img/logo-impia-icon-white.svg") no-repeat center/contain;
}
.about__content {
  width: 35%;
}
@media (max-width: 768px) {
  .about__content {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.about__title {
  margin-bottom: 2rem;
  color: #ffffff;
}
.about__title-en {
  display: block;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.about__title-ja {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}
.about__catchcopy {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.about__desc {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
}
.about__media {
  width: 60%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .about__media {
    width: 100%;
  }
}
.about__media-img {
  aspect-ratio: 2/1;
  width: 100%;
}

.works {
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .works {
    margin-bottom: 6rem;
  }
}
.works__title {
  margin-bottom: 2rem;
}
.works__title-en {
  display: block;
  color: #18adef;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.works__title-ja {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}
.works__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5%;
}
@media (max-width: 768px) {
  .works__list {
    display: block;
  }
}
.works__item {
  position: relative;
  width: 31%;
  box-shadow: 3px 5px 10px rgba(112, 112, 112, 0.2);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .works__item {
    width: 100%;
  }
}
.works__button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 400px;
  height: 80px;
  background: linear-gradient(to right, #18adef, #6ed9f9);
  color: #ffffff;
  box-shadow: 3px 5px 10px rgba(112, 112, 112, 0.2);
}
.works__button::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 7px;
  margin-left: 1rem;
  background: url("../img/icon-arrow-white.svg") no-repeat center/contain;
}
@media (max-width: 992px) {
  .works__button {
    width: 100%;
  }
}

.news {
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .news {
    margin-bottom: 6rem;
  }
}
.news__inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .news__inner {
    display: block;
  }
}
.news__title {
  margin-bottom: 2rem;
}
.news__title-en {
  display: block;
  color: #18adef;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.news__title-ja {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}
.news__list {
  width: 70%;
}
@media (max-width: 768px) {
  .news__list {
    width: 100%;
  }
}
.news__item {
  display: flex;
  padding: 2rem 0;
  border-top: #ecf0f1 1px solid;
}
.news__item:last-child {
  border-bottom: #ecf0f1 1px solid;
}
.news__date {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  margin-right: 1rem;
}

.elementor .wpcf7 input[name=your-name],
.elementor .wpcf7 input[name=your-email],
.elementor .wpcf7 input[name=your-subject],
.elementor .wpcf7 input[name=inc-name],
.elementor .wpcf7 input[name=your-tel] {
  width: 100%;
  height: 35px !important;
}

.elementor .wpcf7 textarea[name=your-message] {
  width: 100%;
  height: 200px !important;
}

.elementor div.wpcf7 p {
  padding: 20px 20px 0;
  margin: 0;
  font-size: 11px;
}

.elementor div.wpcf7 input, .wpcf7 textarea {
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 14px;
}

.elementor div.wpcf7 textarea {
  width: 97.5%;
  height: 300px;
}

.elementor div.wpcf7 input.wpcf7-submit {
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  width: 200px;
  height: 65px;
  margin: 0 auto;
  display: block;
  border-radius: 5px;
  background: #333;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5), inset 0px 32px 0px -12px #808080;
  border: 1px solid #666;
}

.elementor div.wpcf7 input.wpcf7-submit:hover {
  background: #006080;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5), inset 0px 32px 0px -12px #007ea8;
  border: 1px solid #006080;
}

.elementor .wpcf7 input.wpcf7-submit:active {
  box-shadow: none;
  bottom: -2px;
  position: relative;
}

.elementor .wpcf7 input:focus, .wpcf7 textarea:focus {
  border: 1px solid #009de1;
}

.elementor .wpcf7-captchac {
  border: 1px solid #ccc;
}

/* エラー個所をわかりやすく表示 */
.elementor .wpcf7 .wpcf7-not-valid {
  background: #ffb6c1;
}

.elementor .wpcf7 span.wpcf7-not-valid-tip {
  font-size: 80%;
}

.elementor .wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.elementor .wpcf7 .wpcf7-validation-errors {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.elementor .wpcf7 .wpcf7-mail-sent-ok {
  color: #3A87AD;
  background-color: #D9EDF7;
  border: 1px solid #BCE8F1;
}

/* 必須赤色表示 */
.elementor .wpcf7 .required {
  color: #f00;
}

/* 任意緑色表示 */
.elementor .wpcf7 .any {
  color: #080;
}

/* ページ送り */
.elementor .wpsp-load-more *, .wpsp-load-more *:after, .wpsp-load-more *:before {
  box-sizing: border-box;
}

.elementor .wpsp-load-more {
  text-decoration: none;
}

.elementor .wpsp-load-more {
  margin: 2em 0;
  text-align: center;
}

.elementor .page-numbers current {
  display: inline-block;
  margin-top: 2em;
  padding: 0 0.5em;
  background-color: #18adef;
}

.elementor .wpsp-load-more .page-numbers {
  font-size: 1em;
  line-height: 2.5em;
  display: block;
  float: left;
  padding: 0 25px;
  transition: 400ms ease;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.elementor .page-numbers :hover,
.elementor .page-numbers {
  font-weight: bold;
  color: #ffffff;
  background-color: #18adef;
}

.elementor .page-numbers :hover,
.elementor .wpsp-load-more :hover {
  color: #18adef;
  background-color: transparent;
}

/* ここからページングテスト */
/*wp-pagenavi 17*/
.elementor .wp-pagenavi {
  clear: both;
  text-align: center;
}

.elementor .wp-pagenavi a, .wp-pagenavi span {
  color: #4DD0D5;
  background-color: #FFFFFF;
  padding: 8px 15px;
  margin: 0 2px;
  white-space: nowrap;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  border: thin dotted #4DD0D5;
}

.elementor .wp-pagenavi a:hover {
  color: #fff;
  background-color: #4DD0D5;
}

.elementor .wp-pagenavi span.current {
  color: #fff;
  background-color: #4DD0D5;
}

/* ここからページング */
.elementor .front {
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.elementor .front {
  float: left;
}

.elementor .next {
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.elementor .next {
  float: right;
}

.elementor .pager {
  overflow: hidden;
  width: 200px;
  margin: 0 auto;
}

.elementor .yokonarabe > div {
  float: left;
  width: 50%;
}

/* ここからLP */
.elementor .text-background-test06 {
   font-size: 5rem;
  font-weight: 600;
  line-height: 1.4em;
}

.elementor .text-background-test06 span {
  background: linear-gradient(transparent 0%, #ffffff 0%);
  padding: 5px;
}

.elementor .text-background-test07 {
   font-size: 5rem;
  font-weight: 600;
  line-height: 1.4em;
}

.elementor .text-background-test07 span {
  background: linear-gradient(transparent 0%, #000000 0%);
  padding: 5px;
}

.elementor .under {
  background: linear-gradient(transparent 50%, #FFF23B 50%);
}

.elementor .underw {
  background: linear-gradient(transparent 50%, #FFFFFF 50%);
}

.elementor img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

.elementor .text-background-backwhite {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4em;
  padding: 5px;
  background: #FFFFFF;
}

/* 画像の横スクロール */
/*===========
.scroll-box
===========*/
.elementor .scroll-box {
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.elementor .scroll-box div img {
  max-width: 100%;
  min-width: 600px;
  vertical-align: top;
}

/*===========
scrollbar
===========*/
/*スクロールバー全体の高さ*/
.elementor .scroll-box::-webkit-scrollbar {
  height: 4px;
}

/*スクロールバー全体の背景*/
.elementor .scroll-box::-webkit-scrollbar-track {
  background: #eee;
}

/*スクロールバーの動く部分*/
.elementor .scroll-box::-webkit-scrollbar-thumb {
  background: #aaa;
  border: none;
}

/*スクロールバーの動く部分のホバー（マウスオーバー）*/
.elementor .scroll-box::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* LPコンタクトフォーム */
/* template02 */
.elementor .form__wrap {
  width: 100%;
  max-width: 900px; /*フォームの最大幅*/
  margin-right: auto;
  margin-left: auto;
}

.elementor .wpcf7 .template02 {
  color: #666;
   font-size: 16px;
}

.elementor .wpcf7 .template02 a {
  margin: 0;
  padding: 0;
  text-decoration: underline;
  color: inherit;
  transition: opacity 0.25s;
}

.elementor .wpcf7 .template02 a:hover {
  opacity: 0.5;
  transition: opacity 0.25s;
}

.elementor .wpcf7 .template02 div.form__row {
  display: flex;
  margin: 0;
  padding: 0;
  border-top: 1px solid #efe8e5;
}

.elementor .wpcf7 .template02 div.form__row.row-privacy,
.elementor .wpcf7 .template02 div.form__row.row-submit {
  display: block;
  border-top: 0;
  margin-top: 1em;
  text-align: center;
}

.elementor .wpcf7 .template02 p.form__label,
.elementor .wpcf7 .template02 p.form__body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.elementor .wpcf7 .template02 p.form__label {
  width: 36%;
  padding: 1.5em 1em;
}

.elementor .wpcf7 .template02 p.form__body {
  width: 64%;
  padding: 1.5em 1em;
}

.elementor .wpcf7 .template02 div.form__row.row-privacy .form__body,
.elementor .wpcf7 .template02 div.form__row.row-submit .form__body {
  width: 100%;
}

.elementor .wpcf7 .template02 p.form__label label {
  position: relative;
  margin: 0;
  padding: 0;
  padding-left: 44px;
  box-sizing: border-box;
}

.elementor .wpcf7 .template02 p.form__label label::after {
  content: "任意";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  margin: 0;
  padding: 0 5px;
  border-radius: 2px;
  background-color: #85AAFF;
  color: #ffffff;
  font-size: 11px;
  text-align: center;
  box-sizing: border-box;
}

.elementor .wpcf7 .template02 p.form__label.is-required label {
  position: relative;
}

.elementor .wpcf7 .template02 p.form__label.is-required label::after {
  content: "必須";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  padding: 0 5px;
  background-color: #FF8585;
  color: #fff;
  font-size: 11px;
  text-align: center;
}

/* テキストフィールド */
.elementor .wpcf7 .template02 input[type=text],
.elementor .wpcf7 .template02 input[type=tel],
.elementor .wpcf7 .template02 input[type=email],
.elementor .wpcf7 .template02 textarea {
  width: 100%;
  margin: 0;
  padding: 0.5em 1em;
  border: 1px solid #c4bbb8;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fefefe;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: 16px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* テキストフィールド placeholder */
.elementor .wpcf7 .template01 input[type=text]::-moz-placeholder, .elementor .wpcf7 .template01 input[type=tel]::-moz-placeholder, .elementor .wpcf7 .template01 input[type=email]::-moz-placeholder, .elementor .wpcf7 .template01 input[type=url]::-moz-placeholder, .elementor .wpcf7 .template01 input[type=date]::-moz-placeholder, .elementor .wpcf7 .template01 input[type=number]::-moz-placeholder, .elementor .wpcf7 .template01 textarea::-moz-placeholder {
  color: #ccc;
}
.elementor .wpcf7 .template01 input[type=text]::placeholder,
.elementor .wpcf7 .template01 input[type=tel]::placeholder,
.elementor .wpcf7 .template01 input[type=email]::placeholder,
.elementor .wpcf7 .template01 input[type=url]::placeholder,
.elementor .wpcf7 .template01 input[type=date]::placeholder,
.elementor .wpcf7 .template01 input[type=number]::placeholder,
.elementor .wpcf7 .template01 textarea::placeholder {
  color: #ccc;
}

.elementor .wpcf7 .template01 input[type=text]:-ms-input-placeholder,
.elementor .wpcf7 .template01 input[type=tel]:-ms-input-placeholder,
.elementor .wpcf7 .template01 input[type=email]:-ms-input-placeholder,
.elementor .wpcf7 .template01 input[type=url]:-ms-input-placeholder,
.elementor .wpcf7 .template01 input[type=date]:-ms-input-placeholder,
.elementor .wpcf7 .template01 input[type=number]:-ms-input-placeholder,
.elementor .wpcf7 .template01 textarea:-ms-input-placeholder {
  color: #ccc;
}

.elementor .wpcf7 .template01 input[type=text]::-ms-input-placeholder,
.elementor .wpcf7 .template01 input[type=tel]::-ms-input-placeholder,
.elementor .wpcf7 .template01 input[type=email]::-ms-input-placeholder,
.elementor .wpcf7 .template01 input[type=url]::-ms-input-placeholder,
.elementor .wpcf7 .template01 input[type=date]::-ms-input-placeholder,
.elementor .wpcf7 .template01 input[type=number]::-ms-input-placeholder,
.elementor .wpcf7 .template01 textarea::-ms-input-placeholder {
  color: #ccc;
}

/* テキストフィールド フォーカス時 */
.elementor .wpcf7 .template01 input[type=text]:focus,
.elementor .wpcf7 .template01 input[type=tel]:focus,
.elementor .wpcf7 .template01 input[type=email]:focus,
.elementor .wpcf7 .template01 input[type=url]:focus,
.elementor .wpcf7 .template01 input[type=date]:focus,
.elementor .wpcf7 .template01 input[type=number]:focus,
.elementor .wpcf7 .template01 textarea:focus {
  outline: 0;
  border: 1px #FF8585 solid;
  box-shadow: 0 0 2px 2px rgba(133, 112, 92, 0.5);
}

/* チェックボックス */
.elementor .wpcf7 .template02 input[type=checkbox] {
  display: none;
}

.elementor .wpcf7 .template02 input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

.elementor .wpcf7 .template02 input[type=checkbox] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.24em;
  height: 1.24em;
  border: 1px solid #c4bbb8;
  border-radius: 4px;
  background-color: #fefefe;
  box-sizing: border-box;
}

.elementor .wpcf7 .template02 input[type=checkbox] + span::after {
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  top: 0.15em;
  left: 0.44em;
  width: 0.4em;
  height: 0.8em;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  box-sizing: border-box;
  transform: rotate(40deg);
  transition: opacity 0.25s ease;
}

.elementor .wpcf7 .template02 input[type=checkbox]:checked + span {
  color: #FF8585;
  transition: all 0.25s ease;
}

.elementor .wpcf7 .template02 input[type=checkbox]:checked + span::before {
  opacity: 1;
  border: 1px solid #FF8585;
  box-shadow: 0 0 2px 2px rgba(133, 112, 92, 0.5);
  background-color: #FF8585;
  transition: opacity 0.25s ease;
}

.elementor .wpcf7 .template02 input[type=checkbox]:checked + span::after {
  opacity: 1;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: opacity 0.25s ease;
}

/* ラジオボタン */
.elementor .wpcf7 .template02 input[type=radio] {
  display: none;
}

.elementor .wpcf7 .template02 input[type=radio] + span {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 1em 0 1.8em;
  font-size: inherit;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

.elementor .wpcf7 .template02 input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #c4bbb8;
  border-radius: 50%;
  background-color: #fefefe;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

.elementor .wpcf7 .template02 input[type=radio] + span::after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

.elementor .wpcf7 .template02 input[type=radio]:checked + span {
  color: #FF8585;
}

.elementor .wpcf7 .template02 input[type=radio]:checked + span::before {
  box-shadow: 0 0 2px 2px rgba(133, 112, 92, 0.5);
}

.elementor .wpcf7 .template02 input[type=radio]:checked + span::after {
  opacity: 1;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background-color: #FF8585;
  border-radius: 50%;
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

/* セレクト */
.elementor .wpcf7 .template02 span.select-wrap {
  position: relative;
  width: 250px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.elementor .wpcf7 .template02 select {
  cursor: pointer;
  width: 250px;
  max-width: 100%;
  margin: 0;
  padding: 0.5em 3.5em 0.5em 1em;
  border: 1px solid #c4bbb8;
  border-radius: 4px;
  box-shadow: none;
  background-color: #fefefe;
  background-image: linear-gradient(90deg, #d4cbb2, #d4cbb2);
  background-position: 100% 0;
  background-size: 2em 3.5em;
  background-repeat: no-repeat;
  color: inherit;
  font-size: inherit;
  line-height: 1;
  box-sizing: border-box;
  transition: border-color 0.2s ease, outline 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.elementor .wpcf7 .template02 select::-ms-expand {
  display: none;
}

.elementor .wpcf7 .template02 span.select-wrap::after {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  width: 0.6em;
  height: 0.6em;
  top: 50%;
  right: 0.8em;
  margin-top: -3px;
  border-bottom: 1px solid #FF8585;
  border-right: 1px solid #FF8585;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: 50% 0;
  box-sizing: border-box;
}

.elementor .wpcf7 .template02 select:focus {
  outline: 0;
  border: 1px #FF8585 solid;
  box-shadow: 0 0 2px 2px rgba(133, 112, 92, 0.5);
}

.elementor .wpcf7 .template02 span.select-wrap:focus-within::after {
  border-bottom: 1px solid #FF8585;
  border-right: 1px solid #FF8585;
}

/* 送信ボタン */
.elementor .wpcf7 .template02 .submit-btn {
  position: relative;
   width: 320px;
  height: 65px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

.elementor .wpcf7 .template02 input[type=submit] {
  cursor: pointer;
  width: 320px;
  max-width: 100%;
  padding: 18px;
  box-shadow: none;
  border: 1px #18ADEF solid;
  border-radius: 8px;
  background-color: #18ADEF;
  color: #fff;
  font-size: 18px;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.25s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.elementor .wpcf7 .template02 input[type=submit]:disabled {
  cursor: not-allowed;
  box-shadow: none !important;
  border: 1px solid #f8f8f8 !important;
  background-color: #f8f8f8 !important;
  color: #929292 !important;
}

.elementor .wpcf7 .template02 input[type=submit]:hover {
  box-shadow: 0 0 2px 2px rgba(133, 112, 92, 0.5);
  background-color: #fff;
  color: #FF8585;
  transition: all 0.25s;
}

.elementor .wpcf7 .template02 input[type=submit]:focus {
  outline: 0;
  border: 1px #FF8585 solid;
  box-shadow: 0 0 2px 2px rgba(133, 112, 92, 0.5);
}

@media only screen and (max-width: 768px) {
  .elementor .wpcf7 .template02 div.form__row {
    display: block;
  }
  .elementor .wpcf7 .template02 p.form__label {
    width: 100%;
    padding: 1.5em 1em 0;
  }
  .elementor .wpcf7 .template02 p.form__body {
    width: 100%;
    padding: 1em 1em 1.5em;
  }
}
/* プレスホルダー色調整 */
.elementor ::-moz-placeholder {
  color: #C4C4C4;
  opacity: 1;
}
.elementor ::placeholder {
  color: #C4C4C4;
  opacity: 1;
}

/*PCでは無効（改行しない）*/
.elementor .sma {
  display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width: 768px) {
  .elementor .sma {
    display: block;
  }
}
/* 続きを読む1 */
.elementor .readmore-content {
  position: relative;
  overflow: hidden;
  /*以下お好み*/
  /*高さの初期値*/
  height: 100px;
}

.elementor .readmore-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
  height: 50px;
  background: linear-gradient(top, rgba(239, 239, 239, 0) 0%, rgba(239, 239, 239, 0.8) 50%, rgba(239, 239, 239, 0.8) 50%, #EFEFEF 100%);
}

/* ここからフローティングバナー1 */
.elementor .floating-banner {
  position: fixed; /* 追従 */
  z-index: 99999; /* 他の要素の下に隠れないように */
  top: 740px; /* バナーの上下の位置 */
  right: 20px;
}

.elementor .pc {
  width: 120px; /* バナーの横幅を指定 */
}

.elementor .floating-banner:hover {
  opacity: 0.8; /* ホバーで少し透過 */
}

@media screen and (max-width: 767px) { /* タブレット用のブレイクポイントを指定 */
  .elementor .pc {
    display: none; /* タブレットサイズ以下でPC用のバナーを非表示に */
  }
}
/* ここからフローティングバナー2 */
.elementor #floatingmenu {
  display: block;
  width: 100%;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 9999;
  text-align: center;
  padding: 0 auto;
}

/*marker*/
.elementor .marker-1 {
  background: linear-gradient(transparent 60%, #ffefd5 0);
  color: black;
}

.elementor .marker-2 {
  background: linear-gradient(transparent 60%, #ffe4e1 0);
  color: black;
}

.page-company-mission {
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .page-company-mission {
    padding: 2rem 0;
  }
}
.page-company-mission__title {
  margin-bottom: 2rem;
}
.page-company-mission__title-en {
  display: block;
  color: #18adef;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.page-company-mission__title-ja {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}
.page-company-mission__body {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .page-company-mission__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.page-company-mission__text {
  width: 60%;
}
@media (max-width: 768px) {
  .page-company-mission__text {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
}
.page-company-mission__catchcopy {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.page-company-mission__media {
  width: 250px;
}
@media (max-width: 768px) {
  .page-company-mission__media {
    max-width: 240px;
    width: 100%;
  }
}
.page-company-mission__media img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
}
.page-company-mission__strapline-catchphrase {
  font-size: 2rem;
  text-align: end;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background-image: linear-gradient(to right, #18adef, #6ed9f9);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.page-company-mission__strapline-subtext {
  font-size: 0.875rem;
  text-align: end;
  font-family: "Roboto", sans-serif;
  background-image: linear-gradient(to right, #18adef, #6ed9f9);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.page-company-mission__desc {
  font-weight: 500;
}

.page-company-vision {
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .page-company-vision {
    padding: 2rem 0;
  }
}
.page-company-vision__title {
  margin-bottom: 2rem;
}
.page-company-vision__title-en {
  display: block;
  color: #18adef;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.page-company-vision__title-ja {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}
.page-company-vision__body {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .page-company-vision__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.page-company-vision__text {
  width: 60%;
}
@media (max-width: 768px) {
  .page-company-vision__text {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
}
.page-company-vision__catchcopy {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.page-company-vision__media {
  width: 250px;
}
@media (max-width: 768px) {
  .page-company-vision__media {
    max-width: 240px;
    width: 100%;
  }
}
.page-company-vision__media img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
}
.page-company-vision__desc {
  font-weight: 500;
}

.page-company-value {
  position: relative;
  padding: 2rem 0;
}
.page-company-value__title {
  margin-bottom: 2rem;
}
.page-company-value__title-en {
  display: block;
  color: #18adef;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.page-company-value__title-ja {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}
.page-company-value__list {
  margin-bottom: 4rem;
}
.page-company-value__item {
  padding: 1rem 0;
  border-top: 1px solid #ecf0f1;
}
.page-company-value__item-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .page-company-value__item-title {
    font-size: 1.125rem;
  }
}
.page-company-value__item-text {
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-company-value__item-text {
    font-size: 0.875rem;
  }
}
.page-company-value__item:last-child {
  border-bottom: 1px solid #ecf0f1;
}
.page-company-value__media {
  padding: 4rem 24px 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: linear-gradient(to right, rgba(24, 173, 239, 0.85) 0%, rgba(24, 173, 239, 0.85) 25%, rgba(110, 217, 249, 0.85) 75%, rgba(110, 217, 249, 0.85) 100%), url("../img/about-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-company-value__media::before {
  content: "";
  display: block;
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 52px;
  height: 52px;
  background-color: #ffffff;
  z-index: 1;
}
.page-company-value__image {
  width: 100%;
  max-width: 640px;
  margin-bottom: 1rem;
}
.page-company-value__caption {
  text-align: center;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-company-value__caption {
    font-size: 1.125rem;
  }
}

.page-company-info {
  padding: 2rem 0 4rem;
}
.page-company-info__title {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
}
.page-company-info__table {
  width: 100%;
  font-size: 0.875rem;
}
.page-company-info__table tr {
  border-bottom: 1px solid #ecf0f1;
}
.page-company-info__table tr:first-child {
  border-top: 1px solid #ecf0f1;
}
.page-company-info__heading {
  text-align: start;
  padding: 1rem 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .page-company-info__heading {
    display: block;
    padding: 1rem 0 0.5rem;
  }
}
.page-company-info__data {
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .page-company-info__data {
    display: block;
    padding: 0 0 1rem;
  }
}

.contact-form {
  padding: 2rem 0;
}
.contact-form-section__description {
  text-align: center;
  margin-bottom: 2rem;
}
.contact-form__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .contact-form__row {
    display: block;
  }
}
.contact-form__row .wpcf7-form-control-wrap {
  width: 60%;
}
.contact-form__accept {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form__label {
  font-weight: 700;
}
@media (max-width: 768px) {
  .contact-form__label {
    display: block;
    margin-bottom: 0.5rem;
  }
}
.contact-form__required {
  background-color: #18adef;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  margin-right: 1rem;
  border-radius: 4px;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: #ecf0f1;
}
@media (max-width: 768px) {
  .contact-form__input, .contact-form__textarea {
    width: 100%;
  }
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  font-size: 0.875rem;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  font-size: 0.875rem;
}
.contact-form__submit {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form__button {
  color: #ffffff;
  background: linear-gradient(to right, #18adef, #6ed9f9);
  height: 80px;
  max-width: 400px;
  width: 100%;
  font-weight: 700;
  box-shadow: 3px 5px 10px rgba(112, 112, 112, 0.2);
  display: flex;
  align-items: center;
}
.contact-form__note {
  font-size: 0.875rem;
  text-align: center;
  color: #2b2b2b;
}
.contact-form__note-link {
  color: #18adef;
  text-decoration: underline;
}

.page-privacy {
  padding: 2rem 0;
}
.page-privacy__section:not(:last-child) {
  margin-bottom: 2rem;
}
.page-privacy__heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-privacy__definition {
  margin-bottom: 0.5rem;
}
.page-privacy__term {
  font-weight: 700;
}
.page-privacy__item {
  list-style: disc;
  list-style-position: inside;
}

.single-works {
  padding: 2rem 0;
}
.single-works__info {
  margin-bottom: 2rem;
}
.single-works__category {
  font-size: 0.75rem;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(to right, #18adef, #6ed9f9);
  border-radius: 50vh;
}
.single-works__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.single-works__tags {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.single-works__thumbnail {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
}
.single-works__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-works__content {
  font-size: 1rem;
  line-height: 1.8;
}
.single-works__content h2 {
  position: relative;
  padding-left: 1rem;
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.single-works__content h2::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 2rem;
  width: 6px;
  background: linear-gradient(to bottom, #18adef 0%, #18adef 60%, #6ed9f9 60%, #6ed9f9 100%);
}
@media (max-width: 768px) {
  .single-works__content h2 {
    font-size: 1.125rem;
    margin: 1rem 0 0.5rem;
  }
}
.single-works__content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1rem 0;
}
.single-works__content li {
  list-style: disc;
}
.single-works__content p {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .single-works__content p {
    margin-bottom: 0.5rem;
  }
}
.single-works__content a {
  color: #18adef;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .single-works__content a {
    text-decoration: none;
  }
}
.single-works__content ul, .single-works__content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}
.single-works__content ul li, .single-works__content ol li {
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .single-works__content ul li, .single-works__content ol li {
    margin-bottom: 0.25rem;
  }
}
.single-works__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}
@media (max-width: 768px) {
  .single-works__content img {
    margin: 0.5rem auto;
  }
}
.single-works__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.single-works__content table th, .single-works__content table td {
  border: 1px solid #ecf0f1;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .single-works__content table th, .single-works__content table td {
    padding: 0.25rem;
  }
}
.single-works__content table th {
  background-color: #ecf0f1;
}
@media (max-width: 768px) {
  .single-works__content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.single-works__content blockquote {
  margin: 2rem 0;
  padding: 1rem;
  border-left: 4px solid #18adef;
  background: #eff9fe;
}
@media (max-width: 768px) {
  .single-works__content blockquote {
    margin: 1rem 0;
    padding: 0.5rem;
  }
}
.single-works__content pre {
  background: #ecf0f1;
  padding: 0.5rem;
  overflow-x: auto;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .single-works__content pre {
    padding: 0.25rem;
  }
}
.single-works__content code {
  background: #ecf0f1;
  padding: 0.25rem;
  border-radius: 4px;
}
.single-works__content hr {
  border: none;
  border-top: 1px solid #ecf0f1;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .single-works__content hr {
    margin: 1rem 0;
  }
}
.single-works__content::after {
  content: "";
  display: block;
  clear: both;
}

.related-works {
  padding: 2rem 0;
}
.related-works__title {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.related-works__title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 2rem;
  width: 6px;
  background: linear-gradient(to bottom, #18adef 0%, #18adef 60%, #6ed9f9 60%, #6ed9f9 100%);
}
.related-works__items {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5%;
}

.error404 {
  padding: 4rem 0;
}
.error404__text {
  margin-bottom: 1rem;
}
.error404__button {
  color: #18adef;
  font-weight: 700;
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */