@charset "utf-8";
/* CSS Document */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
* {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
main {
  display: block;
}
ol, ul {
  list-style: none;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
  text-decoration: none;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b, strong {
  font-weight: bolder;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
	line-height: 1em;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0; /* 3 */
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
/* ----- ----- ----- ----- ----- ----- */

/* ----- ----- common ----- ----- */

html{
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
body{
  color: #333;
  background-color: #FFF;
}
header{
  width: 100%;
  background-color: #FFF;
}
main{
  width: 100%;
  padding: 0;
  background-color: #FFF;
}
footer{
  width: 100%;
}

img{
  max-width: 100%;
}
a{
  color: #1c3c7c;  
}
a:hover{
  color: #777;  
}
a:hover img {
  opacity: 0.8;
}

.clearfix::after{
  content: '';
  display: block;
  height: 0;
  clear: both;
}

.fL{  float: left;  }
.fR{  float: right; }

.taL{  text-align: left;   }
.taC{  text-align: center; }
.taR{  text-align: right;  }

.mt5{ margin-top: 5px; }
.mt10{ margin-top: 10px; }
.mt15{ margin-top: 15px; }
.mt20{ margin-top: 20px; }
.mt25{ margin-top: 25px; }
.mt30{ margin-top: 30px; }

.mb10{ margin-bottom: 10px;}
.mb20{ margin-bottom: 20px;}
.mb30{ margin-bottom: 30px;}

.dp{ 
  display: block; 
  padding: 0 1rem;
}

.borbox{
  border: 1px solid #18B7CD;
  padding: 1em;
  margin: 2rem auto;
}


/* ----- ----- end / common ----- ----- */

/* ----- ----- header ----- ----- */

header{
  position: relative;
}

#logo img {
  max-width: 100%;
}
nav{
  width: 100%;
  position: relative;
  background: #FFF;
}

.drawer{
  display: block;
  padding: 0.8rem 1rem; 
}

.menu ul li{
  font-weight: bold;
  padding: 10px;
}
.menu ul li a {
  color:#333;
  text-decoration:none;
  transition: all  0.3s ease;
}
.menu ul li a:hover{
  opacity: 0.8;
  color: #FFF;
}
@media screen and (max-width: 788px) {
  .menu ul li{
    font-size: 14px;
    max-width: 120px;
  }
}

h2{
  font-size: 18px;
  border-left: 5px solid #1C3C7C;
  padding-left: 10px;
  margin: 0 1rem 20px;
}
.menu{
  text-align:center;
  background-color:rgba(255,255,255,1);
  transition: 0.6s ease;
} 


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

  nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }
  nav > div{
    margin: 0 10px;
  }
  .menu{
    margin-top: 20px;
    text-align: left;
  }
  .menu ul li{
    padding: 6px;
  }
  .foW{
    font-weight: bold; 
  }
}
@media screen and (min-width: 789px) {
  #logo {
    max-width: 960px;
  }
  #logo img{
    max-width: 100%;
  }	
  
  .menuBox{
    padding-left: calc( 100% - 720px );
  }
  .menu{
    width: 720px;
    margin: 0 auto;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu ul{
    height: 70px;
  }
  .menu ul li{
    display: inline-block;
    vertical-align: middle;
    padding: 20px;
  }
  .menu ul li a{
    display: block;
    border-bottom: none;
  }
  .menu ul li a:hover{
    background-color:transparent;
    color: #18b7cd;
  }
}

@media screen and (min-width: 1024px) {
  .menuBox{
    padding-left: 280px;
  }
}

	
.menu02 ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
  width: 80%;
  margin-top: 0;
}

.menu02 ul li{
  background-color: #FFF;
  font-size: 18px;
  border: solid 1px #97B2DD;
}
.menu02 ul li a{
  display: block;
  padding: 10px;
  width: 120px;
  text-align: center;
}

.subBox {
  font-size: 16px;
  color: #1C3C7C;
}
.subBox span {
  padding: 2px 15px;
  background-color: #BDD3F4;
}

.subBox02 {
  font-size: 16px;
}
.subBox02 span {
  padding: 2px 15px;
  background-color: #1C3C7C;
  color: #FFF;
}

.subBox03 {
  font-size: 16px;
}
.subBox03 span {
  padding: 2px 15px;
  background-color: #F76014;
  color: #FFF;

}

.catch{
  font-size: 1.2em;
}

#bgBox {
  width: 100%;
  max-width: 1024px;
  background-color: #EFF8F9;
  padding-top: 20px;
}


/* ----- ----- end / header ----- ----- */

/* ----- ----- home ----- ----- */

#contents{
}
#home #contents{
  max-width: 960px;
	background-color: #FFFFFF;
  margin-top: 0;
  padding: 40px 10px;
}
  
#about{
  margin-bottom: 50px;
}
#about h3{
  font-size: 20px;
  margin: 50px 1rem;
  text-align: center;
  padding: 10px;
  background-color: #1C3C7C;
	color: #FFFFFF;
}

.contentsBox{
	margin: 1rem;
}

h4{
  margin: 40px 1rem 0;
}

h5{
  margin: 30px 1rem 10px 1rem;
}

.listBox {
  line-height: 1.8em;
}
.listBox li{
  list-style: disc;
  margin-left: 2em;
}
.listBox li.kome,
.listBox li.kome2{
  list-style: none;
  line-height: 1.4em;
}
.listBox li.kome{
  margin-top: 1em;
  margin-left: 1em;
}

.linkEco a{
  display: inline-block;
  padding: 10px 30px;
	border: solid 1px #97B2DD;
  border-radius: 30px;
	font-size: 18px;
  margin-bottom: 20px;
}
.linkEco a:hover{
  color: #333;
}
@media screen and (max-width: 619px) {
  .linkEco a{
	  font-size: 16px;
  }
}

.flexBox{
  display: flex;
  flex-wrap: wrap;
}
.flexBox > div{
  margin-right: 0;
  margin-left: 0;
}
.flexBox .imgBox{
  flex: 0 0 auto;
  padding: 10px;
}
.flexBox .cap{
  font-size: 0.8em;
  line-height: 1.6em;
  margin-bottom: 10px;
}
.flexBox.forMark{
  display: flex;
  justify-content: space-around;
  margin: 0px auto;
}
.flexBox.forMark .imgBox{
  max-width: 30em;
}
.flexBox.forMark .imgBox .img{
  text-align: center;
}
.flexBox.forMark .cap{
  margin-top: 20px;
}
@media screen and (max-width: 499px) {
  .flexBox.forMark .imgBox{
    width: 100%;
    max-width: 360px;
  }
}

@media screen and (max-width: 899px) {
  .flexBox{
    justify-content: flex-start;
  }
  .flexBox.forMark .imgBox{
    padding: 10px 20px;
  }
}

@media screen and (min-width: 900px) {
  .flexBox{
    justify-content: space-between;
  }
}

@media screen and (max-width: 788px) {
  #about .headingBox{
    padding: 10px 1em;
  }
}
@media screen and (min-width: 789px) {
  #about .headingBox{
    padding: 10px 50px;
  }
}

@media screen and (max-width: 499px) {
  .hidden-s{
    display: none;
  }
}
@media screen and (min-width: 500px) {
  .hidden-s{
    display: block;
  }
}

.date{
  text-align: right;
  font-size: 0.9em;
  margin: 1em 1em 40px;
}
@media screen and (min-width: 960px) {
  .date{
    margin-right: 2em;
  }
}

.headingBox P {
	line-height: 1.8;
}

/* ----- ----- end/ home ----- ----- */


	
/* ----- ----- 表 ----- ----- */
	
.scroll{
  color: #69C;
  margin: 10px 1rem 10px 2rem;
}
@media screen and (min-width: 960px) {
  .scroll{
    display: none;
  }
}

.tableBox{
  overflow-x: auto;
  margin: 0 1rem 20px;
}
.tableBox table {
  width: calc( 100%-20px );
  min-width: 890px;
	margin: 0 0 20px;
	border-collapse: collapse;
}
.tableBox table thead th{
  height: 60px;
  vertical-align: bottom;
}
.tableBox table tr th img{
  width: 34px;
  height: auto;
  transition: all ease-out 0.3s;
}
.tableBox table tr th:active img,
.tableBox table tr th:hover img,
.tableBox table tr th:focus img{
  transform: scale(1.76);  
}

.tableBox table th{
  font-weight: normal;
	font-size: 12px;
	line-height: 1.4;
	padding: 4px;
	border: solid 1px #A1A1A1;
}
.tableBox table tbody th{
  height: 50px;
  text-align: left;
}

.tableBox table tbody th.thHeading01{
  text-align: center;
  background-color: #99ccff;
}
.tableBox table tbody th.thHeading02{
  text-align: center;
  background-color: #99cc00;
}
.tableBox table tbody th.thHeading03{
  text-align: center;
  background-color: #ffcc00;
}

.tableBox table td{
	font-size: 14px;
	text-align: center;
	padding: 4px;
	border: solid 1px #A1A1A1;
}
.tableBox table .noBoder {
	border: 0 none;
  padding: 1px;
}

/* ----- ----- end/ 表 ----- ----- */

/* ----- ----- 活動状況 ----- ----- */

#contents.report{
	background: url("../images/topline.jpg") no-repeat left top;
}
#report #title{
	margin: 20px auto;
}
#report #title h1{
	display: inline-block;
	width: 100px;
	margin-left: 20px;
}
#report #title h1 img{
	height: 60px;
	width: auto;
}
#report #title h2{
	display: inline-block;
	background-color: #1C3C7C;
	color: #FFF;
	font-weight: bold;
	font-size: 24px;
	text-align: center;
	padding: 6px 14px 8px;
	margin-top: 18px;
	width: calc(100% - 160px)
}
#report #title.hataraki h1{
	width: 140px;
}
#report #title.hataraki h2{
	width: calc(100% - 200px);
}
#report #title p{
	margin-left: 20px
}
#report #title p img{
	max-height: 80px;
  height: auto;
  max-width: 92%;
}

.reportTitle .flexBox > *{
	flex: 1 1 auto;
}
.reportTitle{
	border-bottom: 1px solid #1C3C7C;
	padding-bottom: 10px;
	margin: 20px;
}
.reportTitle h3{
	display: inline-block;
	color: #1C3C7C;
	text-align: left;
	align-self: baseline;
}
.reportTitle .date{
	display: inline-block;
	margin: 0;
	align-self: baseline;
}
.reportInner{
	margin: 1em 20px 50px;
}
.reportInner .flexBox p{
	line-height: 1.4em;
}
.reportInner .flexBox .text{
	flex: 0 0 56%;
}
.reportInner .flexBox .text.only{
	flex: 0 0 100%;
	max-width: 720px;
}
.reportInner .flexBox .text p{
	margin-bottom: 10px;
}
.reportInner .flexBox .img{
	flex: 0 0 44%;
	text-align: center;
}
.reportInner:not(:last-of-type){
	border-bottom: 1px dashed #CCC;
	padding-bottom: 50px;
}

.reportInner .borderBox{
  border: 1px solid #CCC;
  margin: 20px auto;
  padding: 20px;
}

.reportInner .borderBox .flexBox .text{
	flex: 0 0 64%;
}
.reportInner .borderBox .flexBox .img{
	flex: 0 0 36%;
}
.reportInner .borderBox .flexBox .img img{
  max-width: 200px;
}

@media screen and (max-width: 788px) {
	#report #title h1{
		width: 100%;
	}
	#report #title h2{
		width: 90%;
	}
	#report #title.hataraki h1{
		width: 100%;
	}
	#report #title.hataraki h2{
		width: 90%;
		font-size: 20px;
	}
	.reportTitle .flexBox > *{
		flex: 1 1 100%;	
	}
	.reportInner .flexBox .text,
	.reportInner .flexBox .img{
		flex: 0 0 100%;
		margin-bottom: 20px;
	}
  .reportInner .borderBox .flexBox .text,
  .reportInner .borderBox .flexBox .img{
		flex: 0 0 100%;
  }
	.reportTitle h3{
		margin-bottom: 20px;
	}
}
@media screen and (min-width: 789px) {
	#report #title h1,
	#report #title h2{
		float: left;
	}
	.reportInner .flexBox .text{
		padding-right: 20px;
	}
  .reportInner .borderBox{
    margin: 20px;
  }
}

/* ----- ----- end/ 活動状況 ----- ----- */

/* ----- ----- footer ----- ----- */

footer{
  background-color: #1C3C7C;
  color: #FFF;
  padding: 20px;
}
#page-top a{
	display: block;
	background-color: rgba(28,60,124,0.8);
	border-radius: 5px;
	width: 26px;
	height: 26px;
  line-height: 26px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	font-size: 0.6rem;
	transition: all 0.3s;
}
#page-top a:hover{
	background-color: rgba(153,153,153,0.8);
}
#page-top {
	position: fixed;
	right: 10px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

#footerInner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 960px;
}
#footerInner ul#footerLink li a{
	position: relative;
  color: #FFF;
  transition: all  0.3s ease;
}
#footerInner ul#footerLink li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background:#FFF;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
#footerInner ul#footerLink li a:hover::after {
  transform: scale(1, 1);
}
#footerInner ul#footerLink li{
  display: inline-block;
  font-size: 0.8em;
}
#footerInner ul#footerLink li:not(:last-child){
  margin-right: 0.5em;
}
#footerInner ul#footerLink li:not(:last-child)::after{
  display: inline;
  content: '|';
  margin-left: 1em;
}

@media screen and (max-width: 420px) {
  #footerInner ul#footerLink li{
    margin-bottom: 0.6em;
  }
}
@media screen and (max-width: 788px) {
  #footerInner{
    text-align: center;
  }
  #footerInner #copyright{
    order: 2;
    flex-basis: 100%;
  }
  #footerInner ul#footerLink{
    order: 1;
    flex-basis: 100%;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 789px) {
  #footerInner #copyright{
    margin-left: 0;
  }
  #footerInner ul#footerLink{
    margin-right: 0;
  }
}
  
/* ----- ----- end/ footer ----- ----- */


/* ----- ----- for print ----- ----- */

@media print{
  
  body{
    background-color: transparent;
  }
  header{
  }
  .drawer{
    display: block;
    position: relative;
    padding: 1em 1em 0.8em; 
  }
  .menu{
    height: 70px;
    width: 60%;
    /*max-width: 800px;*/
    background-color: transparent;
    margin:0 auto;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu ul{
   height: 70px;
   display: flex;
   flex-wrap: wrap;
   justify-content: flex-end;
   align-items: center;
  }
  .menu ul li a{
   padding: 0 1em;
   border-bottom: none;
  }

}
/* ----- ----- end/ for print ----- ----- */


	