@charset "shift_jis";
/*  Site Name: しくみを学ぶ会
    Description: レイアウトスタイル
    Date: 2025年12月
    Author: tgs
*/
/*
===== CONTENTS ===========================================

    1: CLEARFIX（float解除）
    2: ページTOPへ
    3: ヘッダー、フッター
    4: 見出し
    5: 記事部分
    6: テーブル
    7: 個々の設定
	
==========================================================
*/
/*
==========================================================
    1: CLEARFIX（float解除） 
==========================================================
*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}
.clearfix {
  display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}
/* End hide from IE-mac */
.clear {
  clear: both;
}
/*
==========================================================
    2: ページTOPへ
==========================================================
*/
/*スクロールトップのずむずむ〜〜〜〜*/
.backtotop {
  position: fixed; /*絶対位置への配置、スクロールしても位置が固定。*/
  bottom: 150px; /* 下からのマージン */
  right: 0px; /* 右端からのマージン */
  display: none;
}
.backtotop a {
  display: block;
  background-image: url(../image/backtotop.png);
  text-indent: -999999px;
  height: 80px;
  width: 80px;
  transition: transform 0.2s;
  opacity: 0.7;
}
.backtotop a:hover {
  transform: scale(1.1);
  opacity: 1;
}
/*
==========================================================
    3: サブページヘッダー、フッター
==========================================================
*/
/*
===== ヘッダー（サブページ） ==========================================
*/
.subpage_header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #eee;
  background-image: url('../image/mainmenu.png');
  background-size: 1200px;
  background-position: top;
  border-radius: 10px;
}
.subpage_header .logo {
  margin: auto;
  padding: 15px 0;
  width: 40%;
  min-width: 300px;
}
.subpage_header .logo img {
  width: 100%;
}
/*
===== フッター ==========================================
*/
.footer {
  margin-top: 40px;
  background: #1B894C;
  color: white;
}
.foot_menu {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.foot_menu div.leftdiv{
  display: block;
  text-align: left;
  width: 40%;
}
.foot_menu h1 span{
    font-size:55%;
    vertical-align: middle;
    padding-right:0.2em;
}
.foot_menu a {
  color: white;
  text-decoration: none;
}
.foot_menu a:hover {
  text-decoration: underline;
}
/*
==========================================================
    4: 見出し
==========================================================
*/
h2 {
  margin-top: 0;
  padding-bottom: 10px;
  width: 100%;
  overflow: hidden;
}
h3 {
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: bold;
  color: #006030;
}
/*
==========================================================
    5: 記事部分とpdfアイコン自動で表示
==========================================================
*/
.article-section {
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 25px;
  border-radius: 10px;
  background: #FFFAF3;
}
/*article-section内の記事枠*/
.enclosure {
  background: white;
  padding: 20px 25px;
}
.img_right {
  float: right;
}
.img_left {
  float: left;
}
.img_border {
  border: 1px #ccc solid;
}
/*pdfを表示*/
a[href*=".pdf"]:after {
  content: url(../icon/icon_pdf.png);
  vertical-align: middle;
  margin-left: 1px;
  margin-right: 3px;
}
/*
==========================================================
    6: 　テーブル　
==========================================================
*/
.table-01 {
  width: 100%;
  border: 1px solid #CCC;
  border-collapse: collapse;
}
.table-01 th {
  font-weight: bold;
  text-align: center;
  padding: 4px 4px;
  background-color: #09852D;
  border: 1px solid #CCC;
  color: white;
  letter-spacing: 0.3em;
}
.table-01 td {
  text-align: left;
  padding: 6px 8px;
  line-height: 1.4em;
  border: 1px solid #CCC;
  vertical-align: middle;
}
.table-01 caption {
  text-align: left;
  margin-bottom: 3px;
  color: #000000;
  font-weight: bold;
  font-size:90%;
}
/*
==========================================================
    7: 個々の設定
==========================================================
*/
p.indent {
  text-indent: 1em;
  margin-bottom: 0.5em;
}
/*
===== text_align ==========================================
*/
/*文字右寄り*/
.t_ar {
  text-align: right;
}
/*文字中央*/
.t_ac {
  text-align: center;
}
/*文字左*/
.t_al {
  text-align: left;
}
.ver_top {
  vertical-align: top;
}
/*
=====マージン右==========================================
*/
.m_r10 {
  margin-right: 10px;
}
.m_r20 {
  margin-right: 20px;
}
.m_r30 {
  margin-right: 30px;
}
.m_r40 {
  margin-right: 40px;
}
/*
=====マージン下==========================================
*/
.m_b0 {
  margin-bottom: 0px;
}
.m_b5 {
  margin-bottom: 5px;
}
.m_b10 {
  margin-bottom: 10px;
}
.m_b15 {
  margin-bottom: 15px;
}
.m_b20 {
  margin-bottom: 20px;
}
.m_b30 {
  margin-bottom: 30px;
}
.m_b35 {
  margin-bottom: 35px;
}
.m_b40 {
  margin-bottom: 40px;
}
.m_b45 {
  margin-bottom: 45px;
}
.m_b50 {
  margin-bottom: 50px;
}
/*
===== マージン上==========================================
*/
.m_t5 {
  margin-top: 5px;
}
.m_t10 {
  margin-top: 10px;
}
.m_t15 {
  margin-top: 15px;
}
.m_t20 {
  margin-top: 20px;
}
.m_t25 {
  margin-top: 25px;
}
.m_t30 {
  margin-top: 30px;
}
.m_t40 {
  margin-top: 40px;
}
.m_t50 {
  margin-top: 50px;
}
/*
=====マージン左==========================================
*/
.m_l5 {
  margin-left: 5px;
}
.m_l10 {
  margin-left: 10px;
}
.m_l15 {
  margin-left: 15px;
}
.m_l20 {
  margin-left: 20px;
}
.m_l30 {
  margin-left: 30px;
}
.m_l40 {
  margin-left: 40px;
}
.m_l50 {
  margin-left: 50px;
}
.m_l65 {
  margin-left: 65px;
}
.m_l6e {
  margin-left: 6em;
}
/*
=====フォントの色==========================================
*/
.fc_gray {
  color: gray;
}
.fc_red {
  color: red;
}
/*
=====フォントサイズ==========================================
*/
.fnt_smaller {
  font-size: smaller;
}
.fnt_larger {
  color: larger;
}

/*
=====箇条書きリスト==========================================
*/
.ul_blt1 li{
  padding-left:15px;
  background-image:url('../image/list_bullet_yellow.png');
  background-repeat:no-repeat;
  background-position:0px;
}

/*
=====中揃えflexイメージ==========================================
*/
.img_flex_center{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:10px;
}