/* ------------ 実績紹介専用　style sheet ---------　*/
/* bg-colorを　#262626　⇒　#0096e6に変更　*/
/* container を　jcontainer　に変更　*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

header {
  background-color: #ffffff;
}

header .logo {
  padding: 100px 0;
  text-align: center;
}

header .logo img {
  width: 300px;
}

header ul {
  position: relative;
  bottom: 0;
  background-color: #0096e6;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

header ul li {
  padding: 20px 0;
}

header ul li a {
  color: white;
}

.Jcontainer {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding: 10vh 0;
}

.Jcontainer .content1 .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* 左寄せ */
}

.Jcontainer .content1 .buttons button {
  width: calc(16.666% - 20px); /* PC用6列レイアウト */
  padding: 10px;
  margin: 10px 10px; /* 上下10px、左右10pxの余白 */
  text-align: center;
  background-color: #075af2;
  border: solid 1px #075af2;
  color: white;
  border-radius: 30px;
  font-size: 14px;
}

.Jcontainer .content2 {
  padding: 50px 0;
}

.Jcontainer .content2 .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* 左寄せ */
}

.Jcontainer .content2 .gallery li {
  flex: 0 0 calc(25% - 20px); /* PC用4列レイアウト */
  margin: 10px;
}

.Jcontainer .content2 .gallery li img {
  width: 100%; /* デフォルトで幅を100%に */
  height: auto; /* 高さを自動調整 */
  object-fit: cover; /* 画像をカバーするように調整 */
}

@media (min-width: 601px) {
  .Jcontainer .content2 .gallery li img {
    width: 200px; /* PC用の幅を固定 */
    height: 150px; /* PC用の高さを固定 */
  }
}

.hide {
  display: none;
}

@media (max-width: 1024px) {
  .Jcontainer .content1 .buttons button {
    width: calc(33.333% - 20px); /* タブレット用3列レイアウト */
    margin: 10px 10px; /* 上下10px、左右10pxの余白 */
  }
  .Jcontainer .content2 .gallery li {
    flex: 0 0 calc(50% - 20px); /* タブレット用2列レイアウト */
  }
}

@media (max-width: 600px) {
  .Jcontainer .content1 .buttons button {
    width: calc(33.333% - 20px); /* スマホ用3列レイアウト */
    margin: 10px 10px; /* 上下10px、左右10pxの余白 */
  }
  .Jcontainer .content2 .gallery li {
    flex: 0 0 100%; /* スマートフォン用1列レイアウト */
  }
}

/* --- フォント・基本スタイルの統一（jisseki2準拠） --- */
html, body {
    font-size: 14px;
    font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 2;
    color: #333;
}

@media screen and (min-width: 800px) {
    html, body {
        font-size: 18px;
    }
}

/*# sourceMappingURL=style.css.map */