.grit-content {
  background-color: #011b6a;
}
.container {
  padding: 30px 30px 0 30px;
}
img {
  width: 100%;
  height: auto;
}
h4 {
  font-size: 15px;
  color: #011b6a;
  line-height: 2em;
  letter-spacing: 0.2em;
}
h3 {
  color: #fff;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0.2em;
}
h2 {
  font-size: 25px;
  color: #011b6a;
  line-height: 2em;
  letter-spacing: 0.2em;
}
p {
  font-size: 15px;
  line-height: 2em;
}
p.text-area {
  margin: 30px 0;
}
p.text-white {
  color: #fff;
}
p.text-black {
  color: black;
  margin: auto;
}
.product {
  color: #fff;
  font-weight: bold;
  margin-top: 30px;
}
.include-img {
  margin: 15px auto;
  width: 100%;
  text-align: center;
  padding-bottom: 30px;
}
.grit-pr {
  text-align: center;
  padding-bottom: 60px;
}
.pr-contents {
  margin: 40px 0;
}
table {
  margin: 30px auto 0 auto;
  width: 100%;
  color: #fff;
  border-collapse: separate;
  border-spacing: 0;
  border: none;
  overflow: hidden;
}
th {
  border-bottom: 1px solid #fff;
  background-color: #6a6a6a;
  padding: 10px;
}
td {
  text-align: left;
  border-bottom: 0.5px solid #fff;
  border-left: none;
  padding: 10px;
}
table.outer {
  margin: auto;
  width: 100%;
  border: solid 2px #011b6a;
  text-align: center;
  font-size: 13px;
}
tr {
  font-size: 15px;
}
th.inner1 {
  background-color: #011b6a;
  color: #fff;
}
th.inner3 {
  background-color: #011b6a;
}
td.inner2 {
  color: #011b6a;
}
hr {
  border-color: #fff;
}
.border-blue {
  border-color: #011b6a;
}
ul {
  display: flex;
}
.img-flaot {
  float: left;
}
.img-flex {
  margin: 30px auto;
}
.img-flex2 {
  margin-top: 30px;
  padding: 30px;
  border-style: solid;
  border-color: #fff;
}
.caption {
  text-align: left;
  color: #fff;
  margin-top: 10px;
}
.wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.item {
  padding: 30px 30px 0 30px;
  width: 50%;
}
.item2 {
  padding: 0 30px;
  width: 100%;
}
.img-title {
  line-height: 2em;
  letter-spacing: 0.2em;
  font-size: 18px;
  background-color: #fff;
  width: 100%;
}
.img-title-blue {
  color: #fff;
  line-height: 2em;
  letter-spacing: 0.2em;
  font-size: 18px;
  background-color: #1b77b5;
  width: 100%;
}
.gif-anime {
 	margin: auto;
	display: block;
	}
/* 画像の親要素のスタイル */
div .g-hover {
  background-color: #011b6a;
  cursor: pointer;
  position: relative;
}
/* 画像のスタイル */
.g-hover img {
  background-color: #011b6a;
  display: block;
  position: absolute;
  width: 100;
}
/* 2枚目の画像は最初透明 */
.g-hover img:last-of-type {
  opacity: 0;
  transition: opacity .7s;
}
/* hoverすると2枚目の画像が透明じゃなくなる */
.g-hover:hover img {
  opacity: 1;
}

/* レスポンシブ*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
@media only screen and (min-width: 767px) {
  .pc {
    display: block !important;
	background-color: #011b6a;
  }
  .sp {
    display: none !important;
  }

}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  ul {
    display: block;
  }
  .item {
    width: 100%;
  }
  .item:not(:last-child) {
    margin-bottom: 30px;
  }
}