@charset "UTF-8";
/* タイトルデザイン */
.ttl {
  font-family: semplicitapro,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",'Noto Sans JP',"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: .05em;
  text-align: center;
  margin-bottom: 44px;
}

.ttl .sub_ttl {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",'Noto Sans JP',"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  display: block;
  padding-top: 2px;
}

.ttl02 {
  font-family: semplicitapro,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",'Noto Sans JP',"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .05em;
}

.ttl02 .sub_ttl {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",'Noto Sans JP',"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  display: block;
  padding-top: 2px;
  font-weight: normal;
}

/* ボタンデザイン */
.btn {
  width: 150px;
  margin: 0 auto;
  text-align: center;
}

.btn a {
  font-family: semplicitapro, sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .05em;
  background-color: #f9db5f;
  padding: 13px 0;
  border-radius: 40px;
  transition: all 0.2s;
}

.btn a:hover {
  background-color: #ffe26b;
}

.btn02 {
  width: 150px;
  margin: 0 auto;
  text-align: center;
}

.btn02 a {
  font-family: semplicitapro, sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .05em;
  background-color: #fff;
  padding: 13px 0;
  border-radius: 40px;
  transition: all 0.2s;
}

.btn02 a:hover {
  background-color: #686868;
  color: #fff;
}

.btn.men a{
  background-color: #4e4e4e;
  color: #FFF;
}
.btn.men a:hover {
  background-color: #6e6e6e;
}

.gradient_mask {
  position: relative;
}

.gradient_mask::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*background: -webkit-linear-gradient(110deg, #ef8835 0%, #f8d54f 100%);
  background: -webkit-linear-gradient(bottom, #ef8835 0%, #f8d54f 100%);
  background: linear-gradient(20deg, #ef8835 0%, #f8d54f 100%);*/
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  mix-blend-mode: color;
}

.gradient_mask:hover::before {
  opacity: .7;
}