@charset "UTF-8";
/*
|---------------------------------------------------------------
| ec-connector-2025 Contact css
|---------------------------------------------------------------
*/
.contact-page-title + .ecc-page-lead {
  margin-top: 1em;
}

.contact-sections {
  width: 100%;
}

.contact-section-label {
  font-size: 14px;
  font-weight: bold;
  color: #999;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-section-label::before, .contact-section-label::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #ddd;
  margin: 0 15px;
}

/* グリッドレイアウト */
.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

/* カード共通デザイン */
.contact-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 35px 30px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-card-icon-area {
  display: block;
  width: 100%;
  max-width: 60px;
  margin: 0 auto 15px;
}
.contact-card-icon-area img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--ecc-theme-color, #999);
}

.contact-card-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #666666;
  margin-bottom: 25px;
  text-align: left;
  line-height: 2;
}

/* ボタン共通 */
.contact-card-btn {
  display: block;
  width: 100%;
  padding: 14px 0;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: opacity 0.2s;
  position: relative;
  color: #fff;
  background-color: var(--ecc-theme-color);
}

.contact-card-btn:hover {
  opacity: 0.9;
}

.contact-card-btn::after {
  content: ">";
  position: absolute;
  right: 20px;
  font-weight: normal;
}

/* その他リンク */
.contact-footer-links {
  text-align: center;
  margin-top: 40px;
}

.contact-footer-link {
  color: #666666;
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
}

.contact-footer-link:hover {
  color: #004688;
  opacity: 1;
}

@media (max-width: 768px) {
  .contact-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/*
 * 送信完了
------------------------------------------------*/
.contact-thanks {
  /*  */
}
.contact-thanks__title {
  /*  */
}
.contact-thanks__content {
  width: 100%;
  margin: 0 0 25px;
}
.contact-thanks__navs {
  width: 100%;
  margin: 0 0 25px;
}
.contact-thanks__timerex {
  width: 100%;
  margin: 0 0 25px;
}

.contact-thanks-dynamic_contents:not(.js--active) {
  display: none;
}

.contact-thanks-navs {
  display: block;
  width: 100%;
  margin: 1em 0;
}

.contact-thanks-nav {
  display: block;
  width: 100%;
  margin: 0 0 15px;
}
.contact-thanks-nav:not(.js--active) {
  display: none !important;
}
