@charset "utf-8";

/* ================= */
/* 共通 */
/* ================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
}

/* ================= */
/* ヘッダー */
/* ================= */

.header_wp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 9999;
}

.header_logo {
  width: 120px;
}

/* ================= */
/* ハンバーガー */
/* ================= */

.el_humburger {
  display: none;
}

/* ================= */
/* メイン */
/* ================= */

.topmv {
  height: 100vh;
  background: url(../image/top/mv.jpg) center/cover no-repeat;
}

/* ================= */
/* SP */
/* ================= */

@media screen and (max-width: 767px) {
  .header_logo {
    width: 100px;
  }

  .el_humburger {
    display: block;
    width: 25px;
    cursor: pointer;
  }

  .el_humburger span {
    display: block;
    height: 2px;
    background: #fff;
    margin-bottom: 5px;
  }
}
