@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-primary: #8CBD3D;
  --color-blue: #0081C2;
  --color-bgGray: #F2F2F2;
  --futura: "futura-pt", sans-serif;
}

/*================================================
 *  subVisual
 ================================================*/
#subVisual::before {
  background-image: url(../../images/policy/subVisual.png);
}

@media screen and (max-width:767px) {
  #subVisual::before {
    background-position: center right 33%;
  }

}

/*================================================
 *  policy
 ================================================*/
#policy h2 {
  text-align: center;
  font-size: 1.38em;
  line-height: 2;
  color: #64646F;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 8%;
}

#policy h3 {
  font-size: 1.53em;
  text-align: center;
  color: var(--color-blue);
  letter-spacing: 0.1em;
  font-weight: bold;
  width: 70%;
  margin: 0 auto 5%;
  padding: 1em 0;
  border: 1px solid var(--color-blue);
}

#policy p {
  letter-spacing: 0.05em;
  text-align: center;
}

#policy p.marginB--10vw {
  margin-bottom: 10vw;
}

#policy ul {
	flex-wrap: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2.5vw auto 10vw;
}

#policy ul li {
  width: 22.3vw;
  font-size: 1.38em;
  letter-spacing: 0.025em;
  height: 9.75vw;
  font-weight: bold;
  text-align: center;
  line-height: 1.83;
  display: grid;
  place-content: center;
  margin-right: 2.33vw;
  color: var(--color-blue);
  background: var(--color-bgGray);
  border-radius: 1vw;
}

#policy ul li:last-child {
  margin-right: 0;
}

@media screen and (max-width:767px) {
  #policy h2 {
    font-size: 1.2em;
    letter-spacing: 0.05em;
  }

  #policy p {
    text-align: left;
  }

  #policy h3 {
    font-size: 1.33em;
    width: 100%;
    margin-bottom: 7.4vw;
  }

  #policy ul {
    margin: 7.4vw auto 10vw;
    width: 89%;
    min-width: 290px;
	  flex-wrap: wrap;
  }

  #policy ul li {
    width: 100%;
    font-size: 1.2em;
    height: 10vw;
    margin: 0 0 1em;
    border-radius: 0.72em;
  }

  #policy p.marginB--10vw.al {
    text-align: center;
    margin-bottom: 0;
  }
}