h1, h2, h3, h4, p{
    color: #fff;
}
img {
  overflow: visible !important;
  overflow-clip-margin: padding-box !important; /* または 0px */
}

html{
    background-color: #434d54;
}
html {
  scroll-behavior: smooth;
}
div {
  unicode-bidi: normal; /* isolate を無効化 */
}
a{
    text-decoration: none;
    color: #fff;
}
h2 {
    font-size: 48px;
}
h1{
    font-size: 75px;
}
h1 {
  display: block;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  unicode-bidi: isolate;
}
p {
  display: block;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}
h3{
    font-size: 24px;
}
h4{
    font-size: 24px;
}
.logo{
    width: 80px;
    height: auto;
    margin-left: 0;
}
.blue{
    background-color: #136ba9;
}
.orange{
    background-color: #875f2a;
}
.pc{
    display: block;
}
.mobile{
    display: none;
}
.header-menu {
    width: 100%;
    text-align: center;
    background-color: #136ba9;
    padding-top: 25px;
    padding-bottom: 25px;
    color: #fff;
}

.header-menu ul {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.header-menu li {
    flex: 1; 
    text-align: center; 
}

.header-menu a, .header-menu p {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
}
.pc-text {
    display: inline-block;
  }
  .mobile-text, .hamburger {
    display: none;
  }
footer{
    width: 100%;
}
.footer{
  width: 90%;
    padding-left: 5%;
    padding-right: 5%;
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #136ba9;
    color: #fff;
    padding-top: 25px;
}

.footer-left {
    text-align: left; 
}

.footer-right {
    display: flex;
    gap: 25px; 
    
}

.footer-right p {
    margin: 0;
}

.footer-right a {
    color: #fff;
}

footer {
    text-align: right; 
    background-color: #136ba9;
    color: #fff;
}
.mobile-footer{
    display: none;
}
@media screen and (max-width: 765px) {
    html{
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    body{
      overflow-x: hidden;
    }
    a{
      text-decoration: none;
  }
    h1{
        font-size: 30px;
      }
      h2 {
        text-align: center;
        font-size: 20px;
      }
      h3{
          font-size: 18px;
      }
      p{
        font-size: 12px;
      }
    .pc{
        display: none;
    }
    p{
        font-size: 12px;
    }
    footer {
        text-align: center; 
        background-color: #136ba9;
        color: #fff;
        padding: 0;
        padding-top: 25px;
    }
    .footer-right{
        display: flex;
        justify-content: center;
        width: 100%;
        font-size: 14px;
        margin-bottom: 30px;
        gap: 25px;
    }
    .tel{
        margin-bottom: 15px;
    }
    .footer{
        margin-bottom: 15px;
    }
    .mobile{
        display: block;
    }
    .mobile-footer{
        display: block;
    }
}
/* 共通スタイル */
body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    z-index: 1000;
  }
  
  /* ロゴ */
  .logo img {
    display: block;
    width: 150px;
    height: auto; /* 適宜調整 */
    background: transparent;
  }
  
  /* 採用情報エリア */
  .recruit {
    background-color: #136ba9;
    color: #fff;
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    align-items: center;
  }
  .recruit span {
    margin: 20px;
  }
  
  /* PC用スタイル */
  @media (min-width: 768px) {
    .pc-text {
      display: inline-block;
      padding-left: 50px;
      padding-right: 50px;
    }
    .mobile-text,
    .hamburger {
      display: none;
    }
  }
  
  /* スマホ用スタイル */
  @media (max-width: 767px) {
    header {
      background-color: #136ba9; /* スマホ版headerの背景色 */
    }
    .pc-text {
      display: none;
    }
    .mobile-text {
      display: inline-block;
    }
    .hamburger {
      display: inline-block;
      cursor: pointer;
      font-size: 24px; /* ハンバーガーのサイズ調整 */
    }
    .logo img {
        display: block;
        width: 100px;
        height: auto; /* 適宜調整 */
        background: transparent;
      }
  }
  
  /* スマホ用メニュー（ハンバーガータップ時に表示） */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 半透明の暗い背景 */
    z-index: 999;
  }
  
  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .mobile-menu li {
    margin: 10px 0;
  }
  
  .mobile-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
  }
  .mobile-menu p{
    font-size: 24px;
  }