/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  video   mp4
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

video {
  max-width: 100%;
  height: auto;
}
.mp4-box {
  clear:both;
  width:99%;
  margin:0 auto;
  padding:0;
  text-align:center;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  Created date
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

.created-date {text-align:center;}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  download2
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

.download2 a {
  width:300px;
  margin:15px auto;
  padding:10px 0px;
  display:block;
  font-weight:bold;
  text-align:center;
  vertical-align:middle;
  color:#0000cc;
  background-color:#ffffff;
  border:1px solid #0000cc;
}
.download2 a:hover {
  color:#ffffff;
  background-color:#0000cc;
  border:1px solid #ffffff;
}

/* ====== cell layout begin ====== */

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  flexbox (cell-base)
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cell-base {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
} /* margin-bottom padding-bottom--head */

.cell {} /* width height--head */
.cell2 {} /* width height--head */

.image-wrapper-base {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.image-wrapper {
  width: 100%;
  text-align: center;
  display: block;
} /* height--head */

.image-wrapper2 {} /* height--head */

.image-wrapper img {
  max-height: 100%;
  height: auto;
  display: inline-block;
}

.text-wrapper {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  min-height: 50px;
  background-color: #f0f0f0;
  box-sizing: border-box;
  text-align: center;
} /* margin-top padding line-height---head */
.text-wrapper:hover {
  background-color: #b8cfff;
}
.text-wrapper:active {
  background-color: #cadbff;
}
.text-wrapper a {
  display: inline-block;
  text-decoration: none;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  cell-box (image & text)
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

.cell-box {
  display: inline-block;
  box-sizing: border-box;
  overflow: hidden;
} /* width margin-bottom---head */
.video-wrapper {
  display: inline-block;
}
.video-wrapper video {
  display: block;
}
@media (max-width: 600px) {
  .flex-row > .cell,
  .flex-row > .cell2 {
    width: 100% !important;
    height: auto !important;
  }
  .flex-row video,
  .flex-row img {
    width: 100% !important;
    height: auto !important;
  }
  .text-wrapper {
    font-size: 16px; /* 任意で調整 */
  }
}

/* ====== cell layout end ====== */

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  comment-box2 (Additional Stylesheets)
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

.video-table {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.video-table table {
  width:95%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 0;
}
.video-table td.icon-cell {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  padding: 0;
  box-sizing: border-box;
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: center 10px; 
  background-size: 20px 20px;
  image-rendering: pixelated;
  transform: translateZ(0);
}
.video-table td.free-cell {
  padding:5px 5px 5px 10px;
  vertical-align: top;
  font-size: 20px;
}
.video-table .bg-cat {
  background-image: url('../layout-image/nyanta-shima6.gif');
}
.video-table .bg-you {
  background-image: url('../layout-image/you-icon.gif');
}
.video-table .bg-arrow {
  background-image: url('../layout-image/arrow-blue.gif');
}
@media (max-width: 480px) {
.video-table td.icon-cell {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}
}

/* ---- download MP4 animation ----- */

.dl-anim {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: normal;
  margin-right: 3px;
  display: inline-block;
  animation: dlBounce 1.5s infinite ease-in-out;
}

@keyframes dlBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (max-width: 768px) {
  .dl-anim {
    font-size: 1.5rem;
  }
}


