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

.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;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  text-align: left;
  position: relative;
  background-color: #7A0000;
}
.c_nav_type01 li.is_gold a {
  background: linear-gradient(90deg, #b39855 0%, #fff9e6 50%, #b39855 100%);
  color: #333;
}

.c_nav_type01 li:hover a,
.c_nav_type01 li.active a{
  font-weight: bold;
  background: linear-gradient(to right, #FF1600, #FFBE54);
  color: #fff;
}

.c_nav_type01 li.photo:hover span,
.c_nav_type01 li.photo.active span{
  font-weight: bold;
  background: linear-gradient(to right, #FF1600, #FFBE54);
  color: #fff;
  cursor: pointer;
}

.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: 10px;
  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,
.c_nav_type01 li.is_lock span::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_lock span::after {
  background: url("../images/icon_lock.png") no-repeat;
}

/*----------------------------------------------
  .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: 16px;
}

.c_nav_type02 li a {
  padding-left: 20px;
}

.c_nav_type02&gt;li {
  display: block;
  font-size: 1.6rem;
  color: #333;
  text-decoration: none;
  text-align: left;
  position: relative;
  /*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_contact_type01
---------------------------------------------*/
.c_contact_type01 {
  background: #ddd;
  width: 100%;
}

.c_contact_type01 .c_contact_header {
  color: #333;
  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: #333;
  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: #333;
  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: #333;
  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: #333;
  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:first-child {
  width: 60%;
}

.c_contact_footer:last-child {
  width: 40%;
}

.c_contact_footer .c_contact_header {
  margin-bottom: 10px;
  /* color: #333; */
  font-size: 1.5rem;
  font-weight: bold;
}

.c_contact_footer .c_contact_details {
  font-size: 1.4rem;
  line-height: 1.7;
}

/*----------------------------------------------
  .c_news_type01
---------------------------------------------*/
.c_news_type01 {
  max-height: 196px;
  overflow-y: auto;
  position: relative;
  font-size: 1.6rem;
}

.c_news_type01::-webkit-scrollbar {
  width: 10px;
}

.c_news_type01::-webkit-scrollbar-track {
  background-color: #efefef;
}

.c_news_type01::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.c_news_type01 dt,
.c_news_type01 dd {
  padding-top: 20px;
}

.c_news_type01 dt {
  float: left;
  clear: left;
  padding-left: 20px;
  font-size: 1.6rem;
}

.c_news_type01 dd {
  word-wrap: break-word;
  padding: 20px 20px 20px 132px;
}

.c_news_type01 dt:not(:first-of-type) {
  margin-top: 2px;
}

.c_news_type01 dd:not(:first-of-type) {
  border-top: 2px dotted #aaa;
}

/*----------------------------------------------
    .c_news_type02
  ---------------------------------------------*/
.c_news_type02 {
  max-height: 216px;
  overflow-y: auto;
  position: relative;
  font-size: 1.6rem;
  color: #333;
}

.c_news_type02 dt {
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  padding: 15px 15px 0;
}

.c_news_type02 dd {
  padding: 5px 15px 15px;
  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: 2.6rem;
  font-weight: bold;
  color: #fff;
  padding: 15px 20px;
  background-color: #7A0000;
  background-image: url(../images/h1_bk.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 65px;
  width: 100%;
  display: flex;
  align-items: center;
}

/*----------------------------------------------
    .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  padding: 8px 15px;
  background: linear-gradient(to right, #B50E18, #000, #000);
}

/*----------------------------------------------
    .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
  font-size: 2rem;
  font-weight: bold;
  color: #594639;
  padding: 6px 13px 3px;
  position: relative;
  border-left: 3px solid #BC3E00;
  background-color: #D2C9C5;
}

/*----------------------------------------------
    .c_ttl_type04
---------------------------------------------*/
.c_ttl_type04 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #003366;
  position: relative;
  border-bottom: 2px solid #003366;
  line-height: 1.7;
}

/*----------------------------------------------
    .c_ttl_type05
---------------------------------------------*/
.c_ttl_type05 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  position: relative;
  padding: 0 20px;
}

.c_ttl_type05::before {
  content: "";
  width: 14px;
  height: 13px;
  position: absolute;
  background-size: contain;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  background-image: url(../images/h5_bk.png);
  background-repeat: no-repeat;
}

/*----------------------------------------------
    .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: #8E8E8E;
  color: #333;
  text-align: center;
}

.c_table_type01 th {
  text-align: center;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
  color: #333;
  background: #EEE;
}

.c_table_type01 th,
.c_table_type01 td {
  padding: 14px;
  border: 1px solid #DDD;text-align: center;
}

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

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

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

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

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

.c_table_type03 th,
.c_table_type03 td {
  text-align: center;
  border-right: 1px solid #CCC;
  border-left: 1px solid #CCC;
  padding: 10px;
}

.c_table_type03 th {
  white-space: pre-wrap;
  font-weight: bold;
  border-bottom: 1px solid #CCC;
}

.c_table_type03 td {
  border-bottom: 1px dotted #CCC;
}

.c_table_type03 tr:last-child td {
  border-bottom: 1px solid #CCC;
}

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

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

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

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

.c_list_type01.is_blinking li::before {
  animation: blinking 1s ease-in-out infinite alternate;
}


/* 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: linear-gradient(to right, #3D007A, #6D00DB);
  border-radius: 5px;
  text-align: center;
}

a.c_btn_type01:hover {
  opacity: 0.4;
}

.c_btn_type01.is_gray {
  background: #aaa;
}

span.c_btn_type01,
.c_btn_type01.is_disable {
  background: #ccc;
  pointer-events: none;
}

.c_btn_type01.is_w250 {
  width: 250px;
}

.c_btn_type01.is_w320 {
  width: 320px;
}

.c_btn_type01.is_w400 {
  width: 400px;
}

.c_btn_type01.is_w500 {
  width: 500px;
}

.c_btn_type01.is_word,
.c_btn_type01.is_excel,
.c_btn_type01.is_ppt,
.c_btn_type01.is_pdf {
  background: linear-gradient(to right, #003D7A, #006DDB);
}

.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_wrap {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 10px 40px;
  justify-content: center;
}

/*----------------------------------------------
  .c_box_type01
---------------------------------------------*/
.c_box_type01 {
  padding: 15px;
  background: #fff;
  border: 1px solid #3D007A;
  
}

.c_box_type01_header {
  font-weight: bold;
  color: #3D007A;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.c_box_type01.is_contact{
  border:1px solid #FF0000;
  background: #FAF4DC;
} 
/*----------------------------------------------
  .c_box_type02
---------------------------------------------*/
.c_box_type02 {
  padding: 15px;
  background: #fff;
  border: 2px solid #003D7A;
  border-radius: 10px;
}

.c_box_type02_header {
  font-weight: bold;
  color: #003D7A;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.c_box_type02.is_yellow {
	border: 2px solid #fcc031;
}

/*----------------------------------------------
  .c_box_type03
---------------------------------------------*/
.c_box_type03 {
  padding: 20px;
  border: 1px solid #FF0000;
  color: #FF0000;
  background-color: #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_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;
}

a.is_external.c_anchor_icon {
  background: #610306 url(../images/icon_external_nav.png) no-repeat right 10px center;
  color: #fff;
  padding: 5px 35px 5px 10px;
}

/* a.is_external.c_anchor_icon:hover {
  background: #610306 url(../images/icon_external_nav_o.png) no-repeat right 10px center;
} */

/* c_side_movie */
.c_side_movie { box-shadow: 0 0 6px rgba(254, 249, 234, .5)}

.c_side_movie video {
  width: 100%;
}

/* c_greeting_prof */
.c_greeting_prof {
  align-items: flex-end;
  margin-bottom: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.c_greeting_prof_text {
  text-align: right;
}

/*----------------------------------------------
  .c_program
---------------------------------------------*/

.c_program_box + .c_program_box {
  margin-top: 30px;
}


.c_program_theme {
  color: #B50E18;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.c_program_table {
  margin-bottom: 10px;
}
.c_program_table + .c_program_table {
  margin-top: 10px;
}

.c_program_table th,
.c_program_table td {
  vertical-align: top;
}

.c_program_table th,
.c_program_table td:first-of-type {
  white-space: nowrap;
}

.c_program_table td:first-of-type {
  min-width: 6em;
}

.c_program_table td:last-of-type {
  padding-left: 1em;
  text-indent: -1em;
}

.c_program_cohost {
  margin-top: 10px;
  text-align: right;
}

.c_nav_program {
  display: flex;
  padding: 0 10px;
  column-gap: 20px;
}

.c_nav_program ul {
  width: 50%;
}

.c_contest_table tbody tr td:first-of-type {
  white-space: nowrap;
  min-width: 6em;
}
.c_contest_table tbody tr td:last-of-type {
  padding-left: 1em;
  text-indent: -1em;
}

.c_award_table tbody tr th,
.c_award_table tbody tr td {
  vertical-align: top;
}
.c_award_table tbody tr th,
.c_award_table tbody tr td:first-of-type {
  white-space: nowrap;
}
.c_award_table tbody tr th {
  font-weight: normal;
  min-width: 3.5em;
/*  padding-left: 1.5em;*/
  padding-top: .2em;
/*  position: relative;*/
}
/*
.c_award_table tbody tr th::after {
  animation: blinking 1s ease-in-out infinite alternate;
  content: "";
  background: url("../images/icon_crown.png") center left / 1em no-repeat;
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: .4em;
  width: 1em;
}
*/
.c_award_table tbody tr td {
  font-size: 2rem;
}
.c_award_table tbody tr td:first-of-type {
  min-width: 6em;
}
.c_award_table tbody tr td:last-of-type {
  padding-left: 1em;
  text-indent: -1em;
}
.c_crown {
  display: inline-block;
  font-size: 2rem;
  padding-left: 1.5em;
  position: absolute;
}
.c_crown::after {
  animation: blinking 1s ease-in-out infinite alternate;
  content: "";
  background: url("../images/icon_crown.png") center left / 1.2em no-repeat;
  display: block;
  height: 1.2em;
  left: 0;
  position: absolute;
  top: .1em;
  width: 1.2em;
}
.c_crown span {
  font-size: 1.6rem;
}
.c_crown:has(span)::after {
  background-size: 1em;
  height: 1em;
  width: 1em;
  top: .25em;
}

 .news_photo{
  color: #FF6D39;
   color: #3867FF;
   border-bottom: 1px solid #3867FF;
   cursor: pointer
  }
  
  .news_photo:hover{
    color: #FF6D39;
    border-bottom: 1px solid #FF6D39;
  }

@keyframes blinking {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
  
 
  
}</pre></body></html>