@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;700;900&family=Sora:wght@400;700&display=swap");


:root{
    --main: #1E2A3A;
    --primary: #0d6efd;
    --dark:#21252f;
    --body: #888;
      /* --orange: rgb(221, 155, 94); */
  --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

body {
    font-family: Sora, "sans-serif";
    line-height: 1.7;
    color: var(--body);
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .display-4 {
    color: var(--main);
    font-weight: 700;
  }
  
  a {
    color: var(--main);
    text-decoration: none;
  }
  


.navbar .nav-link {
    font-size: 14px;
    font-weight: 700;
    padding-top: 16px;
}

.btn {
    padding: 14px 18px;
    border-width: 2px;
    border-radius: 10;
  }
  
  /* yutubeボタン */
  .close {
    cursor: pointer;
  }
  
section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.card-effect {
  box-shadow: var(--box-shadow);
  background-color: #fff;
  padding: 25px;
}




.iconbox {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
  color: white;
  font-size: 32px;
  border-radius: 100px;
  flex: none;
}

.service {
  position: relative;
  z-index: 2;
  overflow: hidden;
}



/* features section */
.col-img1 {
  background-image: url(./img/features01.jpg);
  background-position: center;
  background-size: cover; /* 画像の全部を収めることができる。 */
  min-height: 400px;
}


.col-img2 {
  background-image: url(./img/features02.jpg);
  background-position: center;
  background-size: cover; /* 画像の全部を収めることができる。 */
  min-height: 400px;
}

.col-img3 {
  background-image: url(./img/features03.jpg);
  background-position: center;
  background-size: cover; /* 画像の全部を収めることができる。 */
  min-height: 400px;
}


.project {
  position: relative;
  overflow: hidden;
}


.project .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 39, 71, 0.7);
  padding: 30px;
  display: flex;
  align-items: flex-end;
  transition: all 0.4s ease;
  opacity: 0;
}

.project .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 39, 71, 0.7);
  padding: 30px;
  display: flex;
  align-items: flex-end;
  transition: all 0.4s ease;
  opacity: 0;
}


.project img {
  transition: all 0.4s ease;
}

.project:hover .overlay {
  opacity: 1;
}

.project:hover img {
  transform: scale(1.1);
}

.team-member img {
  width: 250px;
  height: 250px;
  border-radius: 3px;
}

form input.form-control {
  height: 56px;
}

form .form-control {
  border: transparent;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.04);
}

.footer-top {
  padding-bottom: 90px;
  padding: 90px;
}

.footer-top a {
  color: var(--body);
}

.footer-top a:hover {
  color: #fff;
}

.thanks_bar {
  background-color: var(--main) ;
  color: var(--body);
}
