.pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.technology-detail-header {
  align-items: center;
}

.technology-detail-mv {
  padding: 0;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .technology-detail-header-text + .technology-detail-header-notes {
    text-align: left;
  }
}

#section1 .technology-detail-section-video {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #section1 .technology-detail-section-video {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  #section1 .technology-detail-section-blocks-02 + .technology-detail-section-content {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  #section1 .technology-detail-section-column-image {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  #section2 .technology-detail-section-row-image {
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  #section2 .technology-detail-section-row-item-text {
    margin-top: 30px;
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  #section2 .technology-detail-section-content + .technology-detail-section-blocks-02 {
    margin-top: 40px;
  }
  #section2 .technology-detail-section-content + .technology-detail-section-blocks-02 .technology-detail-section-row {
    margin-top: 0;
  }
  #section2 .technology-detail-section-content + .technology-detail-section-blocks-02 .technology-detail-section-row .technology-detail-section-row-item {
    margin-top: 0;
  }
  #section2 .technology-detail-section-content + .technology-detail-section-blocks-02 .technology-detail-section-row .technology-detail-section-row-item:first-child .technology-detail-section-row-image {
    margin-top: 0;
  }
  #section2 .technology-detail-section-content + .technology-detail-section-blocks-02 .technology-detail-section-row .technology-detail-section-row-item:last-child {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #section2 .technology-detail-section-notes {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #section2 .technology-detail-section-column-image {
    text-align: center;
  }
}

#section3 .technology-detail-section-row-item-heading.technology-common-heading {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  #section3 .technology-detail-section-row-item-heading.technology-common-heading {
    font-size: 24px;
  }
}
#section3 .technology-detail-section-row-item-heading.technology-common-heading::before {
  content: none;
}
@media screen and (max-width: 768px) {
  #section3 .technology-detail-section-row-item-heading.technology-common-heading::before {
    content: "";
  }
}
@media screen and (max-width: 768px) {
  #section3 .technology-detail-section-notes {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .technology-detail-entry {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .technology-detail-entry .technology-detail-entry-image {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .technology-detail-entry .technology-detail-entry-image img {
    width: 100%;
    max-width: 628px;
  }
}

/* video */
/* ========================= */
.technology-detail-section-video-playbtn {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .technology-detail-section-video-playbtn {
    margin-top: 30px;
  }
}

/* modal */
/* ========================= */
.perf-modal {
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.perf-modal.fadeIn {
  height: 100vh;
  overflow: visible;
}
.perf-modal-bg {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.perf-modal-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #F5F5F5;
  padding: 40px 100px 50px;
  border-radius: 16px;
  max-width: 773px;
  width: calc(100% - 40px);
  background: #F5F5F5;
  padding: 40px 100px 50px;
  border-radius: 16px;
  max-width: 773px;
  width: calc(100% - 40px);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .perf-modal-content {
    width: calc(100% - 40px);
    padding: 40px 20px;
  }
}
.perf-modal-youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.perf-modal-youtube iframe {
  width: 100%;
  height: 100%;
}
.perf-modal-close {
  cursor: pointer;
  position: absolute;
  top: -38px;
  right: 35px;
  z-index: 9999;
  height: 75px;
  width: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6BC97A, #3B8E48);
  backdrop-filter: blur(4px);
}
.perf-modal-close::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #6BC97A;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .perf-modal-close {
    top: -40px;
    right: 15px;
    width: 64px;
    height: 64px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .perf-modal-close:hover::before {
    opacity: 1;
  }
}
.perf-modal-close img {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .perf-modal-close img {
    top: 16px;
    width: 15px;
    height: 15px;
  }
}
.perf-modal-close span {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #fff;
  font-size: 12px;
  letter-spacing: -0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .perf-modal-close span {
    top: 38px;
    font-size: 8px;
  }
}/*# sourceMappingURL=index.css.map */