@charset "Shift_JIS";

/*------------------------------------
基本CSS
-------------------------------------*/
#wrap {
  max-width: 900px;
  margin: 0 auto;
}

#wrap img {
  max-width: 100%;
  width: 100%;
}

#wrap .pc_none {
  display: none !important;
}

/*------------------------------------
ここから追加
-------------------------------------*/

#link-btn {
  display: flex;
  flex-flow: column;
  width: 100%;
}
#link-btn .btn {
  font-size: clamp(1.125rem, 0.95rem + 0.88vw, 2rem);
  margin: 2% auto;
  text-align: center;
  width: 100%;
  font-weight: 800;
  line-height: 1.7em;
  letter-spacing: 1px;
}
#link-btn .btn a {
  font-size: inherit;
  display: block;
  color: #fff;
  padding: 1.7em 0;
  background-color: #547c9f;
  position: relative;
  vertical-align: middle;
  text-decoration: none;
  border-radius: 10px;
}
#link-btn .arrow::before,
#link-btn .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2%;
  margin: auto;
  content: "";
  vertical-align: middle;
}
#link-btn .arrow::before {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #32506a;
}
#link-btn .arrow::after {
  right: 2%;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border: 10px solid transparent;
  border-left: 15px solid #fff8ac;
}
#link-btn .btn .str {
  font-size: 120%;
  background: #32506a;
  color: #fff8ac;
  padding: 0.5% 2%;
  margin-right: 1%;
  border-radius: 5px;
  letter-spacing: 2px;
}

#link-btn .btn a:hover {
  opacity: 0.7;
  transition: 0.7s;
}
