/* 中尾 */
/* 使用カラー */
:root {
  --black: #000;
  --white: #FFF;
  --blue: #4084C8;
  --textGray: #707070; 
  --borderGray: #C2C2C2; 
  --mainGreen: #478891;
  --accentGreen: #5299A3;
}


/* 使用フォント */
:root {
  --NotoSans: "Noto Sans JP", sans-serif;
  --DMSans: "DM Sans", sans-serif;
  --CGaramond: "Cormorant Garamond", sans-serif;
  --NotoSerif: "Noto Serif JP", serif;
}
body{
  font-family: var(--NotoSerif);
}
p {
  overflow-wrap: anywhere;
  word-break: normal; 
  line-break: strict;
}

.policy_wrapper{
  width: 100rem;
  margin: 6rem auto 18rem;
  /* border-top: 0.1rem solid #000; */
}
.policy_wrapper h2{
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

.policy_wrapper h3{
  font-size: 2rem;
}

.policy_wrapper p{
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 4rem;
  /* line-height: calc(22/16); */
}

@media screen and (max-width: 699.98px) {
  .policy_wrapper{
    width: 33.5rem;
    margin: 3rem auto 15rem;
    border-top: 0.1rem solid #000;  
  }
  .policy_wrapper h2{
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .policy_wrapper p{
    font-size: 1.6rem;
    font-weight: 400;
  }
}