@charset "utf-8";


/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,body {min-height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 110%;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色（古いブラウザ用）*/
	/*background: linear-gradient(#25b1d9 150px, #fff 150px);	/*トップページ以外の背景設定。画面の上から150pxまでが#25b1d9で、そこからすぐ#fffの白色に切り替える内容。*/
}

h1,h2,h3,h4,h5,p,ul,ol,li,figure {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

input[type="text"] {
  width: 80%;
  height: 30px;
  background: #fff;
  border: 1px solid #bebebe;
  border-radius: 0px; /*角を丸くする*/
  font-size: 0.8em;
  text-indent: 0.2em;
}

input[type="text"]:focus {
  background: #edf4ff;
  border: 1px solid #4881d9;
}

input[type="password"] {
/*  width: 300px;*/
  height: 40px;
  width: 70%;
  background: #fff;
  border: 1px solid #bebebe;
  border-radius: 0px; /*角を丸くする*/
  font-size: 1.0em;
  text-indent: 0.2em;
}

input[type="password"]:focus {
   background: #edf4ff;
   border: 1px solid #4881d9;

}

input[type="submit"]{
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px 30px;
    background-color: #076EED;
    color: #fff;
    border-style: none;
    border-radius: 5px;
}
input[type="submit"]:hover{
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px 30px;
    background-color: #7CADEA;
    color: #fff;
    border-style: none;
}

textarea {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐ>ゴシック", "MS PGothic", sans-serif;
  width: 80%;
  height: 108px;
  background: #fff;
  border: 1px solid #bebebe;
  border-radius: 0px;
  font-size: 0.8em;
  text-indent: 0.2em;
}

textarea:focus {
  background: #edf4ff;
  border: 1px solid #4881d9;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #0444B3;	/*マウスオン時の文字色*/
}

/*コンテナー（ホームページを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#wrapper {
	width: 100%;			/*ブロックの幅を画面の80%にする設定。*/
	max-width: 2000px;	/*上のwidth指定の追加設定。幅1000pxを最大幅に設定し、それ以上広げない。*/
	margin: 0 auto;		/*HP画面の左右中央に表示させる設定*/

}

#toppage {
    width: 100%;			/*ブロックの幅を画面の80%にする設定。*/
	max-width: 1500px;	/*上のwidth指定の追加設定。幅1000pxを最大幅に設定し、それ以上広げない。*/
	/*min-width: 1000px;*/
	margin: 0 auto;		/*HP画面の左右中央に表示させる設定*/
}

#container {
	width: 80%;			/*ブロックの幅を画面の80%にする設定。*/
	max-width: 1000px;	/*上のwidth指定の追加設定。幅1000pxを最大幅に設定し、それ以上広げない。*/
	margin: 0 auto;		/*HP画面の左右中央に表示させる設定*/
}

#container2 {
	width: 80%;			/*ブロックの幅を画面の80%にする設定。*/
	max-width: 1000px;	/*上のwidth指定の追加設定。幅1000pxを最大幅に設定し、それ以上広げない。*/
	margin: 0 auto;		/*HP画面の左右中央に表示させる設定*/
}

/*mainimg
---------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg {
   position: relative;
   margin:0 auto;
   width:100%; 
/*   height: 60%;
   margin-top: 40px;
   margin-bottom: 40px;
/*   box-shadow: 0px 0px 30px -1px rgba(0, 0, 0, 0.8);*/
/*   background-image: url("../images/3.png");*/
/*   background-repeat: no-repeat;*/
}

#mainimg #main-msg {
  width:70%;
  height:10%;
/*  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);*/
  position: absolute;/*絶対配置*/
  top: 0;
  left: 0;
  padding:15px;
  color:#fff;
  background-color: rgba(0,0,0,0.0);
  border-radius: 0px;
  /*文字の装飾は省略*/
}

#mainimg .pc { display: block !important; }
#mainimg .sp1 { display: none !important; }
#mainimg .sp2 { display: none !important; }

@media only screen and (max-width: 1000px) {
    
}

@media only screen and (max-width: 800px) {
    #mainimg .pc { display: none !important; }
    #mainimg .sp1 { display: block  !important; }
    #mainimg .sp2 { display: none !important; }
    #mainimg #main-msg {
        position: static;/*絶対配置*/
        width:90%;
        color:#666;
    }
}

@media only screen and (max-width: 500px) {
    #mainimg .pc { display: none !important; }
    #mainimg .sp1 { display: none !important; }
    #mainimg .sp2 { display: block  !important; }
}






/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
    display:flex;
	width: 80%;			/*ブロックの幅を画面の80%にする設定。*/
	height: 120px;			/*headerの高さ*/
    margin: 0 auto;		/*HP画面の左右中央に表示させる設定*/
/*    background: #fff;*/
    margin-bottom:40px;
}

/*ロゴ画像設定*/
#logo {
    width: 100%;
	margin: 0 auto;		/*HP画面の左右中央に表示させる設定*/
}

#logo  img {
	width: 235px;			/*画像幅*/
    height: 95px;           /*画像高さ*/
	margin-top: 10px;		/*画像の上に空けるスペース*/
	margin-bottom: 10px;	/*画像の下に空けるスペース*/
}

@media only screen and (max-width: 60em) {
    #logo  img {
	width: auto;			/*画像幅*/
    height: 30%;        /*画像高さ*/
    
	margin-top: 10px;		/*画像の上に空けるスペース*/
	margin-bottom: 10px;	/*画像の下に空けるスペース*/
    }
    
}

#contact{
    width: 400px;			/*ブロックの幅を画面の80%にする設定。*/
    height: 30px;           /*画像高さ*/
    margin: 10px auto;		/*HP画面の左右中央に表示させる設定*/
    padding: 10px auto;
    border-radius: 10px; /*角を丸くする*/
    color: #fff;
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
#menubar {
    width:100%;
    display: block;
    height: 60px;		/*headerの高さ*/
    list-style: none;
    text-align: center;	/*文字をセンタリング*/
    margin-top: 10px ;
    margin-bottom: 0px ;
    background-color: rgba(18,83,164,1.0);
}

#menubar li {
    margin-top: 10px;
    height: 80%;
    width: 180px;
    text-align: center;
    display: inline-block;
    font-size: 120%;
}

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

    #menubar {
    height: 120px;			/*headerの高さ*/
    }

    #menubar li{
    width: 25%;
  }
}

#menubar li a {
	border-radius: 10px; /*角を丸くする*/
    text-decoration: none;
    color: #fff;
/*    font-weight: bold;*/
    padding: 0px;
}

/*マウスオン時の設定*/
#menubar li a:hover {
    display: block;
    background: #033A99;/*背景色*/
    color: #fff;	/*文字色*/
}

/*メニュー全体を囲むブロック*/
#submenu {
/*    display: block;*/
/*    height: 500px;	/*headerの高さ*/
    list-style: none;
    text-align: center;	/*文字をセンタリング*/
    /*background: #0444B3; */
}

/*メニュー全体を囲むブロック*/
#submenu #default{
    text-decoration: none;
    font-weight: bold;
    padding: 0px;
    background: #1253A4;	/*背景色*/
    color: #fff;	/*文字色*/
}

#submenu li {
    margin-top: 7px;
    width:200px;
    text-align: center;
    font-size:110%;
    background: #ccc;
}

#submenu li a {
    display:block;
    width:100%;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 0px;
}
/*マウスオン時の設定*/
#submenu li a:hover {
    display: block;
    background: #033A99;	/*背景色*/
    color: #fff;	/*文字色*/
}


/*BBS用サブメニュー（見出しバーや文字などが入っているブロック）
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
#bbsmenu {
    display: block;
 /*   height: 50px;			/*headerの高さ*/
    list-style: none;
    text-align: center;	/*文字をセンタリング*/
    /*background: #0444B3; */
}

#bbsmenu ul {
        list-style: none;
        border: 0px solid #ddd;
}

#bbsmenu li {
        width: 200px;
        z-index:999;
        text-align: center;
        position: relative;
        border: 1px solid #fff;
        background: #ddd;
        padding: 0px 0px;
}

#bbsmenu li a {
        display: block;
        width: 100%;
        padding: 0px;
        color: #666;
        font-weight: bold;
        text-decoration: none;
        webkit-transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        transition-duration: 0.3s;
}

#bbsmenu li a:hover {
        background: #033A99;        /*背景色*/
        color: #fff;        /*文字色*/
}

#bbsmenu li:hover > ul {
        display: block;
}

#bbsmenu ul  ul{
        display: none;
        position: absolute;
        top: 0;
        left: 202px;
        width: 200px;
}

#bbslink a{
    font-weight:bold;    
}


#bbslink ul {
  padding: 0.5em 0.5em 0.5em 2em;
}

#bbslink ul li {
  line-height: 1.5;
  padding: 0.3em 0;
}

#bbslink ul li::before {
/*
  display:inline-block; 
  vertical-align: middle;

  content:'';
  width:0.7em;
  height: 0.7em;
  background: #1253A4;
  border-radius: 50%;
  margin-right: 8px;
*/
}



input[type="checkbox"].on-off{
    display: none;
}

input[type="checkbox"].on-off + ul{
    height: 0;
    overflow: hidden;
}

input[type="checkbox"].on-off:checked + ul{
    height: 450px;
}
    

/*コンテンツ（見出しバーや文字などが入っているブロック）
---------------------------------------------------------------------------*/
#contents {
    width: 80%;			/*ブロックの幅を画面の80%にする設定。*/
   /*background: #fff;	/*背景色*/
    padding: 0 3% 3%;	/*上、左右、下への余白*/
}

#contents2 {
	width: 90%;			/*ブロックの幅を画面の80%にする設定。*/
	/*background: #fff;	/*背景色*/
	padding: 0 3% 3%;	/*上、左右、下への余白*/
}
/*コンテンツのh2タグの設定*/
h2 {
	clear: both;
	color: #737373;		/*文字色*/
	padding: 5px 20px;	/*上下、左右への余白*/
	/*background: #1253A4;	/*背景色*/
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    font-weight:normal;
    font-size: 1.6em;
}

/*コンテンツのh2タグの設定*/
h3 {
	clear: both;
	color: #737373;		/*文字色*/
	padding: 5px 20px;	/*上下、左右への余白*/
	/*background: #1253A4;	/*背景色*/
    margin-bottom: 15px;
    font-weight:normal;
    font-size: 1.6em;
}


/*コンテンツのh2タグの設定*/
h4 {
	clear: both;
	color: #737373;		/*文字色*/
	padding: 5px 20px;	/*上下、左右への余白*/
	/*background: #1253A4;	/*背景色*/
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    font-weight:bold;
    font-size: 1.3em;
}

/*コンテンツのp(段落)タグ設定*/
#contents p {
	padding: 0px 20px 14px;	/*上、左右、下への余白*/
}

#contents #boards{
    line-height: 1.3em;
}

/*コンテンツのp(段落)タグ設定*/
#contents #boards .t1{
	font-weight:bold;
}

/*コンテンツのp(段落)タグ設定*/
#contents #boards .t2{

	font-weight:bold;
}

#contents #boards #bbs-msg2{
    margin-top: 20px;
}

/*
#contents #boards ul{
    margin-left:30px;
}
*/

#contents ul li {
    list-style: none;
    margin-top :5px;
}

#contents label {
    width: 15%;
    margin-right: 10px;
    float: left;
}

#contents ul {
    width: 100%;
}

#contents input#button {
    display: block;
    margin: 0 auto;
}

#pwdarea {
    margin: 0 auto;
    width: 80%;
    height: 500px ;

}

#pwdunit {
    margin-top:20px;
    padding: 20px;
    width: 100% ;
    background: #ddd;
    border-radius: 10px; /*角を丸くする*/
}

#pwdunit label {
    width: 15%;
    margin-left: 10px;
}


#bbsarea {
    width: 90%;
    padding: 10px 10px ;
    background: #ddd;
    margin-bottom: 50px;
}

#bbsarea ul{
    margin-left: 0px;
    padding: 0px;
}

/*aboutページ
---------------------------------------------------------------------------*/
#container{
  margin-top:30px;
  display: flex;
}

#container #sidemenu{
    width:20%;
}
#container #contents{
    width:80%;
}

#container2{
  margin-top:30px;
  display: flex;
}

.about{
    width:100%;
/*    display: flex;*/
    line-height: 1.7em;
}
.about .zone-left{
        width:30%;
}
.about .zone-right{
        width:70%;
}

/*各ブロックごとの設定*/
.activity_list {
    width: 100%;
	overflow: hidden;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding-top: 10px;	/*ボックス内の余白*/
}

.listarea{
    margin-top: 40px;
}
/*各ブロックごとの設定*/
.list {
    width: 100%;
	overflow: hidden;
	padding: 0px;	/*ボックス内の余白*/
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-bottom:100px;
}

.list .list-title{
    padding: .3em;
    border-left:solid 10px #8FC0FC;
    border-bottom: 2px solid #5276A3;
	clear: both;
	color: #737373;		/*文字色*/
    font-weight:bold;
    font-size: 1.2em;
    width:100%;
}

.list .list-date{
    text-align: right;
    width:100%;
}

.list .list-msg{
    margin-left: 5px;
    width:100%;
}


.list .img-area{
    margin-left: 5px;
    width:100%;
}

.list img{
    margin:10px 10px;
    width: 50%;
    height: 50%;
}

/*h4見出しの設定*/
.list h4 {
    padding:0px;
	color: #737373;	/*文字色*/
	font-size: 1.2em;	/*文字サイズ。少し大きくしています。*/
    border:none;
    font-weight: bold;
}

.list p {
	padding: 0 !important;
}

.record {
/*    margin: 2em 0; */
    margin: 20px auto;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    width: 95% ;
/*    height: %; */
    color: #111;
    font-size: 0.8em;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 5px 5px ;
    word-wrap: break-word;

}
.record .bbs-title {
    width:100%; 
    height:10%; 
    border-bottom: solid 3px #ddd;
    padding: 0px 5px 10px 0px;
    color: #111;
/*    text-align: center; */
    font-weight: bold;
    font-size: 1.1em;
    letter-spacing: 0.05em;
}
.record .bbs-name {
    width: 60%;
    height: 20%; 
/*    background: #CCC; */
    padding: 0px;
    color: #666;
    text-align: right;
    letter-spacing: 0.05em;
}
.record .bbs-date {
    width: 40%;
    height:20%; 
/*    background: #DDD; */
    padding: 0px;
    color: #666;
    text-align: center;
    letter-spacing: 0.05em;
}

.record .bbs-comment {
    width: 100%;
    color: #111;
    letter-spacing: 0.05em;
}

.record p {
    color: #111;
    margin: 0;
}

#const{
    padding: 0px;
    line-height: 1.6em;
}

#const #const1{
    margin-left:30px;
}

#const #const2{
    margin-left:30px;
}

#const #const3{
    margin-left:40px;
}

#const table{
    width: 500px;
    border: solid 2px #ccc;
}
table th, table td {
    border: solid 2px #eee;
}
.role {
    background:#EAF6FD;
}

#newsletter{
    margin-top:40px;
    width: 800px;
    height: 500px;
    text-align: center;
}

#contactarea{
    margin-top:40px;
    width: 80% 
    height: 500px;
    margin: 0 auto;
}

#contact_detail {
    width: 80%;
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #95ccff;
    border-radius: 8px;
}
#contact_detail .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 20px;
    background: #FFF;
/*    color: #95ccff; */
    font-weight: bold;
}

#contact_detail p {
    margin: 0; 
    padding: 0;
}




#org{
    font-size: 1.2em;
    font-weight: bold;
/*    color: #1253A4; */
    width:100%;
    background: #5fb3f5;
}

#contact_detail p{
    font-size: 0.8em;
    margin-left: 10px;
}


#contactarea label{
    margin-top: 5px;
    display: block;
    font-weight: bold;
    color: #666;
}

/*フッター(ページ最下部のcopyrightのパーツ)設定
---------------------------------------------------------------------------*/
footer {
    display: block;
    height: 100px;
	clear: both;
	text-align: center;	/*文字をセンタリング*/
	padding: 20px 0px;	/*左から、上下、左右への余白*/
	background: #1253A4;	/*背景色*/
    color:#fff;
}
footer a {
	text-decoration: none;
	border: none;
}
footer .pr {
	display: block;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
.newinfo dl {
    padding-left: 0px;
    margin-bottom: 15px;
}
/*日付設定*/
.newinfo dt {
    font-weight: normal;	/*太字にする設定。標準がいいならこの行削除。*/
    float: left;
    width: 8em;
    background-color: #8FC0FC;
    margin-right: 20px;
    text-align: center;
    color: #fff;
}
/*記事設定*/
.newinfo dd {
   /* padding-left: 8em; */
    margin-bottom:10px;
}
/*コンテンツのh2タグの設定*/
#new h3 {
    clear: both;
    color: #737373;		/*文字色*/
    padding: 5px 20px;	/*上下、左右への余白*/
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    font-weight:bold;
    font-size: 1.3em;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
.info-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }
  
  .info-list dt,
  .info-list dd {
    margin: 0;
    padding: 5px 5px;
  }
  
  .info-list dt {
    width: 15%;
    font-weight: bold;
    background-color: #f0f0f0;
    box-sizing: border-box;
  }
  
  .info-list dd {
    width: 85%;
    background-color: #fafafa;
    box-sizing: border-box;
  }

.point-btn {
  display       : inline-block;
  border-radius : 5%;          /* 角丸       */
  font-size     : 11pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 15px 15px;   /* 余白       */
  background    : hsl(208, 100%, 55%);     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  opacity       : 1;           /* 透明度     */
  transition    : .3s;         /* なめらか変化 */
  margin-left   : 40px;  
}
.button:hover {
  /*opacity       : 0.8;         /* カーソル時透明度 */
}

/*---------------------------------------------------------------------------*/
/*tテーブルブロック設定*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 2px solid #000;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*テーブル内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #000;	/*背景色*/
	color: #fff;	/*文字色*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	width: 30%;	/*幅*/
	text-align: center;	/*センタリング*/
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.color1 {color: #25b1d9;}
.pr {font-size: 10px;}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

    /*コンテナー（ホームページを囲む一番外側のブロック）
    ---------------------------------------------------------------------------*/
    #container {
	    width: 100%;	/*ブロックの幅を画面の100%にする設定。*/
    }

    /*メニュー
    ---------------------------------------------------------------------------*/
    #menubar li a {
	    padding: 15px 10px;	/*各メニュー内の余白。上下に15px、左右に10pxあけるという意味。*/
    }

    /*テーブル
    ---------------------------------------------------------------------------*/
    /*tテーブルブロック設定*/
    .ta1, .ta1 td, .ta1 th {
	padding: 5px;			/*テーブル内の余白*/
    }
    
    #newsletter{
        margin-top:40px;
        width:100%;
        height: 500px;
        text-align: center;
    }

    #pwdunit {
        margin-top:20px;
        padding: 5px;
        width: 100% ;
        background: #ddd;
        border-radius: 10px; /*角を丸くする*/
    }

    #pwdunit label {
        width: 5%;
        margin-left: 10px;
    }
    
}

@media screen and (max-width: 40em) {

    #container{
      flex-direction: column;
    }

    #contents{
       padding: 0px;
    }

    #submenu li{
        margin-top: 1px;
        width:100%;
    }

    #bbsmenu{
        margin-bottom:20px;
    }

    #bbsmenu li{
        margin-top: 1px;
        width:100%;
    }

    #bbsmenu li:hover > ul {
        display: none;
    }

    #const table{
        width: 300px;
    }
    #container #contents{
	width: 100%;			/*ブロックの幅を画面の80%にする設定。*/
    }

    #container2 {
	width: 100%;	
    }

    h2{
       font-size: 1.2em;
    }

    /*日付設定*/
    .newinfo dt {
        clear: left;
        width: 8em;
    }

    .newinfo dd {
        margin-left: 11%;
    }

}
