body {
  counter-reset: number;
}

/* 背景写真 */
#Privacy {
  display: block;
  background-image: url("../asset/privacy/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100dvh;
  padding: 40px 0;
}

.container {
  /* border: 2px solid blue; */
}

/*********** title ************/
/* Top画像 */
#Privacy .content.title {
  position: relative;
  width: 100%;
  padding: 9px;
  border: 5px solid black;
  border-bottom-width: 10px;
  background-color: white;
}

#Privacy .content.title::before,
#Privacy .content.title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: contain;
}

#Privacy .wrapper .content.title::before {
  background-image: url(../../assets/images/warpLeft.png);
  background-position: left;
}

#Privacy .content.title::after {
  background-image: url(../../assets/images/warpRight.png);
  background-position: right;
}

#Privacy h2 {
  font-size: 48px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

#Privacy h2::after {
  display: inline-block;
  content: attr(data);
  font-size: 12px;
  color: var(--black);
  margin: auto 6px;
}

@media(max-width:997px) {
  #Privacy h2 {
    line-height: 48px;
    flex-direction: column;
  }

  #Privacy h2::after {
    line-height: normal;
  }
}

@media (max-width:576px) {
  #Privacy h2 {
    line-height: 32px;
    font-size: 32px;
  }
}

#Privacy h1 {
  margin: 3% 0;
  text-align: left;
}

#Privacy .description {
  text-align-last: left;
  font-weight: bold;
  margin: 3% 0;
  font-size: 18px;
}


#Privacy .form_text {
  font-size: 35px;
  text-align: left;
  /* border: 2px solid tomato; */
  margin: 3% 0 0;
}

/* 各エリアの共通部分 */
h4,
.txt_adj {
  font-weight: bold;
  font-size: 18px;
}

.txt_adj {
  margin-bottom: 10px;
}

/* 〇アイコン */
.counter {
  display: flex;
  align-items: center;
}

.counter::before {
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  background-color: black;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  counter-increment: number;
  /* カウンター section の値を 1 つずつ増加 */
  content: counter(number);
  /* カウンターの値を既定のスタイル（10 進数）で表示 */
}

/* AREA共通 */
.area_1,
.area_2,
.area_3,
.area_4,
.area_5 {
  display: flex;
  width: 100%;
  text-align: left;
  margin-bottom: 50px;
}

.area_4 {
  margin-bottom: 10px;
}

.area_1_l,
.area_2_l,
.area_3_l,
.area_4_l,
.area_5_l {
  width: 20%;
  margin-right: 10px;
  /* border: 2px solid blue; */
}

.area_1_r,
.area_2_r,
.area_3_r,
.area_4_r,
.area_5_r {
  width: 80%;
  /* border: 2px solid green; */
}

.pm,
.flex {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: left;
  /* border: 2px solid green; */
}

.pm {
  margin-top: 15px;
  width: 65%;
  margin-left: auto;
}

.flex {
  gap: 5px;
}

.phone {
  font-weight: bold;
}

.mail {
  /* margin-left: 30px; */
}

.phone,
.mail {
  width: 100%;
}

/* 電話番号のサイズ */
.big {
  font-size: 20px;
}

/* 993~ PC */
@media screen and (max-width: 992px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* AREA共通 */
  .area_1,
  .area_2,
  .area_3,
  .area_4,
  .area_5 {
    font-size: larger;
    display: block;
    /* border: 1px solid tomato; */
  }

  .area_5 {
    margin-bottom: 20px;
  }

  .area_1_l,
  .area_2_l,
  .area_3_l,
  .area_4_l,
  .area_5_l {
    width: 100%;
    /* margin-right: 10px; */
    /* border: 2px solid blue; */
  }

  .area_1_r,
  .area_2_r,
  .area_3_r,
  .area_4_r,
  .area_5_r {
    width: 100%;
    /* border: 2px solid green; */
  }

  .txt_adj {
    margin: 10px auto;
  }

  .pm,
  .flex {
    justify-content: center;
    font-weight: bold;
    width: 100%;
  }

  .pm {
    gap: 5%;
  }

  .flex {
    border: 2px solid rgb(230, 230, 230);
    padding: 30px 35px;
    background-color: var(--white);
    border-radius: 10px;
    margin-top: 5px;
  }

  .flex,
  .big {
    font-size: 23px;
  }
}

/* 769~992px タブレット（TB）＝（SP表示） */
@media screen and (max-width: 768px) {
  .flex {
    padding: 20px 14px;
  }
}

@media screen and (max-width: 660px) {

  .flex,
  .big {
    font-size: 20px;
  }
}

/* ~768px スマホ（SP） */
@media screen and (max-width: 576px) {
  .flex {
    padding: 20px 14px;
  }

  .flex,
  .big {
    font-size: 16px;
  }
}

@media screen and (max-width: 450px) {
  .pm {
    display: block;
  }

  .flex,
  .big {
    font-size: unset;
  }
}