@charset "UTF-8";

/* ---------------------------------
  reset
--------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: #111;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  vertical-align: top;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #999;
}

/* ---------------------------------
  header
--------------------------------- */
.header {
  text-align: center;
  padding: clamp(50px, 6.6vw, 110px) 0 clamp(8px, 0.7vw, 16px);
}

.header__logo {
  width: clamp(130px, 12.9vw, 220px);
  height: auto;
  margin: 0 auto clamp(6px, 0.7vw, 14px);
}

.header__text {
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.header__text + .header__text {
  margin-top: 2px;
}

.header__label {
  margin-right: 0.35em;
}

/* ---------------------------------
  visual
--------------------------------- */
.visual {
  line-height: 0;
}

.visual__img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------------------------------
  SP
--------------------------------- */
@media (max-width: 767px) {
  .header {
    padding: clamp(40px, 9.4vw, 90px) 0 clamp(20px, 3.25vw, 40px);
  }

  .header__logo {
    width: clamp(140px, 27.4vw, 200px);
    margin-bottom: clamp(8px, 1.25vw, 16px);
  }

  .header__text {
    font-size: clamp(15px, 2.4vw, 20px);
  }

  .header__text + .header__text {
    margin-top: clamp(3px, 0.6vw, 8px);
  }
}
