html,body{
  font-family:”abchanel-couture”, “Hiragino Kaku Gothic Pro”, “ヒラギノ角ゴ Pro W3”, Meiryo, メイリオ, Osaka, sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-style: normal;
  font-weight: 200;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  background:#FFF;
  box-sizing: border-box;
}

.header{
  width: 100%;
  height: 100px;
  border-top:solid 8px #000000;
  border-bottom: solid 1px #ECECEC;
  position: relative;
}

.header .logo{
  max-width: 180px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.main{
  width: 100%;
  height: calc(100dvh - 100px);
  position: relative;
}

.block{
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);

}

.block h2{
  font-size: 30px;
  margin-bottom: 30px;
}

.block h2 br{
  display: none;
}

.block p{
  margin-bottom: 60px;
  font-size: 18px;
}

.block a{
  font-size: 14px;
  color: #333333;
  display: inline-block;
  border: solid 1px #333333;
  padding: 19px 33px 16px 33px;
}

/* ===============================================
# モバイル
=============================================== */
@media screen and (max-width: 768px) {
  .header{
    height: 60px;
  }

  .header .logo{
    max-width:110px;
  }

  .main{
    height: calc(100dvh - 60px);
  }


  .block h2{
    font-size:20px;
  }

  .block h2 br{
    display: block;
  }

  .block p{
    font-size:16px;
  }

}