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

a {
  cursor: pointer;
}

main {
  margin: auto;
}

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

.new-management-theme {
  width: 60%;
  margin: 100px auto 0;
}

.new-management-theme h2 {
  font-size: 24px;
  margin-bottom: 35px;
}

.theme-container {
  vertical-align: middle;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgb(141, 138, 138);
  padding: 8px;
  margin: 4px;
}

.number,
.date,
.conference {
  font-size: 16px;
}

.conference-doc {
  font-weight: bold;
  color: #336b94;
  border: solid 2px;
  border-radius: 5px;
  width: 10%;
  min-width: 80px;
  text-align: center;
  margin-top: 5px; 
}

a.no-link {
  pointer-events: none; /* リンクを無効化 */
  color: inherit; /* 色を継承して変更しない */
  text-decoration: none; /* 下線などのスタイルを削除 */
}

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

@media (max-width: 678px) {
  h1.back-blue {
    font-size: 18px;
    font-weight: bold;
    height: 80px;
    line-height: 80px; /*見出し垂直方向のセンタリング*/
  }

  .new-management-theme {
    width: 84%;
    margin-top: 30px auto 0;
  }

  .new-management-theme h2 {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .number,
  .date,
  .conference {
    font-size: 14px;
  }
}
