@charset "UTF-8";

/*
  main visual
*/

.main-visual {
  color: #fff;
  margin-bottom: 3rem;
  text-shadow: 0 0 6px #444;
}

.visual-contact-button {
  margin: 3.6rem 0 2rem;
}

.visual-contact-button a {
  background-color: #d23d2a;
  border-radius: 2px;
  color: #fff;
  padding: 1rem 4rem;
}

.visual-contact-button a:hover {
  background-color: #fb5e4a;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .main-visual {
    padding: 3rem 1rem 5rem;
  }

  .visual-head {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .visual-img {
    width: 8rem;
    display: block;
    margin: 1rem auto;
  }

  .visual-copy {
    font-size: 1rem;
    line-height: 2;
  }

  .visual-contact-button {
    text-align: center;
  }

  .visual-contact-button a {
    padding: 1rem 5rem;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .main-visual {
    padding: 3rem 0;
  }

  .visual-head {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .main-visual_top .visual-head {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .visual-img {
    width: 8rem;
    margin-right: 1.5rem;
  }

  .visual-copy {
    align-items: flex-start;
    display: flex;
    font-size: 1.15rem;
    line-height: 2;
  }
}

/**
 * SECTION
 */

.section-head {
  color: #0e2c3a;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .section {
    padding: 0 1rem;
  }
}

/**
 * BUTTON
 */

.button {
  align-items: center;
  border-radius: 4px;
  border: 2px solid #0e2c3a;
  box-sizing: border-box;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  height: 50px;
  justify-content: center;
  margin: 0;
}

.button:hover {
  border-color: #496b7b;
}

.button.primary {
  background-color: #0e2c3a;
  color: #fff;
}

.button.primary:hover {
  background-color: #496b7b;
}

.button.secondary {
  background-color: #fff;
  color: #0e2c3a;
}

.button.secondary:hover {
  color: #496b7b;
}

/**
 * LIST
 */

.list-item + .list-item {
  margin-top: 0.5rem;
}

.list-disc .list-item {
  list-style: disc outside;
  margin-left: 1rem;
}

/* --------------------
  IE11 hack
-------------------- */
@media all and (-ms-high-contrast: none) {
  .button {
    padding-top: 6px;
  }
}