
ul.kome_list li {
    list-style: none;
    margin: 0.2em 0;
    padding-left: 1em;
    position: relative;
}
ul.kome_list li:before {
    content: '※';
    color: #fe0000;
    position: absolute;
    top: 0px;
    left: 0px;
}

/* プログラム一覧 */
.prog_index ul {
    list-style: none;
}
.prog_index ul li {
    margin-bottom: 25px;
}
.prog_index ul li a {
    font-weight: bold;
    display: block;
    padding: 12px 2em 12px 1em;
    background: #fff url("../images/2026/icon_arrow_bl.png") no-repeat 95% center;
    background-size: 10px;
    border: solid 1px #cfcfcf;
}
.prog_index ul li a:hover {
    text-decoration: underline;
}
.prog_index ul li.link_proceedings a {
    text-align: center;
    background: #f5f5f5 url("../images/2024/icon_proceedings.png") no-repeat right top;
    background-size: contain;
    border-color: #f5f5f5;
}
.prog_index ul li.link_proceedings a img {
    margin-right: 10px;
    height: 24px;
}

/* プログラム */
.prog_note .handoutnote_view {
    background: #fff;
    margin-top: 0.5em;
    padding: 0.5em;
    display: none;
}
.prog_note .handoutnote_view li {
    list-style: square;
    margin-left: 1.5em;
    padding: 0;
}
.prog_note .handoutnote_view li:before {
    content: none;
}

.date_tab {
    margin: 30px auto;
}
.date_tab {
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
.date_tab h2,
.date_tab p {
    font-size: 1.8rem;
    font-weight: normal;
    text-align: center;
    background: #e1e1e1;
    padding: 0.5em 0.2em;
    width: 49%;
	widht: -webkit-calc(50% - 4px);/*Chrome19~25対応*/
	width: -moz-calc(50% - 4px);/*Firefox4~15対応*/
	width: calc(50% - 4px);  
    position: relative;
}
@media (max-width: 374px) {
.date_tab h2,
.date_tab p {
    padding: 0.5em 0;
}
}
.date_tab h2 {
    cursor: pointer;
}
.date_tab p {
}
.date_tab h2.active_date,
.date_tab p.active_date {
    color: #fff;
    font-weight: bold;
	background: #82c1ea;
    background: -moz-linear-gradient(left, #0f5fad 0%, #1b9bd8 50%, #82c1ea 100%);
    background: -webkit-gradient(linear, left center, right center, from(#0f5fad), color-stop(50%, #1b9bd8), to(#82c1ea));
    background: -webkit-linear-gradient(left, #0f5fad 0%, #1b9bd8 50%, #82c1ea 100%);
    background: -o-linear-gradient(left, #0f5fad 0%, #1b9bd8 50%, #82c1ea 100%);
    background: -ms-linear-gradient(left, #0f5fad 0%, #1b9bd8 50%, #82c1ea 100%);
    background: linear-gradient(to right, #0f5fad 0%, #1b9bd8 50%, #82c1ea 100%);
}

.program {
    margin-top: 30px;
}
.program h2 {
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 20px;
}
.program h2 small {
    display: block;
    color: #29c4eb;
}
.program .prog_list h3 {
    font-size: 1.6rem;
    font-weight: bold;
    padding: 0.5em 1.5em 0.5em 1em;
    margin-bottom: 20px;
    background: #fff;
    border: solid 1px #cfcfcf;
    position: relative;
    cursor: pointer;
}
.program .prog_list h3:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url("../images/2026/icon_arrow_bl.png") no-repeat center center;
    position: absolute;
    right: 0.5em;
    top: 50%;
	-webkit-transform: translateY(-50%) rotate(0deg);
	-ms-transform: translateY(-50%) rotate(0deg);
	transform: translateY(-50%) rotate(0deg);
	transition: .2s;
}
.program .prog_list h3.active:after {
	-webkit-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
	transition: .2s;
}
.program .prog_list ul {
    padding-bottom: 15px;
}
.program .prog_list li {
    list-style: none;
    margin-bottom: 15px;
}
.program .prog_list li .room_label {
    display: inline-block;
    margin-left: 1em;
}
.program .prog_list li .target_label {
    font-size: 0.8em;
    padding: 0.1em 0.3em;
    margin-left: 0.5em;
    border: solid 1px #dddddd;
    display: inline-block;
}
.program .prog_list li h4 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.2em;
}
.program .prog_list li th {
    font-weight: normal;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

.program .prog_list li .overview {
    margin-top: 0.5em;
}
.program .prog_list li .overview dt {
    color: #fff;
    background: #666;
    width: 21em;
    text-align: center;
    padding: 0.3em;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
    cursor: pointer;
}
.program .prog_list li .overview dd {
    margin-top: 0.3em;
    display: none;
}

.program .prog_list li .summary_bt {
    margin-top: 0.3em;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
}
.program .prog_list li .summary_bt .outline_link a,
.program .prog_list li .summary_bt .outline_link span {
    color: #fff;
    background: #1b9bd8;
    display: block;
    width: 10em;
    text-align: center;
    padding: 0.3em;
    margin-right: 1em;
}
.program .prog_list li .summary_bt .hadout_link a,
.program .prog_list li .summary_bt .hadout_link span {
    color: #fff;
    display: block;
    background: #ee793b;
    width: 10em;
    text-align: center;
    padding: 0.3em;
}
.program .prog_list li .summary_bt .outline_link span,
.program .prog_list li .summary_bt .hadout_link span {
    background: #e1e1e1;
    color: #999;
}

.program .prog_list li .prelusion {
    background: #eee;
    padding: 1em;
    margin-top: 0.5em;
}
.program .prog_list li .prelusion .prelusion_img {
    width: 50%;
    max-width: 200px;
    margin-right: 1em;
    float: left;
}
.program .prog_list li hr {
    border: none;
    border-bottom: dotted 2px #eee;
    margin-top: 1em;
}

/* 要旨折りたたみ */
.program .prog_list li .prog_bt {
    position: relative;
}
.program .prog_list li .prog_bt dl {
    margin-top: 0.3em;
}
.program .prog_list li .prog_bt dt {
    color: #fff;
    background: #1f79de;
    width: 10em;
    text-align: center;
    padding: 0.3em;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
    cursor: pointer;
}
.program .prog_list li .prog_bt dd {
    display: none;
    margin-top: 8px;
    padding: 0.5em;
    background: #eee;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}
.program .prog_list li .prog_bt .hadout_link {
    width: 10em;
    position: absolute;
    top: 0px;
    left: 11em;
}
.program .prog_list li .prog_bt .hadout_link a {
    color: #fff;
    display: block;
    background: #02ae94;
    width: 10em;
    text-align: center;
    padding: 0.3em;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}
.program .prog_list li .prog_bt .dummy_link {
    color: #fff;
    display: block;
    background: #ddd;
    width: 10em;
    text-align: center;
    padding: 0.3em;
    margin:0.3em 1em 0 0;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
    display: inline-block;
}

@media (min-width: 360px) {
}

@media (min-width: 414px) {
}

@media (min-width: 768px) {
/* プログラム一覧 */
.prog_index ul {
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
.prog_index ul li {
    margin-bottom: 40px;
	width:48%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(50% - 20px);/*Chrome19~25対応*/
	width: -moz-calc(50% - 20px);/*Firefox4~15対応*/
	width: calc(50% - 20px);  
}
.prog_index ul li.link_proceedings {
    width: 100%;
}
.prog_index ul li a {
    font-size: 2rem;
    padding: 12px 2.5em 12px 1.5em;
    background-position: 93% center;
    background-size: auto;
    height: 100%;
    vertical-align: middle;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
}
.prog_index ul li.link_proceedings a {
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
}
.prog_index ul li.link_proceedings a img {
    margin-right: 20px;
    height: 30px;
}

/* プログラム */
.prog_note .handoutnote_view {
    padding: 0.8em 1em;
}

.date_tab {
    margin: 40px auto;
}
.date_tab h2,
.date_tab p {
    font-size: 2rem;
    padding: 0.7em;
}

.program {
    margin-top: 40px;
}
.program h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
}
.program .prog_list h3 {
    font-size: 1.8rem;
    line-height: 60px;
    padding: 0 3em 0 1.5em;
    margin-bottom: 25px;
}
.program .prog_list h3:after {
    width: 19px;
    height: 19px;
    right: 1.5em;
}
.program .prog_list ul {
    padding-bottom: 15px;
}
.program .prog_list li {
    margin-bottom: 20px;
}
.program .prog_list li h4 {
    font-size: 1.8rem;
}

.program .prog_list li .overview {
    margin-top: 15px;
}
.program .prog_list li .overview dt {
    width: 27em;
    padding: 0.5em;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.program .prog_list li .summary_bt {
    margin-top: 10px;
}
.program .prog_list li .summary_bt .outline_link a,
.program .prog_list li .summary_bt .outline_link span {
    width: 13em;
    padding: 0.5em;
}
.program .prog_list li .summary_bt .hadout_link a,
.program .prog_list li .summary_bt .hadout_link span {
    width: 13em;
    padding: 0.5em;
}

.program .prog_list li .prelusion {
}

/* 要旨折りたたみ */
.program .prog_list li .prog_bt dl {
    margin-top: 10px;
}
.program .prog_list li .prog_bt dt {
    width: 13em;
    padding: 0.5em;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.program .prog_list li .prog_bt dd {
    margin-top: 10px;
    padding: 0.8em 1em;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.program .prog_list li .prog_bt .hadout_link {
    width: 10em;
    left: 14em;
}
.program .prog_list li .prog_bt .hadout_link a {
    width: 13em;
    padding: 0.5em;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.program .prog_list li .prog_bt .dummy_link {
    width: 13em;
    padding: 0.5em;
    margin: 10px 1em 0 0;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
    display: inline-block;
}

}

@media (min-width: 1200px) {
/* プログラム一覧 */
.prog_index ul li {
    margin-bottom: 50px;
	width:48%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(50% - 25px);/*Chrome19~25対応*/
	width: -moz-calc(50% - 25px);/*Firefox4~15対応*/
	width: calc(50% - 25px);  
}
.prog_index ul li a {
    font-size: 2.2rem;
    line-height: 70px;
    padding: 0 1.5em;
}

/* プログラム */
.date_tab {
    margin: 50px auto;
}
.date_tab h2,
.date_tab p {
    font-size: 2.2rem;
    width: 49%;
	widht: -webkit-calc(50% - 5px);/*Chrome19~25対応*/
	width: -moz-calc(50% - 5px);/*Firefox4~15対応*/
	width: calc(50% - 5px);  
}
.program {
    margin-top: 50px;
}
.program h2 {
    font-size: 3.3rem;
    margin-bottom: 50px;
}
.program .prog_list h3 {
    font-size: 2rem;
    padding: 0 3em 0 2em;
    margin-bottom: 30px;
}
.program .prog_list h3:after {
    width: 22px;
    height: 22px;
}
.program .prog_list ul {
    padding-bottom: 20px;
}
.program .prog_list li {
    margin-bottom: 25px;
}
.program .prog_list li h4 {
    font-size: 2rem;
}

.program .prog_list li .overview {
    margin-top: 20px;
}

.program .prog_list li .summary_bt {
    margin-top: 15px;
}

/* 要旨折りたたみ */
.program .prog_list li .prog_bt dl {
    margin-top: 15px;
}

}


