@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {}

#main-contents div.body {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

 #main-contents div.body {
   max-width: 100%;
   padding-left: 20px;
   padding-right: 20px;
   margin: 0 auto;
 }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 2em;
  padding-bottom: 2em;
}

#main-contents div.body {
  max-width: 100%;
  padding: 0 1em;
  margin: 0 auto;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}

/* ****************************************************************************************************
   * ビジュアル
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.visual {
  background: url("../../_images/privacy/visual.jpg") no-repeat;
  background-size: cover;
  background-position: bottom;
}


/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * プライバシーポリシー
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.privacy {
  position: relative;
}
.privacy .body {
  max-width: 1120px;
  padding-top: 60px;
  padding-bottom: 120px;
}

.privacy .lead {}

.privacy .item {
  margin-top: 90px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:960px) {
  /*ブラウザの幅が736px以下の時*/
  .privacy .item {
    margin-top: 40px;
  }
}

/* ----------------------------------------------------------------------------------------------------
   * リストol
/* ------------------------------------------------------------------------------------------------- */

.privacy ol.style {
  list-style: none;
  counter-reset: cnt;
  margin-top: 20px;
  padding-left: 0;
}

.privacy ol.style > li {
  counter-increment: cnt;
  display: flex;
  align-items: flex-start;
  margin-bottom: 1em;
}

.privacy ol.style > li::before {
  content: counter(cnt) ")";
  margin-right: 0.5em;
  flex-shrink: 0;
}

.privacy ol.style > li > .text p {
  margin: 2em 0 0 0;
}

