@charset "UTF-8";
/*-----------------------------------------------
__Header
-----------------------------------------------*/
header{
	position: relative;
	width: 100%;
	background: #fff;
}
header .fl_box{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 100px 15px 15px ;
}

header .logo{
	height: 70px;
	display: flex;
	align-items: center;
}
header .logo h1{
	height: 50px;
	margin-left: 20px;
}
header .logo img{
	height: 100%;
	width: auto;
}

/*-----------------------------------------------
__Global Navi
-----------------------------------------------*/
header ul.pc_only{
	width: 100%;
	display: flex;
	justify-content: flex-end;
	margin: 0 auto;
}
header ul.pc_only > li{
	margin-left: 2em;
}
header ul.pc_only a{
	font-size: 90%;
	font-weight: bold;
	color:#333;
}
header ul a span{
	display: inline-block;
}
header ul a:hover span{
	animation: btn_hover 0.7s forwards 0s;
}

#gl_nv li{
	margin-bottom: 20px;
}
#gl_nv a{
	display: block;
	font-size: 120%;
	font-weight: bold;
	color:#333;
	position: relative;
	padding: 10px 0 10px 30px;
}
#gl_nv a::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: #31317A;
	border-radius: 50%;
	transition:all ease .3s .3s;
}
#gl_nv a:hover::before{
	background: #F46A53;
}

.nav {
	box-sizing: border-box;
    position: fixed;
    right: -51%;
    top: 0;
    width: 20%;
    height: 100vh;
    background-color: #fff;
	padding: 80px 100px 30px 30px;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: fixed;
    right: 15px;
    top: 25px;
    width: 60px; /* クリックしやすい幅 */
    height: 60px; /* クリックしやすい高さ */
    cursor: pointer;
	border-radius: 50%;
    z-index: 300;
    background: #F46A53;
  }
  .hamburger::after{
      position: absolute;
      content: "MENU";
      color: #fff;
    font-size: 0.5em;
	letter-spacing: 0.05em;
      left: 50%;
      bottom: 15%;
      transform: translateX(-50%);
      transition: all .5s;
  }
  .hamburger_border {
    position: absolute;
	top: 35%;
    left: 50%;
	transform: translateX(-50%);
    width: 40%;
    height: 10px;
	position: relative;
  }
  .hamburger_border span{
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	transition: all .5s;
  }
  .hamburger_border_top {
    top: 0;
	border-top: 2px solid #fff;
  }
  .hamburger_border_bottom {
    bottom: 0;
	border-bottom: 2px solid #fff;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger::after{
      content: "CLOSE";
      transition: all .5s;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 35%;
    transition: all .5s;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 35%;
    transition: all .5s;
  }


/*-----------------------------------------------
__Main
-----------------------------------------------*/
main h2{
	font-size: 150%;
	margin: 1em 0;
}
main h2 small{
	background: #31317A;
	color: rgba(255,255,255,0.8);
	font-weight: normal;
	font-size: 50%;
	display: table;
	min-width: 100px;
	text-align: center;
	position: relative;
	padding: 5px 10px;
	margin-bottom: 30px;
}
main h2.ta_center small{
	margin: 0 auto 30px auto;
}
main h2 small::after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -7px;
	transform: translateX(-50%);
	width:0;
	height:0;
	border-style:solid;
	border-width: 7px 9px 0 9px;
	border-color: #31317A transparent transparent transparent;
}
main h3{
	color: #31317A;
	font-size: 130%;
	margin-bottom: 1em;
}

.btn a{
	display: table;
	border-radius: 50px;
	padding: 30px;
	min-width: 260px;
	background: #F46A53;
	color: #fff;
	text-decoration: none;
	text-align: center;
	font-size: 90%;
	position: relative;
	line-height: 1;
}
.btn a:hover{
	background-color: #31317A;
}
.btn a::after{
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	background: url(/entre/re2024/images/icon_arrow.svg) no-repeat;
	background-size: contain;
	background-position: center;
}
.btn a:hover::after{
	animation: btn_hover_after .7s forwards 0s;
}
@keyframes btn_hover_after{
	0%{
		opacity: 0;
	}
	75%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

.btn a span{
	display: inline-block;
}
.btn a:hover span{
	animation: btn_hover 0.7s forwards 0s;
}
@keyframes btn_hover{
	0%{
		transform: translateY(0);
	}
	35%{
		opacity: 0;
		transform: translateY(10px);
	}
	75%{
		opacity: 0;
		transform: translateY(-10px);
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
}

.btn_s a{
	font-size: 90%;
	display: table;
	position: relative;
	padding-left: 20px;
	line-height: 1;
	text-decoration: none;
	color: #333;
}
.btn_s a::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width:8px;
	height: 8px;

	background: #F46A53;
	border-radius: 50%;
}
.btn_s a:hover::before{
	animation: btn_hover_after .7s forwards 0s;
}
.btn_s.ta_right a{
	margin-right: 0;
	margin-left: auto;
}
.btn_s a span{
	display: inline-block;
}
.btn_s a:hover span{
	animation: btn_hover 0.7s forwards 0s;
}
.bg{
	background: #fcf9f2;
}
/*-----------------------------------------------
__Edit
-----------------------------------------------*/
.edit h1{
	font-size: 2rem;
	margin: 40px 0;
}

/*-------- table ------------*/
.edit table{
	width: 100%;
	max-width:100% !important;
	margin: 15px 0 ;
}
table.ta_center td,
table.ta_center th,
table td.ta_center,
table th.ta_center{
	text-align: center;
}
.edit table{
	border: 1px solid #ddd;
}
.edit table td,
.edit table th{
	border: 1px solid #ddd;
	padding: 15px;
}
.edit table th,
.edit table thead td{
	background: #fcf9f2;
	font-weight:bold;
	color:#31317A;
}

/*-------- list ------------*/
.edit :not(ul.fl_box) li{
	position: relative;
	margin-bottom: 0.25em;
}
.edit li ul:not(.fl_box),
.edit li ol{
	margin-left: 1em;
}
.edit ul:not(.fl_box),
.edit ol{
	box-sizing: border-box;
	margin: 15px auto;
}
.edit ul:not(.fl_box) > li:last-of-type,
.edit ol > li:last-of-type{
	margin-bottom: 0;
}

.edit ul:not(.fl_box) > li::before,
.edit ol > li::before{
	position: absolute;
	
}
.edit ul:not(.fl_box) > li{
	padding-left: 1.85em;
	position:relative;
}
.edit ul:not(.fl_box) > li::before{
	content: "";
	top: 0.7em;
	left: 0.65em;
	
	width: 4px;
	height: 4px;
	border-radius: 100%;
	background: #333
}
.edit ol{
	counter-reset:list;
}
.edit ol > li{
	padding-left: 1.85em;
	position:relative;
}
.edit ol > li::before{
	counter-increment: list;
	content: counter(list);
	top: 0.2em;
	left: 0;
	
	width: 1.5em;
	height: 1.5em;
	background: #f5f5f5;
	text-align: center;
	font-size: 0.9em;
	font-weight: bold;
}

/*-----------------------------------------------
__Lower
-----------------------------------------------*/
#lower #page_title{
	background: #FFCC57;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}
#lower #page_title .wrap{
	display: flex;
	align-items: center;
	justify-content: center;
}
#lower #page_title .wrap::after{
	content: "";
	position: absolute;
	left: 15%;
	bottom: 0;
	pointer-events: none;
	width: 100%;
	height: 100%;
	background: url(/entre/re2024/images/mark_tongali.svg) no-repeat;
	background-size: auto 100%;
	opacity: 0.15;
	animation: mark 0.5s linear 0s;
}
#lower #page_title h1{
	text-align: center;
	font-size: 2rem;
	line-height: 1.2;
	color: #31317A;
	z-index: 1;
	animation: txt_box 0.5s forwards 0.7s;
	opacity: 0;
}
#lower #main_contents{
	padding: 100px 0;
}

/*news*/
#lower .news_list{
	flex-wrap:wrap;
}
#lower .news_list article{
	width: 30%;
	margin-bottom: 60px;
}
#lower .news_list article a{
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: #333;
}
#lower .news_list article figure{
	aspect-ratio: 3 / 2;
	overflow: hidden;
	position: relative;
	border: 1px solid rgba(49, 49, 122, 0.2);
}
#lower .news_list article figure::after{
	content: "";
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 1;
	width: 45px;
	height: 45px;
	background-color: #31317A;
	border-radius: 50%;
	background-image: url(/entre/re2024/images/icon_arrow.svg);
	background-repeat: no-repeat;
	background-size: 30%;
	background-position: center;
}
#lower .news_list article figure img.img-ofi{
	object-position: center top;
	transition: all ease .5s;
}
#lower .news_list article a:hover figure img{
	transform: scale(1.1);
}
#lower .news_list article dl{
	margin: 15px 0 2em;
	transition: all ease .3s;
}
#lower .news_list article dd{
	font-size: 80%;
	margin-bottom: 1em;
}
#lower .news_list article dt{
	font-size: 120%;
	font-weight: bold;
	line-height: 1.2;
}
#lower .news_list article a p{
	margin-bottom: 0;
	margin-top: auto;
	color: #31317A;
	font-size: 90%;
	opacity: 0.7;
	transition: all ease .3s;
}
#lower .news_list article a:hover dl,
#lower .news_list article a:hover p{
	opacity: 0.5;
}

#lower .page_nav{
	display: flex;
	flex-wrap: wrap;
	gap: 10px 5px;
	justify-content: center;
	align-items: center;
	margin: 0 auto 60px ;
}
#lower .page_nav > li a,
#lower .page_nav > li span{
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #ddd;
	color:#333;
	text-decoration: none;
	text-align: center;
	padding: 5px;
	line-height: 1;
	letter-spacing: 0.01em;
	font-size: 90%;
	width: 46px;
	height: 46px;
	box-sizing: border-box;
	border-radius: 50%;
}
#lower .page_nav > li span.current_page{
	background: #31317A;
	border-color: #31317A;
	color: #fff;
}
#lower .page_nav > li a.link_next,
#lower .page_nav > li a.link_before{
	width: auto;
	height: auto;
	border:none;
	opacity: 0.7;
	margin:0 10px;
}
#lower .page_nav > li a.link_next:hover,
#lower .page_nav > li a.link_before:hover{
	opacity: 0.5;
}

#lower h2.entry_title{
	margin-bottom: 60px;
	line-height: 1.4;
}
#lower.entry #main_contents > .btn a{
	margin: 0 auto;
}
#lower .video_list article{
	display: flex;
	width: 90%;
	justify-content: space-between;
	margin:0 auto;
}
#lower .video_list h3{
	width: 38%;
}
#lower .video_list .video_wrap{
	width: 58%;
}

.video_wrap{
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
}
.video_wrap iframe{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#lower .about_dl{
	margin-top:60px;
}
#lower .about_dl dl{
	width: 31%;
}
#lower .about_dl dt{
	background: #31317A;
	color: #fff;
	padding: 10px 15px;
	margin-bottom: 30px;
	font-weight: bold;
	font-size: 110%;
	text-align: center;
}
#lower .about_dl dd figure{
	text-align: center;
}

#lower .teachers_list article{
	width: 47%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#lower .teachers_list article figure{
	width: 32%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}
#lower .teachers_list article figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#lower .teachers_list article dl{
	width: 64% ;
}
#lower .teachers_list article dt{
	font-size: 140%;
	line-height:1.2;
}
#lower .teachers_list article dt small{
	font-size: 50%;
	display: block;
	margin-bottom: 20px;
}
#lower .teachers_list article dd{
	font-size: 90%;
}

/*-----------------------------------------------
__Index
-----------------------------------------------*/
#visual{
	background: #FFCC57;
	position: relative;
}
#visual .wrap{
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
#visual .wrap::after{
	content: "";
	position: absolute;
	left: -15%;
	bottom: -50%;
	pointer-events: none;
	width: 100%;
	height: 200%;
	background: url(/entre/re2024/images/mark_tongali.svg) no-repeat;
	background-size: auto 100%;
	opacity: 0.15;
	animation: mark 0.5s linear 0s;
}
@keyframes mark{
	0%{
		opacity: 0;
		transform: translateY(20px) rotate(10deg);
	}
	100%{
		opacity: 0.15;
		transform: translateY(0) rotate(0deg);
	}
}
#visual .txt_box{
	max-width: 45%;
	position: relative;
	z-index: 1;
	animation: txt_box 0.5s forwards 0.7s;
	opacity: 0;
}
@keyframes txt_box{
	0%{
		opacity: 0;
		transform: translateY(30px);
	}
	80%{
		transform: translateY(-10px);
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
}

#visual .txt_box > div{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 60px;
}
#visual .txt_box span{
	background: #31317A;
	color: #fff;
	padding: 3px 15px;
	margin-bottom: 10px;
	font-size: 120%;
}
#visual .txt_box em{
	color: #31317A;
	font-size:200%;
}
#visual .img_box{
	max-width: 50%;
	height: 100%;
	margin: 0 0 0 auto;
}
#visual figure{
	text-align: right;
}
#visual figure img{
	height: 100%;
}

.pd_tb{
	padding: 100px 0;
}

#top_about section{
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
#top_about .img_box{
	width: 40%;
	position: relative;
	display: flex;
}
#top_about .img_box::after{
	content: "";
	position: absolute;
	left: -70%;
	bottom: 0;
	pointer-events: none;
	width: 100%;
	height: 90%;
	background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_layer_2%22%20data-name%3D%22layer%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2084.66%2085.7%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23eee%3B%20stroke-width%3A%200px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_layer_1-2%22%20data-name%3D%22layer%201%22%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22m84.32%2C58.39c-.04-.08-.09-.15-.14-.22L44.25%2C1.1c-.45-.62-1.15-1.02-1.92-1.1-.77.07-1.46.47-1.92%2C1.1L.49%2C58.17c-.84%2C1.18-.57%2C2.81.6%2C3.66.07.05.15.1.23.15l39.56%2C23.37c.41.24.87.36%2C1.34.36h.21c.47%2C0%2C.94-.12%2C1.34-.36l39.57-23.37c1.26-.72%2C1.69-2.32.97-3.58Zm-43.76%2C21.64L5.3%2C59.37%2C40.56%2C7.75v72.28Zm3.55%2C0V7.75l35.26%2C51.62-35.26%2C20.66Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat;
	background-size: auto 100%;
	opacity: 0.3;
}
#top_about .img_box .about_img{
	position: relative;
}
#top_about .img_box .about_img::before,
#top_about .img_box .about_img::after{
	content: "";
	position: absolute;
	z-index: 2;
	pointer-events: none;
}
#top_about .img_box .about_img::before{
	right: -30px;
	top: -50px;
	width: 90px;
	height: 100px;
	background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_layer_2%22%20data-name%3D%22layer%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2084.66%2085.7%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23F46A53%3B%20stroke-width%3A%200px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_layer_1-2%22%20data-name%3D%22layer%201%22%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22m84.32%2C58.39c-.04-.08-.09-.15-.14-.22L44.25%2C1.1c-.45-.62-1.15-1.02-1.92-1.1-.77.07-1.46.47-1.92%2C1.1L.49%2C58.17c-.84%2C1.18-.57%2C2.81.6%2C3.66.07.05.15.1.23.15l39.56%2C23.37c.41.24.87.36%2C1.34.36h.21c.47%2C0%2C.94-.12%2C1.34-.36l39.57-23.37c1.26-.72%2C1.69-2.32.97-3.58Zm-43.76%2C21.64L5.3%2C59.37%2C40.56%2C7.75v72.28Zm3.55%2C0V7.75l35.26%2C51.62-35.26%2C20.66Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat;
	background-size: contain;
}
#top_about .img_box .about_img::after{
	right: -160px;
	bottom: -80px;
	width: 250px;
	height: 250px;
	background: url(/entre/re2024/images/il_pc.svg) no-repeat;
	background-size: contain;
	background-position: center;
}
#top_about .img_box figure{
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 20px;
	position: relative;
	z-index: 1;
}
#top_about .img_box figure img.img-ofi{
	object-position: left center;
}
#top_about .img_box dl{
	writing-mode: vertical-rl;
	position: relative;
	margin-top: 50px;
	padding-top: 20px;
	margin-left: 40px;
	line-height: 1.2;
}
#top_about .img_box dl::before{
	content: "#";
	color: #F46A53;
	font-size: 140%;
	position: absolute;
	top: 0;
	right: 0;
}
#top_about .img_box dt{
	font-size: 140%;
}
#top_about .img_box dd{
	font-size: 90%;
}
#top_about p:last-of-type{
	margin-top: 2em;
	font-size: 90%;
}
#top_about p small a{
	color: #333;
}

#top_education .txt_box{
	margin-top: 80px;
	padding-bottom: 50px;
}
#top_education .txt_box::before{
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	background-image : linear-gradient(to right, rgba(49, 49, 122, 0.5) 3px, transparent 3px);
	background-size: 13px 3px;
	background-repeat: repeat-x;
	background-position: center bottom;
}
#top_education article{
	padding: 80px 0;
	background-image : linear-gradient(to right, rgba(49, 49, 122, 0.5) 3px, transparent 3px);
	background-size: 13px 3px;
	background-repeat: repeat-x;
	background-position: center bottom;
}
#top_education article > div:first-of-type{
	width: 25%;
}
#top_education article > div:last-of-type{
	width: 65%;
}
main #top_education article > div:first-of-type h3{
	margin-bottom: 0;
}
#top_education .btn_s{
	margin-top: 2em;
}
#top_education article:first-of-type,
#top_education article:last-of-type{
	position: relative;
}
#top_education article:first-of-type::before,
#top_education article:last-of-type::before{
	content: "";
	position: absolute;
	pointer-events: none;
}
#top_education article:first-of-type::before{
	right: 15px;
	top: -80px;
	width: 70px;
	height: 140px;
	background: url(/entre/re2024/images/il_people_01.svg) no-repeat;
	background-size: contain;
}
#top_education article:last-of-type::before{
	left: 15%;
	bottom: -30px;
	width: 125px;
	height: 145px;
	background: url(/entre/re2024/images/il_people_02.svg) no-repeat;
	background-size: contain;
}

#top_news section{
	width: 30%;
	position: relative;
}
#top_news section::before,
#top_news section::after{
	content: "";
	position: absolute;
	pointer-events: none;
}
#top_news section::before{
	left: -50%;
	top: 0;
	width: 120%;
	height:  120%;
	background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_layer_2%22%20data-name%3D%22layer%202%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2084.66%2085.7%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20%23eee%3B%20stroke-width%3A%200px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22_layer_1-2%22%20data-name%3D%22layer%201%22%3E%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22m84.32%2C58.39c-.04-.08-.09-.15-.14-.22L44.25%2C1.1c-.45-.62-1.15-1.02-1.92-1.1-.77.07-1.46.47-1.92%2C1.1L.49%2C58.17c-.84%2C1.18-.57%2C2.81.6%2C3.66.07.05.15.1.23.15l39.56%2C23.37c.41.24.87.36%2C1.34.36h.21c.47%2C0%2C.94-.12%2C1.34-.36l39.57-23.37c1.26-.72%2C1.69-2.32.97-3.58Zm-43.76%2C21.64L5.3%2C59.37%2C40.56%2C7.75v72.28Zm3.55%2C0V7.75l35.26%2C51.62-35.26%2C20.66Z%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat;
	background-size: 100% auto;
	opacity: 0.3;
}
#top_news section::after{
	left: 0;
	bottom: 0;
	width: 60px;
	height: 160px;
	background: url(/entre/re2024/images/il_people_03.svg) no-repeat;
	background-size: contain;
}
#top_news h3{
	font-size: 180%;
	margin-bottom: 2em;
	position: relative;
	z-index: 1;
}
#top_news .btn_s{
	position: relative;
	z-index: 1;
}
#top_news .news_list{
	width: 65%;
}
#top_news article{
	width: 45%;
}
#top_news article a{
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: #333;
}
#top_news article figure{
	aspect-ratio: 3 / 2;
	overflow: hidden;
	position: relative;
	border: 1px solid rgba(49, 49, 122, 0.2);
}
#top_news article figure::after{
	content: "";
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 1;
	width: 45px;
	height: 45px;
	background-color: #31317A;
	border-radius: 50%;
	background-image: url(/entre/re2024/images/icon_arrow.svg);
	background-repeat: no-repeat;
	background-size: 30%;
	background-position: center;
}
#top_news article figure img.img-ofi{
	object-position: center top;
	transition: all ease .5s;
}
#top_news article a:hover figure img{
	transform: scale(1.1);
}
#top_news article dl{
	margin: 15px 0 2em;
	transition: all ease .3s;
}
#top_news article dd{
	font-size: 80%;
	margin-bottom: 1em;
}
#top_news article dt{
	font-size: 120%;
	font-weight: bold;
	line-height: 1.2;
}
#top_news article a p{
	margin-bottom: 0;
	margin-top: auto;
	color: #31317A;
	font-size: 90%;
	opacity: 0.7;
	transition: all ease .3s;
}
#top_news article a:hover dl,
#top_news article a:hover p{
	opacity: 0.5;
}

/*-----------------------------------------------
__Footer
-----------------------------------------------*/

#pnkz{
	background: #31317A;
	color: #fff;
	font-size: 70%;
	padding: 15px 0;
}
#pnkz ul{
	display: flex;
	flex-wrap: wrap;
}
#pnkz li{
	position: relative;
	padding-right: 35px;
	line-height: 1.4;
}
#pnkz li:not(:last-of-type)::after{
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: rotate(-45deg) translateY(-50%);
	opacity: 0.7;
}
#pnkz a{
	color: #fff;
	opacity: 0.7;
}
#pnkz a:hover{
	text-decoration: underline;
}
footer .fl_box{
	align-items: flex-end;
}
footer .fl_box a:hover{
	opacity: 0.5;
}
footer .logo{
	justify-content: flex-start;
}
footer .logo a:first-of-type{
	max-width: 140px;
	margin-right: 30px;
}
footer .logo img{
	min-height: 40px;
}
footer .tongali{
	width: 30%;
	text-align: right;
}
footer .tongali img{
	max-height: 60px;
}


footer small{
	font-size: 80%;
	letter-spacing: 0.01em;
	padding: 40px 0;
	display:block;
	background: #F7F7F7;
	text-align:center;
	color: rgba(49, 49, 123, 0.6);
}

/*-----------------------------------------------
__Common
-----------------------------------------------*/
.fl_box{
	display:flex;
	justify-content: space-between;
	width:100%;
}
.fl_box.wrap{
	width: 90%;
}

.pc_no{
	display:none;
}
a.tel{
	pointer-events:none;
}


.ta_center{
	text-align:center;
}
.f_right{
	float: right;
}
.f_left{
	float: left;
}
.c_both{
	clear: both;
}
.img_line{
	margin: 5px;
	padding: 2px;
	border: 1px solid #ccc;
}
.icon{
	margin: 0 5px;
	vertical-align: middle;
}