@charset "utf-8";

.o-btn {
  text-align: center;
}


.border_btn01 {
  display: inline-block;
  width: 100%;
  max-width: 350px; /* ボタン幅 */
  color: #ffffff; /* 文字色 */
  border: 2px solid #fff; /* 線幅・種類・色 */
  background: #333; /* 背景色 */
  padding: 1em 2em;
  font-weight: bold; /* 文字の太さ */
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

/* マウスオーバーした際のデザイン */
.border_btn01:hover {
  color: #fff; /* 文字色 */
  background: #4D9BC1; /* 背景色 */
}

.bb-c {
  
  margin-left: 20px;
}



.br-parts {
  border-collapse: collapse;
  border: 1px solid rgba(255,255,255,1);
  table-layout: fixed;
  width: 60%;
}
.br-parts th, .br-parts td {
  border: 1px solid rgba(0,0,0,.1);
  padding: .6em;
  text-align: center;
  background: #000;
}
.br-parts th {
  background: #454545;
  color: #fff;
  font-weight: bold;
  border: solid 1px #fff;
}
.br-parts th:first-child {
  width: 260px;
}
.br-parts td {
  border: solid 1px #fff;
}



.fb {
  font-weight:bold;
}

.box {
  display:flex;
  /*flex-direction: row;*/
  flex-direction: row-reverse;
  justify-content: space-between;

  margin-bottom: 40px;
}

.text {
  width: 40%;
  text-align: left;
}

.text p {
  text-align: left;
}
h3 {
  font-size: 21px;
  margin: 0;
}

.pict {
  width: 60%;
  margin-left: 3%;
}

.pict img {
  width: 100%;
  height:auto;
}

.box:nth-child(even) {
  flex-direction: row-reverse;
}
.box:nth-child(even) .text {
  text-align: right;
}
.box:nth-child(even .pict {
  margin-left: 0;
  margin-right: 3%;
}

@media (max-width:768px) {
  .box {
    flex-direction: column;
  }
  .box:nth-child(even) {
    flex-direction: column;
  }
  .text {
    text-align: center;
  }
  .box:nth-child(even) .text {
    text-align: center;
  }
  .pict {
    width:100%;
    margin-left: 0;
    text-align: center;
  }
  .box:nth-child(even) .pict {
    margin-left: 0;
    margin-right: 0%;
  }
  .pict img {
    width:50%;
    height:auto;
  }
}




