#index-eyecatch {
  position: relative;
  width: 100%;
}

#index-eyecatch > img {
  position: fixed;
  left: 3vw;
  top: 3%;
  width: 150px;
  z-index: 1;
}

#index-eyecatch-images img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#index-eyecatch > dl {
  position: absolute;
  bottom: 10vh;
  left: 10vw;
  color: white;
  display: inline-block;
}

#index-eyecatch > dl > dt {
  font-size: 2.4rem;
  line-height: 1.3;
  padding: 0 3rem 0.4rem 0;
  border-bottom: 1px rgba(255, 255, 255, 0.6) solid;
  display: inline-block;
}

#index-eyecatch > dl > dt > div {
  font-size: 1.3rem;
}

#index-eyecatch > dl > dd {
  padding: 0.4rem 0 0 0;
  font-size: 0.9rem;
}

#index-eyecatch > dl > dd > div {
  display: flex;
  margin-top: 1rem;
}

#index-eyecatch > dl > dd > div > a > img {
  width: 1.2rem;
  margin-right: 0.8rem;
}

section:not(#index-eyecatch):not(#outerContainer) {
  width: min(90vw, 1152px);
  margin-left: auto;
  margin-right: auto;
}

#index-introduction {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-top: 5rem;
  margin-bottom: 3rem;
}

#index-introduction > div > img {
  width: 100%;
  margin-bottom: 2.2rem;
}

#index-introduction > div > div,
#index-introduction > div > p {
  margin-bottom: 1.1rem;
}

#index-introduction > div > p + img {
  margin-top: 2.2rem;
}

#index-introduction > div > div {
  font-size: 1.3rem;
  font-weight: bold;
}

#index-introduction > div:first-child {
  width: 40%;
}

#index-introduction > div:nth-child(2) {
  width: 48%;
}

#index-contents > h1 {
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}

#index-contents > h2 {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
  color: rgb(255, 157, 0);
  font-style: italic;
}

#index-contents > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  list-style: none;
  margin-bottom: 3rem;
  justify-content: flex-start;
}

#index-contents > ul > li {
  position: relative;
  flex: 0 0 calc((100% - 2px) / 3);
  max-width: 384px;
  height: min(20vw, 256px);
  display: block;
  background-color: black;
  position: relative;
}
#index-contents > ul > li > a > img {
  display: block;
}
#index-contents > ul > li > a > img, #index-contents > ul > li > a video {
  width: 100%;
  height: min(20vw, 256px);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  transition: opacity 300ms ease-in-out;
}
#index-contents > ul > li > a:not(.video-loading) > video {
  display: none;
}
#index-contents > ul > li > a:not(.video-playing) > video {
  opacity: 0;
}
#index-contents > ul > li > a.video-loading > video + img {
  display: none;
}
#index-contents > ul > li > a.video-loading:not(.video-playing) > video {
  position: absolute;
}
#index-contents > ul > li > a.video-loading:not(.video-playing) > video ~ div.index-contents-loading-black {
  display: block;
  position: static;
}
#index-contents > ul > li > a > div {
  position: absolute;
}
#index-contents > ul > li > a > div.index-contents-loading-black {
  background-color: black;
  display: none;
  width: 100%;
  height: 100%;
}
#index-contents > ul > li > a > div.index-contents-tagline {
  color: white;
  left: 0;
  bottom: 0;
  width: calc(100% - 1rem);
  height: 2.5rem;
  font-size: 1rem;
  font-family: "Optima";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  padding: 0.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.services_title {
  display: flex;
  justify-content: flex-start;
}

.services_title > div:first-child {
  width: calc(45% - 80px);
  margin-right: 0;
  border-bottom: 1px solid #666666;
  height: calc(5pt + 1vw);
}

.services_title > div:nth-child(2) {
  width: calc(160px + 10%);
  text-align: center;
  color: #5E5E5E;
}

.services_title h1 {
  font-size: min(8.5pt + 1.7vw, 26pt);
  color: #FF573B;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.services_title h2 {
  font-size: calc(5pt + 1vw);
  color: #666666;
}

#index-others {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  border-top: 1px rgba(0, 0, 0, 0.4) solid;
  padding-top: 2rem;
}
#index-others > a > img {
  width: 250px;
  max-width: 35vw;
  margin: 0 5vw;
}

#test {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 1rem;
  color: red;
}

@media screen and (max-width: 1200px) {
  #index-contents > ul {
    gap: 1px;
  }
  #index-contents > ul > li {
    flex: 0 0 calc((100% - 1px) / 2);
    max-width: none;
    height: 30vw;
  }
  #index-contents > ul > li > a > img, #index-contents > ul > li > a > video {
    height: 30vw;
  }
  #index-contents > ul > li > a > div:first-of-type {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  #index-eyecatch > dl {
    width: 80vw;
  }
  #index-introduction {
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  #index-introduction > div:first-child,
  #index-introduction > div:nth-child(2) {
    width: 100%;
  }
  #index-introduction > div > img {
    width: 60%;
    margin-left: 20%;
  }
  .services_title h1 {
    font-size: calc(12pt + 2.4vw);
  }
  #index-contents > ul {
    gap: 1px;
  }
  #index-contents > ul > li {
    flex: 0 0 100%;
    max-width: none;
    height: 60vw;
  }
  #index-contents > ul > li > a > img, #index-contents > ul > li > a > video {
    height: 60vw;
  }
  #workshopPictures {
    width: 95%;
    margin-top: 5vw;
  }
}/*# sourceMappingURL=index.css.map */