@charset "utf-8";
/*
再利用可能な全てのオブジェクトを記述します。
All objects that are reusable will be written.

接頭辞はComponentの頭文字を取って【c_】とします。
Prefix will take the "Component" first letter and use it as "c_".

ここで指定するのは以下の様なものと予想されます。
You might use the following.
.c_btn/.c_breadclumb/.c_hero/.c_serch/.c_dropdown/
.c_card/.c_feature/.c_overlay/.c_form/.c_thumbnail/.c_box

モディファイヤを使用する場合は接頭辞【is_】をつけ、各コンポーネントの下に記述します。
When using modifier put the prefix "is_" and write it under each component.

フォントサイズはremで指定します。
"rem" will be used for font-size.

//sample
.c_btn {
	display: inline-block;
	padding: 15px 20px;
	border-radius: 5px;
	text-decoration: none;
}
.c_btn:hover { opacity: 0.8; }
.c_btn.is_btn_disable { cursor: inherit; }
.c_btn.is_btn_blue{
	color: rgb(255, 255, 255);
	background: rgb(1, 153, 224) none repeat scroll 0% 0%;
}

*/
/*----------------------------------------------
	.class name
---------------------------------------------*/
/*----------------------------------------------
	.c_nav_type01
---------------------------------------------*/
.c_nav_type01 {
  list-style: none;
  background: #FFFFFF;
  border: 1px solid #87BCF2;
  box-shadow: 0px 0px 6px #1266BB26;
}
.c_nav_type01 li:not(:last-of-type) a,
.c_nav_type01 li:not(:last-of-type) span{
  border-bottom: 1px solid #87BCF2;
}
.c_nav_type01 li a,
.c_nav_type01 li span{
  display: block;
  padding: 16px 10px 16px 16px;
  font-size: 1.6rem;
  color: #333;
  text-decoration: none;
  text-align: left;
  position: relative;
}

.c_nav_type01 li.is_blue a,
.c_nav_type01 li.is_blue span{
  background-color: #d2e4f9;
}

.c_nav_type01 li:hover a,
.c_nav_type01 li.active a {
  content: "";
  background: url("../images/nav_active_bg.png") center right no-repeat,#FBC93B;
  background-size: cover;
	font-weight: bold;
}
.c_nav_type01 li.is_new a::before{
  content: "NEW";
  width: 46px;
  height: 22px;
  color: #fff;
  background: #1266BB;
  font-size: 1.5rem;
  font-weight: bold;
  padding-top: 2px;
  text-align: center;
	position: absolute;
	right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.c_nav_type01 li.is_external a::after,
.c_nav_type01 li.is_pdf a::after,
.c_nav_type01 li.is_word a::after,
.c_nav_type01 li.is_ppt a::after,
.c_nav_type01 li.is_excel a::after {
  content: " ";
  display: inline-block;
  width: 16px;
  height: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 15px;
}

.c_nav_type01 li.is_new.is_pdf a::after {
  right: 60px;
}


.c_nav_type01 li.is_external a::after {
  background: url(../images/icon_external_nav.png) no-repeat;
}
/*
.c_nav_type01 li.is_external a:hover::after {
  background: url(../images/icon_external_nav_o.png) no-repeat;
}
*/
.c_nav_type01 li.is_pdf a::after {
  background: url(../images/icon_pdf.png) no-repeat;
}
.c_nav_type01 li.is_word a::after {
  background: url(../images/icon_word.png) no-repeat;
}
.c_nav_type01 li.is_ppt a::after {
  background: url(../images/icon_powerpoint.png) no-repeat;
}
.c_nav_type01 li.is_excel a::after {
  background: url(../images/icon_excel.png) no-repeat;
}

body.nav_close .l_nav_area {
  display: none;
}
.is_right {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.is_right:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto;
}
/*----------------------------------------------
  .c_contact_footer
---------------------------------------------*/
 .c_contact_footer .c_contact_header {
   margin-bottom:10px;
   color: #333;
   font-size: 1.5rem;
   font-weight: bold;
}
.c_contact_footer .c_contact_details {
	font-size: 1.4rem;
	line-height: 1.5;
}

/*----------------------------------------------
  .c_news_type01
---------------------------------------------*/
.c_news_type01 {
/*  max-height: 196px;*/
  max-height: 235px;
  overflow-y: auto;
  position: relative;
  font-size: 1.6rem;
  color: #333;
  border-bottom: 1px solid #87BCF2;
  border-left: 1px solid #87BCF2;
  border-right: 1px solid #87BCF2;
}
.c_news_type01 dt,
.c_news_type01 dd {
  padding-top: 20px;
}
.c_news_type01 dt {
  float: left;
  clear: left;
  padding-left: 20px;
  font-size: 1.6rem;
}
.c_news_type01 dd {
  word-wrap: break-word;
  padding: 20px 20px 20px 132px;
}
.c_news_type01 dt:not(:first-of-type) {
  margin-top: 2px;
}
.c_news_type01 dd:not(:first-of-type) {
  border-top: 2px dotted #aaa;
}

/*----------------------------------------------
  	.c_ttl_type01
  ---------------------------------------------*/
.c_ttl_type01 {
  font-size: 2.6rem;
  font-weight: bold;
  background: #1266BB;
  color: #FFFFFF;
  padding: 15px 20px;
}

/*----------------------------------------------
    .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
  color: #FFFFFF;
	padding: 8px 15px;
  background: url("../images/h2_bg.png") no-repeat,#3487DB;
  background-position: center right;
  background-size: cover;
}

/*----------------------------------------------
    .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
  font-size: 2rem;
  font-weight: bold;
  color: #1266BB;
  background-color: #D2E4F8;
  padding: 5px 15px;
  position: relative;
  border-left: 3px solid #1266BB;
}
.c_ttl_type03.is_program{
  font-size: 1.6rem;
  font-weight: normal;
  background: #D2E4F8;
  border-left: 5px solid #1266BB;
  width: 219px;
  position: relative;
  padding: 10px 0 10px 10px;
  color: #333;
}
.c_ttl_type03.is_program::before{
  content: "";
  position: absolute;
  top: 20px;
  left: 190px;
  border: 5px solid transparent;
  border-top: 6px solid #1266BB;
}
.c_ttl_type03.is_program.is_pcl196::before{
  left: 196px;
}
.c_ttl_type03.is_program:hover{
  opacity: .4;
}
.c_ttl_type03.is_program.is_none::before{
  border:none;
}


/*----------------------------------------------
    .c_ttl_type04
---------------------------------------------*/
.c_ttl_type04 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  position: relative;
  line-height: 1.2;
  padding: 11px 0px 7px;
  border-top: 2px solid #1266BB;
  border-bottom: 1px solid #D2E4F8;
}

/*----------------------------------------------
    .c_ttl_type05
---------------------------------------------*/
.c_ttl_type05 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  position: relative;
  padding-left: 24px;
}
.c_ttl_type05::before {
  content: "";
  height: 12px;
  width: 20px;
  position: absolute;
  background: url("../images/h5_icon.png");
  background-size: cover;
  top: 0;
  bottom: 0;
	left: 0;
  margin: auto 0;
}

/*----------------------------------------------
    .c_ttl_icon
---------------------------------------------*/
.c_ttl_icon {
	position: relative;
	padding-left: .9em;
}

.c_ttl_icon.is_disc::before,
.c_ttl_icon.is_triangle::before,
.c_ttl_icon.is_diamond::before {
	display: inline-block;
	position: absolute;
	content: "";
	vertical-align: middle;
  left: 0;
}

.c_ttl_icon.is_disc::before {
	width: 10px;
	height: 10px;
	background: #0C0785;
	border-radius: 50%;
	top: 6px;
}
.c_ttl_icon.is_triangle::before {
	width: 0;
  height: 0;
  border: solid 7px transparent;
  border-left: solid 9px #ffd14e;
  top: 4px;
}
.c_ttl_icon.is_diamond::before {
	content: "";
  width: 8px;
  height: 8px;
  background: #ffd14e;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 7px;
}

/*----------------------------------------------
  	.c_para_type01
---------------------------------------------*/
.c_para_type01 {
  text-align: justify;
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;
}

/*----------------------------------------------
  	.c_para_type02
---------------------------------------------*/
.c_para_type02 {
  text-indent: 1em;
  text-align: justify;
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;
}

/*----------------------------------------------
  	.c_kome_type01
---------------------------------------------*/
.c_kome_type01 {
  text-indent: -1em;
  padding-left: 1em;
}

/*----------------------------------------------
	.c_table_type01
---------------------------------------------*/
.c_table_type01 {
  width: 100%;
}
.c_table_type01.is_max_w70per{
  width: 70%;
}
.c_table_type01.is_max_w80per{
  width: 80%;
}

.c_table_type01 thead th {
  background: #935162;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
.c_table_type01 th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
  color: #333;
  background: #FFEFF3;
}
.c_table_type01 th.is_thead{
  background: #935162;
  color: #FFF;
}
.c_table_type01 th,
.c_table_type01 td {
  padding: 14px;
  border: 1px solid #DDDDDD;
}
.c_table_type01.is_blue thead th{
   background: #A2C8F0;
   color: #333;
}
.c_table_type01.is_blue tbody th{
   background: #E8F1FB;
}
#sponsor .c_table_type01 tbody th,
#sponsor .c_table_type01 tbody td {
  padding: 8px;
}

#outline .c_table_type01 tbody th{
  text-align-last: justify;
}

.en#outline .c_table_type01 tbody th{
  text-align-last: left;
}
.c_table_type01.is_td_mid td{
  vertical-align: middle;
  text-align: center;
  padding: 14px 0px;
}
.c_table_type01.is_nursery th{
  vertical-align: middle;
  text-align: center;
}
.c_table_type01.is_short{
  width: inherit;
}

.c_table_type01.is_bg_orange tbody td:first-of-type{
  background-color:  #F9EEE6;
  width: 400px;
}

.c_table_type01.is_bg_blue tbody td:first-of-type{
  background-color:  #EEF7FB;
  width: 400px;
}

.c_table_type01.is_darkgray th,
.c_table_type01.is_darkgray td {
  padding: 14px;
  border: 1px solid #656565;
}

#cfa .l_double_table .c_table_type01 tbody tr th {
  height: 53px;  
}

.c_table_type01.is_ws_wrap th { white-space: wrap; }
/*----------------------------------------------
	.c_table_type02
---------------------------------------------*/
.c_table_type02 {
  width: 100%;
}

.c_table_type02 tr:nth-child(odd) {
  background: #FFEFF3;
}

.c_table_type02 th {
  color: #333;
  font-weight: normal;
}

.c_table_type02 th,
.c_table_type02 td {
  padding: 10px;
  text-align: left;
}

/*----------------------------------------------
	.c_table_type03
---------------------------------------------*/
.c_table_type03 {
	width: 100%;
	border-top: 3px solid #935162;
}

.c_table_type03 th {
  color: #333;
  white-space: pre-wrap;
  font-weight: bold;
  text-align: center;
}

.c_table_type03 tbody tr th,
.c_table_type03 tbody tr td {
  border-top: none;
}
.c_table_type03 tbody tr:not(:last-of-type) th,
.c_table_type03 tbody tr:not(:last-of-type) td {
  border-bottom: 1px dotted #CCCCCC;
}
.c_table_type03 th,
.c_table_type03 td {
	text-align: center;
  padding: 10px;
	border: 1px solid #CCCCCC;
}

/*----------------------------------------------
	.c_table_type04
---------------------------------------------*/
.c_table_type04 tr > * {
  vertical-align: top;
  border: 1px solid #333;
}

/*----------------------------------------------
	.c_table_type05
---------------------------------------------*/
.c_table_type05 {
  width: 100%;
}

.c_table_type05 thead th {
  background: #aaa;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
.c_table_type05 th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
  color: #333;
  background: #ddd;
}

.c_table_type05 th,
.c_table_type05 td {
  padding: 14px;
  border: 1px solid #bbb;
}

/*----------------------------------------------
	.c_table_type06
---------------------------------------------*/
.c_table_type06 {
  width: 100%;
}

.c_table_type06 thead th {
  background: #aaa;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
.c_table_type06 th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
  color: #333;
  background: #ddd;
}

.c_table_type06 th,
.c_table_type06 td {
  padding: 14px;
  border: 1px solid #bbb;
}

/*----------------------------------------------
	.c_table_type07
---------------------------------------------*/
.c_table_type07 {
  width: 100%;
}

.c_table_type07 thead th {
  background: #205E99;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}

.c_table_type07 th,
.c_table_type07 thead td {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
}

.c_table_type07 thead td {
  background: #DAE8F8;
  color: #333333;
  font-weight: bold;
  text-align: center;
}

.c_table_type07 tbody th {
  background: #DAE8F8;
}

.c_table_type07 th,
.c_table_type07 td {
  padding: 14px;
  border: 1px solid #DDDDDD;
}

.c_table_type07.is_td_pa6 tbody td{
  padding: 6.5px;
} 


.c_table_type01.is_td_mid td{
  vertical-align: middle;
  text-align: center;
  padding: 14px 0px;
}
.c_table_type07.is_short{
  width: inherit;
}

/* FOR COLORED LIST TYPE */
/*----------------------------------------------
	.c_list_type01
---------------------------------------------*/
.c_list_type01 {
  vertical-align: top;
}

.c_list_type01 li {
  list-style: none;
  position: relative;
	padding-left: .8em;
}

.c_list_type01.is_decimal li {
  padding-left: 1.8em;
}

.c_list_type01 li::before {
  color: #ffd14e;
  position: absolute;
  display: inline-block;
  width: 10px;
  vertical-align: middle;
  top: 8px;
  left: 0;
}

.c_list_type01.is_arrow li::before {
  content: "";
  width: 15px;
  height: 7px;
  background: url(../images/list_arrow.png) no-repeat;
}
.c_list_type01.is_square li::before {
  content: "";
	width: 8px;
	height: 8px;
	background: #D14525;
}

.c_list_type01.is_disc li::before {
  content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #D14525;
	top: 10px;
}

.c_list_type01.is_disc.is_blue li::before{
  background: #1266BB;
}
.c_list_type01.is_hole>li::before {
  content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
  background: none;
	border: 1px solid #D14525;
	top: 10px;
}

.c_list_type01.is_triangle li::before {
  content: "";
	width: 0;
  height: 0;
  border: solid 5px transparent;
  border-left: solid 7px #127B0F;
	top: 7px;
}

.c_list_type01.is_diamond li::before {
	content: "";
  width: 6px;
  height: 6px;
  background: #127B0F;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
	top: 9px;
}

.c_list_type01.is_decimal {
  counter-reset: is_decimal_counter;
}
.c_list_type01.is_decimal li::before {
  counter-increment: is_decimal_counter;
  content: counter(is_decimal_counter) ".";
  font-weight: bold;
  text-align: right;
  width: 25px;
  margin-right: 5px;
  color: #D14525;
  vertical-align: unset;
  top: 0;
}


/* FOR SIMPLE LIST TYPE */
/*----------------------------------------------
	.c_list_type02
---------------------------------------------*/
.c_list_type02 {
  text-align: justify;
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;
  padding-left: 20px;
}

.c_list_type02 li {
  margin-bottom: 5px;
}

.c_list_type02.is_disc li {
  list-style: disc;
}

.c_list_type02.is_decimal li{
  list-style: decimal;
}
/*----------------------------------------------
	.c_list_type03
---------------------------------------------*/
.c_list_type03 li {
  list-style-type: none;
}
/*----------------------------------------------
	.c_btn_type01
---------------------------------------------*/
.c_btn_type01 {
  display: inline-block;
  padding: 20px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: #D14525;
  border-radius: 5px;
}
a.c_btn_type01.active,
a.c_btn_type01:hover {
  opacity: 0.4;
}

.c_btn_type01.is_word,
.c_btn_type01.is_excel,
.c_btn_type01.is_ppt,
.c_btn_type01.is_pdf {
  background: #127B0F;
}

.c_btn_type01.is_gray {
  background: #aaa;
}

span.c_btn_type01,
.c_btn_type01.is_disable {
  background: #ccc;
	pointer-events: none;
}
.c_btn_type01.is_w250 { width: 250px; }
.c_btn_type01.is_w320 { width: 320px; }
.c_btn_type01.is_w400 { width: 400px; }

.c_btn_type01.is_word::before,
.c_btn_type01.is_excel::before,
.c_btn_type01.is_ppt::before,
.c_btn_type01.is_pdf::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
	right: 10px;
  width: 22px;
  height: 22px;
  margin: auto auto auto 10px;
  vertical-align: middle;
}
.c_btn_type01.is_word::before {
  background: url(../images/icon_btn_word.png) no-repeat;
  background-size: 100%;
}
.c_btn_type01.is_excel::before {
  background: url(../images/icon_btn_excel.png) no-repeat;
  background-size: 100%;
}
.c_btn_type01.is_ppt::before {
  background: url(../images/icon_btn_powerpoint.png) no-repeat;
  background-size: 100%;
}
.c_btn_type01.is_pdf::before {
  background: url(../images/icon_btn_pdf03.png) no-repeat;
  background-size: 100%;
}
.c_btn_type01.is_tall {
  padding: 44px 20px;
}

/*----------------------------------------------
	.c_btn_type02
---------------------------------------------*/
.c_btn_type02 img{
  width: 240px;
}
/*----------------------------------------------
	.c_btn_type03
---------------------------------------------*/
.c_btn_type03 {
  padding: 20px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: #D14525;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
a.c_btn_type03.active,
a.c_btn_type03:hover {
  opacity: 0.4;
}

.c_btn_type03.is_word,
.c_btn_type03.is_excel,
.c_btn_type03.is_ppt,
.c_btn_type03.is_pdf {
  background: #127B0F;
}

.c_btn_type03.is_gray {
  background: #aaa;
}

span.c_btn_type03,
.c_btn_type03.is_disable {
  background: #ccc;
	pointer-events: none;
}
.c_btn_type03.is_w250 { width: 250px; }
.c_btn_type03.is_w320 { width: 320px; }
.c_btn_type03.is_w400 { width: 400px; }



/*----------------------------------------------
	.c_box_type01
---------------------------------------------*/
.c_box_type01 {
  padding: 15px;
  background: #FFFCF5;
  border: 1px solid #FBC93B;
}
.c_box_type01_header {
  font-weight: bold;
  color: #333333;
  font-size: 1.6rem;
}

/*----------------------------------------------
	.c_box_type02
---------------------------------------------*/
.c_box_type02 {
  padding: 15px;
  background: #FFFFFF;
  border: 2px solid #239BA6;
  border-radius: 10px;
}

.c_box_type02_header {
  font-weight: bold;
  color: #239BA6;
  font-size: 1.6rem;
}

/*----------------------------------------------
	.c_box_type03
---------------------------------------------*/
.c_box_type03 {
  padding: 25px;
  background: #FEEEEE;
  border: 2px solid #FF0000;
  color: #FF0000;
}

/*----------------------------------------------
	.c_box_type04
---------------------------------------------*/
.c_box_type04 {
  font-weight: bold;
  text-align: center;
}

.c_box_type04_header {
  padding: 10px 10px;
  background-color: #00B050;
  font-size: 2.3rem;
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.c_box_type04_content {
  padding: 10px 10px 10px 15px;
  font-size: 1.8rem;
  color: #333;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  border: 5px solid  #00B050;
  border-top: 0;
} 


/*----------------------------------------------
.c_anchor_icon
---------------------------------------------*/
a.c_anchor_icon{
  display: inline-block;
  padding: 1px 20px 1px 0;
}
a.c_anchor_icon.is_inline {
	display: inline;
}

a[href^="http://"].c_anchor_icon,
a[href^="https://"].c_anchor_icon {
  background: url(../images/icon_external.png) no-repeat right center;
}

a[href$=".xls"].c_anchor_icon,
a[href$=".xlsx"].c_anchor_icon {
  background: url(../images/icon_excel.png) no-repeat right center;
}

a[href$=".doc"].c_anchor_icon,
a[href$=".docx"].c_anchor_icon {
  background: url(../images/icon_word.png) no-repeat right center;
}

a[href$=".ppt"].c_anchor_icon,
a[href$=".pptx"].c_anchor_icon {
  background: url(../images/icon_powerpoint.png) no-repeat right center;
}

a[href$=".pdf"].c_anchor_icon {
  background: url(../images/icon_pdf.png) no-repeat right center;
}

/*----------------------------------------------
.c_nav_icon
メニューの外部リンク用アイコン
---------------------------------------------*/
a.c_nav_icon {
  display: inline-block;
  padding: 3px 30px 3px 5px;
  position: relative;
}
a.c_nav_icon:hover,
a.c_nav_icon.is_hover {
  background: url("../images/nav_active_bg.png") center right no-repeat,#FBC93B;
  background-size: cover;
  color: #333;
}
a.c_nav_icon::before,
a.c_nav_icon.is_hover::before{
   content: " ";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 5px;
  background: url("../images/icon_external_nav.png") no-repeat;
   background-size: cover;
}

.c_btn_area03{
  padding-top: 820px;
  display: flex;
  justify-content: flex-end;
}
.c_btn_area03en{
  padding-top: 750px;
  display: flex;
  justify-content: flex-end;
}

.c_language_bnr{
  display: block;
  background: #0075C1;
  color: #fff;text-align: center;
  padding: 16px 10px 16px 16px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: bold;
}
.c_language_bnr:hover{
  color: #fff;
}

.c_travel_img{
 width: 250px; 
}


/*公募セッション一覧*/
.c_panel_title {
  display: grid;
  grid-template-columns: 50px auto 100px;
  border: 1px solid #37ADFC;
  border-top: none;
  min-height: 3.4em;
}

.c_list_type03 li:first-child .c_panel_title {
  border-top: 1px solid #37ADFC;
}

.c_panel_title div {
  padding-right: 7px;
  padding-left: 7px;
  border-right: 1px solid #37ADFC;
  display: flex;
  align-items: center;
  height: 100%;
}

.c_panel_title div:nth-child(1) {
  justify-content: center;
}

.c_panel_title div:nth-child(3) {
  border-right: none;
}

.c_btn_details {
  background-color: #205297;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  justify-content: center;
}

.c_panel_contents {
  background: #E0F3FF;
  border: 1px solid #37ADFC;
  border-top: none;
  display: none;
  padding: 15px;
  text-align: justify;
}

.c_nav_close_btn {
  background: #1266BB;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  height: 100px;
  position: absolute;
  right: -25px;
  top: 10px;
  width: 20px;
}
.c_nav_close_btn:hover {
  opacity: .6;
}
.c_nav_close_btn span {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 10px solid #fff;
  border-left: 0;
  display: block;
  margin: auto;
}
body.nav_close .c_nav_close_btn span {
  transform: rotate(180deg);
}
/*モーダルを開くボタン*/
.modal-open{
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 50px;
  font-weight: bold;
  color: #fff;
  background: #000;
  margin: auto;
  cursor: pointer;
  transform: translate(-50%,-50%);
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
/*モーダル枠の指定*/
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 1280px;
  width: 95%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -10px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.modal-close.is_btn {
  background: #333;
  border: 1px solid #333;
  bottom: 10px;
  color: #fff;
  font-size: 3rem;
  gap: 20px;
  padding: 10px 15px;
  position: absolute;
  right: 10px;
  top: auto;
  width: auto;
  z-index: 2;
}
.modal-close.is_btn:hover {
  opacity: .6;
}
.modal-close.is_btn span {
  margin-top: -5px;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  background: #fff;
  text-align: left;
  padding: 30px;
}

.c_x_icon {
  text-align: center;
}
.c_x_icon img {
  width: 60px;
}

.c_facebook_icon {
  text-align: center;
}
.c_facebook_icon img {
  width: 60px;
}

.c_instagram_icon {
  text-align: center;
}
.c_instagram_icon img {
  width: 60px;
}

.c_poster_btn {
  align-items: center;
  background: #3487DB;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  text-align: center;
  text-decoration: none;
}
.c_poster_btn::after {
  background: url("../images/icon_file.png") center / cover no-repeat;
  content: "";
  display: block;
  height: 25px;
  width: 25px;
}
.c_poster_btn:hover,
.c_poster_btn:active,
.c_poster_btn:focus {
  color: #fff;
  opacity: .6;
}

.c_bnr {
  display: block;
  margin-bottom: 10px;
  width: 240px;
}

.c_bnr img{
  width: 100%;
}
/*

.c_kids_btn img{
  border-radius: 25px;
}
*/

.c_table_type01.is_poster_special tr th {
  white-space: normal;
}

.c_red_link a {
  color: #f00;
}

.c_red_link a:hover {
  color: #1266BB;
}

/*----------------------------------------------
.c_period_box
---------------------------------------------*/
.c_period_box {
	display: flex;
	font-weight: bold;
	font-size: 1.8rem;
}

/*----------------------------------------------
.c_speakers_box
---------------------------------------------*/

.c_speakers_box {
  display: flex;
  line-height: 1.3;
  text-align: left;
}
.c_speakers_box_text {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.c_speakers_box_photo img {
   width: 120px;
 }

.c_speakers_box_name {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.c_speakers_box_text1 {
  font-size: 1.3rem;
}
.c_speakers_box_text2 {
  background: #a2c8f1;
  padding: 10px 10px;
  font-weight: 700;
  font-size: 1.4rem;
}

.c_speakers_box_text3 {
  background: #d2e4f8;
  padding: 15px;
  font-size: 1.4rem;
  border-radius: 10px
}

/*----------------------------------------------
 #program
---------------------------------------------*/

.c_schedule img,
.c_clock img,
.c_map img {
  width: 16px;
  height: 16px;
}

.c_session_area{
  background: #D2E4F8;
  margin: 15px 0;
  padding: 8px 0px;
}

.c_session_kubun{
  display: inline-block;
  background: #8CB808;
  padding: 2px 5px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.8;
}

.c_session_title{
  margin: 6px 0 0 1em;
  font-weight: bold;
  font-size: 1.8rem;
  color: #1266BB;
}

.program_link{
  text-decoration: none;
}

.c_program_table tr td {
  vertical-align: top;
  font-size: 1.4rem;
}
.c_program_table tr td:nth-of-type(1),
.c_program_table tr td:nth-of-type(2) {
  white-space: nowrap;
  font-size: 1.4rem;
}
.c_program_table tr td:nth-of-type(1) {
  min-width: 3em;
}
.c_program_table tr td:nth-of-type(2) {
  min-width: 6em;
}
.c_program_table tr td:nth-of-type(3) {
  padding-left: 1em;
  text-indent: -1em;
  width: 100%;
/*  word-break: break-all;*/
  overflow-wrap: anywhere;
}
.c_program_table.is_en tr td:nth-of-type(2) {
  padding-left: 1em;
  text-indent: -1em;
  white-space: normal;
}
.c_program_table.is_title tbody tr:first-of-type td:last-of-type {
  font-weight: bold;
  white-space: normal;
}

.c_program_table tbody {
  gap:30px;
}
.c_program_day{
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: 12.5px;
  font-weight: normal;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2px;
  gap:10px;
}
.c_program_day.is_onde{
  margin-top: -20px;
}

.c_recommend {
  font-weight: bold;
  color: #CB403E;
  font-size: 1.4rem;
}

.c_ondemand{
  font-size: 12px;
  background: #EC5757;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  padding: 5px;
  font-weight: bold;
  margin-bottom: 2px;
}

.c_question_box{
      font-size: 1.8rem;
}

.c_question{
    border-top: 1px solid #1b8955;
    color:#1b8955;
    cursor: pointer;
    padding: 15px 30px;
}

.c_answer{
      border-top: 1px dotted #1b8955;
    display: none;
    padding: 15px 30px;
}

.c_question span, .c_answer span {
    display: block;
    padding-left: 1.3em;
    text-indent: -1.3em;
}

.c_answer span .u_indent01{
    padding-left: 1em;
    text-indent: -1em;

}

