/*
Theme Name: genken
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

@charset "UTF-8";


* {
  box-sizing: border-box;
} /*全ての要素をborder-boxにするーーコンテンツ、border、paddingの合計がwidthと解釈される*/

html {
  font-size: 100%;
}
/*設定した文字サイズを正しく反映*/

body {
  background-color: white;
  position: relative;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

body.home .footer-area {
  margin-top: 0px;
}

h1 {
  font-size: 32px;
  font-weight: 700;
}

h2,h3 {
  font-size: 24px;
  font-weight: 700;
}

h4 {
  font-size: 20px;
  font-weight: 700;
}

p {
  font-size: 20px;
  /*line-height: 2.0;*/
}

main {
  margin: auto;
}

.back-blue {
  text-align: center;
  color: white;
  height: 140px;
  background-color: #336b94;
  line-height: 140px; /*見出し垂直方向のセンタリング*/
  margin-top: 0;
}

.privacy-contents {
  width: 58.33%;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify; /*文章両端揃え*/
}

.privacy-contents p {
  margin-top: 20px;
}

.privacy-contents h3 {
  margin-top: 50px;
}

.privacy-contents h4 {
  margin-top: 35px;
}

.privacy-contents ul li {
  font-size: 20px;
  list-style-type: circle;
}

ul li::marker {
  color: black;
}

.end-text{
  text-align: right;
}

.text-blue{
  color: rgb(43, 109, 196);
  text-decoration: underline;
}

/*====================メディアクエリーcss=======*/

@media (max-width: 678px) {

  h2, h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  p {
    font-size: 15px;
  }

  h1.back-blue {
    font-size: 22px;
    height: 80px;
    line-height: 80px; /*見出し垂直方向のセンタリング*/
  }

  .privacy-contents {
    width: 82.4%;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify; /*文章両端揃え*/
  }

  .privacy-contents {
    margin-top: 30px;
  }

  .privacy-contents p {
    margin-top: 25px;
  }
  
  .privacy-contents h3 {
    margin-top: 30px;
  }
  
  .privacy-contents h4 {
    margin-top: 25px;
  }

  .privacy-contents ul li {
  font-size: 15px;
  }

}