@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%;
}

↓↓↓↓↓↓コメントアウト表記サンプル Comment out sample ↓↓↓↓↓↓
*/
/*----------------------------------------------
	大くくりコメントアウト large part
---------------------------------------------*/

/*  中くくりコメントアウト middle part
------------------------------------- */

/* 小くくりコメントアウト small part */
/*
↑↑↑↑↑↑コメントアウト表記サンプル Comment out sample ↑↑↑↑↑↑

*/

/*----------------------------------------------
	common
---------------------------------------------*/
/*.c_kome_type01*/
.c_kome_type01 {
  text-indent: -1em;
  padding-left: 1em;
}
.c_kome_type02 {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.c_kome_type03 {
  text-indent: -.8em;
  padding-left: .8em;
}
.c_kome_type04 {
  text-indent: -1.3em;
  padding-left: 1.3em;
}

/*----------------------------------------------
	txt
---------------------------------------------*/
/*.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;
}
.swiper a[href^="http://"].c_anchor_icon,
.swiper a[href^="https://"].c_anchor_icon {
  background: url("../images/icon_external_white.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;
}

/*----------------------------------------------
	lnk
---------------------------------------------*/

/*----------------------------------------------
	img
---------------------------------------------*/

/*----------------------------------------------
	ttl
---------------------------------------------*/
.c_ttl_type01 {
  color: #006660;
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 10px solid;
  border-image: linear-gradient(to right, #006660, #2DC2AE) 1;
}
.c_ttl_type02 {
  text-align: center;
}
.c_ttl_type02 span {
  color: #004385;
  font-size: 4rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  text-align: center;
}
.c_ttl_type02.is_small span {
  font-size: 2rem;
}
/*.c_ttl_type02.is_small.is_platinum span {
  color: #E5C27B;
}*/
.c_ttl_type02.is_small.is_gold span {
  color: #9A9A37;
}
.c_ttl_type02.is_small.is_silver span {
  color: #aaa;
}
.c_ttl_type02.is_small.is_bronze span {
  color: #b2806e;
}
.c_ttl_type02 span::before {
  content: '';
  background: url("../images/icon_ttl_left.png");
  display: inline-block;
  width: 70px;
  height: 9px;
  position: absolute;
  left: -85px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
.c_ttl_type02 span::after {
  content: '';
  background: url("../images/icon_ttl_right.png");
  display: inline-block;
  width: 70px;
  height: 9px;
  position: absolute;
  right: -85px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
.c_ttl_type02.is_small span::before,
.c_ttl_type02.is_small span::after {
  width: 35px;
  height: 4.5px;
}
.c_ttl_type02.is_small span::before {
  left: -45px;
}
.c_ttl_type02.is_small span::after {
  right: -45px;
}
.en footer .c_ttl_type02 span {
  font-size: 3.4rem;
}
.c_ttl_type03 {
  border-bottom: 2px solid #005895;
  text-align: center;
}
.c_ttl_type03 span {
  background: #005895;
  padding: 5px 10px 4px;
  color: #FFFFFF;
  font-size: 2rem;
  position: relative;
}
.c_ttl_type03 span::before {
  content: '';
  background: url("../images/icon_ttl03_left.png");
  display: inline-block;
  height: 34px;
  width: 30px;
  background-size: cover;
  position: absolute;
  right: 100%;
  top: 0;
}
.c_ttl_type03 span::after {
  content: '';
  background: url("../images/icon_ttl03_right.png");
  display: inline-block;
  height: 34px;
  width: 30px;
  background-size: cover;
  position: absolute;
  left: 100%;
  top: 0;
}
.c_ttl_type04 {
  font-size: 1.8rem;
  border-left: 8px solid #005895;
  font-weight: bold;
  padding-left: 10px;
}
.c_ttl_type05 {
  font-size: 1.6rem;
  color: #005895;
  font-weight: bold;
}
.c_ttl_type05 span{
  font-size: 1.4rem;
  background: #005895;
  color: #FFFFFF;
  padding: 2px 5px;
  text-align: center;
  font-weight: bold;
}

.c_ttl_type06 {
  font-size: 2.1rem;
  background: #005895;
  color: #FFFFFF;
  padding: 2px 5px;
  text-align: center;
  font-weight: bold;
}

.c_ttl_type06.is_npi{
  padding:15px;
  background: linear-gradient(90deg, rgba(57, 210, 248, 1), rgba(48, 97, 96, 1));
  font-size: 3.5rem;
}

.c_ttl_type07 {
  color: #FFFFFF;
  text-align: center;
  font-weight: bold;
  padding:15px;
  background: linear-gradient(90deg, #ee85a9, #F44336);
  font-size: 3.5rem;
}

.c_ttl_type08 {
  color: #FFFFFF;
  text-align: center;
  font-weight: bold;
  padding:15px;
  background: linear-gradient(90deg, #8BC34A, #009688);
  font-size: 3.5rem;
}

.c_ttl_type09 {
  font-size: 150%;
    margin-top: 4rem;
    padding: 0 0 5px 0;
    border: none;
    border-bottom: 2px solid #005895;
}

/*----------------------------------------------
	lst
---------------------------------------------*/
/*.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: #005895;
  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: #005895;
}

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

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

.c_list_type01.is_diamond li::before {
	content: "";
  width: 6px;
  height: 6px;
  background: #005895;
  -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: #005895;
  vertical-align: unset;
  top: 0;
}
/*.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;
}

/*----------------------------------------------
	box
---------------------------------------------*/
/*.c_box_type01*/
.c_box_type01 {
  padding: 20px;
  background: #E0F0E2;
  border: 1px solid #008038;
}
.c_box_type01_header {
  font-weight: bold;
  color: #008038;
  font-size: 1.6rem;
}

.is_w750 {
  width: 750px;
}

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

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

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

/*.c_box_type03*/
.c_box_type04 {
  padding: 25px;
  background: #f0f0f0;
  border: 1px solid #AAAAAA;
}


/*.c_box_info*/
.c_box_info {
  margin:0 0 30px;
  padding: 25px;
  background: #FFFFFF;
  border: 3px solid #ee2b29;
  font-size:3.5rem;
  color: #ee2b29;
  font-weight: bold;
  text-align: center;
}


.c_box_type05_header{
  background:#333;
  color: #fff;
  padding: 5px;
  border-radius: 10px 10px 0 0;
  text-align: center;
}

.c_box_type05 {
  background: #fff;
  border-radius:0 0 10px 10px;
  width: 480px;
  padding: 20px;
  text-align: center;
box-shadow: 7px 0px 27px -13px #777777;
}

.c_box_type05 .txt{
 display:inline-block;
  text-align: left;
}
.c_box_type06 {
  padding:30px;
  background: #fff;

  border-radius:10px;
  text-align: center;
box-shadow: 7px 0px 27px -13px #777777;
  width: 85%;
  margin: 0 auto;
  
}
.c_box_type06 .txt{
  display:inline-block;
  text-align: left;
}
/*----------------------------------------------
	tbl
---------------------------------------------*/
/*.c_table_type01*/
.c_table_type01 {
  width: 100%;
  background: #FFFFFF;
  word-break: break-word;
}
.c_table_type01.is_w50 {
  width: 50%;
  word-break: break-word;
}
.c_table_type01 thead th {
  background: #00AF7E;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
.c_table_type01 th {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  color: #333;
  background: #FBEAE9;
}
.c_table_type01.is_gray th {
  background: #f1f1f1;
}
.c_table_type01 th,
.c_table_type01 td {
  padding: 14px;
  border: 1px solid #ddd;
}
.c_table_type01 .is_th_middle th {
  vertical-align: middle;
}
.c_table_type01 th.u_al_center,
.c_table_type01 td.u_al_center{
  text-align: center;
}
/*.c_table_type02*/
.c_table_type02 {
  width: 100%;
}
.c_table_type02 tr {
  border-bottom: 1px dotted #CCCCCC;
}
.c_table_type02 tr:first-of-type{
  border-top: 1px dotted #CCCCCC;
}

.c_table_type02 th {
  color: #333333;
}

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

/*.c_table_type03*/
.c_table_type03 {
  width: 100%;
}
.c_table_type03 thead th {
  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: #333;
}
.c_table_type03 .is_th_middle th {
  vertical-align: middle;
}
.c_table_type03 th.u_al_center {
  text-align: center;
}


.c_table_type01.is_visitors th {
  text-align: center;
  vertical-align: middle;
}

.c_table_type01.is_visitors thead th {
  font-weight: normal;
}



.c_weather img {
  max-width: 100%;
  width: 50px;
}

/*----------------------------------------------
	btn
---------------------------------------------*/
/*.c_btn_type01*/
.c_btn_type01 {
  display: inline-block;
  padding: 20px;
  min-width: 240px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: linear-gradient(#ffa238 0%, #f28100 100%);
  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,
.c_btn_type01.is_external {
  background: linear-gradient(#ffa238 0%, #f28100 100%);
}
.c_btn_type01.is_blue {
  background: linear-gradient(#376db8 0%, #104c8d 100%);
}
.c_btn_type01.is_green {
  background: #156082;
}
.c_btn_type01.is_student {
  background: #57A6D6;;
}

.c_btn_type01.is_gray {
  background: #aaa;
}

.c_btn_type01.is_disavle {
    background: #ccc;
	pointer-events: none;
}

span.c_btn_type01,
.c_btn_type01.is_disable {
  background: #ccc;
	pointer-events: none;
}
.c_btn_type01.is_w200 {
  min-width: auto;
  width: 200px;
}
.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,
.c_btn_type01.is_external::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_external::before {
  background: url(../images/icon_btn_external.png) no-repeat;
  background-size: 100%;
}
.c_btn_type02 {
  display: inline-block;
  padding: 10px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: linear-gradient(#ffa238 0%, #f28100 100%);
  border-radius: 5px;
  text-align: center;
}
a.c_btn_type02:hover {
  opacity: .7;
}

.c_btn_ex a,
.c_btn_ex span{
  background: #006660;
  padding: 20px 25px;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 10px;
  display: block;
  font-weight: bold;
  transition: .2s;
}
.c_btn_ex.is_disable a {
  background: #ccc;
  pointer-events: none;
}
.c_btn_ex span {
  background: #ccc;
}
.c_btn_ex a:hover {
  opacity: .7;
}
.c_btn_ex a::before,
.c_btn_ex span::before{
  content: '';
  background: url("../images/icon_key.png");
  display: inline-block;
  background-size: cover;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: relative;
  top: 3px;
}
.c_btn_la {
  display: flex;
  border: 2px solid #006660;
  border-radius: 25px;
  height: 44px;
  position: relative;
  transition: .2s;
}
.c_btn_la::before {
  content: '';
  display: inline-block;
  background: #006660;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -9;
}
.en .c_btn_la::before {
  left: inherit;
  right: 0;
}
.c_btn_la a,
.c_btn_la span{
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  padding: 10px 0;
  text-decoration: none;
  font-weight: bold;
  color: #006660;
}
.c_btn_la .active {
  color: #FFFFFF;
}
.c_btn_la a:hover {
  opacity: .7;
}

/*----------------------------------------------
	c_news
---------------------------------------------*/
.c_news_box {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 40px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}
.c_news_ttl {
  color: #3FB266;
  font-size: 4rem;
  font-weight: bold;
  border-bottom: 2px solid #3FB266;
}
.c_news_ttl span {
  color: #333;
  font-size: 1.8rem;
  font-weight: bold;
}
.c_news_type01 {
  max-height: 250px;
  overflow-y: auto;
  position: relative;
  font-size: 1.5rem;
  color: #333333;
	border-top: none;
}
.c_news_type01 dt,
.c_news_type01 dd {
  padding-top: 30px;
}
.c_news_type01 dt {
  float: left;
  clear: left;
  padding-left: 20px;
  color: #989898;
}
.c_news_type01 dd {
  padding-left: 132px;
  word-wrap: break-word;
  padding-right: 20px;
  padding-bottom: 30px;
}
.c_news_type01 dt:not(:first-of-type) {
  margin-top: 2px;
}
.c_news_type01 dd:not(:first-of-type) {
  border-top: 1px solid #ccc;
}


/*----------------------------------------------
	c_contents
---------------------------------------------*/
.c_contents_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c_contents_btn {
  width: 30%;
}
.c_contents_btn a {
  display: block;
  background: #FFFFFF;
  border: 2px solid #002F2D;
  padding: 30px 0;
  color: #006660;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  transition: .2s;
}
.c_contents_btn a:hover {
  opacity: .7;
}


/*----------------------------------------------
	c_sponsor
---------------------------------------------*/
.c_sponsor_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c_sponsor_box.is_col3 p {
  width: 31%;
}
.c_sponsor_box.is_col4 p {
  width: 23%;
}
.c_sponsor_box.is_col3 p img {
  width: 100%;
}
.c_sponsor_box02 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.c_sponsor_box02 p:not(:nth-of-type(3n)) {
  margin-right: 30px;
}


/*----------------------------------------------
	c_secretariat
---------------------------------------------*/
.c_secretariat_box {
  display: flex;
  justify-content: center;
}
.c_secretariat_box div:first-of-type {
  margin-right: 60px;
}
.c_secretariat_box div:last-of-type {
  margin-left: 60px;
}
.c_secretariat_box p {
  text-align: center;
}


/*----------------------------------------------
	c_footer
---------------------------------------------*/
.c_footer_box {
  display: flex;
  justify-content: space-between;
}
.c_footer_box.is_col3 .c_footer_menu {
  width: 31%;
}
.c_footer_menu_ttl {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 15px;
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
}
.c_footer_menu_ttl::after {
  content: '';
  background-color: #FFFFFF;
  flex-grow: 1; /* 横幅いっぱい */
  height: 1px;
  display: inherit;
  margin-left: 15px;
}
.c_footer_menu_ttl a {
  text-decoration: none;
  transition: .2s;
  color: #FFFFFF;
}
.c_footer_menu_ttl a:hover {
  opacity: .7;
}
.c_footer_menu_ttl02 {
  color: #B3BFBF;
  font-weight: bold;
}
.c_footer_menu_list li {
  position: relative;
  margin-bottom: 10px;
  transition: .2s;
  text-indent: -.8em;
  padding-left: .8em;
}
.c_footer_menu_list li a:hover {
  opacity: .7;
}
.c_footer_menu_list li::before {
  content: '-';
  color: #B3BFBF;
  margin-right: 5px;
}
.c_footer_menu_list li a,
.c_footer_menu_list li span{
  color: #B3BFBF;
  text-decoration: none;
  font-size: 1.4rem;
}
.c_footer_menu_list li span {
  color: #C3C3C3;
  opacity: .5;
}
.c_footer_menu_list li span:hover {
  color: #C3C3C3;
  opacity: .5!important;
}
.c_footer_box02 {
  display: flex;
  justify-content: space-between;
}
.c_footer_box02 div {
  width: 49%;
}


/*----------------------------------------------
	c_outline
---------------------------------------------*/
.c_outline_box {
  display: flex;
  justify-content: center;
}
.c_outline_box div {
  width: 150px;
  text-align: center;
}
.c_outline_box02 {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 2px solid #005895;
  margin-bottom: 30px;
}
.c_outline_box02 div {
  width: 250px;
  margin-right: 50px;
}
.c_outline_box02 div img {
  width: 100%;
  max-width: 250px;
  max-height: 90px;
  margin-right: 20px;
}

.c_bnr:hover{
  opacity: 0.7;
}
/*----------------------------------------------
	c_dl_box
---------------------------------------------*/
.c_dl_box {
  display: flex;
}
.c_dl_box div:first-of-type {
  margin-right: 20px;
}
.c_dl_box div img {
  border: 1px solid #CCCCCC;
}
.c_dl_btn_box {
  display: flex;
  flex-wrap: wrap;
}
.c_dl_btn_box p {
  margin-right: 10px;
}

.c_arrow {
  display: inline-block;
  width: 73.5px;
  height: 80px;
  background: #c1224a;
  clip-path: polygon(0 63.2%, 31% 63.2%, 31% 0, 69% 0, 69% 63.2%, 100% 63.2%, 50% 100%);
}

.c_reason{
  display: flex;
  color: #fff;
  font-size: 2rem;
  background: #c1224a;
  padding: 30px 0px;
  border-radius: 100px;
  width: 70px;
  height: 70px;
  justify-content: center;
  align-items: center;
}

.c_npi_area{
  background: #d5e3eb;
  padding: 20px;
}

.c_student_box{
    text-align: center;
    margin-bottom: 2rem;
    padding: 20px;
    width: 750px;
    display: inline-block;
}
.c_student_box.is_pink{
    color: #fff;
    background: linear-gradient(to right, rgba(229, 19, 115, 1) 0%, rgba(231, 62, 163, 1) 100%);
}

.c_student_box.is_blue{
    color: #fff;
    background: linear-gradient(to right, rgba(55, 99, 162, 1) 0%, rgba(70, 155, 176, 1) 100%);
}

.is_title{
    display: inline-block;
    font-size: 80%;
    color: #005895;
    vertical-align: middle;
    margin-right: 10px;
    padding: 5px;
    border: 1px solid #005895;
  background: #fff;
}

.clearfix {
    display: block;
}
.press dl {
    margin-top: 1em;
    margin-bottom: 2em;
}
.press dl dt {
    clear: left;
    float: left;
}
.press dl dd:last-child {
    border: 0;
}
.press dl dd {
    padding: 0 0 0.5em 9em;
    margin-bottom: 0.5em;
    border-bottom: 1px dotted #CCC;
}
.press dd {
    /* width: 190px; */
    padding-left: 23px;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.press dl dd a.movie {
    padding-left: 20px;
    background: url("../../press/images/download.gif") 0 0 no-repeat;
    text-decoration: none;
}

.btn {
    text-align: center;
}
.btn:hover {
    opacity: .4;
}
.press .btn a {
    display: table;
    font-size: 120%;
    text-align: center;
    font-weight: bold;
    color: #000;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #d6004b;
    border-radius: 3px;
    text-decoration: none;
}
.btn a {
    background-color: #57A6D6;
    color: #fff;
    padding: 10px 30px;
}

.c_academic_list,
.c_award_list{
  padding: 30px 20px 30px 110px;
  border-bottom: 1px dotted #999;
}

.c_award_comment{
  padding: 10px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  margin-top: 15px;
}

.c_academic_list li dl dt,
.c_award_list li dl dt {
    padding-bottom: 20px;
    font-size: 1.5em;
}
  
  .c_academic_list li dl dd,
  .c_award_list li dl dd {
    text-align: right;
}
.c_academic_list li {
    background: url("../../academic_award/images/academic_medal.png")20px 30px no-repeat;
    background-repeat: no-repeat;
    padding: 30px 20px 30px 110px;
    border-bottom: 1px dotted #999;
}

.c_award_list li {
    background: url("../../jpca_award/images/award_medal.png")20px 30px no-repeat;
    background-repeat: no-repeat;
    padding: 30px 20px 30px 110px;
    border-bottom: 1px dotted #999;
}
.c_academic_list li:last-of-type,
.c_award_list li:last-of-type{
     border-bottom: none;
}