@charset "UTF-8";

/*///////////////////////////////////////////////
// ［IDを忘れた方へ］ページ                     
///////////////////////////////////////////////*/

.main-content,
.content-section,
.bg-white {
  background-color: #ffffff !important;
}

/* コンテナ横幅の設定 */
.contact-narrow-wrapper {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.responsive-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 背景色設定 */
.bg-white {
  background-color: #ffffff;
}

/* セクション余白 */
.content-section {
  padding: 30px 0 60px;
}
.content-section.pb-0 {
  padding-bottom: 0;
}
.content-section.pt-0 {
  padding-top: 0;
}

/* PC/SP 表示制御補助 */
.pc_only {
  display: block;
}
span.pc_only {
  display: inline;
}
.sp_only {
  display: none !important;
}

/* IDを忘れた方向け 冒頭メッセージ枠 */
.id-message-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px 30px 0;
  text-align: center;
}

.id-message-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  color: #202020;
  margin: 0;
}

/* 区切りライン */
.section-divider {
  border: none;
  border-top: 1px solid #cccccc; 
  margin: 40px auto 50px;
  width: 100%;
  background: transparent;
  height: 0;
}

/* Meets窓口のご案内タイトル */
.contact-section-title {
  font-size: 40px;
  font-weight: 700;
  color: #033824;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.contact-lead-text {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  color: #333333;
  margin-bottom: 45px;
}

/* 窓口情報レイアウト */
.info-split-container {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* Googleマップ枠 */
.info-map-box {
  flex: 1.1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.map-iframe-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.map-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 詳細項目枠 */
.info-details-box {
  flex: 1;
  background-color: #eaf3f8;
  border-radius: 12px;
  padding: 35px 30px;
  box-sizing: border-box;
}

.details-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0px;
  font-size: 18px;
  line-height: 1.2;
}

.details-list dt {
  font-weight: 700;
  color: #10b981;
  margin-top: 12px;
  white-space: normal;
}

.details-list dt:first-child {
  margin-top: 0;
}

.details-list dd {
  color: #333333;
  padding-left: 2px;
}

.tel-number {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 2px 0;
}

.tel-number a {
  color: #333333;
  text-decoration: none;
}

/* 道順案内 */
.route-guide-area {
  margin-top: 60px;
  text-align: center;
}

.route-title {
  font-size: 32px;
  font-weight: 700;
  color: #033824;
  margin-bottom: 35px;
}

.route-photo-gallery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.photo-item {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.photo-item:not(:first-child) {
  padding-left: 45px;
}

.photo-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 104px;
  background: url('/assets/images/contact/contact-arrow.png') no-repeat center center / contain;
  filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff) 
          drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff);
}

.photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 3.5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.route-map-box {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  margin-top: 20px;
}

/* スマホ表示対応 */
@media (max-width: 750px) {
  .pc_only,
  span.pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
  span.sp_only {
    display: inline !important;
  }
  .contact-narrow-wrapper {
    max-width: 100%;
    padding: 0 16px;
  }

  .content-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .content-section.pb-0 {
    padding-bottom: 0 !important;
  }
  .content-section.pt-0 {
    padding-top: 0 !important;
  }

  .id-message-box {
    padding: 10px 0px 0;
  }

  .id-message-text {
    font-size: 18px;
    line-height: 1.6;
  }

  /* SP用の区切りライン余白 */
  .section-divider {
    margin: 30px auto 35px;
  }

  .contact-section-title {
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
  }

  .contact-lead-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 0px;
  }

  .info-split-container {
    flex-direction: column;
    gap: 20px;
  }

  .map-iframe-wrapper {
    min-height: 240px;
  }

  .info-details-box {
    padding: 20px 15px;
  }

  .details-list dt {
    margin-top: 8px;
  }

  .route-title {
    font-size: 24px;
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .route-photo-gallery {
    margin-bottom: 20px;
  }

  .photo-item:not(:first-child) {
    padding-left: 14px;
  }

  .photo-item:not(:first-child)::before {
    left: -4px;
    width: 20px;
    height: 32px;
  }

  .photo-wrap {
    border-radius: 6px;
  }
}
