@charset "UTF-8";
/* ===============================
moreボタン
=============================== */
.watchband_btn_2col_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .watchband_btn_2col_wrap {
    flex-direction: column;
  }  
}
.watchband_btn_2col_wrap .btn_more {
  font-size: 1.4rem!important;
  font-family: var(--font_noto_sans)!important;
  display: inline-block;
  width: 48%;
  cursor: pointer;
  border: solid 1px #ccc;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all .2s ease;
  position: relative;
}
@media screen and (max-width: 599px) {
  .watchband_btn_2col_wrap .btn_more {
    width: 100%;
    margin-bottom: 2rem;
  }
  .watchband_btn_2col_wrap .btn_more:last-child {
    margin-bottom: 0;
  }
}
.watchband_btn_2col_wrap .btn_more a {
  font-size: 1.4rem!important;
  font-family: var(--font_noto_sans)!important;
  color: inherit!important;
  display: inline-block;
  width: 100%;
  padding: 2rem;
}
@media screen and (max-width: 599px) {
  .watchband_btn_2col_wrap .btn_more a {
    padding: 1.6rem;
  }
}
.watchband_btn_2col_wrap .btn_more a:hover {
    text-decoration: none;
    background-color: #161616;
    color: #FFF!important;
}


