@charset "UTF-8";
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.terms-page > .container-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  height: 100svh;
}
@media screen and (max-width: 820px) {
  .terms-page > .container-contents {
    height: auto;
    padding-bottom: 50px;
  }
}
.terms-page > .container-contents > .container-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  padding: 0 40px;
}
@media screen and (max-width: 820px) {
  .terms-page > .container-contents > .container-text {
    overflow: visible;
    scrollbar-gutter: auto;
    padding: 0 16px;
  }
}
.terms-page > .container-contents > .container-text > .text {
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (max-width: 820px) {
  .terms-page > .container-contents > .container-text > .text {
    font-size: 14px;
    margin-bottom: 28px;
  }
}
.terms-page > .container-contents > .container-text > .small-title {
  position: relative;
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 16px;
}
@media screen and (max-width: 820px) {
  .terms-page > .container-contents > .container-text > .small-title {
    font-size: 18px;
    margin-bottom: 16px;
    padding-left: 12px;
  }
}
.terms-page > .container-contents > .container-text > .small-title:before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #E4E4F6;
}