@charset "UTF-8";

/**
 * レイアウト用ボックスを囲む
 * スタイルシートは、子要素に対して継承ができるので、ボックス全体の親があると楽になる
 */
.container {
    width: 960px; /* サイトの基本となる横幅 */
    margin-right: auto; /* 右側の余白を自動で調整 */
    margin-left: auto;  /* 左側の余白を自動で調整 */
}

/* レイアウト用ボックス */
.box-column {
    box-sizing: border-box;    /* パディングとボーダーを幅と高さに含める CSS3のプロパティ */
}

/* ボックスを分かりやすくするため */
.layout-class {
    background-color: #dedede;
    padding: 30px;
    border: 1px solid #949494;
    margin-bottom: 10px;
    font-size: 20px;
}

.float-left {
  float: left;
}

/* clearfix */
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
.w66 {
  width: 66.66666%;
}
.w33 {  
    width: 33.33333333%; /* コンテンツエリアの幅を指定する */
}

/* --------------------------
 * ヘッダー
 * --------------------------
 */
#header {
    color: #333;
    height: 110px; /* コンテンツエリアの高さを指定する */
    padding-top: 8px;
    padding-bottom: 8px;
}
#header h1 {
    color: #333;
    font-size: 24px;
    font-weight: bold; /* 文字の太さを指定する */
    display: inline-block;
}
#header p {
    font-size: 12px;
}
#header p a {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    background-color: #00a0dc;
    padding:8px 20px;
    border-radius: 5px;
}

#header p a:hover {
    background-color: #a888be;
    transition: all 1s;
}

#header .header-top {
    font-size: 12px;
    margin-bottom: 10px;
}
#header .header-info {
    text-align: right;
}

/* --------------------------
 * ナビゲーション
 * --------------------------
 */
.navigation {
    box-shadow: inset 0 1px 0 #fff;
    border-top: 2px solid #00a0dc;
    border-bottom: 1px solid #ccc;
}
.navigation ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.navigation ul li {
    border-left: 1px dotted #D6D6D6;
    float: left;
    width: 20%;
    box-sizing: border-box;    /* パディングとボーダーを幅と高さに含める CSS3のプロパティ */
}
.navigation ul li a {
    color: #000;
    display: block;
    font-size: 13px;
    padding: 15px;
    line-height: initial;
    text-align: center;
    text-decoration: none; /* テキストに下線・上線・打ち消し線を付けたりできる */
}
/* aタグの上にマウスカーソルが重なった時 */
.navigation ul li a:hover {
    color: #fff;
    background-color: #00a0dc;
    margin-bottom: -1px;
    border-bottom: 1px solid #00a0dc;
}
/* liタグにactiveクラスが指定されている子要素のaタグ */
.navigation ul li.active a {
    color: #fff;
    background-color: #00a0dc;
    border-bottom: 1px solid #00a0dc;
    margin-bottom: -1px;
}
.navigation ul li:last-child {
    border-right: 1px dotted #D6D6D6;
}

/* --------------------------
 * メイン画像
 * --------------------------
 */
.main-img {
    margin-top: 30px;
    margin-bottom: 40px;
}

/* --------------------------
 * ボタン
 * --------------------------
 */
.button {
    color: #fff;
    font-size: 13px;
    display: inline-block;
    line-height: 1.5;
    vertical-align: middle;
    text-decoration: none;
    padding: 3px 10px;
    border-radius: 2px;
    border: 0;
    background-color: #00a0dc;
}
.button:hover {
    opacity: 0.8;
    cursor: pointer;
}

/* --------------------------
 * 見出し
 * --------------------------
 */
.heading {
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #ccc;
    border-top: 2px solid #00a0dc;
    margin-bottom: 15px;
    padding: 8px 15px;
}

/* --------------------------
 * フッター
 * --------------------------
 */
#footer {
    border-top: 1px solid #ddd;
    margin-top: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
}
#footer h1 {
    color: #333;
    font-size: 24px;
    font-weight: bold;
}
#footer p {
    font-size: 12px;
}
.footer-company-info {
    margin-top: 15px;
}
#footer ul {
    margin-top: 5px;
}
#footer li {
    float: left;
    margin-bottom: 10px;
    padding: 0 7px 0 8px;
    font-size: 11px;
    border-right: 1px solid #b6b6b6;
    list-style-type: none;
}
#footer li a:hover {
    color: #888;
    text-decoration: underline;
}
#footer .copyright {
    color: #666;
    font-size: 11px;
    margin: 20px 0;
    text-align: center;
}

/* --------------------------
 * PRエリア
 * --------------------------
 */
.pr-area {
    margin-bottom: 30px;
}
.pr-area li {
    float: left;
    padding: 0 5px;
    width: 33.3333%;
    box-sizing: border-box;
}
.pr-area li h2 {
    border-left: 5px solid #00a0dc;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px 0;
    padding-left: 10px;
}
.pr-area .shadow {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 5px;
    box-shadow: 3px 3px 3px #ddd;
    box-sizing: border-box;
}
.pr-area .shadow:hover {
    opacity: 0.6;
}
.pr-area .trim-img {
    width: 100%;
    height: 150px;
    overflow: hidden;
}
.pr-area p {
    font-size: 13px;
    line-height: 1.8;
    padding: 5px;
}
.pr-area a p:hover {
    color: #00a0dc;
    text-decoration: underline;
}

/* --------------------------
 * ブログ
 * --------------------------
 */
.blog {
    margin-bottom: 50px;
}
.blog p {
    font-size: 14px;
    margin-bottom: 15px;
}
.blog li {
    border-bottom: 1px dotted #ddd;
    padding: 15px 5px;
}
.blog .blog-img {
    float: left;
}
.blog .blog-img:hover {
    opacity: 0.8;
}
.blog .blog-info {
    margin-left: 115px;
}
.blog .blog-info h3 a {
    color: #00a0dc;
    font-size: 18px;
    font-weight: bold;
}
.blog .blog-info h3 a:hover {
    text-decoration: underline;
}
.blog .blog-info span {
    color: #666;
    display: inline-block;
    font-size: 13px;
    margin-bottom: 10px;
}
.blog .blog-info p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* --------------------------
 * サイドメニューリスト
 * --------------------------
 */
.share {
    margin-bottom: 50px;
}
.share ul {
    border-top: 1px dotted #ddd;
}
.share ul li {
    border-bottom: 1px dotted #ddd;
}
.share ul li a {
    display: block;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
}
.share ul li a:hover {
    background-color: #eee;
    opacity: 0.8;
}

.fa-angle-double-right {
    padding-right: 10px;
}



/* --------------------------
 * 学会概要
 * --------------------------
 */
.company p {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 20px;
    padding: 0px 5px;
}

.company2 p {
    font-size: 16px;
    line-height: 35px;
    margin-bottom: 25px;
    padding: 0px 5px;
}

.right {
    text-align: right;
}


.company p.greeting-info {
    text-align: right;
}

.company h3 {
    font-weight: bold;
    font-size: 15px;
}
/* テーブル */
table {
    border-collapse: collapse; /* ボーダーを1本にまとめて表示 テキストp.122参照 */
    border-spacing: 0;
    border: 1px solid #cbcbcb;
    width: 100%;
    margin-bottom: 20px;
}
/* tdタグとthタグに同じスタイルを指定したいので、セレクタをグループ化して指定 */
table td, table th {
    border-left: 1px solid #cbcbcb;
    border-bottom: 1px solid #cbcbcb;
    font-size: 13px;
    margin: 0;
    padding: 10px 13px;
}
/* thタグのみにスタイルを追加 */



table th {
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
    white-space: nowrap;
}

.soshikizu {
    height: 900px;
    width: 550;
}

.speaker {
    width: 100px;
}

.when {
    width: 60px;
}




/* --------------------------
 * タイトルバー
 * --------------------------
 */
.title-bar {
    background-color: #042c77;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
    padding: 15px;
    opacity: 0.8;
}
.title-bar h2 {
    color: #fff;
}



/* --------------------------
 * インデックスのインフォ
 * --------------------------
 */

 .w100 {  
    width: 100%; /* コンテンツエリアの幅を指定する */
}

.infotitle {
    color: #042c77;
    font-weight: bold;
    margin-bottom: 5px;
}


/* --------------------------
 * お問い合わせ
 * --------------------------
 */
 .contact p {
    font-size: 13px;
}
.contact form {
    margin-top: 20px;
}
.contact input,
.contact textarea,
.contact select {
    padding: 5px 6px;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    vertical-align: middle;
    box-sizing: border-box;
}
.contact .text-center {
    text-align: center;
}


/* --------------------------
 * 過去の活動報告ボタン
 * --------------------------
 */


.actpast a:hover {
    background-color: #eee;
    opacity: 0.8;
}

#pasttitle {
    font-weight: bold;
    font-size: 16px;
    
}

/* --------------------------
 * 会員サポートのボタン
 * --------------------------
 */
 
 
.tablebtn {
    width: 70px;
    height: 20px;
    text-align: center;
}


 .tablebtn a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 20px;
 }

 .tablebtn a:hover {
    background-color: #00a0dc;
    opacity: 0.8;
    color: #fff;
 }

 .fa-file-pdf,.fa-file-word,.fa-file-excel {
    padding-left: 10px;
    size: 30px;
}

#seikyuu {
    margin-bottom: 30px;
}

#seikyuu a {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    background-color: #00a0dc;
    padding:8px 20px;
    border-radius: 5px;
}

#seikyuu a:hover {
    background-color: #a888be;
    transition: all 1s;
}

#seikyuu_hidari {
    margin-top: 10px;
    margin-left: 20px;
}


.center {
    text-align: center;
    width: 20px;
}

.price {
    width: 70px;
}

.eventdate {
    width: 120px;
}

.theme {
    width: auto;
}

.eventtitle {
    width: 90px;
}

.kenunder {
    border-bottom: dotted 1px #333;
  }

.kenunder:hover {
    background-color: #eee;
    opacity: 0.8;
}

/* --------------------------
 * 資料請求フォーム
 * -------------------------
 */

.resume_form {
    font-size: 20px;
    text-align: center;
}


/* --------------------------
 * other用
 * -------------------------
 */

 .title-bar2 {
    background-color: #28a44a;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 40px;
    padding: 15px;
    opacity: 0.8;
}

.speaker2 {
    width: 200px;
}

.when2 {
    width: 80px;
}

.maru {
    text-align: center;
    vertical-align: middle;
    font-size: 30px;
    }

.kakititle {
    font-weight: bold;
    font-size: 16px; 
    }

.theme {
    width: 300px;    
}

tsuika {
    size: 6px;
}
