@charset "shift_jis";

/* -------------------------------------------------------------

[1] レイアウトに関する指定
[2] ヘッダーブロック内に関する指定
[3] コンテンツブロック内に関する指定
[4] サイドバーブロック内に関する指定
[5] フッターブロック内に関する指定
[6] CSSデザインサンプルリンク指定

----------------------------------------------------------------
CSSデザインサンプ [ URL ] http://www.css-designsample.com
------------------------------------------------------------- */


/* 一括で全ての要素の余白をゼロに指定 */
* {
  margin: 0;
  padding: 0;
}

/* 全体的なリンク */

a:link,
a:visited,
a:hover,
a:active { text-decoration:none;
           font-weight:bold;
}

a:link {
    color: #0c274f;
}

a:visited {
    color: #655D8F;
}

a:hover {
    color: #2E5C93;
}

a:active {
    color: #e8c13f;
}

/* -------------------------------------------------------------
   [1] レイアウトに関する指定 */
body {
  font-size: 85%;
  text-align: center;
  font-family: "メイリオ", Meiryo "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 0;
  margin: 0;
  background-color: #03101e;
  width: 800px; 
  margin: 0 auto;
}

#wrapper {
  text-align: left;
  width: 800px;
  margin: 10px auto;
  padding: 0 10px;
  background: #fff url(img/bg-wrapper.gif) no-repeat 10px 305px;
  overflow: hidden;
}

#header {
  width: 800px;
  margin-bottom: 0px;
  height: 280px;
}

#contents {
  float: right;
  width: 570px;
  padding: 0 5px;
 
}



#sidebar {
  float: left;
  width: 200px;
}

#footer {
  clear: both;
  padding: 10px 0 5px;
  background-color: #000;
  color: #fff;
}

/* -------------------------------------------------------------
   [2] ヘッダーブロック内に関する指定 */

/* -- 見出しレベル1 -- */
h1 {
  font-size: 100%;
  font-weight: normal;
  color: #fff;
  position: absolute;
  top: 70px;
  right: 10px;
}

/* -- 企業名 ショップ名 サイト名 -- */
.logo {
  font-size: 110%;
  top: 25px;
  left: 10px;
}

.logo a {
  text-decoration: none;
  color: #0c284f;
}

.logo a:hover {
  text-decoration: none;
  background-color: #ffffff;
  color: #8287AF;
}

/* -- 概要 -- */
.description {
  width: 780px;
  color: #0c284f;
  bottom: 20px;
  left: 10px;
  padding-top: -20px;
  font-size: 89%;
}


/* -------------------------------------------------------------
   [3] コンテンツブロック内に関する指定 */

/* -- 見出し -- */
h2 {
  position: relative;/*相対位置*/
  padding: 0.5em 0.5em 0.5em 1.5em;/*アイコン分のスペース*/
  line-height: 1.4;/*行高*/
  /*color: #ff6a6a;文字色*/
  color:#0d284f;/*文字色*/
  border-top: dotted 1px gray;
  border-bottom: dotted 1px gray;
  background: #F0F0FC;
}

h2:before {
  font-family: "Font Awesome 5 Free";/*忘れずに*/
  content: "\f138";/*アイコンのユニコード*/
  font-weight: 900;
  position: absolute;/*絶対位置*/
  font-size: 1em;/*サイズ*/
  left: 0.25em;/*アイコンの位置*/
  top: 0.5em;/*アイコンの位置*/
  color:#0c284f /*アイコン色*/
}

h3,h4,h5,h6 {
  font-size: 120%;
  font-weight: normal;
  height: 50px;
  padding-top: 10px;
  padding-left: 10px;
  background: url("img/bg-h.jpg") no-repeat 0 0;
}

h3,h4,h5,h6 { margin-top: 50px; }

/* -- 文字 -- */
#contents p {
  line-height: 1.6em;
  margin-bottom: 0.5em;
}

/* -------------------------------------------------------------
   [4] サイドバーブロック内に関する指定 */

/* -- カテゴリタイトル -- */
.side-title {
  height: 50px;
  padding: 10px 5px 0;
  background: url(img/bg-sidetitle.gif) no-repeat 0 0;
  color: #0d284f;
  font-weight:bold;
}

.strong-title {
  font-size: 120%;
  font-weight: 700;
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color:#E00C0F; /*文字色*/
  background: transparent;/*背景透明に*/
}

/* -- リスト -- */
.localnavi {
  list-style-type: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  background: url(img/bg-localnavi.gif) no-repeat 0 100%;
  font-size: 90%;
}

.localnavi li { display: inline; }

.localnavi a {
  text-decoration: none;
  display: block;
  width: 165px;
  padding: 7px;margin-bottom: 0.8px;
  background: #fff url(img/bg-localnavi-li.jpg) no-repeat 0 100%; border: 0.1px solid #0c274f;border-left:10px solid #0C274E;
  color: #000;
}

.localnavi a:hover {
  text-decoration: none;
  color: #2E5C93;
  background: #fff url(img/bg-localnavi-li.jpg) no-repeat 0 100%;
}

/* -------------------------------------------------------------
   [5] フッターブロック内に関する指定 */

#footer p { text-align: center; }

/* -------------------------------------------------------------
   [6] CSSデザインサンプルリンク指定 */

#cds {
  font-size: 80%;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  text-align: right;
  margin: 0;
  padding-right: 20px;
  clear: both;
}

#cds,
#cds a,
#cds a:hover {
  text-decoration: none;
  color: #ccc;
}


/* -------------------------------------------------------------
   [7] Private 追加分*/

.seminar-title {
  font-size: 118%;
  font-weight: 700;
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #0d284f;/*文字色*/
  background:#f0f0fc;/*背景透明に*/
  border-left: solid 10px #e8c13f;/*左線*/
  width: 710px;
  border-bottom: dotted 0.5px #0c284f;
  border-top: dotted 0.5px #0c284f; ;
}

.flyercap {
  font-size: 0.8em;
  padding: 0.9em 0.5em;/*上下 左右の余白*/
  color: #0d284f;/*文字色*/
  background: transparent;/*背景透明に*/
  text-align: right;
 
}


/* -------------------------------------------------------------
   [7] Private 追加分 2024*/


/* -------------------------------------------------------------
   表　*/
#id_item_33　table,th,td {
  border:1px solid #333;font-size: 10px; padding: 2px; overflow: hidden;
}

#id_item_33 table{border-collapse:collapse; }
#id_item_33 tr th{background-color: #1E2C50; color: #FFFFFF; text-align: center;}
#id_item_33  td{background: #dfe9f3;}
#id_item_33 th{background-color: #1E2C50; color: #FFFFFF;}
#id_item_33{width: 800px;height:800px;margin-left: 0px}
#id_item_33 td{text-align: left;}
#id_item_33 td[rowspan] {background-color:#FFF;}
#id_item_33 table tr:nth-child(odd) td {
	background: #fff;}
.item_center{text-align: center;}
.border_table table td{border:none;}
.fwB{border:none;}
.fwB td{border:none;}


/* -------------------------------------------------------------
   もっと見るボタン　*/

.btn {
  border: 1px solid #0c284f;
  background-color: #F0F0FC;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  margin-top: 10px;
  padding: 5px 10px;
}
.js-accordion li{
  list-style:none;
}


/* -------------------------------------------------------------
   過去の開催報告　*/


.strong-title {
  font-size: 120%;
  font-weight: 600;
  color:#E80904; /*文字色*/

}

.sier_figcaption{margin-top: 3px;
}

.report{color: #01173A;font-weight: bold;font-size: large; 
  display: inline; background: linear-gradient(transparent 50%, #D0DFF7 50%);}




/* -------------------------------------------------------------
   レポート　
*/

.report ul {
    display: flex;
    justify-content: center;}

.report li {
    list-style: none; }

.report li:nth-child(2) {margin: 0 16px;}
.report img{object-fit: cover;border-radius: 5px;}
.report figcaption{font-size: 13.5px;margin-top: 6px;}


.report-title{
  padding: 0.5rem 0;
  padding-left: 0.6rem;
  border-left: 7px solid #0c274f;
  background:#f2f1f0;
  font-size: 120%;
  font-weight: 700;
  
}

/* -------------------------------------------------------------
   スライドショー　

.slideBox {
  height: 380px;
  width: 795px;
  overflow: hidden;
  position: relative;
  margin-bottom: 33px;
  margin-top: -15px;
}

/* imgのみ *//* ---
.item1 {
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 20s 0s infinite;
  animation: anime 20s 0s infinite;
}

.item1:nth-of-type(2) {
  -webkit-animation-delay: 5s;
  animation-delay: 4s;
}

.item1:nth-of-type(3) {
  -webkit-animation-delay: 10s;
  animation-delay: 8s;
}
.item1:nth-of-type(4) {
  -webkit-animation-delay: 15s;
  animation-delay: 12s;
}

.item1:nth-of-type(5) {
  -webkit-animation-delay: 20s;
  animation-delay: 16s;
}

/* ふわっとアニメーション *//* ---
@keyframes anime {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes anime {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes anime {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
*/


#slideshow {
   position: relative;
   height: 380px;
  width: 795px;
  overflow: hidden;
　margin-bottom: 50px;
  margin-top: -15px;
}
#slideshow img {
   position: absolute;
   top: 0;
   left:0;
   z-index: 8;
   opacity: 0.0;
}
#slideshow img.active {
   z-index: 10;
   opacity: 1.0;
}
#slideshow img.last-active {
   z-index: 9;
}

/* -------------------------------------------------------------
ロゴ
*/

.description_flex {
  display: flex; /*横並び*/
}
.description_flex .image {
  width: 50px; /*画像サイズ指定*/
  margin-right: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 5px;
  position: relative;
	
}
.description_flex .text {
  padding: 0; margin-top: 20px; margin-left: 15px;
  font-weight: bold;
  color: #0d284f;
}


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

#id_item_33{margin-bottom: 570px;margin-top: 55px;}

#id_item_33　table, th, td {
  border:1px solid #333;font-size: 10px; padding: 2px;
}

#id_item_33 table{border-collapse:collapse; }
#id_item_33 tr th{background-color: #1E2C50; color: #FFFFFF; text-align: center;}
#id_item_33　table, th, {100px;}
#id_item_33  td{background: #dfe9f3;}
#id_item_33 th{background-color: #1E2C50; color: #FFFFFF;}
#id_item_33　table, th, {100px;}
#id_item_33{width: 900px;height:900px;margin-left: -190px}
#id_item_33 td{text-align: left;}
#id_item_33 td[rowspan] {background-color:#FFF;}
#id_item_33 table tr:nth-child(odd) td {
	background: #fff;
}
.item_center{text-align: center;}




/* -------------------------------------------------------------
お知らせ*/


dl{
 width:575px;
}
dt{
  float:left;margin-bottom: 5px;
}
dd{
  margin-left:90px;margin-bottom: 5px;
}

/* -------------------------------------------------------------
*/
.contents2 {margin-left: -190px}
.contents2 h2{width: 700px;}
#contents2{margin-left: -190px}
#contents2 h2{width: 700px;}



.fontsize{font-size: 13.5px;width: 700px;margin-bottom: 10px;}
.fontsize2{font-size: 16px;}

.detail{margin-left: 20px;width: 700px}

.heading_nag01 {
  color: #6594e0;/*文字色*/
  /*線の種類（点線）2px 線色*/
  border-bottom: dashed 4px #6594e0;
  font-size: 18px;
  font-weight: bold;
}



.detail dl{
 width:575px;
}
.detail dt{
  float:left;margin-bottom: 5px;
}
.detail dd{
   margin-left:70px;margin-bottom: 5px;
}

