/* =========================================
   Privacy Page
========================================= */

.privacy_page {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  color: #3f4850;
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
  overflow: hidden;
}

.privacy_page img {
  width: 100%;
  height: auto;
  display: block;
}

.privacy_inner {
  width: calc(100% - 28px);
  margin: 0 auto;
}


/* =========================================
   Common
========================================= */

.privacy_heading {
  margin-bottom: 28px;
  text-align: center;
}

.privacy_heading_en {
  display: inline-block;
  margin-bottom: 8px;
  color: #f48da7;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 35px;
  letter-spacing: 0.05em;
}

.privacy_heading h2 {
  margin: 0;
  color: #424a50;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}

.privacy_heading h3 {
  margin: 25px auto;
  color: #424a50;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}


.privacy_heading p {
  margin: 0;
  color: #4c555c;
  font-size: 13px;
  line-height: 1.65;
}


.privacy_heading h2 span {
  color: #f06f91;
}

.privacy_heading h2 .blue {
  color: #35aeda;
}

/* =========================================
   FV
========================================= */

.privacy_fv {
  position: relative;
  padding: 30px 0 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,.85), transparent 25%),
    linear-gradient(180deg, #bfefff 0%, #dff7ff 100%);
}

.privacy_fv::before,
.privacy_fv::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}

.privacy_fv::before {
  width: 180px;
  height: 180px;
  top: -80px;
  left: -70px;
}

.privacy_fv::after {
  width: 140px;
  height: 140px;
  right: -60px;
  bottom: -50px;
}

.privacy_fv_inner {
  position: relative;
  z-index: 2;
  width: calc(100% - 28px);
  margin: 0 auto;
  text-align: center;
}

.privacy_fv_sub {
  display: inline-block;
  margin: 0 0 16px;
  padding: 7px 16px;
  border-radius: 30px;
  background: #3eb7df;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.privacy_fv_title {
  margin: 0;
  color: #37434a;
  font-size: 28px;
  line-height: 1.55;
  font-weight: 800;
}

.privacy_fv_title span {
  color: #f06f91;
  font-size: 34px;
}

.privacy_fv_text {
  margin: 16px 0 20px;
  color: #52616a;
  font-size: 13px;
  line-height: 1.9;
}

.privacy_fv_image {
  width: 78%;
  margin: 0 auto 22px;
}

.privacy_fv_points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.privacy_fv_point {
  padding: 12px 5px;
  border: 2px solid #fff;
  border-radius: 14px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 5px 15px rgba(74, 168, 203, 0.10);
  text-align: center;
}

.privacy_fv_point_icon {
  display: flex;
  width: 34px;
  height: 34px;
  margin: 0 auto 6px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eefaff;
  color: #35aeda;
  font-size: 20px;
  font-weight: 700;
}

.privacy_fv_point:nth-child(2) .privacy_fv_point_icon {
  background: #fff2f5;
  color: #f27b97;
}

.privacy_fv_point:nth-child(3) .privacy_fv_point_icon {
  background: #fff9df;
  color: #e2b728;
}

.privacy_fv_point strong {
  color: #4a5961;
  font-size: 13px;
  line-height: 1.5;
}


/* =========================================
   Worries
========================================= */

.privacy_worries {
  padding: 20px 0 20px;
  background: #fff;
}

.privacy_worry_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.privacy_worry_item {
  position: relative;
  padding: 28px 10px 18px;
  border: 2px solid #d9f0f8;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 6px 18px rgba(89, 176, 207, 0.08);
}

.privacy_worry_num {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #39b4df;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.privacy_worry_item:nth-child(even) .privacy_worry_num {
  background: #f0839e;
}

.privacy_worry_image {
  width: 140px;
  height: 140px;
  margin: 0 auto 12px;
  overflow: hidden;
  border-radius: 50%;
  background: #f8f8f8;
}

.privacy_worry_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.privacy_worry_item p {
  margin: 0;
  color: #4c555c;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 700;
  text-align: center;
}

.privacy_worry_message {
  margin: 28px 0 0;
  text-align: center;
  color: #536069;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.privacy_worry_message strong {
  color: #f06f91;
  font-size: 19px;
}


/* =========================================
   Measures
========================================= */

.privacy_measures {
  padding: 20px 0;
  background: linear-gradient(180deg, #e8faff 0%, #cdf2ff 100%);
}

.privacy_heading_blue .privacy_heading_label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 18px;
  border-radius: 4px;
  background: #3ab6df;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.privacy_heading_blue h2 {
  color: #287ca9;
}

.privacy_heading_blue h2 strong {
  color: #189ed3;
  font-size: 30px;
}

.privacy_measure_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.privacy_measure_item {
  position: relative;
  padding: 34px 12px 18px;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 6px 16px rgba(51, 165, 207, 0.12);
}

.privacy_measure_num {
  position: absolute;
  top: 9px;
  left: 9px;
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #33b2dd;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.privacy_measure_item:nth-child(even) .privacy_measure_num {
  background: #f17f9b;
}

.privacy_measure_icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 10px;
}

.privacy_measure_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.privacy_measure_item h3 {
  margin: 0 0 8px;
  color: #3e515b;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}

.privacy_measure_item p {
  margin: 0;
  color: #66747c;
  font-size: 11px;
  line-height: 1.7;
}

.privacy_measure_message {
  position: relative;
  margin-top: 25px;
  padding: 18px 16px 18px;
  border: 2px solid #9cddf2;
  border-radius: 18px;
  background: #fff;
}


.privacy_measure_message p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.privacy_measure_message strong {
  color: #168fc3;
}


/* =========================================
   Change
========================================= */

.privacy_change {
  padding: 20px 0 20px;
  background: #fff;
}




/* =========================================
   Support
========================================= */

.privacy_support {
  padding: 48px 0;
  background: #e7faff;
}

.privacy_support_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.privacy_support_item {
  padding: 15px 6px;
  border-radius: 15px;
  background: #fff;
  text-align: center;
  box-shadow: 0 5px 14px rgba(56, 167, 205, 0.10);
}

.privacy_support_icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 8px;
}

.privacy_support_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.privacy_support_item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
  text-align: center;
}


/* =========================================
   Very Small
========================================= */

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

  .privacy_fv_title {
    font-size: 24px;
  }

  .privacy_fv_title span {
    font-size: 29px;
  }

  .privacy_worry_image {
    width: 90px;
    height: 90px;
  }

  .privacy_worry_item p {
    font-size: 12px;
  }

  .privacy_measure_item h3 {
    font-size: 13px;
  }

  .privacy_measure_item p {
    font-size: 10px;
  }

  .privacy_support_list {
    grid-template-columns: repeat(2, 1fr);
  }

}