@charset "utf-8";
/*
サイト上の構成の大枠としてページ内に1度しか出てこないものと、グリッドレイアウトについてを記述します。
We will write about thing the only comes out once on the page as a frame and grid(column) layout.

接頭辞はLayoutの頭文字を取って【l_】とします。
Prefix will take the "Layout" first letter and use it as "l_".

ここで指定するのは以下の様なものと予想されます。
You might use the following.
.l_wrap/.l_container/.l_header/
.l_nav/.l_main/.l_contents/.l_footer

モディファイヤを使用する場合は接頭辞【has_】をつけ、各レイアウトの下に記述します。
When using modifier put the prefix "has_" and write it under each layout.

フォントサイズはremで指定します。
"rem" will be used for font-size.

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

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

/* 小くくりコメントアウト small part */
/*
↑↑↑↑↑↑コメントアウト表記サンプル Comment out sample ↑↑↑↑↑↑
*/
/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap {
	width: 1200px;
	margin: 0 auto;
}



@media screen and (max-width:767px) {
  .l_wrap {
    width: 90%;
  }

}

/*----------------------------------------------
	.l_container
---------------------------------------------*/

/*----------------------------------------------
	.l_header_area
---------------------------------------------*/
.l_header_area {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 2;
}
.l_header_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}
.l_header_top_right {
  display: flex;
  align-items: center;
}
.l_header_top_right p {
  margin-right: 30px;
}

/*----------------------------------------------
	.l_side_contents
---------------------------------------------*/

/*----------------------------------------------
	.l_nav_area
---------------------------------------------*/
#gnav {
	color: #FFFFFF;
	font-size: 15px;
  background: #dd2e19;
}
nav {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#gnav li {
}
#en_la #gnav li {
	width: 200px;
}
#zh_la #gnav li {
	width: 178px;
}
#zh_la #gnav li.results {
	width: 310px;
}
#gnav li  span {
	display: block;
	padding: 3px 0;
}
#gnav li > a {
	color: #FFF;
	/*color: #333;*/
	display: block;
	text-align: center;
	box-sizing: border-box;
	padding: 15px 0 25px 0;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-o-transition: all .2s linear;
  position: relative;
  font-size: 2rem;
}
#gnav li.menu_dropdown > a {
  background-color: transparent;
  color: #FFFFFF;
}
#gnav li.menu_dropdown:hover > a:after {
  display: block;
  content: '';
  width: 100%;
  height: 10px;
  background-color: #FFFFFF;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  animation: gnav .3s ease;
  z-index: 1;
}
@keyframes gnav {
  0% {
    height: 100%;
    opacity: 0;
  }
  50% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 10px;
  }
}

/* ドロップダウン　設定
--------------------------------*/
#gnav {
  position: relative;
}
#gnav .menu_second_level {
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  min-height: 240px;
}
#gnav .menu > li:hover {
  background: #072A24;
  -webkit-transition: all .5s;
  transition: all .5s;
}
#gnav li.menu_dropdown .menu_second_level {
  position: absolute;
  width: 1200px;
  top: 74px;
  right: 0;
  left: 0;
  margin: auto;
  box-sizing: border-box;
  padding: 30px 0;
  -webkit-transition: all .2s .2s ease;
  transition: all .2s .2s ease;
}
#gnav li.menu_dropdown:hover .menu_second_level {
    visibility: visible;
    opacity: 1;
}
#gnav li.menu_dropdown:before {
  content: '';
  width: 100%;
  height: 240px;
  background-color: #FFFFFF;
  position: absolute;
  top: 74px;
  left: 0;
  z-index: 9;
  opacity: 0;	
  visibility: hidden;
  -webkit-transition: all .2s .2s ease;
  transition: all .2s .2s ease;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
#gnav li.seminar.menu_dropdown:before {
/*  height: 490px;*/
}
#gnav li.menu_dropdown:hover:before {
    visibility: visible;
    opacity: 1;
}

/* ドロップダウン　タイトル */
#gnav .menu_second_level .menu_ttl_box {
	background: #dd2e19;
	width: 187px;
	color: #FFF;
	text-align: center;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
	#gnav .menu_second_level .menu_ttl {
		font-weight: bold;
		font-size: 1.8rem;
	}

/* ドロップダウン　子リスト */
#gnav li.menu_dropdown .menu_second_level .menu_box {
	width: 85%;
	display: flex;
	padding-left: 30px;
}
#gnav li.menu_dropdown .menu_second_level .menu_box ul {
  width: 320px;
}
#gnav li.menu_dropdown .menu_second_level .menu_box ul:not(:first-of-type) {
  margin-left: 20px;
}
#gnav li.seminar.menu_dropdown .menu_second_level .menu_box ul {
  margin-left: 20px;
  margin-bottom: 30px;
}
#gnav li.seminar.menu_dropdown .menu_second_level .menu_box p {
  font-size: 18px;
  color: #dd2e19;
}
#gnav li.menu_dropdown .menu_second_level ul > li a,
#gnav li.menu_dropdown .menu_second_level ul > li span {
	text-align: left!important;
	padding: 15px 0;
	color: #333;
	position: relative;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6rem;
  transition: .2s;
}
#gnav li.seminar.menu_dropdown .menu_second_level ul > li a,
#gnav li.seminar.menu_dropdown .menu_second_level ul > li span {
	padding: 10px 0;
}
#gnav li.menu_dropdown .menu_second_level ul > li span {
	color: #A1A1A1;
}
#gnav li.menu_dropdown .menu_second_level ul > li a:before,
#gnav li.menu_dropdown .menu_second_level ul > li span:before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url("../images/icon_menu.png") 0 0 no-repeat;
  z-index: 2;
  margin-right: 10px;
}

#gnav li.menu_dropdown .menu_second_level ul > li a:hover {
  opacity: .7;
}
	/*#gnav li.menu_dropdown .menu_second_level ul li a:hover {
		color: #005cab;
	}*/
.btn_main_nav span {
  position: relative;
}
.btn_main_nav span::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #ffffff;
  border-bottom: 0;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
/*.l_nav_area {
  background: #006660;
  position: relative;
}
.l_nav_area > div {
  width: 1200px;
  margin: 0 auto;
}
.l_nav_area > div .l_menu_first_level {
  display: flex;
  justify-content: space-between;
}
.l_nav_area > div .l_menu_first_level a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  padding: 23px 0 30px 0;
  position: relative;
  font-size: 2rem;
}
.l_nav_area > div .l_menu_first_level a::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #ffffff;
  border-bottom: 0;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}
.l_menu_second_level {
  background: #FFFFFF;
  width: 100%;
  padding: 32px 0;
  position: absolute;
  left: 0;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.l_menu_second_level .l_menu_second_level_wrap {
  width: 1200px;
  margin: 0 auto;
  display: flex;
}
.l_menu_ttl_box {
  background: #006660;
  width: 187px;
  height: 187px;
  color: #FFF;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  position: relative;
  z-index: 2;
  font-weight: bold;
  padding: 80px 0;
  box-sizing: border-box;
  font-size: 2rem;
  margin-right: 40px;
}
.l_menu_box a {
  color: #333333!important;
  font-weight: bold!important;
  padding: 15px 0!important;
  transition: .2s;
}
.l_menu_box a::before {
  content: '';
  background: url("../images/icon_menu.png");
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 10px;
}
.l_menu_box a:hover {
  opacity: .7;
}
.l_menu_second_level a::after {
  content: none!important;
}*/


/*----------------------------------------------
	.l_main_contents
---------------------------------------------*/
.l_mv {
  background: #DCE5E4;
}
.l_mv img {
  width: 100%;
  height: auto;
}
/*.l_co_host {
  background: #FFFFFF;
  padding: 30px 0;
  position: relative;
}*/
.l_co_host {
  background: #FFFFFF;
  column-gap: 10px;
  padding: 20px 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l_co_host div {
  width: 13%;
}
.l_co_host div img {
  width: 100%;
}

/*----------------------------------------------
	.l_news_area
---------------------------------------------*/
.l_news_area {
  background: url("../images/bg_green_top.png") no-repeat top #E0F0E2;
  background-size: cover;
  padding: 80px 0;
}

/*----------------------------------------------
	.l_contents_area
---------------------------------------------*/
.l_contents_area {
  background: linear-gradient(#0f948c 0%, #006660 100%);
  padding: 80px 0 50px 0;
}

/*----------------------------------------------
	.l_sponsor_area
---------------------------------------------*/
.l_sponsor_area {
  background: url("../images/bg_green_top.png") no-repeat top center,url("../images/bg_green_bottom.png") no-repeat bottom center, #D5EBE1;
  /*background: #FFFFFF;*/
  padding: 80px 0;
}
/*.l_sponsor_platinum {
  display: flex;
  justify-content: center;
  align-items: center;
}*/
.l_sponsor_box {
  background: #f7f6f5;
  padding: 30px 0;
}

.l_sponsor_box a {
  /*background: #fff;*/
  display: block;
}

.l_sponsor_box a[href^="https://"] img {
  border: 1px solid #ccc;
}

.l_sponsor_box .l_sponsor_platinum a[href^="https://"] img {
  width: 236px;
/*  height: 59.5px;*/
}

.l_sponsor_box .l_sponsor_gold a[href^="https://"] img {
  width: 202px;
/*  height: 51px;*/
}

.l_sponsor_box .l_sponsor_silver a[href^="https://"] img {
  width: 185px;
  height: 63px;
}

.l_sponsor_box .l_sponsor_bronze a[href^="https://"] img {
  width: 169px;
/*  height: 42.52px;*/
}


.l_sponsor_platinum .c_ttl_type02 {
  text-align: center;
}
.l_sponsor_platinum div {
  display: flex;
  justify-content: center;
}
.l_sponsor_platinum div p {
/*  width: 14%;*/
  margin: 0 10px;
}
.l_sponsor_platinum div p img {
  width: 100%;
}
.l_sponsor_gold div,
.l_sponsor_silver div,
.l_sponsor_bronze div{
  align-items: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap:10px;
}
.l_sponsor_gold div p {
/*  width: 12%;*/
/*  margin: 0 1% 0 0;*/
}
.l_sponsor_gold div p img {
  width: 100%;
}
.l_sponsor_subbox {
  display: flex;
  justify-content: space-around;
  align-content: center;
}
.l_sponsor_silver div p {
/*  width: 22%;*/
  margin: 0 10px 0 10px;
}
.l_sponsor_silver div p img {
  width: 100%;
}
.l_sponsor_bronze div p {
/*  width: 20%;*/
/*  margin: 0 10px 0 10px;*/
}
.l_sponsor_bronze div p img {
  width: 100%;
}

/*----------------------------------------------
	.l_secretariat_area
---------------------------------------------*/
.l_secretariat_area {
  background: #FFFFFF;
  padding: 80px 0;
}
.inner .l_secretariat_area {
  background: #F5F5F5;
}

/*----------------------------------------------
	.l_btn_area
---------------------------------------------*/
.l_btn_area {
  background: linear-gradient(#0f948c 0%, #006660 100%);
  padding: 80px 0;
}
.l_btn_area > div > div {
  display: flex;
  flex-wrap: wrap;
}
.l_btn_area a {
  transition: .2;
}
.l_btn_area a:hover {
  opacity: .7;
}

/*----------------------------------------------
	.l_inner_main
---------------------------------------------*/
.l_inner_main {
  background: url("../images/bg_inner_top.png") no-repeat top left, #FFFFFF;
  padding: 30px 0 60px 0;
}

.l_pankuzu_area ul {
  display: flex;
  flex-wrap: wrap;
}
.l_pankuzu_area ul li:not(:last-of-type)::after {
  content: '>';
  margin-right: 5px;
}
.l_pankuzu_area ul li a {
  margin-right: 5px;
}


/*----------------------------------------------
  .l_footer_area
---------------------------------------------*/
.l_footer_area {
  background: -webkit-linear-gradient(#002f2d 0%, #001514 100%);
  background: -o-linear-gradient(#002f2d 0%, #001514 100%);
  background: linear-gradient(#002f2d 0%, #001514 100%);
  padding: 80px 0 0;
  color: #FFFFFF;
}

/*----------------------------------------------
  .l_copyright
---------------------------------------------*/
.l_copyright {
  text-align: right;
  color: #B3BFBF;
  font-size: 1.4rem;
  padding: 15px 0;
  border-top: 1px solid #B3BFBF;
  margin-top: 80px;
}

/*----------------------------------------------
  .l_pagetop
---------------------------------------------*/
.l_pagetop {
  position: fixed;
  right: 25px;
  bottom: 50px;
	z-index: 99;
}
.l_pagetop a{
	line-height: 0;
	display: block;
}
.l_pagetop img {
  width: 50px;
}
.l_pagetop img:hover {
	opacity: 0.9;
}
.l_pagetop.attached {
    position: absolute;
    bottom: 0;
}

