@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");

body {
  overflow: auto;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, Helvetica, Arial, sans-serif;
}
#wrapper{
  font-size: 14px;
}

:root {
  --color-rd: #CC0033;
  --color-bk: #000;
  --color-wt: #fff;
  --font-family-inter: "Inter", "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, Helvetica, Arial, sans-serif;
}

.font--inter {
  font-family: var(--font-family-inter);
}

.sp_only,
.tab_only,
.sp_tab_only{
  display: none;
}
@media screen and (max-width:768px){
  .pc_only{
    display: none;
  }
  .tab_only,
  .sp_tab_only{
    display: block;
  }
}
@media screen and (max-width:430px){
  .tab_only{
    display: none;
  }
  .sp_only{
    display: block;
  }
}
a {
  display: inline-block;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
*,
* :after,
* :before{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 白色ボタン */
.wt_btn{
  padding: 11px 21.5px;
  border-radius: 6px;
  background: var(--color-wt);
  color: var(--color-bk);
  font-weight: 700;
}
.wt_btn:hover{
  color: var(--color-rd);
  text-decoration: none;
}

/* 先頭矢印ボタン */
.arrow_link{
  position: relative;
  padding-left: 19px;
  color: var(--color-bk);
}
.arrow_link::before{
  content: "";
  position: absolute;
  top: .5em;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(/img/common/icon_arrow-right.png) no-repeat center / contain;
}
.arrow_link:hover{
  color: var(--color-rd);
  font-weight: 700;
}

/* 背景赤色ボタン */
.oval_link{
  position: relative;
  padding: 10px 25px 10px 57px;
  border-radius: 12px;
  background: var(--color-rd);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}
.oval_link::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/img/common/icon_arrow_circle-down.png) no-repeat center / contain;
}
.oval_link:hover{
  text-decoration: none;
  opacity: .7;
}

/* 線赤色ボタン */
.border_link{
  padding: 10px 10px 14px;
  border: 2px solid var(--color-rd);
  border-radius: 12px;
  color: var(--color-rd);
  font-size: 16px;
  font-weight: 700;
}
.border_link:hover{
  opacity: .7;
  text-decoration: none;
}

