@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 {
  /*display: flex;*/
  list-style: none;
  margin: 0 auto;
  /*width: 1200px;*/
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.c_nav_type01 > li {
  /*flex: 1;*/
  position: relative;
}
.c_nav_type01 li a,
.c_nav_type01 li span{
  display: block;
  padding: 10px 20px;
  font-size: 1.6rem;
  color: #000;
  text-decoration: none;
  text-align: center;
  position: relative;
}

.c_nav_type01 li span {
  color: #aaa !important;
}
.c_nav_type01 > li:hover > a,
.c_nav_type01 > li.active > a,
.c_nav_type01 > li.c_nav_parent:has(.active) > span,
.c_nav_type01 > li.c_nav_parent:has(.active) > a,
.c_nav_type01 > li.c_nav_parent:hover > span {
  /*background: url(../images/nav_active_arrow.png) 91% 50% no-repeat, url(../images/nav_active.png);*/
  color: #3178AA;
  background: #fff;
	font-weight: bold;
}
.c_nav_type01 > li.c_nav_parent.is_o_pad a,
.c_nav_type01 > li.c_nav_parent.is_o_pad span{
  padding: 16px 11px;
}
.c_nav_type01 li.is_new a::before{
  content: "NEW";
  width: 40px;
  height: 20px;
  color: #fff;
  background: #f00;
  font-size: 1.3rem;
  font-weight: bold;
  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_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;
}

.c_nav_parent {
  cursor: pointer;
}

.c_nav_child {
  background: #fff;
  border-top: none;
  display: none;
  list-style: none;
  padding: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.c_nav_child li a,
.c_nav_child li span {
  color: #000;
}
.c_nav_child li:not(:last-of-type) a,
.c_nav_child li:not(:last-of-type) span {
  border-bottom: 1px solid #bbb;
}
.c_nav_child li a:hover,
.c_nav_child li.active a {
  background: #bbb;
  color: #fff;
}
.c_nav_child li span {
  cursor: auto;
}
.c_nav_parent:hover .c_nav_child {
  display: block;
}

.c_side_nav {
  border-radius: 20px;
  box-shadow: 0 3px 6px rgb(0, 0, 0, .16);
  list-style: none;
  overflow: hidden;
  padding: 0;
}
.c_side_nav li a,
.c_side_nav li span {
  color: #000;
  display: block;
  padding: 16px 15px;
  text-decoration: none;
}
.c_side_nav li:not(:last-of-type) a,
.c_side_nav li:not(:last-of-type) span {
  border-bottom: 1px dotted #ccc;
}
.c_side_nav li.active a,
.c_side_nav li a:hover {
  background: #E0271E;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-weight: bold;
}
.c_side_nav li:last-of-type.active a,
.c_side_nav li:last-of-type a:hover {
  border-bottom: none;
}
.c_nav_mainflex, .c_pagettl_btn {
  display: flex;
}
.c_pagettl_btn .c_btn_lang {
  text-align: right;
  font-size: 0.8em;
  line-height: 2;
  font-weight: 400;
  color: #868686;
  margin: 0.8rem 0 0.5rem 0.5rem;
  min-width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c_pagettl_btn .c_btn_lang a {
    color: #000 !important;
    text-decoration: none;
}
.c_pagettl_btn .c_btn_lang a:hover {
  opacity: 0.6;
}

.c_pagettl_btn a.c_btn_registration {
  padding: 7px;
  margin: 0.6rem 0 0 0;
  color: #fff !important;
  background: #000333;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.8em;
  border-radius: 5px;
  text-align: center;
  height: auto;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;

}

/*----------------------------------------------
	.c_nav_type02
---------------------------------------------*/
.c_nav_type02 * {
  list-style: none;
}
.c_nav_type02 > li {
  display: block;
  font-size: 1.6rem;
  color: #000;
  text-decoration: none;
  text-align: left;
  position: relative;
  /*background: url(../images/nav_arrow.png) 91% 50% no-repeat;*/
}
.c_nav_type02 li a {
	text-decoration: none;
}
.c_nav_type02 li:not(:last-of-type) a,
.c_nav_type02 li:not(:last-of-type) span{
  border-bottom: 1px solid #ccc;
}
.c_nav_type02 li a,
.c_nav_type02 li span {
	color: #000;
  padding-left: 18px;
  display: block;
  padding: 16px;
}
.c_nav_type02 .c_nav_title > a,
.c_nav_type02 .c_nav_title > span {
	background: #aaa;
}

.c_nav_type02 .c_nav_title ul > li a,
.c_nav_type02 .c_nav_title ul > li span {
	padding-left: 20px;
}

.c_nav_type02 .c_nav_title ul > li:hover a,
.c_nav_type02 .c_nav_title ul > li.active a {
  /*background: url(../images/nav_active_arrow.png) 91% 50% no-repeat, url(../images/nav_active.png);*/
  color: #000;
	font-weight: bold;
  background: #ccc;
}
.c_nav_type02 li.is_external a::after,
.c_nav_type02 li.is_pdf a::after,
.c_nav_type02 li.is_word a::after,
.c_nav_type02 li.is_ppt a::after,
.c_nav_type02 li.is_excel a::after {
  content: " ";
  display: inline-block;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  position: relative;
  margin-left: 10px;
}
.c_nav_type02 li.is_external a::after {
  background: url(../images/icon_external_nav.png) no-repeat;
  background-size: 100%;
}
.c_nav_type02 li.is_external a:hover::after {
  background: url(../images/icon_external_nav_o.png) no-repeat;
  background-size: 100%;
}
.c_nav_type02 li.is_pdf a::after {
  background: url(../images/icon_pdf.png) no-repeat;
  background-size: 100%;
	width: 14px;
	height: 17px;
}
.c_nav_type02 li.is_word a::after {
  background: url(../images/icon_word.png) no-repeat;
  background-size: 100%;
}
.c_nav_type02 li.is_ppt a::after {
  background: url(../images/icon_powerpoint.png) no-repeat;
  background-size: 100%;
}
.c_nav_type02 li.is_excel a::after {
  background: url(../images/icon_excel.png) no-repeat;
  background-size: 100%;
}

/*----------------------------------------------
	.c_nav_type03
---------------------------------------------*/
.c_nav_type03 * {
  list-style: none;
}
.c_nav_type03 > li {
  display: block;
  font-size: 1.6rem;
  color: #000;
  text-decoration: none;
  text-align: left;
  position: relative;
  /*background: url(../images/nav_arrow.png) 91% 50% no-repeat;*/
}
.c_nav_type03 li a {
	text-decoration: none;
}
.c_nav_type03 li a,
.c_nav_type03 li span {
	color: #000;
  display: block;
  padding: 16px 16px 16px 20px;
}
.c_nav_type03 li:not(:last-of-type) a,
.c_nav_type03 li:not(:last-of-type) span{
  border-bottom: 1px solid #bbb;
}

.c_nav_type03 li.c_nav_title a,
.c_nav_type03 li.c_nav_title span,
.c_nav_type03 li.c_nav_header a,
.c_nav_type03 li.c_nav_header span {
  background: #aaa;
}
.c_nav_type03 li.c_nav_title a:hover,
.c_nav_type03 li.c_nav_title .active a,
.c_nav_type03 li.c_nav_header a:hover,
.c_nav_type03 li.c_nav_header .active a {
	font-weight: bold;
  color: #fff;
  background: #ddd;
}

.c_nav_type03 .c_nav_child > li a {
  padding-left: 25px;
  background: #ccc;
}
.c_nav_type03 .c_nav_child > li:hover a,
.c_nav_type03 .c_nav_child > li.active a {
  color: #000;
  background: #bbb;
}

/*　ドロップダウン非表示　*/
.c_nav_type03 .c_nav_child {
  display: none;
}

/*　矢印　*/
.c_nav_type03 .c_nav_header > a,
.c_nav_type03 .c_nav_header > span {
  position: relative;
}
.c_nav_type03 .c_nav_header > a::after,
.c_nav_type03 .c_nav_header > span::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 3px #ccc;
  border-right: solid 3px #ccc;
  right: 13px;
  top: 30%;
  transform: rotate(135deg);
  transition: .3s;
}
.c_nav_type03 .c_nav_header > a.open::after,
.c_nav_type03 .c_nav_header > span.open::after {
  transform: rotate(-45deg);

  top: 42%;
  transition: .3s;
}

/*　アイコン　*/
.c_nav_type03 li.is_new a,
.c_nav_type03 li.is_external a,
.c_nav_type03 li.is_pdf a,
.c_nav_type03 li.is_word a,
.c_nav_type03 li.is_ppt a,
.c_nav_type03 li.is_excel a {
  position: relative;
}
.c_nav_type03 li.is_external a::before,
.c_nav_type03 li.is_pdf a::before,
.c_nav_type03 li.is_word a::before,
.c_nav_type03 li.is_ppt a::before,
.c_nav_type03 li.is_excel a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c_nav_type03 li.c_nav_header.is_new > a::before {
  right: 35px;
}
.c_nav_type03 li.is_new > a::before{
  content: "NEW";
  width: 40px;
  height: 20px;
  color: #fff;
  background: #f00;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
	position: absolute;
	right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.c_nav_type03 li.is_external a::before {
  background: url(../images/icon_external_nav.png) no-repeat;
  background-size: 100%;
}
.c_nav_type03 li.is_external a:hover::before {
  background: url(../images/icon_external_nav_o.png) no-repeat;
  background-size: 100%;
}
.c_nav_type03 li.is_pdf a::before {
  background: url(../images/icon_pdf.png) no-repeat;
  background-size: 100%;
  width: 14px;
  height: 17px;
}
.c_nav_type03 li.is_word a::before {
  background: url(../images/icon_word.png) no-repeat;
  background-size: 100%;
}
.c_nav_type03 li.is_ppt a::before {
  background: url(../images/icon_powerpoint.png) no-repeat;
  background-size: 100%;
}
.c_nav_type03 li.is_excel a::before {
  background: url(../images/icon_excel.png) no-repeat;
  background-size: 100%;
}


/*----------------------------------------------
	.c_contact_type01
---------------------------------------------*/
.c_contact_type01 {
	background: #ddd;
  width: 100%;
}
.c_contact_type01 .c_contact_header {
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px 15px;
  border-bottom: 2px solid #ccc;
}
.c_contact_type01 .c_contact_details {
  font-size: 1.4rem;
  padding: 12px;
  line-height: 1.5;
}
/*----------------------------------------------
  .c_contact_type02
---------------------------------------------*/
.c_contact_type02{
  background: #ddd;
  border: 2px solid #aaa;
}
.c_contact_type02 .c_contact_header {
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px 15px;
  border-bottom: 2px solid #ccc;
}
.c_contact_type02 .c_contact_details {
  font-size: 1.4rem;
  padding: 12px;
  line-height: 1.5;
}

/*----------------------------------------------
  .c_contact_type03
---------------------------------------------*/
.c_contact_type03:first-child:after {
  content: "";
  background: #44160b;
  width: 1px;
  height: 123px;
  position: absolute;
  right: -1px;
  top: 12px;
}
.c_contact_type03 {
  padding:0 50px;
  position: relative;
}
.c_contact_type03 .c_contact_header {
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 5px;
  border: 1px solid #bbb;
	display: inline-block;
}
.c_contact_type03 .c_contact_details {
  font-size: 1.4rem;
  padding: 15px;
  line-height: 1.5;
}

/*----------------------------------------------
  .c_contact_type04
---------------------------------------------*/
.c_contact_type04 {
	background: #ccc;
}
.c_contact_type04 .c_contact_header {
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 5px;
  border: 1px solid #bbb;
	display: inline-block;
	vertical-align: top;
}
.c_contact_type04 .c_contact_details {
  font-size: 1.4rem;
  padding: 0;
  line-height: 1.5;
	display: inline-block;
}

/*----------------------------------------------
  .c_contact_type05
---------------------------------------------*/
.c_contact_type05 {
	background: #ccc;
  width: 100%;
}
.c_contact_type05 .c_contact_header {
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 5px;
  border: 1px solid #bbb;
	display: block;
	vertical-align: top;
}
.c_contact_type05 .c_contact_details {
  font-size: 1.4rem;
  line-height: 1.5;
	display: block;
  padding: 20px;
}


/*----------------------------------------------
  .c_contact_footer
---------------------------------------------*/
 .c_contact_footer .c_contact_header {
  margin-bottom: 5px;
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
}
.c_contact_footer .c_contact_details {
	font-size: 1.4rem;
	line-height: 1.5;
}

/*----------------------------------------------
  .c_footer_link
---------------------------------------------*/
.c_footer_link {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px;
  justify-content: center;
}
.c_footer_link a { color: #fff; }
.c_footer_link a:hover { opacity: 0.4; }

.c_footer_link.is_sns {
  grid-template-columns: repeat(4, auto);
  margin-left: 40px;
}

/*----------------------------------------------
  .c_news_type01
---------------------------------------------*/
.c_news_type01 {
  max-height: 196px;
  overflow-y: auto;
  position: relative;
  font-size: 1.6rem;
  color: #000;
}
.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;
  font-weight: bold;
}
.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_news_type02
  ---------------------------------------------*/
.c_news_type02 {
  margin: 0 auto;
  width: 95%;
  padding: 0;
}

.c_news_item {
  display: flex;
  border-radius: 8px;
  gap: 20px;
  padding: 16px;
  margin-bottom: 10px;
  background-color: #faf9f7;
}

.c_news_item dt {
  flex-shrink: 0;
  font-weight: bold;
}

.c_news_item dd {
  margin: 0;
}


/*----------------------------------------------
  	.c_ttl_type01
  ---------------------------------------------*/
.c_ttl_type01 {
  font-size: 4.5rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  line-height: 1.2;
  position: relative;
}
.c_ttl_type01 span {
    font-size: 2.0rem;
}
.c_ttl_type01.is_blue span { color: #00A1E9 !important; }
.c_ttl_type01.is_green span { color: #8EC31F!important; }
.c_ttl_type01.is_yellow span { color: #F39800!important; }
.c_ttl_type01.is_red span { color: #E83528!important; }

/*
.c_ttl_type01:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 50px;
    height: 2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #aaa;
    border-radius: 2px;
}*/
.c_ttl_type01.is_blue:before { background-color: #00A1E9 !important; }
.c_ttl_type01.is_green:before { background-color: #8EC31F!important; }
.c_ttl_type01.is_yellow:before { background-color: #F39800!important; }
.c_ttl_type01.is_red:before { background-color: #E83528!important; }


/*----------------------------------------------
    .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
  font-size: 3.6rem;
  font-weight: bold;
  color: #000;
  text-align: center;
}

/*----------------------------------------------
    .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #000;
  text-align: center;
}

/*----------------------------------------------
    .c_ttl_type04
---------------------------------------------*/
.c_ttl_type04 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
	border-bottom: 1px solid #ccc;
  position: relative;
}

/*----------------------------------------------
    .c_ttl_type05
---------------------------------------------*/
.c_ttl_type05 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  position: relative;
}

/*----------------------------------------------
    .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: #ffd14e;
	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_ttl_origami
---------------------------------------------*/
.c_ttl_origami {
  text-align: center;
  display: flex;
  justify-content: center;
  column-gap: 40px;
}
.c_ttl_origami::before {
    content: "";
    display: inline-block;
    min-width: 45px;
    width: 45px;
    height: 45px;
    background-image: url(../images/icon_ttl_before.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 8px;
    position: relative;
}
.c_ttl_origami::after {
    content: "";
    display: inline-block;
    min-width: 45px;
    width: 45px;
    height: 45px;
    background-image: url(../images/icon_ttl_after.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 8px;
    position: relative;
}

.c_ttl_origami.is_jp::before, .c_ttl_origami.is_jp::after {
  top: -10px;
}

/*----------------------------------------------
  	.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 thead th {
  background: #000;
  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: #000;
  background: #ddd;
}

.c_table_type01 th,
.c_table_type01 td {
  padding: 14px;
  border: 1px solid #bbb;
}

/* 中央寄せなどのスタイル */
.c_table_type01.is_th_center th,
.c_table_type01.is_td_center td {
	text-align: center;
}
.c_table_type01.is_th_middle th,
.c_table_type01.is_td_middle td {
	vertical-align: middle;
}
.c_table_type01.is_th_top th,
.c_table_type01.is_th_top td {
	vertical-align: top;
}

/* セルの幅 */
.c_table_type01 th.is_w15 { width: 15%; }
.c_table_type01 th.is_w20 { width: 20%; }
.c_table_type01 th.is_w30 { width: 30%; }
.c_table_type01 th.is_w40 { width: 40%; }


/*----------------------------------------------
	.c_table_type02
---------------------------------------------*/
.c_table_type02 {
  width: 100%;
}

.c_table_type02 tr:nth-child(odd) {
  background: #ddd;
}

.c_table_type02 th {
  color: #000;
}

.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 #aaa;
}

.c_table_type03 th {
  color: #000;
  white-space: pre-wrap;
  font-weight: bold;
  text-align: center;
}

.c_table_type03 th,
.c_table_type03 td {
	text-align: center;
  padding: 10px;
	border: 1px solid #aaa;
}

/*----------------------------------------------
	.c_table_type04
---------------------------------------------*/
.c_table_type04 tr > * {
  vertical-align: top;
  border: 1px solid #000;
}

/*----------------------------------------------
	.c_table_type03
---------------------------------------------*/
.c_table_type03 {
  width: 100%;
}

.c_table_type03 thead th {
  background: #aaa;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
.c_table_type03 th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
  color: #000;
  background: #ddd;
}

.c_table_type03 th,
.c_table_type03 td {
  padding: 14px;
  border: 1px solid #bbb;
}

/*----------------------------------------------
	.c_table_type04
---------------------------------------------*/
.c_table_type04 {
  width: 100%;
}

.c_table_type04 thead th {
  background: #aaa;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
.c_table_type04 th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
  color: #000;
  background: #ddd;
}

.c_table_type04 th,
.c_table_type04 td {
  padding: 14px;
  border: 1px solid #bbb;
}

/*----------------------------------------------
	.c_dl_type01
---------------------------------------------*/
.c_dl_type01 dl {
  display: flex;
  flex-wrap: wrap;
}
.c_dl_type01 dl dt {
  width: 17.9%;
  position: relative;
  padding: 28px 0;
  box-sizing: border-box;
  border-bottom: 2px solid #aaa;
  text-align: center;
}
.c_dl_type01 dl dd {
  width: 82.1%;
  border-bottom: 1px dotted#aaa;
  padding: 28px 0 28px 28px;
  box-sizing: border-box;
  margin: 0;
}

.c_dl_type01 .is_flex {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 28px;
}
.c_dl_type01 .is_width {
  display: flex;
  width: 25%;
  align-items: center; /* 高さを揃える */
  gap: 20px;
}

.c_dl_type01 .sub_item {
  display: flex;
  align-items: center;
  gap: 40px;
  
}

.c_dl_type01 .sub_dt {
  width: auto;
  position: relative;
  padding: 28px 50px;
  box-sizing: border-box;
  border-bottom: 2px solid #aaa;
  text-align: center;
}

/* 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: #000;
  position: absolute;
  display: inline-block;
  width: 10px;
  vertical-align: middle;
  top: 8px;
  left: 0;
}

.c_list_type01.is_square li::before {
  content: "";
	width: 8px;
	height: 8px;
	background: #000;
}

.c_list_type01.is_disc li::before {
  content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #000;
	top: 8px;
}

.c_list_type01.is_triangle li::before {
  content: "";
	width: 0;
  height: 0;
  border: solid 5px transparent;
  border-left: solid 7px #000;
	top: 6px;
}

.c_list_type01.is_diamond li::before {
	content: "";
  width: 6px;
  height: 6px;
  background: #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
	top: 8px;
}

.c_list_type01.is_decimal,
.c_list_type01.is_decimal li > ul.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: #000;
  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_btn_type01
---------------------------------------------*/
.c_btn_type01 {
  display: inline-block;
  padding: 20px;
  min-width: 240px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: #000;
  border-radius: 5px;
}
a.c_btn_type01:hover {
  opacity: .4;
}

.c_btn_type01.is_word,
.c_btn_type01.is_excel,
.c_btn_type01.is_ppt,
.c_btn_type01.is_pdf {
  background: #000;
}

.c_btn_type01.is_gray {
  background: #aaa;
}

span.c_btn_type01,
.c_btn_type01.is_disable {
  background: #ccc !important;
	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_h150 { 
  min-height: 150px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.c_btn_type01.is_word::before,
.c_btn_type01.is_excel::before,
.c_btn_type01.is_ppt::before,
.c_btn_type01.is_pdf::before,
.c_btn_type01.is_arrow::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_arrow::before {
  background: url(../images/icon_btn_arrow.png) no-repeat;
  background-size: 100%;
}

.c_btn_type01.is_attention {
  background: #2a80c2;
  font-weight: bold;
  font-size: 1.5em;
}

/*----------------------------------------------
	.c_btn_type02
---------------------------------------------*/
.c_btn_type02 {
  display: inline-block;
  padding: 20px;
  min-width: 240px;
  text-decoration: none!important;
  color: #000!important;
  position: relative;
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 5px;
}
a.c_btn_type02:hover {
  opacity: .4;
}

.c_btn_type02.is_dl,
.c_btn_type02.is_mail {
  background: #fff;
}

.c_btn_type02.is_gray {
  background: #aaa;
}

span.c_btn_type02,
.c_btn_type01.is_disable {
  background: #ccc !important;
	pointer-events: none;
}
.c_btn_type02.is_w250 { width: 250px; }
.c_btn_type02.is_w320 { width: 320px; }
.c_btn_type02.is_w400 { width: 400px; }

.c_btn_type02.is_dl::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_type02.is_dl::before {
  background: url(../images/icon_btn_dl.png) no-repeat;
  background-size: 100%;
}
.c_btn_type02.is_mail { padding-left: 70px; }
.c_btn_type02.is_mail::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
	left: 10px;
  width: 33px;
  height: 33px;
  margin: auto auto auto 10px;
  vertical-align: middle;
}
.c_btn_type02.is_mail::before {
  background: url(../images/icon_btn_mail.png) no-repeat;
  background-size: 100%;
}

.c_btn_type02.is_img {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.c_btn_type02.is_img img { 
  margin-right: 15px; }


/*----------------------------------------------
	.c_box_type01
---------------------------------------------*/
.c_box_type01 {
  padding: 50px 25px;
  background: #fff;
  border-radius: 8px;
}

/*----------------------------------------------
	.c_box_type02
---------------------------------------------*/
.c_box_type02 {
  padding: 50px 25px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px #DEDEDE;
}

/*----------------------------------------------
	.c_box_type03
---------------------------------------------*/
.c_box_type03 {
  padding: 30px;
  /*border: 5px solid #ecf1f5;*/
  background-color: #faf9f7;
  border-radius: 8px;
}

/*----------------------------------------------
	.c_program
---------------------------------------------*/
/* c_program_ttl01 */
.c_program_ttl01 {
	font-weight: bold;
	margin-top: 10px;
}

/* c_program_table01 */
.c_program_table01 th,
.c_program_table01 td {
	vertical-align: top;
}
.c_program_table01 th {
	font-weight: normal;
	width: 3em;
}
.c_program_table01 td.is_name {
	width: 6em;
}
.c_program_table01 td.is_aff {
	text-indent: -1em;
	padding-left: 1em;
}
.c_program_table01 tr > td.is_aff::before {
	content: "（";
}
.c_program_table01 tr > td.is_aff::after {
	content: "）";
}

.c_program_table01 .is_w7 { width: 7em; }

/*----------------------------------------------
.c_period_box
---------------------------------------------*/
.c_period_box {
	display: flex;
	font-weight: bold;
	font-size: 1.8rem;
}

/*----------------------------------------------
.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
メニューの外部リンク用アイコン sampleでのみ使用
---------------------------------------------*/
a.c_nav_icon {
  background: url("../images/icon_external_nav.png") no-repeat right 5px center;
  display: inline-block;
  padding: 3px 30px 3px 5px;
}
a.c_nav_icon:hover,
a.c_nav_icon.is_hover {
  background: url("../images/icon_external_nav_o.png") no-repeat right 5px center, #ccc;
  color: #000;
}


/*----------------------------------------------
aboutus
---------------------------------------------*/
.c_about_text { line-height: 2.4; }

/*----------------------------------------------
access
---------------------------------------------*/
.c_googlemap {
  position: relative;
  width: 100%;
  padding-top: 32%;
  height: 0;
}
.c_googlemap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.c_access_box {
  margin: 0 auto;
}
.c_access_box img {
  width: 100%;
  height: auto;
}


/*----------------------------------------------
主催
---------------------------------------------*/
.c_bnr_grid01 {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px;
  justify-content: center;
}
.c_bnr_grid01 a { color: #fff; }
.c_bnr_grid01 a:hover { opacity: 0.4; }

/*----------------------------------------------
registration
---------------------------------------------*/
#registration img.c_regi_logo  {
  max-width: 500px;
  width: 100%;
  height: auto;
}
.c_regi_grid01 {
  display: grid;
  grid-template-columns: repeat(2, 400px);
  gap: 20px;

  justify-content: center;
}
.c_regi_grid02 {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  gap: 20px;

  justify-content: center;
}

.c_regi_btn {
  position: fixed;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);

  z-index: 100;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100px;
  height: auto;

  padding: 20px 10px;

  background: #fff;
  color: #000;

  border-radius: 50px 0 0 50px;
  box-shadow: 0 0 8px #DEDEDE;

  text-decoration: none;
  
  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

/* スクロールで表示 */
#top .c_regi_btn.is_show {
  opacity: 1;
  visibility: visible;
}

.c_regi_btn img {
  width: 60px;
  height: auto;
}

.c_regi_btn span {
  writing-mode: vertical-rl;
  text-orientation: upright;

  font-weight: bold;
}

/*----------------------------------------------
フロアマップ
---------------------------------------------*/
.c_floor_box {
  max-width: 750px;
  margin: 0 auto;
}
.c_floor_box img {
  width: 100%;
  height: auto;
}


/*----------------------------------------------
タイムテーブル
---------------------------------------------*/
.timetable {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}


/* タブ */

.timetable_tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 60px;
  justify-content: center;
}

.tab_button {
  padding: 12px 24px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.tab_button.is_active {
  background: #222;
  color: #fff;
}

.tab_content {
  display: none;
}

.tab_content.is_active {
  display: block;
}


/* タイムテーブル */

.timetable_grid {
  display: grid;
  grid-template-columns: 100px repeat(3, 1fr);
  /*border-top: 1px solid #aaa;
  border-left: 1px solid #aaa;*/
	 overflow-y: hidden;
}



.timetable_grid.cols_1 {
  grid-template-columns: 100px 1fr;
}

.timetable_grid.cols_2 {
  grid-template-columns: 100px repeat(2, 1fr);
}

.timetable_grid.cols_3 {
  grid-template-columns: 100px repeat(3, 1fr);
}

.time_column,
.venue_column {
  position: relative;
}

.time_head,
.venue_head {
  text-align: center;
  height: 60px;
  padding: 20px;
  /*border-right: 1px solid #ccc;
  border-bottom: 1px solid #aaa;
  background: #f5f5f5;*/
  font-weight: 600;
}

.venue_head.is_G2 { color: #fff; background: #95bc38; margin: 0 3px; border-radius: 8px; }
.venue_head.is_G1 { color: #fff; background: #63afd7; margin: 0 3px; border-radius: 8px; }
.venue_head.is_P { color: #fff; background: #656565; margin: 0 3px; border-radius: 8px; }
.venue_head.is_EX { color: #fff; background: #f6a563; margin: 0 3px; border-radius: 8px; }



.time {
  height: 240px;
  padding: 10px;
  /*border-right: 1px solid #aaa;*/
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

#day3 .time.is_time16 {
  height: 0;
  border-bottom: none;
}


.venue_column {
  position: relative;
  min-height: 860px;
  /*border-right: 1px solid #ccc;*/
  height: 960px;/*タイムテーブル全体の高さを固定*/

  /*
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 239px,
      #ddd 239px,
      #ddd 240px
    );

  background-position: 0 60px;*/
}

.venue_column.split_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.venue_column.split_2 .venue_head, .venue_column.split_3 .venue_head {
  grid-column: 1 / -1;

  height: 60px;
  padding: 20px;

}

.venue_column.split_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.sub_column {
  position: relative;
  min-height: 2000px;

  /*border-right: 1px solid #ddd;*/

  background-position: 0 60px;
}
.sub_head {
  position: sticky;
  top: 0;
  text-align: center;
  height: 50px;
  padding: 5px;

  font-size: 14px;
  font-weight: bold;
  color: #63afd7;

  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;

}


/* イベント */

.event {
  position: absolute;
  left: 10px;
  right: 10px;
  padding: 5px;
  border: none;
  background: #e3edca;
  border-radius: 8px;

  text-align: center;
  cursor: pointer;
}

div.event {
  display: flex;
  justify-content: center;
  align-items: center; 
  cursor: auto;
}

button.event:hover {
  opacity: 0.6;
}

.event .is_time { 
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  padding: 3px;
  width: 100px;
  margin-inline: auto;
  border-radius: 50px;
  background-color: #fff;
}
.event .is_ttl {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.57;
  margin-top: 5px;
}
.event .is_text {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 15px;
  position: relative;
}
.event .is_text::before {
  content: "";
  display: block;
  width: 90%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.event.day1_A01 { top: 530px; height: 330px; background: #f6ebd3;}

.event.day2_A01 { top: 300px; height: 130px; }
.event.day2_A02 { top: 480px; height: 430px; }
.event.day2_A03 { top: 950px; height: 200px; background: #faebc1; }
.event.day2_A04 { top: 1200px; height: 250px; }
.event.day2_A05 { top: 1500px; height: 480px; }
.event.day2_B01 { top: 1500px; height: 480px; background: #dfdfdf; }

.event.day3_A01 { top: 190px; height: 350px; }
.event.day3_A02 { top: 600px; height: 370px; }
.event.day3_A03 { top: 1020px; height: 190px; background: #faebc1; }
.event.day3_A04 { top: 1260px; height: 480px; }

.event.day3_B01 { top: 130px; height: 350px; background: #e1eef7; }
.event.day3_B02 { top: 540px; height: 370px; background: #e1eef7; }
.event.day3_B03 { top: 960px; height: 190px; background: #faebc1; width: 345px; }
.event.day3_B04 { top: 1200px; height: 240px; background: #e1eef7; }
.event.day3_B05 { top: 130px; height: 350px; background: #dae1f2; }
.event.day3_B06 { top: 540px; height: 370px; background: #dae1f2; }
.event.day3_B07 { top: 960px; height: 190px; background: #faebc1; }
.event.day3_B08 { top: 1200px; height: 240px; background: #dae1f2; }
.event.day3_B09 { top: 130px; height: 1070px; background: #d3d5d7; }

/* モーダル */

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: rgba(0,0,0,0.6);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.modal.is_active {
  opacity: 1;
  visibility: visible;
}

.modal_inner {
  position: relative;

  width: 100%;
  max-width: 600px;

  padding: 40px;

  background: #fff;
  border-radius: 12px;
}

.modal_close {
  position: absolute;
  top: 10px;
  right: 10px;

  border: none;
  background: none;

  font-size: 24px;
  cursor: pointer;
}

.modal_title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
}

.modal_time,
.modal_place {
  margin-bottom: 10px;
}



/*----------------------------------------------
アーカイブ
---------------------------------------------*/
  .c_archive_main {
  width: 100%;
  aspect-ratio: 16 / 9;
  /*max-width: 850px;*/
  margin-right: auto;
  margin-left: auto;
}
.c_archive_main iframe {
  width: 100%;
  height: 100%;
}

.c_archive_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  justify-content: space-between;
}
.c_archive_item {
  width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
}
.c_archive_item .c_venue.is_G2 {
  background: #95bc38;
  width: 50px;
  padding: 2px 0;
  border-radius: 10px;
}
.c_archive_item .c_venue.is_G1 {
  background: #7fc7ef;
  width: 50px;
  padding: 2px 0;
  border-radius: 10px;
}
.c_archive_item .c_venue.is_G2 p, .c_archive_item .c_venue.is_G1 p {
    font-weight: 700;
    text-align: center;
}
.c_archive_info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}



/*----------------------------------------------
ウェブアクセシビリティ
---------------------------------------------*/
#webaccessibility .c_table_type01 .is_th:nth-of-type(1) {
  width: 90px;
}
#webaccessibility .c_table_type01 .is_th:nth-of-type(2) {
  width: 770px;
}
#webaccessibility .c_table_type01 .is_th:nth-of-type(3) {
  width: 56px;
}
#webaccessibility .c_table_type01 .is_th:nth-of-type(4) {
  width: 56px;
}
#webaccessibility .c_table_type01 .is_th:nth-of-type(5) {
  width: 176px;
}