@charset "UTF-8";

/* ==================================
   Generic Button
================================== */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 15px 40px;
  background-color: #005091;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 2px solid #005091;
  cursor: pointer;
  transition: opacity 0.2s;
  box-sizing: border-box;
}

.c-btn:hover {
  opacity: 0.82;
  color: #fff;
}

.c-btn--outline {
  background-color: transparent;
  color: #005091;
}

.c-btn--outline:hover {
  background-color: #005091;
  color: #fff;
  opacity: 1;
}

.c-btn--light {
  background-color: #fff;
  color: #005091;
  border-color: #fff;
}

.c-btn--light:hover {
  background-color: transparent;
  color: #fff;
  opacity: 1;
}

/* ==================================
   Generic Container
================================== */
.c-container {
  max-width: 1400px;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ==================================
   Display Utility
================================== */
.only-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
  .only-sp {
    display: block;
  }
}

