@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;
  box-shadow: 0px 0px 15px #0918351A;
  border-radius: 5px;
  overflow: hidden;
}
.c_nav_type01 li:last-of-type a,
.c_nav_type01 li:last-of-type span{
  border-radius: 0px 0px 5px 5px;
}
.c_nav_type01 li:not(:last-of-type) a,
.c_nav_type01 li:not(:last-of-type) span{
  border-bottom: 1px solid #CCD9D3;
}
.c_nav_type01 li a,
.c_nav_type01 li span{
  display: block;
  padding: 12px 16px;
  font-size: 1.6rem;
  color: #333;
  text-decoration: none;
  text-align: left;
  position: relative;
  background: url("../images/nav_arrow.png") 94% 50% no-repeat;
}

.c_nav_type01 li:hover > a,
.c_nav_type01 li.active > a {
  background: url("../images/nav_arrow_o.png") 94% 50% no-repeat,transparent linear-gradient(79deg, #25B069 0%, #57BE86 100%);
  /*background: url(../images/nav_active_arrow.png) 91% 50% no-repeat, url(../images/nav_active.png);*/
  color: #FFFFFF;
	font-weight: bold;
}
.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_type01 .c_nav_parent > span {
  background: none;
  cursor: pointer;
}
.c_nav_type01 .c_nav_parent {
  position: relative;
}
.c_nav_type01 .c_nav_parent::after {
  background: #25B069;
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  right: 8px;
  top: 17px;
  width: 20px;
}
.c_nav_type01 .c_nav_parent:has(> span:hover)::after,
.c_nav_type01 .c_nav_parent:has(.active)::after {
  background: #fff;
}
.c_nav_type01 .c_nav_parent > span::after {
  content: "";
  border-bottom: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-style: solid;
  border-top: 8px solid #fff;
  height: 0;
  position: absolute;
  right: 13px;
  top: 24px;
  transition: .4s;
  width: 0;
  z-index: 2;
}
.c_nav_type01 .c_nav_parent > span:hover,
.c_nav_type01 .c_nav_parent:has(.active) > span {
  background: transparent linear-gradient(79deg, #25B069 0%, #57BE86 100%);
  color: #fff;
  font-weight: bold;
}
.c_nav_type01 .c_nav_parent > span:hover::after,
.c_nav_type01 .c_nav_parent:has(.active) > span::after {
  border-top-color: #25B069;
}
.c_nav_type01 .c_nav_parent.open > span::after {
  top: 23px;
  transform: rotate(180deg);
}
.c_nav_child {
  display: none;
  list-style: none;
}
.c_nav_type01 .c_nav_parent .c_nav_child li a,
.c_nav_type01 .c_nav_parent .c_nav_child li span {
  background: #F3EEDD;
  padding-left: 25px;
}
.c_nav_type01 .c_nav_parent .c_nav_child li a:hover,
.c_nav_type01 .c_nav_parent .c_nav_child li.active a {
  background: #e8debb;
  color: #333;
}

/*----------------------------------------------
  .c_contact_footer
---------------------------------------------*/
.c_contact_footer{
  text-align: center;
}
.c_contact_footer .c_contact_header {
  margin-bottom:10px;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: bold;
}
.c_contact_footer .c_contact_details {
	font-size: 1.4rem;
	line-height: 1.5;
}
.c_contact_footer .c_contact_details a {
	color: #FFFFFF;
}
/*----------------------------------------------
  .c_news_type01
---------------------------------------------*/
.c_news_type01 {
  max-height: 196px;
  overflow-y: auto;
  position: relative;
  font-size: 1.6rem;
  color: #333;
}
.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: normal;
}
.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: transparent linear-gradient(84deg, #183E85 0%, #3863B4 100%);
  color: #FFFFFF;
  border-radius: 5px 5px 0px 0px;
  padding: 15px 20px;
}

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

/*----------------------------------------------
    .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
  font-size: 2rem;
  font-weight: bold;
  color: #1D3766;
  padding: 5px 15px;
  position: relative;
  background-color: #DCE4F1;
}

.c_ttl_type03.is_en::before{
  content: "英語";
  color: #fff;
  background: #0070C0;
  font-weight: bold;
  text-align: center;
	position: absolute;
	right: 5px;
  top: 50%;
  transform: translateY(-50%);
      padding: 2px 8px;
  font-size: 1.5rem;
}
.c_ttl_type03.is_en_en::before{
  content: "English";
  color: #fff;
  background: #0070C0;
  font-weight: bold;
  text-align: center;
	position: absolute;
	right: 5px;
  top: 50%;
  transform: translateY(-50%);
      padding: 2px 8px;
  font-size: 1.5rem;
}

#planned_symposia .c_ttl_type03.is_en_en::before{
  top: 12%;
  transform: translateY(-12%);
}

.c_ttl_type03.is_ja::before{
  content: "日本語";
  color: #fff;
  background: #C00000;
  font-weight: bold;
  text-align: center;
	position: absolute;
	right: 5px;
  top: 50%;
  transform: translateY(-50%);
  padding: 2px 8px;
  font-size: 1.5rem;
}
.c_ttl_type03.is_en_ja::before{
  content: "Japanese";
  color: #fff;
  background: #C00000;
  font-weight: bold;
  text-align: center;
	position: absolute;
	right: 5px;
  top: 50%;
  transform: translateY(-50%);
  padding: 2px 8px;
  font-size: 1.5rem;
}

#planned_symposia .c_ttl_type03.is_en_ja::before{
  top: 12%;
  transform: translateY(-12%);
}
/*----------------------------------------------
    .c_ttl_type04
---------------------------------------------*/
.c_ttl_type04 {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 5px 0px;
  color: #333333;
  position: relative;
  border-top: 2px solid #1B4189;
  border-bottom: 1px solid #B5BCC6;
}

/*----------------------------------------------
    .c_ttl_type05
---------------------------------------------*/
.c_ttl_type05 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  position: relative;
  padding-left: 13px;
}
.c_ttl_type05::before {
  content: "";
  height: 5px;
  width: 5px;
  position: absolute;
  border-radius: 50%;
	background: #305AA8;
  top: 0;
  bottom: 0;
	left: 0;
  margin: auto 0;
}
/*----------------------------------------------
  	.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: #5777B1;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
.c_table_type01 th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
  color: #333;
  background: #E2E8F3;
}
.c_table_type01.u_bold th { font-weight: bold; }

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

.c_table_type01 th.is_pdR10,
.c_table_type01 td.is_pdR10 {
  padding: 10px;
  border: 1px solid #ACB7CB;
}

.c_table_type01.is_pd7 th,
.c_table_type01.is_pd7 td {
  padding: 7px;
  vertical-align: middle;
}

.c_table_type01 .is_bg_blue {
  background: #AACDEC;
  color: #333;
}
.c_table_type01 .is_bg_gray {
  background: #E2E8F3;
  color: #333;
}
.c_table_type01 .is_bg_dark {
  background: #5777B1;
}

.c_table_type01 .is_th_middle th {
  vertical-align: middle;
}
.c_table_type01 .is_th_center th {
  text-align: center;
  font-weight: bold;
}
.c_table_type01 .is_th_center_only th {
  text-align: center;
}
.c_table_type01 .is_td_center td {
  text-align: center;
  
}
.c_table_type01 .is_th_bold th {
  font-weight: bold;
}

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

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

.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 #5777B1;
}
.c_table_type03 thead tr{
  border-bottom: 1px solid #ACB7CB;
}

.c_table_type03 th {
  color: #333;
  white-space: pre-wrap;
  font-weight: bold;
  text-align: center;
  border-bottom: #904A86;
}
.c_table_type03 tbody tr:first-child {
	text-align: center;
  padding: 10px;
  border-left: 1px solid #ACB7CB;
  border-right: 1px solid #ACB7CB;
	border-bottom: 1px dotted #ACB7CB;
}
.c_table_type03 th,
.c_table_type03 td {
	text-align: center;
  padding: 10px;
  border-left: 1px solid #ACB7CB;
  border-right: 1px solid #ACB7CB;
}
.c_table_type03 tbody tr:last-child {
	border-bottom: 1px solid #ACB7CB;
}

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

.c_table_type05 {
  width: 100%;
}
.c_table_type05 tr td {
  vertical-align: top;
}
.c_table_type05 tr td:first-of-type {
  white-space: nowrap;
}

/* 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: #335FAF;
	top: 10px;
}

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



.c_list_type01.is_diamond li::before {
	content: "";
  width: 6px;
  height: 6px;
  background: #821875;
  -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: #335FAF;
  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: 200px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: transparent linear-gradient(255deg, #CC79C2 0%, #A44A99 100%);
  border-radius: 5px;
}
a.c_btn_type01.active,
a.c_btn_type01:hover {
  opacity: 0.7;
}

.c_btn_type01.is_gray {
  background: #aaa;
}



.c_btn_type01.is_w180 { width: 180px; min-width: inherit; }
.c_btn_type01.is_w210 { width: 210px;}
.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_w450 { width: 450px; }
.c_btn_type01.is_w485 { width: 485px; }
.c_btn_type01.is_w570 { width: 570px; }


.c_btn_type01.is_word,
.c_btn_type01.is_excel,
.c_btn_type01.is_ppt,
.c_btn_type01.is_pdf {
  background: transparent linear-gradient(256deg, #6E9AEC 0%, #316AD4 100%);
}
.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_pdf.png) no-repeat;
  background-size: 100%;
}

.c_btn_type01.is_lock::after {
  background: url("../images/icon_lock.png") center / cover no-repeat;
  bottom: 0;
  content: "";
  display: block;
  height: 22px;
  left: 10px;
  margin: auto 0;
  position: absolute;
  top: 0;
  width: 22px;
}

.c_btn_type01.is_pdf.is_timetable {
  padding: 20px 20px 20px 30px;
}

.c_btn_type01.is_pdf.is_timetable_en {
  padding: 20px 20px 20px 15px;
}

span.c_btn_type01,
.c_btn_type01.is_disable {
  background: #ccc;
	pointer-events: none;
}
/*----------------------------------------------
	.c_box_type01
---------------------------------------------*/
.c_box_type01 {
  padding: 15px;
  background: #F4FCF7;
  border: 1px solid #7EA791;
}
.c_box_type01_header {
  font-weight: bold;
  color: #5A846A;
  font-size: 1.6rem;
}

/*----------------------------------------------
	.c_box_type02
---------------------------------------------*/
.c_box_type02 {
  padding: 15px;
  border: 2px solid #DDC5DB;
  border-radius: 10px;
}

.c_box_type02_header {
  font-weight: bold;
  color: #9A6B95;
  font-size: 1.6rem;
}

/*----------------------------------------------
	.c_box_type03
---------------------------------------------*/
.c_box_type03 {
  padding: 15px;
  border: 1px solid #ee2b29;
  color: #ee2b29;
  background: #FEEEEE;
}

/*----------------------------------------------
.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_external02.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;
}
a.c_anchor_icon.is_external {
  background: url(../images/icon_external_nav.png) no-repeat right center;
  color: #333333;
  padding: 5px 20px 5px 0;
}
/*----------------------------------------------
.c_g_map
---------------------------------------------*/
.c_g_map{
  text-align: center;
}
.c_g_map iframe{
  border:0;
  width: 100%;
  height: 388px;
}

.c_poster_bnr {
  align-items: center;
  background: #1A2F57;
  border-radius: 5px;
  color: #fff;
  display: flex;
  font-weight: bold;
  justify-content: space-around;
  padding: 10px;
  text-decoration: none;
}
.c_poster_bnr.is_en {
  text-align: left;
}
.c_poster_bnr:hover {
  opacity: .6;
  color: #fff;
}
.c_poster_bnr img {
  max-width: 30%;
}
.c_poster_title {
  background: #DDC5DB;
  color: #6B4767;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  margin: auto;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  width: 345px;
}
.c_poster_title:hover {
  color: #6B4767;
  opacity: .6;
}
.c_poster_image:hover {
  opacity: .6;
}
.c_poster_image img {
  border: 1px solid #ccc;
  max-width: 50%;
}

.c_organization_table tbody tr td:first-of-type {
  min-width: 6em;
  vertical-align: top;
  white-space: nowrap;
}
.c_organization_table tbody tr td:last-of-type {
  padding-left: 1em;
  text-indent: -1em;
  vertical-align: top;
}
.c_organization_en_table tbody tr td:first-of-type {
  min-width: 12em;
  vertical-align: top;
  white-space: nowrap;
}
.c_organization_en_table tbody tr td:last-of-type {
  padding-left: 1em;
  text-indent: -1em;
  vertical-align: top;
}
.c_language_btn {
  background: transparent linear-gradient(85deg, #183E85 0%, #3863B4 100%);
  border-radius: 5px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  padding: 10px 0 10px 10px;
  text-decoration: none;
  width: 110px;
}
a.c_language_btn {
  background: #aaa;
}
a.c_language_btn:hover {
  background: transparent linear-gradient(85deg, #183E85 0%, #3863B4 100%);
  color: #fff;
}

.c_text_ttl {
  color: #313BBB;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.c_program_title{
  font-weight: bold;
  color: #183E85;
}

.c_program_title_02{
  color: #183E85;
}

.c_btn_details{
  display:inline-block;
}
.c_btn_details1 {
  background: #183E85;
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  padding: 2px 30px 2px 15px;
  font-weight: bold;
}

.c_btn_details1:hover{
  opacity: .7;
  cursor:pointer;
}

.c_btn_details1::after {
  background: #183E85;
  content: "▼";
  color: #fff;
/*  padding: 10px 15px;*/
  position: absolute;
  left: 145px;
/*  top: 0;*/
}

#planned_symposia .c_btn_details1::after,
#opencall_symposia .c_btn_details1::after{
  background: #183E85;
  content: "▼";
  color: #fff;
/*  padding: 10px 15px;*/
  position: absolute;
  left: 160px;
/*  top: 0;*/
}

.c_btn_details2 {
  border: 1px solid #ddd;
  padding: 10px 15px;
  position: relative;
  padding-right: 50px;
}


.c_btn_details.open .c_btn_details1::after {
  transform: rotate(-180deg);
}

.c_panel_contents {
  border: 1px solid #ddd;
  display: none;
  padding: 10px 15px;
}

.c_seminar_lunch img {
  max-width: 100%;
}

.c_indent_Participants_en {
  text-indent: -1.4em;
	padding-left: calc(15px + 1.4em);
}

.c_konparu_img {
  border: 1px solid #ddd;
}

.c_box_type01.is_top_greeting {
  margin-top: -16px;
}