/* リンクセクション */
.intro-links-section {
  display: flex;
  gap: 50px;
  margin: 60px 0;
}

.intro-links-section>div {
  background: var(--color-white);
  flex: 1;
}

/* リンクカード共通 */
.link-card a {
  color: var(--main-color-dark);
  text-decoration: none;
}

.link-card {
  border-radius: 10px;
  border: 1px solid #CCC;
  overflow: hidden;
  transition: all 0.3s ease;
}

.link-card figure {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(11, 61, 145, 0.3);
}

.link-card .content-info {
  padding: 10px 18px;
  position: relative;
}

.link-card .content-info h3 {
  font-size: var(--h3);
  margin-bottom: 10px;
}

.link-card .content-description {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.link-card .arrow {
  color: var(--main-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/* linkcard Small */
.link-card-small a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.link-card-small figure {
  flex-shrink: 0;
  max-width: 46%;
}

.link-card-small .content-info {
  flex: 1;
}


/* For Smart Phone */
@media screen and (max-width:768px) {
  .intro-links-section {
    flex-direction: column;
    gap: 30px;
  }
}

/* ========================================
   設備利用セクション
   ======================================== */
.facility-usage-section {
  background-color: #333;
  color: #fff;
  padding: 60px 0;
  margin-top: 60px;
}
.facility-usage-section .inner {
  max-width: 1130px;
}

.facility-usage-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.facility-usage-text {
  flex: 1;
}

.facility-usage-title {
  font-size: var(--h2);
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-top: 20px;
}
.facility-usage-title::before{
  content: '';
  position: absolute;
  top: -2px;
  left: -8px;
  width: 30%;
  height: 1px;
  border: 1px solid #b4b4b4;
}
.facility-usage-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 8px;
  background-color: var(--main-color);
}

.facility-usage-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  text-indent: 1em;
}

.facility-usage-text p:last-child {
  margin-bottom: 0;
}

/* お問合わせボックス */
.facility-usage-contact {
  flex: 1;
  border: 1px solid #888;
  padding: 24px 28px;
  background-color: transparent;
}

.facility-usage-contact-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.facility-usage-contact-company {
  font-size: 15px;
  margin-bottom: 12px;
}

.facility-usage-contact-info {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
  word-break: break-all;
}

.facility-usage-contact-info:last-child {
  margin-bottom: 0;
}

.facility-usage-contact a {
  color: #6bb3e8;
  text-decoration: underline;
}

.facility-usage-contact a:hover {
  color: #9dd0f5;
}

/* タブレット */
@media screen and (max-width: 1024px) {
  .facility-usage-content {
    flex-direction: column;
    gap: 40px;
  }

  .facility-usage-contact {
    width: 100%;
  }
}

/* スマートフォン */
@media screen and (max-width: 768px) {
  .facility-usage-section {
    padding: 40px 0;
    margin-top: 40px;
  }

  .facility-usage-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .facility-usage-text p {
    font-size: 14px;
    text-indent: 0;
  }

  .facility-usage-contact {
    padding: 20px;
  }

  .facility-usage-contact-title {
    font-size: 15px;
  }

  .facility-usage-contact-info {
    font-size: 13px;
  }
}

/* ========================================
   eCLA解析ツールセクション
   ======================================== */
.ecla-section {
  background-color: #fff;
  padding: 60px 0;
}

.ecla-section .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ecla-banner {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.ecla-logo {
  flex-shrink: 0;
}

.ecla-logo img {
  width: 180px;
  height: auto;
  display: block;
}

.ecla-content {
  display: flex;
  flex-direction: column;
}

.ecla-label {
  font-size: 18px;
  color: #333;
  font-weight: 700;
}

.ecla-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #333;
}
.ecla-title .coming-soon {
  font-size: 0.6em !important;
  font-weight: normal;
  color: #888;
}
.ecla-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 280px;
  padding: 8px 16px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  align-items: flex-end;
  gap: 50px;
}

.ecla-link:hover {
  background-color: #333;
  color: #fff;
}

.ecla-link:hover .ecla-arrow {
  background-color: #fff;
}

.ecla-link:hover .ecla-arrow::after {
  border-color: #fff;
}

/* CSS矢印 */
.ecla-arrow {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 1px;
  background-color: #333;
  animation: arrow-slide 1.5s ease-in-out infinite;
}

.ecla-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 1px;
  background-color: #333;
  transform: rotate(35deg);
  transform-origin: right center;
}

.ecla-link:hover .ecla-arrow::after {
  background-color: #fff;
}

/* 矢印アニメーション */
@keyframes arrow-slide {
  0% {
    transform: translateX(-10px);
    opacity: 0.5;
  }
  50% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-10px);
    opacity: 0.5;
  }
}

/* タブレット */
@media screen and (max-width: 768px) {
  .ecla-section {
    padding: 40px 0;
  }

  .ecla-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .ecla-content {
    align-items: center;
  }

  .ecla-title {
    font-size: 1.5rem;
  }

  .ecla-link {
    gap: 30px;
    padding: 10px 24px;
  }
}