/*
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;
}

a {
  cursor: pointer;
}

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

h2,h3 {
    font-size: 24px;
    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;
}

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

.recruit{
  font-size: 20px;
  line-height: 1.45;
  list-style: disc;
  margin-top: 10px;
}

.recruit-contents p{
  margin-top: 35px;
  margin-bottom: 0;
}

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

.recruit-contents h4 {
  margin-bottom: 15px;
}

.blue {
  color: #569bcc;
  font-weight: bold;
}

.note {
  font-weight: bold;
}

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

@media (max-width: 678px) {

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

  p {
    font-size: 15px;
  }

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

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

  .recruit-contents p {
    margin-top: 25px;
  }

  .recruit-top, .recruit {
    font-size: 18px;
  }

  ul.recruit {
    font-size: 15px;
  }

  .recruit-contents h3 {
    margin-top: 30px;
  }

}