.container {
  max-width: 960px;
}

.icon-link > .bi {
  width: .75em;
  height: .75em;
}

/*
 * Custom translucent site header
 */

.site-header {
  background-color: rgba(0, 0, 0, .85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.site-header a {
  color: #8e8e8e;
  transition: color .15s ease-in-out;
}
.site-header a:hover {
  color: #fff;
  text-decoration: none;
}

/*
 * Dummy devices (replace them with your own or something else entirely!)
 */

.product-device {
  position: absolute;
  right: 10%;
  bottom: -30%;
  width: 300px;
  height: 540px;
  background-color: #333;
  border-radius: 21px;
  transform: rotate(30deg);
}

.product-device::before {
  position: absolute;
  top: 10%;
  right: 10px;
  bottom: 10%;
  left: 10px;
  content: "";
  background-color: rgba(255, 255, 255, .1);
  border-radius: 5px;
}

.product-device-2 {
  top: -25%;
  right: auto;
  bottom: 0;
  left: 5%;
  background-color: #e5e5e5;
}


/*
 * Extra utilities
 */

.flex-equal > * {
  flex: 1;
}
@media (min-width: 768px) {
  .flex-md-equal > * {
    flex: 1;
  }
}

/* ------------------------------------------------------------------------------
	 しばらくお待ちください
-------------------------------------------------------------------------------*/

/* === 実行中非表示（初期） ================================ */
.runNoDisp {
  display : none;
}

/* === 実行中バックグランド ================================ */
.runBg {
  position   : fixed;
  overflow   : hidden;
  top        : 0;
  right      : 0;
  bottom     : 0;
  left       : 0;
  background : rgba(255, 255, 255, 0.90);
  z-index    : 10;
}

/* === 実行中ウインド ====================================== */
.runBg .runWindow {
                               /* 実行中ウインドを中心に表示 */
  position      : absolute;
  top           : 50%;
  left          : 50%;
  transform     : translate(-50%, -50%);
  z-index       : 11;
             /* ↓実行中ウインドウの見た目：変更してください */
  width         : 300px;
  background    : #fff;
  border        : 3px solid #fff;
  border-radius : 10px;
  font-size     : 12pt;
  line-height   : 1.2;
  text-align    : center;
}

/* === 実行中バーのエリア ================================== */
.runBg .runWindow .bar {
  width         : 80%;
  margin        : 10px auto;
  overflow      : hidden;
  border        : 1px solid rgba(153, 153, 153, 0.90);
}

/* === 実行中ウインド：アニメーション ====================== */
.runBg .runWindow .bar::before {
  display       : block;
  content       : "";
  height        : 20px;
  color         : #fff;
  background    : linear-gradient(90deg, #ffffff, rgba(153, 153, 153, 0.90));
  animation     : runOpenAnime 2s linear infinite;
}
@keyframes runOpenAnime {
   0% { transform  :translateX(-100%) }
 100% { transform  :translateX(100%)  }
}

