﻿@charset "utf-8";  
/*------------------------------------------------------------ 
    seminar css
------------------------------------------------------------*/  
.note {
  font-size: 120%;
  line-height: 1.6;
  text-align: center;

  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #f9f9f9;

  width: fit-content;       /* 内容に合わせた幅 */
  margin: 20px auto;        /* ← ここが中央配置のキー！ */
}

.note a:hover {
  color: #3598DC;         /* ホバー時に色が変わる */
  text-decoration: none;  /* アンダーラインを消すなども可能 */
}


#sortArea{
	width:100%;
	padding-bottom:30px;
	border-bottom:1px solid #EAEAEA;
}

#sortArea li{
	width:calc(25% - 15px);
	height:60px;
}

#sortArea a{
	display:table-cell;
	vertical-align:middle;
	width:300px;
	height:60px;
	text-align:center;
	line-height:1.4;
	background:#3A4C60;
	color:#fff;
	font-size:134%;
	font-weight:bold;
	border-radius:5px;
}

#sortArea a:hover,
#sortArea .selected{ background:#1CBB9B;}

/* column */

.column{
	padding:30px 0;
	border-bottom:1px solid #EAEAEA;
}

.cate{
	display:table-cell;
	vertical-align:top;
	width:70px;
	padding-right:15px;
}

.cate span{
	display:block;
	width:70px;
	height:70px;
	text-align:center;
	line-height:70px;
	color:#fff;
	background:#3598DC;
}
.cate1 .cate span{ background:#E84C3D;}
.cate4 .cate span{ background:#FF9500;}



.evTtl{
	display:table-cell;
	vertical-align:middle;
	width:calc(100% - 85px);
	color:#3A4C60;
	font-size:140%;
	font-weight:bold;
	line-height:1.2;
}

.mainInfo{
	width:calc(100% - 310px);
	border-top:4px solid #0083FF;
	padding-top:20px;
}

.subInfo{ width:270px;}

.text01{
	font-size:117%;
	color:#394C5F;
}

.evInfo{
	width:auto;
	padding:15px;
	border-radius:5px;
	margin-top:15px;
	background:#F5F7F9;
}

.infoTbl th{
	width:60px;
	padding:5px 0;
}

.infoTbl th span{
	display:block;
	width:60px;
	height:26px;
	text-align:center;
	line-height:26px;
	background:#9CA5AF;
	color:#fff;
}

.infoTbl td{
	font-size:117%;
	padding:5px 15px;
}

.entry{
	border-top:1px solid #EAEAEA;
	padding-top:20px;
	margin-top:19px;
}

.entryBtn{
	width:250px;
	height:50px;
	font-size:150%;
	text-align:center;
	line-height:50px;
	background:#ccc;
	color:#fff;
	border-radius:5px;
}

.entryBtn a{
	display:block;
	width:100%;
	height:100%;
	line-height:50px;
	color:#fff;
	font-weight:bold;
	background:#3A4C60;
	border-radius:5px;
	transition:all 0.2s ease-out;
}

.entryBtn a:hover{ background:#0083ff;}

.contact{
	font-size:100%;
	font-style:normal;
}

.entryBtn + .contact{ width:calc(100% - 270px);}

.pdfBtn{
	width:270px;
	height:65px;
	margin-top:20px;
}

.pdfBtn a{
	display:block;
	width:100%;
	height:50px;
	padding-top:15px;
	line-height:50px;
	background:url(../img/pdfBtnBg.png) no-repeat;
	color:#fff;
	font-weight:bold;
	font-size:134%;
	text-indent:30px;
}

/* 終了したイベント・セミナー */

#fin{
	padding-top:30px;
	position:relative;
}

#fin:before{
	display:block;
	content:"";
	width:100%;
	height:1px;
	background:#fff;
	position:absolute;
	bottom:0;
	left:0;
	z-index:10;
}

#finTtl{
	height:60px;
	padding:0;
	background:#1CBB9B;
	border-radius:5px;
}

#finTtl h2{
	line-height:60px;
	color:#fff;
	font-size:175%;
	padding-left:20px;
	font-weight:bold;
}

#year{
	display:block;
	width:120px;
	height:30px;
	margin-top:15px;
	padding-left:10px;
	margin-right:20px;
}

.pdf{
	width:100%;
	max-width:450px;
	height:60px;
	margin-top:30px;
}

.pdf + .pdf{ margin-top:15px;}

.pdf.boshu{
	width:200px;
	margin-top:30px;
}

.pdf.guide{
	width:320px;
	margin-top:20px;
}

.pdf a{
	display:table-cell;
	vertical-align:middle;
	width:380px;
	height:60px;
	padding:0 50px 0 15px;
	border-radius:5px;
	color:#fff;
	font-size:125%;
	font-weight:bold;
	position:relative;
	box-sizing:border-box;
	background:#9CA5AF url(../img/icon-pdf.png) no-repeat right 10px bottom 0;
	background-size:48px 51px;
}

.pdf a span{
	display:block;
	font-size:92%;
	font-weight:bold;
	line-height:1.3;
}

.pdf.xls a{ background-image:url(../img/icon-xls.png);}
.pdf.word a{ background-image:url(../img/icon-word.png);}

#pdfReader{
	width:100%;
	margin-top:50px;
}

#pdfReader dt{
	display:inline-block;
	vertical-align:middle;
	width:216px;
	margin-right:20px;
}

#pdfReader dd{
	display:inline-block;
	vertical-align:middle;
	font-size:117%;
	line-height:1.5;
}

#pdfReader dd a{
	color:#1BBA9A;
	font-weight:bold;
}


.list{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack:justify;
	   -ms-flex-pack:justify;
	justify-content:space-between;
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}



@media screen and (max-width: 768px) {

  .contact {
    margin-top: 20px;
  }

  #sortArea li {
    width: 100%;
    margin-bottom: 10px;
  }

  #sortArea a {
    width: 100%;
    font-size: 120%;
  }

  .column {
    display: block;
    padding: 20px 0;
  }

  .cate,
  .evTtl {
    display: block;
    width: 100%;
  }

  .cate {
    padding-right: 0;
    margin-bottom: 10px;
  }

  .mainInfo {
    width: 100%;
    padding-top: 15px;
  }

  .subInfo {
    width: 100%;
    margin-top: 20px;
  }

  .entryBtn,
  .entryBtn + .contact {
    width: 100%;
  }

  .pdfBtn {
    width: 100%;
  }

  .pdf a {
    width: 100%;
    padding: 0 15px;
    font-size: 110%;
    background-size: 36px 40px;
    background-position: right 10px center;
  }

  #pdfReader dt,
  #pdfReader dd {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .list {
    flex-direction: column;
  }


  .entryBtn2 {
    margin-top: 20px;
    margin-bottom: 20px; /* ← 下の余白をここで追加！ */
  }



}

/*事業報告ボタン*/

.entryBtn2 {
  width: 100%;
  max-width: 450px;
  height: 60px;
  margin-top: 30px;
}

.entryBtn2 a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  text-align: center;
  font-size: 120%;
  font-weight: bold;
  color: #fff;
  background: #3A4C60;
  border-radius: 5px;
  transition: all 0.2s ease-out;
  box-sizing: border-box;
}


.entryBtn2 a:hover {
  background: #0083ff;
  text-decoration: none;
}

/*検索*/

/* 基本はラッパーの inner に合わせる */
#searchArea {
	display: none;
	width: calc(100% - 40px); /* ← パディング分を差し引く */
	max-width: 1300px;
	margin: 40px auto;
	padding: 20px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}


.form-column {
	width: auto;
	min-height: 40px;
	padding: 20px 0 20px 125px;
	position: relative;
	border-bottom: 1px solid #ECF0F1;
}

.form-hd {
	width: 120px;
	font-size: 134%;
	color: #231815;
	line-height: 40px;
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 20px;
}

.form-hd:before {
	display: inline-block;
	vertical-align: middle;
	content: "●";
	color: #0066cc;
	padding-right: 5px;
}

.form-box {
	color: #211813;
	font-size: 117%;
}

.form-column-left {
	width: 317px;
	float: left;
	border-bottom: none;
}

.form-column-right {
	width: 180px;
	float: right;
	padding-left: 133px;
	border-bottom: none;
}

.form-column-right label {
	display: block;
	float: left;
	line-height: 20px;
	cursor: pointer;
}

.label {
	display: inline-block;
	line-height: 40px;
	margin-right: 20px;
	cursor: pointer;
}

.input {
	height: 34px;
	border: 1px solid #ccc;
	padding: 2px 5px;
	margin-right: 10px;
}

.size1 { width: 200px; }
.size2 { width: 300px; }

.buttonArea {
	width: 500px;
	margin: 10px auto 0;
	overflow: hidden;
}

.searchBtn {
	width: 240px;
	height: 47px;
	float: left;
}

.searchBtn button {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 47px;
	color: #fff;
	font-size: 150%;
	font-weight: bold;
	border: none;
	cursor: pointer;
	background: #0066cc;
	border-radius: 5px;
}

.searchBtn button:hover {
	background: #34495E;
}

.resetBtn {
	width: 240px;
	height: 47px;
	float: right;
}

.resetBtn a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 47px;
	color: #333;
	font-size: 150%;
	font-weight: bold;
	background: #ECF0F1;
	border-radius: 5px;
}

.resetBtn a:hover {
	background: #0066cc;
	color: #fff;
}

.check {
	float: left;
	margin: 7px 5px 0 0;
}

select.input {
	height: 36px;
	padding: 5px 10px;
	font-size: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	appearance: none;         /* OSごとの見た目をリセット */
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 10px 6px;
}

/* サイズ調整用 */
.size1 { width: 200px; }
.size2 { width: 300px; }




#searchToggle {
	float: none;          /* float解除 */
	text-align: right;    /* 右寄せにする */
	height: auto;
	margin-top: 20px;
}

#searchToggle a{
	display:block;
	width:auto;
	height:40px;
	line-height:40px;
	padding-right:35px;
	color:#333;
	font-weight:bold;
	font-size:140%;
	position:relative;
	
/*
	background:url(../img/icon-close.png) no-repeat right 50%;
*/
}

/*
#searchToggle a:hover{ color:#0066cc;}
#searchToggle .selected{ background-image:url(../img/icon-show.png);}
*/


.eventHd {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}


#searchToggle a:hover{ color:#0066cc;}

#searchToggle a:after{
	display:block;
	content:"";
	width:24px;
	height:24px;
	position:absolute;
	right:0;
	top:8px;
	background:#0066cc url(../img/arrow-top.png) no-repeat 50% 50%;
	border-radius:2px;
}

#searchToggle .selected:after{ background-image:url(../img/arrow-bottom.png);}



.news-PrevBtn{
	width:100%;
	max-width:280px;
	height:42px;
	margin:40px auto 0;
}

.news-PrevBtn a{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  -webkit-box-align: center;
     -ms-flex-align: center;
        align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width:100%;
	height:100%;
	font-size:1.6rem;
	color:#0083FF;
	text-align:center;
	padding:0 15px;
	border:1px solid #0083FF;
	box-sizing:border-box;
	position:relative;
	transition:all 0.2s ease-out;
}

.news-PrevBtn a::after{
	display:block;
	content:"";
	width:8px;
	height:8px;
	border-left:2px solid #0083FF;
	border-bottom:2px solid #0083FF;
	position:absolute;
	left:15px;
	top:50%;
	transform: rotate(45deg) translateY(-50%);
	transition:all 0.2s ease-out;
}

.news-PrevBtn a:hover{
	color:#fff;
	background:#0083FF;
}

.news-PrevBtn a:hover::after{
	border-left-color:#fff;
	border-bottom-color:#fff;
}


/* スマホ対応 */
@media screen and (max-width: 768px) {
  #searchArea {
    padding: 15px 10px;
    margin: 20px 10px;
    border-width: 1px;
    box-sizing: border-box;
  }

  .form-column {
    padding: 15px 0;
    position: relative;
  }

  .form-hd {
    position: static;
    display: block;
    margin-bottom: 8px;
    font-size: 110%;
    color: #231815;
  }

  .form-box {
    font-size: 100%;
    width: 100%;
  }

  .label {
    display: block;
    width: 100%;
    margin: 5px 0;
  }

  .input,
  select.input {
    width: 100% !important;
    padding: 8px;
    font-size: 100%;
    box-sizing: border-box;
  }

  .buttonArea {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .searchBtn,
  .resetBtn {
    width: 100%;
    float: none;
  }

  #searchToggle {
    text-align: right;
    margin-top: 15px;
  }

}