/* privacypolicy page style sheet */


.privacypolicy-truste p{
  font-size: 16px;
  line-height: 2;
}

.privacypolicy-truste__links{
  display: flex;
  gap: min(calc(var(--window-width) * 60 / 1120) ,60px);
  flex-wrap: wrap;
}
@media(max-width: 767px){
  .privacypolicy-truste p{
    font-size: 14px;
    line-height: calc(18 / 14);
  }
  
  .privacypolicy-truste__links{
    flex-direction: column;
    row-gap: 30px;
  }
  .privacypolicy-truste__links a img{
    width: 200px;
  }
}


/* terms page style sheet */

.terms-container{}
@media(max-width: 768px){
  .terms-container{
    margin-inline: calc(-1 * var(--container-safe-area));
  }
}

.terms-subtitle{}
.terms-subtitle img{
  width: calc(100% * var(--width-pc, var(--width)) / 1120);
  height: auto;
}
@media(max-width: 767px){
.terms-subtitle img{
  width: calc(var(--window-width) * var(--width-sp, var(--width)) / 375);
}}


.terms-accordion{
  --item-spacing: 52px;
}
.terms-accordion .accordion-item{
  border: solid var(--color-ig-red);
  border-width: 0 0 1px 0;
}
.terms-accordion .accordion-item:first-child{
  border-top-width: 1px;
}
.terms-accordion .accordion-item__summary{
  padding-right: 36px;
  padding-block: var(--item-spacing) calc(0.8 * var(--item-spacing));
}
.terms-accordion .accordion-item__title{
  flex: 1 0 auto;
}
@media(max-width: 767px){
  .terms-accordion{
    --item-spacing: 30px;
    margin-inline: calc(-1 * var(--container-safe-area));
  }
  .terms-accordion .accordion-item__summary{
    padding-inline: var(--container-safe-area);
  }
}

.terms-accordion .accordion-item__icon{
  --bar-width: 25px;
}
@media(max-width: 767px){
  .terms-accordion .accordion-item__icon{
    --bar-width: 16px;
  }
}
.terms-accordion .accordion-item__icon::before,
.terms-accordion .accordion-item__icon::after{
  background-color: var(--color-ig-black);
}

.terms-accordion .accordion-item__inner{
  padding-block: 10px 140px;
}
@media(max-width: 767px){
  .terms-accordion .accordion-item__inner{
    padding-inline: var(--container-safe-area);
    padding-bottom: 80px;
  }
}





/* term */
.term-content{
}

.term-content__inner{}

.term-content__txt,
.term-content__txt *{
  font-size: 16px;
  line-height: 2;
}
.term-content__txt:not(:last-child){
  margin-bottom: 2em;
}
.term-content__txt h2{
  font-weight: 700;
}
.term-content__txt a{
  text-decoration: underline;
}
@media(max-width: 767px){
  .term-content__txt,
  .term-content__txt *{
    font-size: 14px;
    line-height: calc(18 / 14);
  }
}

.term-nested-block{
  margin-left: 1em;
}


.term-nested{}
.term-nested{
  position: relative;
  list-style: none;
}

.term-nested > li{
  position: relative;
  display: block;
  padding-left: 3em
}
.term-nested > li:before{
  position: absolute;
  left: 0;
  display: block
}

.term-nested-kana > li{
  padding-left: 3em
}
.term-nested-kana > li:nth-of-type(1):before{ content: "（ア）"; }
.term-nested-kana > li:nth-of-type(2):before{ content: "（イ）"; }
.term-nested-kana > li:nth-of-type(3):before{ content: "（ウ）"; }
.term-nested-kana > li:nth-of-type(4):before{ content: "（エ）"; }
.term-nested-kana > li:nth-of-type(5):before{ content: "（オ）"; }
.term-nested-kana > li:nth-of-type(6):before{ content: "（カ）"; }
.term-nested-kana > li:nth-of-type(7):before{ content: "（キ）"; }
.term-nested-kana > li:nth-of-type(8):before{ content: "（ク）"; }
.term-nested-kana > li:nth-of-type(9):before{ content: "（ケ）"; }
.term-nested-kana > li:nth-of-type(10):before{ content: "（コ）"; }


.term-nested--rounded-number{}
.term-nested--rounded-number > li{
  padding: 0 0 0 1em
}

.term-nested--rounded-number > li:nth-of-type(1):before{ content: "①"; }
.term-nested--rounded-number > li:nth-of-type(2):before{ content: "②"; }
.term-nested--rounded-number > li:nth-of-type(3):before{ content: "③"; }
.term-nested--rounded-number > li:nth-of-type(4):before{ content: "④"; }
.term-nested--rounded-number > li:nth-of-type(5):before{ content: "⑤"; }
.term-nested--rounded-number > li:nth-of-type(6):before{ content: "⑥"; }
.term-nested--rounded-number > li:nth-of-type(7):before{ content: "⑦"; }
.term-nested--rounded-number > li:nth-of-type(8):before{ content: "⑧"; }
.term-nested--rounded-number > li:nth-of-type(9):before{ content: "⑨"; }
.term-nested--rounded-number > li:nth-of-type(10):before{ content: "⑩"; }
.term-nested--rounded-number > li:nth-of-type(11):before{ content: "⑪"; }
.term-nested--rounded-number > li:nth-of-type(12):before{ content: "⑫"; }



.term-table-container{
  margin-top: 10px;
  padding-inline: 10px;
}
@media(max-width: 767px){
  .term-table-container{
    /* padding-inline: 0; */
    overflow-x: scroll;
  }
}


.term-table{
  --space-x: 16px;
  --space-y: 28px;
  width: 100%;
}
@media(max-width: 767px){
  .term-table{
    --space-x: 8px;
    --space-y: 16px;
    width: 840px;
  }
}

.term-table,
.term-table th,
.term-table td{
  border: 1px solid var(--color-ig-black);
}

.term-table th{
  padding-block: 1em;
  padding-inline: var(--space-x);
}
.term-table th.--text-center{
  text-align: center;
}
@media(max-width: 767px){
  .term-table th.--text-center{
    text-align: left;
  }
}

.term-table th.--width-50{
  width: 50%;
}
.term-table th.--width-20{
  width: 20%;
}
.term-table th.--width-30{
  width: 30%;
}

.term-table td{
  padding: var(--space-y) var(--space-x);
}