:root {
  --accent-color: #1bbca3;
}

:root {
  --default-color: #333;
  --heading-color: #3F5263;
  --nav-hover-color: #1bbca3;
  --nav-dropdown-hover-color: #1bbca3;

}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

html {
  font-size: 10px;
}

body {
  /* font-family: "メイリオ", Meiryo, 'ヒラギノ角ゴ Pro W3', Hiragino Kaku Gothic Pro, Osaka, 'ＭＳ Ｐゴシック', MS PGothic, sans-serif; */
  /* font-family: "Noto Sans JP", ヒラギノ角ゴシック Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, Verdana, Arial, sans-serif; */
  font-family: Roboto, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", ヒラギノ角ゴシック Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, Verdana, Arial, sans-serif;
}

h2 {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1000px;
}

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  /* border-left: 4px solid var(--accent-color);
  padding-left: 8px; */
}

.section-title {
  padding-bottom: 30px;
}

.section-title p {
  color: var(--heading-color);
  font-size: 28px;
}

.header {
  padding: 15px 0;
}

.underline {
  display: inline-block;
  border-bottom: 1px solid #1bbca3;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
  min-height: 100svh;
  padding: 0;
}

.hero:before {
  content: "";
  background: none;
  z-index: 1;
}

.hero .carousel {
  width: 100%;
  min-height: 100svh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 80px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
  /* animation: fadeInDown 1s both; */
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 24px;
  }
}

.hero p {
  /* animation: fadeInDown 1s both 0.2s; */
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border: none;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  /* animation: fadeInUp 1s both 0.4s; */
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero .btn-scroll {
  transition: 0.4s;
  /* color: var(--default-color); */
  color: var(--accent-color);
  display: block;
  animation: btn-up-down 1s ease-in-out infinite alternate-reverse both;
  position: absolute;
  bottom: -220px;
  left: 0;
  right: 0;
}

.hero .btn-scroll i {
  font-size: 33px;
}

@keyframes btn-up-down {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}


.about .subtle-text {
  position: absolute;
  top: 5px;
  right: 0;
  text-transform: uppercase;
  font-size: 150px;
  color: #F8F8F8;
  font-weight: 900;
  z-index: 0;
  line-height: .8;
  font-family: "Open Sans", Arial, sans-serif;
}

.about .subtle-text2 {
  position: absolute;
  top: 5px;
  left: 0;
  text-transform: uppercase;
  font-size: 150px;
  color: #fff;
  font-weight: 900;
  z-index: 0;
  line-height: .8;
  font-family: "Open Sans", Arial, sans-serif;
}

.about .img-shadow {
  position: relative;
  background: rgba(27, 188, 163, 0.3);
  width: 90%;
  /* float: left; */
}

.about .img-shadow img {
  position: relative;
  top: -10px;
  left: -10px;
}

.about .img-shadow2 {
  position: relative;
  background: rgba(27, 188, 163, 0.3);
  width: 90%;
  /* float: right; */
}

.about .img-shadow2 img {
  position: relative;
  top: -10px;
  left: -10px;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}


.services-action {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.services-action img {
  position: fixed;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  object-fit: cover;
  z-index: 1;
}

.services-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.footer {
  color: var(--default-color);
  font-size: 13px;
}

.footer .copyright {
  padding: 15px 0;
}