/* 基本样式 */
* {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  touch-action: manipulation;
}

/* header */

.header{
  background-color: #095f70;
  width: 100%;
  height: 60px;
  -webkit-user-select: none; /* Safari */
  user-select: none;
}

.header-box{
  width: 100%;
  max-width: 1000px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo{
  width: 244px;
  cursor: pointer;
}

@media screen and (max-width: 767px){
  .header-box{
    padding: 0 20px;
  }

  .header-logo{
    width: 234px;
  }
}

.header-btn{
  width: 105px;
  height: 30px;
  line-height: 2.5em;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: block;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
  border-radius: 15px;
}

/* footer */