@charset "UTF-8";
/* CSS Document */
a:link {
	color: #69C;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #F60;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  	background: #f0f0f0;

}
* {
  box-sizing: border-box;
}

.main{
	width: 80%;
	margin: auto;
	margin-top: 20px;
	display: block;
}
.header{
	width: 100%;
	height: auto;
	background: #fff;
	float: left;
	position: relative;
	margin-bottom: 20px;
}
.header::after{
	content: "";
 	position: absolute;
 	top: 0;
 	left: 0;
 	opacity: 0.3;
	width: 100%;
	height: 100%;

}
.navi{
	width: 100%;
	padding: 40px;
	background: #ffffff;
	float: left;
	border-radius: 20px;
	margin-bottom: 20px;
}
.contents{
	width: 100%;
	padding: 40px;
	background: #ffffff;
	float: left;
	border-radius: 20px;
	margin-bottom: 20px;
}
.footer{
	width: 100%;
	padding: 15px;
	background: #ffffff;
	float: left;
	border-radius: 20px;
	margin-bottom: 20px;
}
.title{
	font-size: 30px;
	font-weight: 900;
}
.midashi1{
	font-size: 18px;
	font-weight: 700;
	line-height: 2.5;
}
.midashi2{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.midashi6 {
	width: 130px;
	height: auto;
	background: #e6e8e9;
	border: 3px solid #2a82a3;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	color: #0d3b4c;
	text-align: center;
	font-size: 25px;
	font-weight: 900;
}

.honbun1{
	font-size: 16px;
	font-weight: 200;
	line-height: 2.0;
}
.honbun2{
	font-size: 16px;
	font-weight: 200;
	line-height: 1.2;
	padding-left: 20px;
	line-height: 1.8;
}
.honbun3{
	font-size: 16px;
	font-weight: 400;
	padding-left: 20px;
	line-height: 1.4;
	color: #1060b6
}
.honbun4{
	font-size: 14px;
	font-weight: 100;
	line-height: 1.2;
	text-align: right;
  }


.midashi_line {
	color: white;
	background: #545b5d;
	font-size: 22px;
	font-weight: 800;
	padding-left: 2%
}

.midashi_line2 {
	color: white;
	background: #545b5d;
	font-size: 20px;
	font-weight: 600;
		padding-left: 2%;
	padding-right: 2%;

}
.entbtn {
	width: 100px;
	height: auto;
	background: #faaf35;
	border: 3px solid #ff1200;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	color: #000000;
	text-align: center;
	font-size: 15px;
	font-weight: 900;
}



.image{
	display: block;
	width: 300px;
	height: auto;
	float: right;
	margin-right: 10px;
	margin-bottom: 10px;
	border-radius: 20px;
}

.sns{
	display: flex;
	float: right;
	position: absolute;
	text-align: right;
	top: 15%;
    right: 5%;
}


table {
  width: 80%;
  border-collapse: collapse;
  margin: 40px auto;
  table-layout: fixed;
}
th, td {
  border: none;
  padding: 10px;
  text-align: left;
  vertical-align: middle;
  font-size: 0.95em;
  word-wrap: break-word;
}
th {
  background-color: #f2f2f2;
}
tbody tr:nth-child(odd) {
  background-color: #f5f5f5;
}
tbody tr:nth-child(even) {
  background-color: #ffffff;
}
caption {
  caption-side: top;
  font-weight: bold;
  font-size: 1.3em;
  margin-bottom: 10px;
  text-align: left;
}

@media (max-width: 768px) {
  th, td {
    font-size: 0.85em;
    padding: 6px;
  }
  caption {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  th, td {
    font-size: 0.8em;
    padding: 5px;
  }
}
/* Program list */
.programp {
  width: 92%;
  margin: 0 auto 48px auto;
  padding: 24px 4%;
  background: #f8fcff;
  box-sizing: border-box;
  border-radius: 8px;
  clear: both;
}
.programp h2 {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 18px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #2a82a3;
  color: #0d3b4c;
}
.program-date {
  display: inline-block;
  margin-left: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #313131;
}
.count {
  display: inline-block;
  margin-left: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #666;
}
.workp {
  display: grid;
  grid-template-columns: 3em 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #d9d9d9;
}
.workp .no {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 14px;
  color: #666;
  text-align: right;
}
.workp .title {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.eng-title {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  font-style: italic;
}
.meta {
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  margin-top: 3px;
}
.program-time {
  text-align: right;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #0d3b4c;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .programp { width: 100%; padding: 18px 5%; }
  .programp h2 { font-size: 21px; }
  .program-date { display:block; margin-left:0; font-size:16px; }
  .workp { grid-template-columns: 2.4em 1fr; gap: 10px; }
}

