@charset "UTF-8";
/*
変数関係をまとめたファイル
 */
/*
色に関して記述しているファイル
色に関して、ここで宣言をしたものを利用する様にする

例：
color: $color-font-white;
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.privacy-page {
  margin-top: 209px;
  margin-bottom: 120px;
}

@media screen and (max-width: 897px) {
  .privacy-page {
    margin-top: 240px;
    margin-bottom: 80px;
  }
}

.privacy-page > .section-title {
  margin-bottom: 48px;
}

.privacy-page > .section-title > .container > .page-title {
  font-size: 32px;
  letter-spacing: 0.28em;
  line-height: 1.6;
  margin-bottom: 80px;
}

@media screen and (max-width: 897px) {
  .privacy-page > .section-title > .container > .page-title {
    letter-spacing: 0.08em;
    line-height: 1.52;
    margin-bottom: 35%;
  }
}

@media screen and (max-width: 640px) {
  .privacy-page > .section-title > .container > .page-title {
    margin-bottom: 45%;
  }
}

.privacy-page > .section-title > .container > .page-title > .block {
  display: inline-block;
}

.privacy-page > .section-title > .container > .small-title {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 24px;
}

@media screen and (max-width: 897px) {
  .privacy-page > .section-title > .container > .small-title {
    line-height: 1.52;
    margin-top: 0;
    margin-bottom: 24px;
  }
}

.privacy-page > .section-title > .container > .lead {
  letter-spacing: 0.08em;
  line-height: 1.6;
}

@media screen and (max-width: 897px) {
  .privacy-page > .section-title > .container > .lead {
    font-size: 13px;
    line-height: 1.52;
  }
}

.privacy-page > .section-contents > .container > .texts {
  margin-bottom: 48px;
}

@media screen and (max-width: 897px) {
  .privacy-page > .section-contents > .container > .texts {
    margin-bottom: 32px;
  }
}

.privacy-page > .section-contents > .container > .texts > .title,
.privacy-page > .section-contents > .container > .texts > .text {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

@media screen and (max-width: 897px) {
  .privacy-page > .section-contents > .container > .texts > .title,
  .privacy-page > .section-contents > .container > .texts > .text {
    line-height: 1.52;
  }
}

.privacy-page > .section-contents > .container > .texts > .title {
  margin-bottom: 4px;
}

@media screen and (max-width: 897px) {
  .privacy-page > .section-contents > .container > .texts > .title {
    margin-bottom: 16px;
  }
}

.privacy-page > .section-contents > .container > .texts.contact {
  margin-bottom: 120px;
}

@media screen and (max-width: 897px) {
  .privacy-page > .section-contents > .container > .texts.contact {
    margin-bottom: 80px;
  }
}

.privacy-page > .section-contents > .container > .button {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.privacy-page > .section-contents > .container > .button > .link {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border: 1px solid #000000;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px 64px 20px 34px;
  transition: all 0.3s;
}

.privacy-page > .section-contents > .container > .button > .link:before, .privacy-page > .section-contents > .container > .button > .link:after {
  content: "";
  position: absolute;
  top: 31px;
  left: 44px;
  width: 75px;
  height: 1px;
  -webkit-transition: all 0.24s ease;
  transition: all 0.24s ease;
}

@media screen and (max-width: 897px) {
  .privacy-page > .section-contents > .container > .button > .link:before, .privacy-page > .section-contents > .container > .button > .link:after {
    width: 75px;
    right: 15px;
  }
}

.privacy-page > .section-contents > .container > .button > .link:before {
  background-color: #FFFFFF;
}

.privacy-page > .section-contents > .container > .button > .link:after {
  background-color: #FFFFFF;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

.privacy-page > .section-contents > .container > .button > .link:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.privacy-page > .section-contents > .container > .button > .link:hover:before {
  background-color: #000000;
}

.privacy-page > .section-contents > .container > .button > .link:hover:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.privacy-page > .section-contents > .container > .button > .link:hover > .icon {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
