@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+HarunoUmi:wght@700&display=swap");
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(64px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-from-left {
  0% {
    opacity: 0;
    transform: translateX(64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-from-right {
  0% {
    opacity: 0;
    transform: translateX(-64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.js-anim {
  opacity: 0;
}

.slideIn {
  animation: slideIn 0.5s forwards;
  animation-delay: 0.1s;
}

.slide-from-left {
  animation: slideLeftIn 0.5s forwards;
}

.slide-from-right {
  animation: slide-from-right 0.5s forwards;
  animation-delay: 0.1s;
}

.slide-from-left {
  animation: slide-from-left 0.5s forwards;
  animation-delay: 0.1s;
}

@keyframes bg-gradient {
  0% {
    background-position: 0 0;
  }
  30% {
    background-position: 10% 30%;
  }
  50% {
    background-position: 100% 50%;
  }
  70% {
    background-position: 50% 70%;
  }
  100% {
    background-position: 0 0;
  }
}
.main-visual-wrap {
  max-height: calc(100vh - 100px);
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main-visual-wrap {
    min-height: 90vh;
    max-height: 90vh;
    overflow: hidden;
  }
}

.main-movie {
  width: 100%;
  text-align: center;
  background: url("/assets/images/index/bg-movie.png") no-repeat;
  background-size: 100% calc(100vh - 100px);
}
.main-movie > video {
  width: auto;
  height: calc(100vh - 100px);
}
@media screen and (max-width: 767px) {
  .main-movie > video {
    width: 100%;
    height: auto;
  }
}

.about {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.profile {
  margin-top: 7rem;
}

.service {
  margin-left: 1%;
  margin-right: 1%;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 959px) {
  .service {
    margin-left: 2%;
    margin-right: 2%;
  }
}

.company {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.greeting {
  line-height: 1.5em;
}
.greeting__block {
  margin-bottom: 3rem;
}
.greeting__name {
  text-align: right;
}

.profiles {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 3rem;
  padding-bottom: 3rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .profiles {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .profiles {
    flex-direction: column;
  }
}
.profiles__large {
  line-height: 1.7em;
  width: 75%;
  padding-right: 8rem;
  box-sizing: border-box;
}
.profiles__mini {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .profiles__large {
    width: 100%;
    padding: 0;
  }
  .profiles__mini {
    width: 70%;
    margin-top: 3rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.service-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-right: 2%;
  margin-left: 2%;
}
@media screen and (max-width: 767px) {
  .service-list {
    margin-right: 0;
    margin-left: 0;
  }
}
.service-list__item {
  width: 24%;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .service-list__item {
    width: 49%;
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .service-list__item {
    width: 100%;
    margin-bottom: 6rem;
  }
}
.service-list .ttl-bottomline {
  font-size: max(1.8rem, min(1vw, 2.2rem));
}

.outline-table {
  border-collapse: collapse;
  width: 100%;
  /*
    @media screen and (max-width: $sp-break) {
      tr{
        display : flex;
        flex-direction: column;
        border : none;
      }
      th,td{
        width : 100%;
      }
      th{
        background : $co-color;
        color : #fff;
        padding : .5em 1em;
        margin-top : 1em;
        z-index : 2;
        max-width : 20%;
        border-radius : 0 0 3px 3px;
      }
      td{
        position : relative;


        &::after{
          content : '';
          position : absolute;
          left : 0;
          right : 2rem;
          top : -2.2em;
          height : 1px;
          background : $co-color;
          z-index : 1;

        }
      }
    }

   */
}
.outline-table tr {
  border-bottom: 1px solid #d3d3d3;
}
.outline-table th {
  min-width: 20%;
}
.outline-table td {
  padding: 4rem 1rem;
}
@media screen and (max-width: 767px) {
  .outline-table th {
    min-width: 6em;
  }
}
