@charset "utf-8";

/* ----------------------------------------------------------------------------------------------------
*  common
* ----------------------------------------------------------------------------------------------------*/



/* ----------------------------------------------------------------------------------------------------
*  PC
* ----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px),print {
  .contents__block-style div + div.mt25 {
    margin-top: 25px;
  }
  .hero-button {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
  }
  .hero-button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -5px;
    transition: 0.2s ease-out;
    border-width: 5px 0 5px 6px;
    border-style: solid;
  }
  .hero-button__text {
    width: 100%;
    margin-bottom: -15px;
    font-size: 13px;
  }
  .hero-button--account {
    margin-bottom: 10px;
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
  }
  .hero-button--account::before {
    border-color: transparent #333;
  }
  .hero-button--account:hover {
    background-color: #333;
    color: #fff;
  }
  .hero-button--account:hover::before {
    border-color: transparent #fff;
  }
  .hero-button--net {
    margin-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
  }
  .hero-button--net::before {
    border-color: transparent #fff;
  }
  .hero-button--net:hover {
    background-color: rgba(135, 101, 40, 0.6);
  }
}

/* ----------------------------------------------------------------------------------------------------
*  タブレット画像調整
* ----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1280px),
print {
  
}

/* ----------------------------------------------------------------------------------------------------
*  SP
* ----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 767.9px) {
  .contents__block-style div + div.mt25 {
    margin-top: 2.5rem;
  }
  .hero-button {
    display: flex;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 7rem;
    border: 1px solid #fff;
    border-radius: 0.3rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
  }
  .hero-button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 5%;
    margin-top: -0.5rem;
    border-width: 0.5rem 0 0.5rem 0.6rem;
    border-style: solid;
  }
  .hero-button__text {
    width: 100%;
    margin-bottom: -1rem;
    font-size: 1.2rem;
  }
  .hero-button--account {
    margin: 0 auto 0.5rem;
    background-color: #fff;
    border: 1px solid #333;
    color: #333;
  }
  .hero-button--account::before {
    border-color: transparent #333;
  }
  .hero-button--net {
    margin: 0 auto 0.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
  }
  .hero-button--net::before {
    border-color: transparent #fff;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  other
* ----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1200px) and (min-width: 768px) {
  
}