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

node-sass scssstyle.scss style.css

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

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header ul li {
  padding: 20px 0;
}

header ul li a {
  color: white;
}

.Jcontainer {
  width: 900px;
  margin: auto;
  padding: 10vh 0;
}

.Jcontainer .content1 .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* buttons の設定を変更　background-color #3c3c3c → #075af2　border #101010 →　#075af2　*/
.Jcontainer .content1 .buttons button {
  width: 120px;
  padding: 10px;
  margin: 10px 30px 10px 0;
  text-align: center;
  background-color: #075af2;
  border: solid 1px #075af2;
  color: white;
  border-radius: 30px;
}

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

.Jcontainer .content2 .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/* gallery li を修正　3px →　10px　に変更　*/
.Jcontainer .content2 .gallery li {
  padding: 10px;
}
/* object-fit: cover; を修正　object-fit: none に変更　*/
.Jcontainer .content2 .gallery li img {
  width: 200px;
  height: 150px;
  -o-object-fit: none;
     object-fit: none;
}
/* hideを追加　*/
.hide {
    display: none;
}
.buttons button {
            font-size: 14px; /* 統一したフォントサイズ */
        }
/*# sourceMappingURL=style.css.map */