@charset "UTF-8";

/* ==========================================================================
   TOPページ「受講者の皆様へお知らせ」
========================================================================== */

.fixedInformationBox{
  display: none;
  position: fixed;
  z-index: 99999;
  bottom: 40px;
  right: 47px;
  /* width: 448px; */
  width: 466px;
  /* height: 421px; */
  background: #000000;
  border-radius: 8px;
  padding: 14px 5px 19px 17px;
  transition: width .15s linear,height .15s linear,padding .15s linear;
  letter-spacing: 0.05em;
  text-wrap: pretty;
}

.fixedInformationBox >header{
    cursor: pointer;
    padding-bottom: 11px;
  }

.fixedInformationBox >header .num{
      display: none;
      width: 21px;
      height: 21px;
      place-content: center;
      background: #FA2730;
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0;
      line-height: 1;
      margin: 0;
      text-align: center;
      border-radius: 50%;
      padding-bottom: .25em;
      opacity: 0;
    }

.fixedInformationBox >header .infoTitle{
      font-size: 14px;
      font-weight: 500;
      line-height: 1.5;
      color: #fff;
      margin: 0;
    }

.fixedInformationBox >header .openCloseBtn{
      cursor: pointer;
      background: none;
      line-height: 1;
      padding: 0;
      outline:none;
      border: none;
      width: 40px;
      height: 40px;
      position: absolute;
      top: -20px;
      right: 16px;
      transition: rotate .2s linear;
    }

.fixedInformationBox >header .openCloseBtn svg{
        width: 100%;
        height: 100%;
      }

.fixedInformationBox .hideBox{
    display: block;
  }

.fixedInformationBox .scrollBox{
    overflow-y: auto;
    max-height: 356px;
    padding-right: 12px;
  }

.fixedInformationBox .informationBox{
    padding: 10px 15px;
    background: rgba(120,120,120,.5);
    border-radius: 6px;
  }

.fixedInformationBox .informationBox a{
      text-decoration: none;
    }

.fixedInformationBox .informationBox .informationBoxHeader{
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }

.fixedInformationBox .informationBox .type{
      color: #4798FF;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.5;
      margin: 0;
    }

.fixedInformationBox .informationBox .status{
      color: #FA2730;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.5;
      margin: 0;
      flex-shrink: 0;
    }

.fixedInformationBox .informationBox .title{
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.5;
      margin: 0;
      text-align:left;
    }

.fixedInformationBox .informationBox .title::after{
        content: '';
        width: 12px;
        height: 12px;
        display: inline-block;
        background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6%201.5H0.5V12.5H11.5V7%22%20stroke%3D%22white%22%2F%3E%3Cpath%20d%3D%22M6%207L12%201%22%20stroke%3D%22white%22%2F%3E%3Cpath%20d%3D%22M8.5%200.5H12.5V4.5%22%20stroke%3D%22white%22%2F%3E%3C%2Fsvg%3E');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        margin-left: 6px;
      }

.fixedInformationBox .informationBox .time{
      font-size: 13px;
      color: #BEBEBE;
      font-weight: 500;
      line-height: 1.5;
      margin: 7px 0 0;
    }

.fixedInformationBox .informationBox + .informationBox{
    margin-top: 4px;
  }

.fixedInformationBox .informationBox:not(:has(.status)){
    background: none;
  }

.fixedInformationBox:has(.informationClose){
  width: 253px;
  padding-block: 0;
  height: 61px;
}

.fixedInformationBox:has(.informationClose) >header{
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0 5px;
    padding: 0;
    position: relative;
  }

.fixedInformationBox:has(.informationClose) >header::before{
      content: '';
      width: 253px;
      height: 61px;
      position: absolute;
      top: -14px;
      left: -17px;
      background: transparent;
      z-index: 2;
    }

.fixedInformationBox:has(.informationClose) >header .num{
      display: grid;
      animation: fadeIn .3s 1 .2s linear forwards;
    }

.fixedInformationBox:has(.informationClose) >header .openCloseBtn{
      position: static;
      width: 28px;
      height: 28px;
      rotate: -180deg;
    }

.fixedInformationBox:has(.informationClose) .hideBox{
    display: none;
  }

@keyframes fadeIn {
  0%{
    display: grid;
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

/* ==========================================================================
   end
========================================================================== */

@media (max-width: 767px) {
/* ==========================================================================
   TOPページ「受講者の皆様へお知らせ」
========================================================================== */
.fixedInformationBox{
  bottom: calc(calc(13/375) * 100vw);
  right: calc(calc(9/375) * 100vw);
  width: calc(calc(357/375) * 100vw);
  /* height: calc(calc(482/375) * 100vw); */
  border-radius: calc(calc(8/375) * 100vw);
  padding: calc(calc(11/375) * 100vw) calc(calc(16/375) * 100vw) calc(calc(17/375) * 100vw);
  background: rgba(0,0,0,.9);
}
  .fixedInformationBox >header{
    padding-bottom: calc(calc(12/375) * 100vw);
  }
    .fixedInformationBox >header .num{
      width: calc(calc(21/375) * 100vw);
      height: calc(calc(21/375) * 100vw);
      font-size: calc(calc(13/375) * 100vw);
      padding: 0;
    }
    .fixedInformationBox >header .infoTitle{
      font-size: calc(calc(16/375) * 100vw);
    }
    .fixedInformationBox >header .openCloseBtn{
      width: calc(calc(40/375) * 100vw);
      height: calc(calc(40/375) * 100vw);
      position: absolute;
      top: calc(-1 * calc(calc(20/375) * 100vw));
      right: calc(calc(16/375) * 100vw);
    }
  .fixedInformationBox .scrollBox{
    max-height: calc(calc(419/375) * 100vw);
    padding-right: 0;
  }
  .fixedInformationBox .informationBox{
    padding: calc(calc(10/375) * 100vw) calc(calc(15/375) * 100vw);
    border-radius: calc(calc(9/375) * 100vw);
  }
    .fixedInformationBox .informationBox .informationBoxHeader{
      gap: calc(calc(8/375) * 100vw);
      margin-bottom: calc(calc(3/375) * 100vw);
    }
    .fixedInformationBox .informationBox .type{
      font-size: calc(calc(16/375) * 100vw);
    }
    .fixedInformationBox .informationBox .status{
      font-size: calc(calc(16/375) * 100vw);
    }
    .fixedInformationBox .informationBox .title{
      font-size: calc(calc(16/375) * 100vw);
    }
      .fixedInformationBox .informationBox .title::after{
        width: calc(calc(12/375) * 100vw);
        height: calc(calc(12/375) * 100vw);
        margin-left: calc(calc(6/375) * 100vw);
      }
    .fixedInformationBox .informationBox .time{
      font-size: calc(calc(15/375) * 100vw);
      margin: calc(calc(4/375) * 100vw) 0 0;
    }
  .fixedInformationBox .informationBox + .informationBox{
    margin-top: calc(calc(3/375) * 100vw);
  }
  .fixedInformationBox .informationBox:not(:has(.status)){
    background: none;
  }

.fixedInformationBox:has(.informationClose){
  width: calc(calc(253/375) * 100vw);
  height: calc(calc(61/375) * 100vw);
  padding-left: calc(calc(14/375) * 100vw);
}
  .fixedInformationBox:has(.informationClose) >header{
    gap: 0 calc(calc(6/375) * 100vw);
  }
    .fixedInformationBox:has(.informationClose) >header::before{
      width: calc(calc(253/375) * 100vw);
      height: calc(calc(61/375) * 100vw);
      top: calc(-1 * calc(calc(11/375) * 100vw));
      left: -calc(-1 * calc(calc(14/375) * 100vw));
    }
    .fixedInformationBox:has(.informationClose) >header .infoTitle{
      font-size: calc(calc(14/375) * 100vw);
      letter-spacing: 0;
    }
    .fixedInformationBox:has(.informationClose) >header .openCloseBtn{
      position: static;
      width: calc(calc(28/375) * 100vw);
      height: calc(calc(28/375) * 100vw);
    }
  .fixedInformationBox:has(.informationClose) .hideBox{
    display: none;
  }
/*end*/
}