﻿@charset "UTF-8";

/* ==========================================================
   HEADER BANNER
   ロゴ・電話番号・Instagram・アクセスボタン
========================================================== */

/* ヘッダーバナー */
.header-banner {
    background-color: var(--pastel-green);
    padding: 5px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100px;
}


@media (max-width: 768px) {
.header-banner {
    height: 130px;
	}
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.main-logo {
    height: 90px;
    width: auto;
}


.banner-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.banner-buttons img {
    height: 30px;
    width: auto;
}

@media (min-width: 1025px) {
  .banner-buttons img {
    height: 40px; /* ← お好みに応じて 35〜50pxくらいで調整可能 */
    width: auto;
  }
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .main-logo {
        width: 300px;
        height: 75px;
    }

    .banner-buttons img {
        width: 140px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .main-logo {
        width: 280px;
        height: 70px;
    }
    
    .banner-content {
        height: auto;
        padding: 10px 15px;
    }

    .banner-buttons img {
        width: 120px;
        height: 25px;
    }
    
    .banner-buttons {
        gap: 0.8rem;
    }

    .phone-number {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .main-logo {
        width: 200px;
        height: 50px;
    }

  .banner-buttons img {
    height: 24px;
    width: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }
    
    .banner-buttons {
        gap: 0.5rem;
    }

    .phone-number {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .banner-buttons img {
        width: 20px;
        height: 20px;
    }
}


.logo-and-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* ▼ モバイル用スタイル ---------------------- */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    align-items: center;
  }

  .logo-and-buttons {
    width: 100%;
    flex-direction: row;
  }

  .banner-buttons {
    flex-direction: row;
  }

  .phone-number.pc-only {
    display: none;
  }

  .phone-number.mobile-only {
    display: block;
  }

  .banner-buttons {
    justify-content: center;
  }

  .phone-number.mobile-only {
    text-align: center;
    margin-top: 5px; /* 任意：余白調整 */
  }
}
	


/* ▼ PC用スタイル --------------------------- */
@media (min-width: 769px) {
  .phone-number.pc-only {
    display: block;
  }

  .phone-number.mobile-only {
    display: none;
  }
}


/* メニュー画像のサイズ調整 */


/* ホバー時のアニメーション */


/* クリック時のアニメーション */


/* レスポンシブ対応 */
@media (max-width: 768px) {
    
    
    
}

@media (max-width: 480px) {
    
    
    
}


/* ホバー時の背景色変化 */


/* アニメーションの遅延 */
