@charset "UTF-8";
/*=============================================
*
* 
*
=============================================*/
@keyframes rotateRight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.customize-support .main-contents {
  top: 0;
}

/*=============================================
*
* 
*
=============================================*/
/*=============================================
*
* ニュース一覧タイトル
*
=============================================*/
.privacy-policy-hero {
  background: url(../images/privacy-policy/privacy-policy-hero-bg.png) no-repeat center center/cover;
}

.privacy-policy-hero__content-box {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1100px;
  min-height: 480px;
  padding: 0 20px;
  position: relative;
}
@media screen and (max-width: 700px) {
  .privacy-policy-hero__content-box {
    min-height: 280px;
  }
}

.privacy-policy-hero__heading-box {
  text-align: left;
}
@media screen and (max-width: 700px) {
  .privacy-policy-hero__heading-box {
    margin-bottom: 20px;
  }
}

.privacy-policy-hero__heading {
  color: #fff;
  font-size: 15.4rem;
  letter-spacing: 0.01em;
  line-height: 0.7;
  margin-bottom: 8px;
  position: relative;
}
@media screen and (max-width: 700px) {
  .privacy-policy-hero__heading {
    font-size: 7rem;
    margin-bottom: 4px;
  }
}

.privacy-policy-hero__heading-jp {
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 700px) {
  .privacy-policy-hero__heading-jp {
    font-size: 2rem;
  }
}

.privacy-policy__circle-img-box {
  position: absolute;
  left: -150px;
  top: calc(50% - 150px);
  transform: translateY(-50%);
}
@media screen and (max-width: 700px) {
  .privacy-policy__circle-img-box {
    left: -110px;
    top: calc(50% - 110px);
    width: 220px;
  }
}
.privacy-policy__circle-img-box .effect.fade-in.is-scrollin {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.privacy-policy-hero__circle-svg-box {
  animation: rotateRight 40s linear infinite;
}
.privacy-policy-hero__circle-svg-box svg {
  width: 100%;
}
.privacy-policy-hero__circle-svg-box svg path {
  fill: #fff;
  opacity: 0.4;
}

/*=============================================
*
* 
*
=============================================*/
.privacy-policy-content__inner {
  margin: 0 auto;
  max-width: 1100px;
  padding: 110px 0;
}
@media screen and (max-width: 700px) {
  .privacy-policy-content__inner {
    padding: 55px 0;
  }
}

@media screen and (max-width: 1160px) {
  .privacy-policy__content-box {
    padding: 0 16px;
  }
}

.privacy-policy-list > li {
  margin-bottom: 60px;
}
.privacy-policy-list > li p {
  line-height: 1.8;
}

h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 700px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 2.5rem;
  font-weight: 500;
  border-bottom: 2px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
@media screen and (max-width: 700px) {
  h3 {
    font-size: 2rem;
  }
}

p {
  margin-bottom: 1em;
  text-align: left;
}

ul li {
  margin-bottom: 0.5em;
}

ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  counter-reset: item;
  margin-left: 0;
  padding-left: 1.5em;
}

ol > li {
  counter-increment: item;
  margin-bottom: 0.5em;
  padding-left: 20px;
  position: relative;
}
ol > li ol, ol > li ul {
  padding-top: 15px;
}

ol > li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  font-weight: bold;
}

ol ol {
  list-style: none;
  counter-reset: sub-item;
  margin-left: 2em;
  padding-left: 1.5em;
}

ol ol > li {
  counter-increment: sub-item;
  padding-left: 30px;
}
ol ol > li ul {
  padding-top: 15px;
}

ol ol > li::before {
  content: counter(item) "-" counter(sub-item) ".";
  font-weight: bold;
}

strong {
  font-weight: 700;
}