/*PC(1024px以上)*/
header{
  width: 100%;
  font-family: '小塚ゴシック Pr6N R','メイリオ Regular','ヒラギノ角ゴ Pro W3';
}
.logo-area {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 1024px;
  margin: 5px auto;
}
#ToshinLogo img {
  width: 200px;
  height: auto;
}
.logo-text {
  display: block;
  margin-left: 3px;
  color: #009380;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  text-shadow: 1px 1px 0 #ffffff;
  white-space: nowrap;
}
.brand-logo-box {
  display: flex;
}
.brand-logo {
  margin-left: 5px;
  width: 250px;
}
@media screen and (max-width: 1023px) {
  .logo-area {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .logo-area {
    margin: .5vw 0;
  }
  #ToshinLogo img {
    width: 45vw;
  }
  .brand-logo-box {
    display: block;
    text-align: right;
  }
  .brand-logo {
    margin: 0 .5vw .5vw 0;
    width: 40vw;
  }
  .brand-logo:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 374px) {
  .logo-text {
    font-size: 2vw;
  }
}

/*ページ更新ボタン*/
.reload-button {
  align-items: center;
  background: rgba(255,255,255,.8);
  border: solid 2px #4d4d4d;
  border-radius: 5px;
  box-shadow: 2px 2px 2px rgb(0 0 0 / 30%);
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  margin: 5px;
  padding: 2px 5px;
  position: absolute;
  left: calc(1024px + (100% - 1024px)/2);
  top: 5px;
}

.reload-icon {
    width: 20px!important;
    margin-right: 0.6em;
    padding-left: 3px;
}

@media screen and (max-width: 1388px){
  .reload-button {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 767px){
  .reload-button {
      display: inline-flex;
      position: absolute;
      top: 0;
      right: 0;
      z-index: 99999;
      align-items: center;
      margin: 1vw .5vw;
      padding: 1.2vw 2.4vw;
      border: solid 3px #4d4d4d;
      border-radius: 5px;
      box-shadow: 2px 2px 2px rgb(0 0 0 / 30%);
      background: rgba(255,255,255,.8);
      color: #000000;
      font-size: 4vw;
      cursor: pointer;
  }

  .reload-icon {
      width: 5vw!important;
      margin-right: 1.5vw;
  }
｝
