@charset "utf-8";

:root {
  --base-width: 1200px;
  --pc-font: 17px;
  --sp-font: 15px;
  --color-black: #1d1d1f;
  --color-gray: #e7e7e7;
  --color-gray-thin: #efefef;
  --color-gray-dark: #9a9a9a;
  --color-red: #f46c6c;
  --color-blue: #005bab;
}

html {
  -webkit-text-size-adjust: 100%;
}

.uq-content {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 1.7;
  color: var(--color-black);
  font-size: var(--pc-font);
}

.uq-content img {
  max-width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
}

.uq-content a {
  color: var(--color-blue);
  text-decoration: underline;
}

@media screen and (max-width: 480px) {

  .uq-content {
    font-size: var(--sp-font);
    line-height: 1.6;
  }

  .uq-content a {
    font-size: var(--sp-font);
  }
}

/******************
btn
*******************/

/* text link */

.cont_btn {
  margin-top: 30px;
  margin-bottom: 35px;
}

.cont_btn a {
  padding-left: 1.5em;
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid var(--color-blue);
}
.cont_btn a::before {
  content: "▶";
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 480px) {
  .cont_btn a {
    font-size: var(--sp-font);
  }
}

/* btn link */

.uq-content .sectionOriginal__button {
  margin-top: 35px;
  margin-bottom: 35px;
}

.uq-content .sectionOriginal__button a {
  position: relative;
  display: block;
  max-width: 240px;
  height: 55px;
  line-height: 55px;

  background-color: var(--color-red);
  text-align: center;
  color: #fff;
  text-decoration: none;
  margin: 0 auto;
  font-size: 16px;
}

.uq-content .sectionOriginal__button a::before {
  content: "▶";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
}
