<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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: #fff;
  box-shadow: 0 3px 6px rgba(51, 51, 51, 16%);
}
.c_nav_type01 li:not(:last-of-type) a,
.c_nav_type01 li:not(:last-of-type) span{
  border-bottom: 1px solid #ccc;
}
.c_nav_type01 li a,
.c_nav_type01 li span{
  display: block;
  padding: 15px 10px;
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
  text-align: left;
  position: relative;
  line-height: 1.3;
  /*background: url(../images/nav_arrow.png) 91% 50% no-repeat;*/
}

.c_nav_header {
  cursor: pointer;
}

a.c_nav_header:before,
span.c_nav_header:before {
  content: '';
  background: #bbb6de;
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(50% - 20px / 2 + 1px);
  right: 4px;
  border-radius: 100px;
}

a.c_nav_header:after,
span.c_nav_header:after {
  content: '';
  position: absolute;
  right: 11px;
  top: calc(50% - 7px / 2);
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  transition: all 500ms;
}
span.c_nav_header.active:after,
a.c_nav_header.active:after {
    border-color: #fff;
}
a.c_nav_header.nav_active:after,
span.c_nav_header.nav_active:after,
a.c_nav_header.active:after,
span.c_nav_header.active:after{
  top: calc(50% - 3px / 2);
  -webkit-transform: rotate(-43deg);
  -moz-transform: rotate(-43deg);
  -o-transform: rotate(-43deg);
  -ms-transform: rotate(-43deg);
  transform: rotate(-43deg);
}

.c_dropdown{
  list-style: none;
  background: #e5dfea;
}

.c_dropdown li {
  position: relative;
}

.c_dropdown li a {
  padding-left: calc(10px + 1em);
}

.c_dropdown li a::after{
  content: '➜';
  position: absolute;
  top: 50%;
  font-size: 1.3rem;
  transform: translate(0,-50%);
  right: 10px;
  color: #3B1E0E;
}

.c_nav_type01 li:hover &gt; a,
.c_nav_type01 li.active &gt; a,
.c_nav_header:hover,
.c_nav_header.active {
  /*background: url(../images/nav_active_arrow.png) 91% 50% no-repeat, url(../images/nav_active.png);*/
  color: #fff;
  background: url("../images/nav_bg.png")no-repeat center center;
    background-size: cover;
	font-weight: bold;
}

.c_dropdown li.active &gt; a,
.c_dropdown li:hover &gt; a {
  background: #957da9;
  color: #fff;
}

.c_dropdown li.active a::after,
.c_dropdown li:hover a::after {
  color: #fff;
}

.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_type01 li.is_new a::before {
  content: "NEW";
  color: red;
  font-weight: bold;
  display: inline-block;
  width: 16px;
  height: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 32px;
}
.c_nav_type01 li.is_new.is_small a::before {
  font-size: 1.3rem;
  top: 3px;
  right: 48px;
}
.c_nav_type01 li.is_new a:hover::before {
  color: #fff;
}
/*----------------------------------------------
	.c_nav_type02
---------------------------------------------*/
.c_nav_type02 * {
  list-style: 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 span,
.c_nav_type02 li a {
  padding-left: 18px;
  display: block;
  padding: 12px 10px;
}
.c_nav_type02 li a {
  padding-left: 20px;
}
.c_nav_type02 &gt; li {
  display: block;
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
  text-align: left;
  font-weight: bold;
  position: relative;
  line-height: 1.3;
  /*background: url(../images/nav_arrow.png) 91% 50% no-repeat;*/
}

.c_nav_type02 &gt; li ul &gt; li:hover a,
.c_nav_type02 &gt; li ul &gt; li.active a {
  /*background: url(../images/nav_active_arrow.png) 91% 50% no-repeat, url(../images/nav_active.png);*/
  color: #333;
  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%;
}
.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_type01 .is_lock{
	position: relative;
}
.c_nav_type01 .is_lock a:after{
	display: inline-block;
	content: "";
	width: 20px;
	height: 20px;
	background: url("../images/lock_icon.png") no-repeat;
	background-size: contain;
	text-align: right;
	position: absolute;
	top: calc(50% - 11px);
	right: 16px;
}
/*----------------------------------------------
	.c_lang
---------------------------------------------*/
.c_lang {
  display: block;
  background: #003376;
  padding: 15px;
  font-weight: bold;
  text-decoration: none;
  color: #fff!important;
}
.c_lang:hover {
  opacity: .7;
  color: #fff;
}

/*----------------------------------------------
	.c_contact_type01
---------------------------------------------*/
.c_contact_type01 {
  background: #fff;
  width: 100%;
}
.c_contact_type01 .c_contact_header {
  color: #776338;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 15px 15px 0px 12px;
/*  border-bottom: 2px solid #ccc;*/
}
.c_contact_type01 .c_contact_details {
  padding: 10px;
  font-size: 1.3rem;
  line-height: 1.8;
}
/*----------------------------------------------
  .c_contact_type02
---------------------------------------------*/
.c_contact_type02{
  background: #fff;
}
.c_contact_type02 .c_contact_header {
  color: #776338;
  font-size: 1.5rem;
  font-weight: normal;
  text-align: center;
  padding: 10px 15px;
}
.c_contact_type02 .c_contact_details {
  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: #333;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 5px;
  border: 1px solid #bbb;
	display: inline-block;
}
.c_contact_type03 .c_contact_details {
  padding: 15px;
  line-height: 1.5;
}

/*----------------------------------------------
  .c_contact_type04
---------------------------------------------*/
.c_contact_type04 {
	background: #ccc;
}
.c_contact_type04 .c_contact_header {
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 5px;
  border: 1px solid #bbb;
	display: inline-block;
	vertical-align: top;
}
.c_contact_type04 .c_contact_details {
  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: #333;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 5px;
  border: 1px solid #bbb;
	display: block;
	vertical-align: top;
}
.c_contact_type05 .c_contact_details {
  line-height: 1.5;
	display: block;
  padding: 20px;
}

/*----------------------------------------------
  .c_contact_footer
---------------------------------------------*/
 .c_contact_footer .c_contact_header {
  margin-bottom:10px;
  color: #333;
  font-size: 1.6rem;
  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: 180px;
  overflow-y: auto;
  position: relative;
  font-size: 1.5rem;
  color: #333;
}
.c_news_type01 dt,
.c_news_type01 dd {
  padding-top: 18px;
}
.c_news_type01 dt {
  float: left;
  clear: left;
  padding-left: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}
.c_news_type01 dd {
  padding-left: 132px;
  word-wrap: break-word;
  padding-right: 20px;
  padding-bottom: 18px;
}
.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 {
  max-height: 148px;
  overflow-y: auto;
  position: relative;
  font-size: 1.5rem;
  color: #333;
}
.c_news_type02 dt {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  padding: 15px 10px 0;
}
.c_news_type02 dd {
  padding: 5px 10px;
  word-wrap: break-word;
}
.c_news_type02 dt:not(:first-of-type) {
  border-top: 2px dotted #aaa;
}
/*----------------------------------------------
  	.c_ttl_type01
  ---------------------------------------------*/
.c_ttl_type01 {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(to right, #0B5096 20%,#9174B0 );
  color: #fff;
  padding: 15px 20px;
}

/*----------------------------------------------
    .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
  font-size: 2.2rem;
  font-weight: bold;
	background: #003376;
  color: #fff;
	padding: 8px 15px;
}

/*----------------------------------------------
    .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
  font-size: 2rem;
  font-weight: bold;
  color: #776338;
  padding: 5px 0px;
  position: relative;
  border-bottom: 2px solid #776338;
}
.c_ttl_type03.is_pro{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
/*
.c_ttl_type03::before {
  content: "";
  height: 5px;
  width: 5px;
  position: absolute;
  background: #aaa;
  background-size: contain;
  top: 0;
  bottom: 0;
	left: 0;
  margin: auto 0;
}
*/

/*----------------------------------------------
    .c_ttl_type04
---------------------------------------------*/
.c_ttl_type04 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
    padding: 5px 20px;
  position: relative;
  border-bottom: 2px dotted #CCCCCC;
}
.c_ttl_type04::before {
  content: "";
  height: 5px;
  width: 5px;
  position: absolute;
  background: #fff;
  border-radius: 50%;
  border: 4px solid #003376;
  background-size: contain;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}

.c_ttl_type04.is_pro{
  border-bottom: none;
  padding-bottom: 0;
}

/*----------------------------------------------
    .c_ttl_type05
---------------------------------------------*/
.c_ttl_type05 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0B5096;
  position: relative;
}

/*----------------------------------------------
    .c_ttl_type06
---------------------------------------------*/
.c_ttl_type06 {
  font-size: 2.2rem;
  font-weight: bold;
	background: #E0D7E9;
  color: #003376;
	padding: 8px 15px;
}

/*----------------------------------------------
  	.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: #717171;
  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: #323333;
  background: #EEEEEE;
}

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

.c_table_type01.is_top td { vertical-align: top; }
.c_table_type01.is_th_center th { text-align: center; }
.c_table_type01.is_td_center td { text-align: center; }

.c_table_type01.is_middle th,
.c_table_type01.is_middle td {
  vertical-align: middle;
}

.c_table_type01.is_double{
	width: 50%;
	float: left;
}
.c_table_type01.is_double:after{
	content: "";
	display: block;
	clear: both;
}
.c_table_type01.is_double th{
	padding: 5px 10px;
	vertical-align: middle;
	text-align: center;
	width: 50px;
}
.c_table_type01.is_double td{
	padding: 5px;
}
.c_table_type01.is_single{
	width: 50%;
}
.c_table_type01.is_single th{
	padding: 5px 10px;
	vertical-align: middle;
	text-align: center;
	width: 50px;
}
.c_table_type01.is_single td{
	padding: 5px;
}

.c_table_type01.is_bold th {
  font-weight: bold;
}
.c_table_type01.is_bold_td td {
  font-weight: bold;
}


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

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

.c_table_type02 th {
  color: #333;
}

.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 #9174B0;
}

.c_table_type03 th {
  color: #333;
  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 #ccc;
}

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

/*----------------------------------------------
	.c_table_type05
---------------------------------------------*/
.c_table_type05
{
  width: 100%;
}
.c_table_type05 th,
.c_table_type05 td
{
  border: 1px solid #333;
}
.c_table_type05 thead tr:first-of-type th{
  background: red;
  color: #FFF;
  padding: 5px;
}
.c_table_type05 thead tr:first-of-type +tr th{
  background: #FDDBDB;
  padding: 5px;
}
.c_table_type05 tbody td {
  padding: 10px;
  background: #FFF;
}
/*----------------------------------------------
	.c_table_scroll
---------------------------------------------*/
.c_table_scroll {
  width: 100%;
}

.c_table_scroll thead th {
  background: #aaa;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
.c_table_scroll th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  color: #323333;
  background: #ddd;
  min-width: 170px;
}
#coi .c_table_scroll th+td {
	min-width: 320px;
}
.c_table_scroll th,
.c_table_scroll td {
  padding: 14px;
  border: 1px solid #bbb;
}
.c_table_scroll.is_w01 thead th:last-child {
  width: 25%;
}


/* 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: #ffd14e;
}

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

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

.c_list_type01.is_diamond li::before {
	content: "";
  width: 6px;
  height: 6px;
  background: #87774A;
  -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: #87774A;
  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: 15px 20px;
  min-width: 240px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: #CB4040;
/*  box-shadow: 0 5px 0 0 #ef9e01;*/
  border-radius: 5px;
}
a.c_btn_type01:hover {
    opacity: 0.6;
/*  background: #fd9628;*/
/*  box-shadow: 0 5px 0 0 #e38414;*/
}
.c_btn_type01.is_gray{
	background-color: #aaa;
	color: #222!important;
}

span.c_btn_type01,
span.c_btn_type01.is_gray,
.c_btn_type01.is_disable {
  background: #ccc!important;
  color: #fff!important;
/*  box-shadow: 0 5px 0 0 #aaa;*/
	pointer-events: none!important;
}
.c_btn_type01.is_w174 { width: 174px; min-width: 174px; }
.c_btn_type01.is_w200 { width: 200px; min-width: 200px; }
.c_btn_type01.is_w250 { width: 250px; }
.c_btn_type01.is_w320 { width: 320px; }
.c_btn_type01.is_w350 { width: 350px; }
.c_btn_type01.is_w400 { width: 400px; }
.c_btn_type01.is_w500 { width: 500px; }

.c_btn_type01.is_purple { background-color: #9174B0; }

.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_lock::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
	left: 2px;
  width: 22px;
  height: 22px;
  margin: auto auto auto 10px;
  vertical-align: middle;
}
.c_btn_type01.is_lock::after {
  background: url(../images/icon_btn_lock.png) no-repeat;
  background-size: 100%;
}


.c_btn_type01.is_word,
.c_btn_type01.is_excel,
.c_btn_type01.is_ppt,
.c_btn_type01.is_pdf {
    background: #9174B0;
}
.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_pdf.png) no-repeat;
  background-size: 100%;
  width: 16px;
  height: 20px;
}

.c_btn_type01.is_ondemand {
  background-color: #CB4040;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
}



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

/*----------------------------------------------
	.c_box_type02
---------------------------------------------*/
.c_box_type02 {
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #87774A;
}

.c_box_type02.color{
  background: #FFF7E7;
}

.c_box_type02_header {
  font-weight: bold;
  color: #87774A;
  font-size: 1.6rem;
}

/*----------------------------------------------
	.c_box_type03
---------------------------------------------*/
.c_box_type03 {
  padding: 15px;
  background: #FEEEEE;
  border: 1px solid #ee2b29;
  color: #ee2b29;
}
/*----------------------------------------------
	.c_box_type04
---------------------------------------------*/
.c_box_type04 {
  padding: 15px;
  border: 2px solid #ee2b29;
}
/*----------------------------------------------
	.c_box_type05
---------------------------------------------*/
.c_box_type05 {
  padding: 15px;
  border: 2px solid #ee2b29;
  border-radius: 15px;
  background: #FFF;
  color: #fff;
}
.c_box_type05 a:hover {
  opacity: .8;
}

/*----------------------------------------------
.c_anchor_icon
---------------------------------------------*/
a.c_anchor_icon{
  padding-right: 20px;
}
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_propile {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.c_propile_photo {
  margin-right: 20px;
  width: 150px;
}

.c_propile_text .is_syozoku {
  font-size: 1.5rem;
}
.u_lh43{
	line-height: 43.5px;
}

/*----------------------------------------------
.c_venue
---------------------------------------------*/
.c_venue{
  text-align: right;
  margin: 0 0 5px;
  display: block;
  margin-left: auto;
  background: #E5EBF7;
  width: fit-content;
  padding: 1px 5px;
  font-size: 1.4rem;
}
/* タイトル内の時 */
.c_ttl_type03.is_pro .c_venue{
  color: #333;
  font-size: 1.4rem;
  font-weight: normal;
  margin: 0;
  margin-left: auto;
}

/* ランチョンの時 */
#luncheon .c_venue{
  margin: 0 0 20px;
  margin-left: auto;
}

/*----------------------------------------------
.c_ses_dtl
---------------------------------------------*/
.c_ses_dtl{
  margin: 0 0 40px;
}

/*----------------------------------------------
.c_presenter
---------------------------------------------*/
.c_presenter{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 0 0 15px;
}

.c_presenter + .c_presenter{
  margin: 0;
}

#luncheon .c_presenter + .c_presenter{
  margin: 0 0 15px;
}

.c_pre_role{
  display: block;
  background: #eae7ed;
  color: #3d3049;
  font-size: 1.4rem;
  padding: 2px 0;
  min-width: 110px;
  text-align: center;
}

.c_pre_prof{
  display: flex;
  margin: 0 0 8px;
}

.c_pre_prof.is_en{
  display: block;
}

.c_pre_prof.is_en .c_pre_name, .c_pre_prof.is_en .c_pre_aff{
  display: block;
}

.c_pre_prof + .c_pre_prof{
  margin: 0;
}

.c_pre_name{
  min-width: 100px;
  font-weight: bold;
}

.c_pre_name.is_long{
  min-width: 120px;
  font-weight: bold;
}

.c_pre_name.is_custom{
  font-weight: normal;
}

.c_pre_aff{
  text-indent: -1em;
  padding-left: 1em;
}

.c_presen_ttl{
  color: #003376;
  font-weight: bold;
}

#face img[src^="images/implant_"],
#handson img[src^="images/handson_"] {
    border: 1px solid #ccc;
}
</pre></body></html>