@charset "utf-8";
/* CSS Document */
/*フローティングバナー*/
.bl_floatingBanner {
  display: none; /* 初期状態は非表示 */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 上下左右中央に配置 */
  width: calc(100% - 20px); /* 幅の左右に10pxの余白を持たせる */
  max-width: 712px; /* 最大幅を712pxに設定 */
  z-index: 10000;
  transition: 0.3s;
  box-sizing: border-box; /* パディングやボーダーを含めたサイズ計算 */
}
.bl_floatingBanner img {
  width: 100%;
  height: auto; /* 高さを自動調整 */
  object-fit: cover; /* 画像をバナーのサイズに合わせて調整 */
}
.bl_floatingBanner_close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: -5px;
  top: -13px;
  cursor: pointer;
  color: #FFD700;
}
.bl_floatingBanner.js_close {
  display: none;
}
.bl_floatingBanner_img {
  display: block;
  transition: 0.3s;
}
.bl_floatingBanner_img:hover {
  opacity: 0.6;
}
.bl_floatingBanner_close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 5px;
  top: -20px;
  cursor: pointer;
  color: #FFB800;
}
.bl_floatingBanner_close span:nth-of-type(1) {
  position: absolute;
  top: 8px;
  right: 0;
  width: 18px;
  height: 2px;
  background-color: #FFB800;
  transform: rotate(45deg);
}
.bl_floatingBanner_close span:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 8px;
  width: 2px;
  height: 18px;
  background-color: #FFB800;
  transform: rotate(45deg);
}
.bl_floatingBanner.js_close {
  display: none;
}
/*ボタンレイアウト*/
.app {
  width: 94%;
  margin: 0 10px;
  text-align: center;
  margin-left: auto;
  margin-right: auto
}
.app1 {
  width: 47%;
    margin-left: auto;
    margin-right: auto;
}
.app a, .app1 a, .app2 a {
  text-decoration: none;
  display: block
}
/* ボタンマウスオーバー時に半透明 */
.app1 a:hover .mpkbtn, a:hover .repair_important, .RepairMenu_btn:hover {
  opacity: 0.7;
  -moz-opacity: 0.7;
  filter: alpha(opacity=70)
}
/*ボタンデザインと配置*/
.mpkbtn {
  height: auto;
  padding: 10px 4px 10px 4px;
  margin-bottom: 20px;
  text-align: center;
background: linear-gradient(to bottom, #DAA520 0%, #EEDD82 50%, #DAA520 100%);
  border: #999 solid 1px;
  border-radius: 10px;
  color: #333;
  font-weight: bold
}
.mpkbtn {
  width: auto
}
/* ボタンマウスオーバー時に半透明 */
.app1 a:hover .mpkbtn, a:hover  {
  opacity: 0.7;
  -moz-opacity: 0.7;
  filter: alpha(opacity=70)
}

/*★★★★★横幅が最大で599px時★★★★★*/
@media (max-width:599px) {
  .app, .app1 {
    width: 75%;
    margin-left: auto;
    margin-right: auto
  }
  .mpkbtn {
    width: auto;
    height: 25px;
    padding: 5px;
    border-radius: 5px;
  }

  /*ボタン内テキスト行が増える場合の対応*/
 .mpkbtn {
    height: auto
  }
}