/*
Theme Name: Lightning Child 2 - Clean Start
Template: lightning
*/

@import url("../lightning/style.css");

/* モバイルロゴ */
.mobile-logo {
  display: none;
}
@media (max-width: 768px) {
  .mobile-logo {
    display: block;
    padding: 10px;
    text-align: center;
  }
  .mobile-logo img {
    max-height: 48px;
    height: auto;
    width: auto;
  }
}



/* PCのロゴ非表示 + 無駄なスペース削除 */
@media (min-width: 1025px) {
  .site-header-logo {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}



/* スマホ固定ボタン（4つ：内科TEL・小児科TEL・LINE・予約） */
@media (max-width: 1024px) {
  .fixed-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 9999;
    padding: 0 10px;
    flex-wrap: nowrap;
  }

  .fixed-buttons a {
    width: 23%;
    max-width: 100px;
    font-size: 12px;
    padding: 10px 0;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: white;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .fixed-buttons a i {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .tel-naika {
    background-color: #28a745;
  }

  .tel-shounika {
    background-color: #17a2b8;
  }

  .line-btn {
    background-color: #00c300;
  }

  .reserve-btn {
    background-color: #ff6f40;
  }
}

/* PCでは固定ボタンを非表示 */
@media (min-width: 1025px) {
  .fixed-buttons {
    display: none !important;
  }
}