@charset "utf-8";

.header {
  border-bottom: 1px solid;
  display: flex;
  justify-content: space-between;
  height: 60px;
  position: fixed;
  width: 100%;
  z-index: 10;
}

.header_logo {
  font-size: 32px;
  font-weight: bold;
  padding: 5px 10px;
}

.header_logo a {
  color: var(--sub-text)!important;
  text-decoration: none!important;
}

@media screen and (max-width: 768px) {
  .header {
    height: calc(43*100vw/375);
  }

  .header_logo {
    font-size: calc(20*100vw/375);
    margin-right: calc(-43*100vw/375);
    padding: calc(7*100vw/375) calc(43*100vw/375) calc(7*100vw/375) calc(7*100vw/375);
    width: 100%;
  }
}


.header_info {
  background: url('../img/common/header/icon_info.svg') center/30px auto no-repeat;
  border-left: 1px solid;
  display: block;
  width: 60px;
}

@media screen and (max-width: 768px) {
  .header_info {
    background-size: calc(20*100vw/375) auto;
    border-left: none;
    width: calc(43*100vw/375);
  }
}

.js-infoTrigger {
    cursor: pointer;
}

.header_info-wrap {
  display: none;
  height: 100%;
  left: 0;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header_info-mask {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
}

.header_info-block {
  border: 1px solid;
  border-radius: 5px;
  padding: 40px  20px;
  position: fixed;
  right: 60px;
  top: 80px;
  width: 375px;
  z-index: 1001;
}

.header_info-head {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 35px;
}

.header_info-list {
  margin: 0 0 -20px;
  max-height: calc(100vh - 290px);
  overflow-y: auto;
}

.header_info-list > li {
  border-bottom: 1px solid;
}

.header_info-list .-link {
  display: flex;
  flex-wrap: wrap;
  font-size: var(--sub-size);
  justify-content: flex-start;
  padding: 15px 0;
}

.header_info-list .-date {
  margin: 0 25px 0 0;
}

.header_info-list .-label {
  border-radius: 3px;
  font-size: 10px;
  line-height: 1;
  padding: 5px;
}

.header_info-list .-title {
  padding: 3px 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header_info-block {
    border-radius: calc(15*100vw/375);
    padding: calc(50*100vw/375) calc(20*100vw/375);
    position: absolute;
    right: 0;
    top: calc(70*100vw/375);
    width: 100%;
  }

  .header_info-head {
    font-size: calc(32*100vw/375);
    margin: 0 0 calc(35*100vw/375);
  }

  .header_info-list {
    margin: 0;
    max-height: calc(100vh - (320*100vw/375));
  }

  .header_info-list .-link {
    font-size: var(--main-size);
    padding: calc(15*100vw/375) 0;
  }

  .header_info-list .-label {
    border-radius: calc(3*100vw/375);
    font-size: calc(10*100vw/375);
    padding: calc(5*100vw/375);
  }

  .header_info-list .-title {
    padding: calc(3*100vw/375) 0;
  }
}