/*
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%;
}
/*設定した文字サイズを正しく反映*/

img {
  max-width: 100%;
}
/*画像の大きさの指定。画像が親要素よりも大きくなることを防ぐ*/

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

a {
  cursor: pointer;
}

main {
    margin: auto;
    
}
.t-t-function {
  width: 60%;
  margin-top: 50px;
}
.report-contents {
  display: flex;
  flex-direction: column;
}

.report-contents h1{
  text-align: start !important;
  margin: auto;
}

.report-contents h2 {
  font-size: 24px;
  font-weight: bold;
}

.report-contents h3 {
  font-size: 20px;
  font-weight: bold;
}

.report-contents h4{
  font-size: 20px;
  font-weight: bold;
}

.report-contents p {
  font-size: 16px;
  line-height: 1.75;
  /* text-align: justify; */
}

.read-text{
  white-space: break-spaces;
}

.text-center{
  text-align: center;
}
/*====================メディアクエリーcss=======*/

@media (max-width: 678px) {

  .t-t-function {
    width:82.4%;
  }

  .report-contents h1{
    font-size: 24px;
  }

  .report-contents h2 {
    font-size: 20px;
  }

  .report-contents h3 {
    font-size: 18px;
  }

  .report-contents h4{
    font-size: 16px;
  }

  .report-contents p {
  font-size: 15px;
  }
}

