/*
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;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 0px;
}

a {
  cursor: pointer;
}

h1 {
  font-size: 24px;
}

h3{
  font-size: 20px;
}

main {
  margin: auto;
}

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

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

.portrait-genken-president{
    text-align: center;
}

.portrait {
    width: 32.97%;
    margin-left: auto;
    margin-right: auto;
}

.genken-president p {
  font-size: 20px;
  margin-top: 19px;
  line-height: 1.448;
  text-align: right;
}

.gen-message {
    margin-top: 50px;
}

.gen-message p {
    font-size: 20px;
    line-height: 1.448;
}

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

@media (max-width: 678px) {
  h1 {
    font-size: 22px;
  }

  h3{
    font-size: 18px;
  }
  h1.back-blue {
    font-size: 22px;
    font-weight: 700;
    height: 80px;
    line-height: 80px; /*見出し垂直方向のセンタリング*/
  }
  
 .contents {
    width: 82.4%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .portrait {
    width: 90%;
  }

  .genken-president p {
    font-size: 18px;
  }

  .gen-message {
    width: 90.9%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .gen-message p {
    font-size: 15px;
  }
}