@charset "utf-8";

/* ＝＝＝＝ レスポンシブ対応 (PC向け: 横幅769px以上で適用) ＝＝＝＝ */
@media screen and (min-width: 769px) {
  .header-hero {
    padding: 80px 20px;
  }
  .header-hero h1 {
    font-size: 36px;
  }
  .header-hero p {
    font-size: 18px;
  }
  
  .contact-left {
    width: 45%;
    text-align: left;
    margin-bottom: 0;
  }
  .contact-right {
    width: 50%;
    flex-direction: row; /* PCでは横並び */
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }
  
  .linktxt strong, .linktxt b {
    display: inline;
    margin-right: 15px;
  }
}