@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap');
/*base*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

header, footer, nav, section, article {
	position: relative;
	display:block;
}

html{
	font-size: 62.5%;
	overflow-y: scroll;
}

body{
	position: relative;
	font-size: 1.6em;
	color: #333333;
	background: #ffffff;
	font-family: 'Helvetica','Helvetica Neue','Avenir','Arial','メイリオ',sans-serif;
	overflow: hidden;
	transition: all .2s linear;
}


/*float*/
.cl{
	clear: both;
}
.clearfix{
	overflow: hidden;
}
* html .clearfix { zoom: 1; }  /* IE6 */
*:first-child+html .clearfix{ zoom: 1; }  /* IE7 */

/*text-align*/
.txt_alignleft{
	text-align: left !important;
}
.txt_alignright{
	text-align: right !important;
}
.txt_aligncenter{
	text-align: center !important;
}

/*vertical-align*/
.txt_aligntop{
	vertical-align: top !important;
}
.txt_alignmiddle{
	vertical-align: middle !important;
}
.txt_alignbottom{
	vertical-align: bottom !important;
}

/*flex-center*/
.flex_center {
  justify-content: center;
  align-items: center;
}

/*heading*/
h2 {
	text-align: center;
}


/*link*/
a img {
    border-style: none;
	}

a:link{
	text-decoration: none;
	}
a:active{
	text-decoration: none;
	}

a:visited{
	color: #232323;
	}

a:hover{
	text-decoration: none;
	}

a.btn_join{
	display: block;
	background: #dd0034;
	color: #ffffff;
	text-align: center;
	border-radius: 5px;
	}

a img:hover,a.btn_join:hover{
	opacity: 0.8;
	}
/* common */
.content_wrap {
  position: relative;
	max-width: 1100px;
	margin: 0 auto;
}

/*top visual*/
.top_visual {
	position: relative;
  max-height: 480px;
	min-height: 400px;
}
.top_visual .content_wrap {
	display: flex;
	max-width:1050px;
	justify-content: center;
}
.top_visual .top_logo {
	position: absolute;
	top: 20px;
	left: 60px;
}
.top_visual .top_logo::after {
	content: "";
	position: absolute;
	width: calc(100% + 30px);
	height: 4px;
	left: 0;
	bottom: -15px;
	background-color: #DE2448;
}
.top_visual .top_logo img {
  width: 22vw;
	max-width: 220px;
}
.top_visual .top_title img,
.top_visual .top_visual_phpto img {
	width: 100%;
}
.top_visual .top_title {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 30px 0 20px;
	max-width: 600px;
	width: 60%;
}
.top_visual .top_visual_phpto {
	position: relative;
	width: 40%;
}
.top_visual .top_obj_01 {
	position: absolute;
  width: 60vw;
  max-width: 400px;
  height: 20vw;
  max-height: 200px;
  border-radius: 50vw;
  top: -150px;
  left: -80px;
  background-color: #3B77FF;
  z-index: -1;
  transform: rotate(-45deg);
}
.top_visual .top_obj_02 {
	position: absolute;
  width: 20vw;
  max-width: 150px;
  height: 20vw;
  max-height: 150px;
  border-radius: 50vw;
  bottom: 50px;
  right: -100px;
  background-color: #9FCFFF;
  z-index: -1;
}
.top_obj_03 {
	position: absolute;
  width: 50vw;
  max-width: 300px;
  height: 15vw;
  max-height: 160px;
  border-radius: 50vw;
  top: 0px;
  left: -130px;
  background-color: #DE2448;
  z-index: -1;
  transform: rotate(-45deg);
}
/* confetti */
.confetti {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 450px;
	top: 0;
	overflow: hidden;
}
.confetti-piece {
  position: absolute;
  width: 8px;
  height: 16px;
  background: #E3F777;
  top: 0;
  opacity: 0;
}
.confetti-piece:nth-child(1) {
  left: 7%;
  transform: rotate(-50deg);
  -webkit-animation: makeItRain 2000ms infinite ease-out;
          animation: makeItRain 2000ms infinite ease-out;
  -webkit-animation-delay: 1111ms;
          animation-delay: 1111ms;
  -webkit-animation-duration: 1888ms;
          animation-duration: 1888ms;
}
.confetti-piece:nth-child(2) {
  left: 14%;
  transform: rotate(-19deg);
  -webkit-animation: makeItRain 1400ms infinite ease-out;
          animation: makeItRain 1400ms infinite ease-out;
  -webkit-animation-delay: 882ms;
          animation-delay: 882ms;
  -webkit-animation-duration: 1212ms;
          animation-duration: 1212ms;
}
.confetti-piece:nth-child(3) {
  left: 21%;
  transform: rotate(-30deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
          animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 410ms;
          animation-delay: 410ms;
  -webkit-animation-duration: 800ms;
          animation-duration: 800ms;
}
.confetti-piece:nth-child(4) {
  left: 28%;
  transform: rotate(-31deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
          animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 416ms;
          animation-delay: 416ms;
  -webkit-animation-duration: 1094ms;
          animation-duration: 1094ms;
}
.confetti-piece:nth-child(5) {
  left: 35%;
  transform: rotate(-58deg);
  -webkit-animation: makeItRain 1500ms infinite ease-out;
          animation: makeItRain 1500ms infinite ease-out;
  -webkit-animation-delay: 549ms;
          animation-delay: 549ms;
  -webkit-animation-duration: 1605ms;
          animation-duration: 1605ms;
}
.confetti-piece:nth-child(6) {
  left: 42%;
  transform: rotate(66deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
          animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 248ms;
          animation-delay: 248ms;
  -webkit-animation-duration: 958ms;
          animation-duration: 958ms;
}
.confetti-piece:nth-child(7) {
  left: 49%;
  transform: rotate(10deg);
  -webkit-animation: makeItRain 2000ms infinite ease-out;
          animation: makeItRain 2000ms infinite ease-out;
  -webkit-animation-delay: 1284ms;
          animation-delay: 1284ms;
  -webkit-animation-duration: 1806ms;
          animation-duration: 1806ms;
}
.confetti-piece:nth-child(8) {
  left: 56%;
  transform: rotate(-14deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
          animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 264ms;
          animation-delay: 264ms;
  -webkit-animation-duration: 1174ms;
          animation-duration: 1174ms;
}
.confetti-piece:nth-child(9) {
  left: 63%;
  transform: rotate(-69deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
          animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 42ms;
          animation-delay: 42ms;
  -webkit-animation-duration: 960ms;
          animation-duration: 960ms;
}
.confetti-piece:nth-child(10) {
  left: 70%;
  transform: rotate(-3deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
          animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 415ms;
          animation-delay: 415ms;
  -webkit-animation-duration: 764ms;
          animation-duration: 764ms;
}
.confetti-piece:nth-child(11) {
  left: 77%;
  transform: rotate(-32deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
          animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 88ms;
          animation-delay: 88ms;
  -webkit-animation-duration: 1085ms;
          animation-duration: 1085ms;
}
.confetti-piece:nth-child(12) {
  left: 84%;
  transform: rotate(30deg);
  -webkit-animation: makeItRain 1000ms infinite ease-out;
          animation: makeItRain 1000ms infinite ease-out;
  -webkit-animation-delay: 326ms;
          animation-delay: 326ms;
  -webkit-animation-duration: 1114ms;
          animation-duration: 1114ms;
}
.confetti-piece:nth-child(13) {
  left: 91%;
  transform: rotate(-20deg);
  -webkit-animation: makeItRain 1600ms infinite ease-out;
          animation: makeItRain 1600ms infinite ease-out;
  -webkit-animation-delay: 708ms;
          animation-delay: 708ms;
  -webkit-animation-duration: 1055ms;
          animation-duration: 1055ms;
}
.confetti-piece:nth-child(odd) {
  background: #3B77FF;
}
.confetti-piece:nth-child(even) {
  z-index: 1;
}
.confetti-piece:nth-child(4n) {
  width: 5px;
  height: 12px;
  -webkit-animation-duration: 2000ms;
          animation-duration: 2000ms;
}
.confetti-piece:nth-child(3n) {
  width: 3px;
  height: 10px;
  -webkit-animation-duration: 3000ms;
          animation-duration: 3000ms;
  -webkit-animation-delay: 1500ms;
          animation-delay: 1500ms;
}
.confetti-piece:nth-child(4n-7) {
  background: #DE2448;
}

@-webkit-keyframes makeItRain {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: translateY(300px);
  }
}

@keyframes makeItRain {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: translateY(300px);
  }
}

/*btn*/
a.btn {
  position: relative;
	display: flex;
  margin: 0 auto;
	width: 300px;
	height: 70px;
	border-radius: 50px;
	color: #fff;
	font-size: 1.5rem;
	background-color: #e40d44;
}
a.btn::before,
a.btn::after {
	position: absolute;
  top: 50%;
  right: 20px;
  content: '';
  margin-top: -5px;
  border: 6px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: #fff;
}
a.btn::after {
  opacity: 0;
  right: 30px;
}
a.btn:hover::before {
  animation: arrowbefore .5s;
}
a.btn:hover::after {
  animation: arrowafter .5s;
}
@keyframes arrowbefore {
  100% {
    right: 5px;
    opacity: 0;
  }
}
@keyframes arrowafter {
  99% {
    right: 20px;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*interview_list*/
ul.interview_list {
	position: relative;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px;
  min-height: 1000px;
}
ul.interview_list::after {
	content: "";
  position: absolute;
  width: 140px;
  height: 1000px;
  right: -70px;
	background: url('../img/user-voice/content_bg.svg') center center no-repeat;
  background-size: contain;
  z-index: -2;
}
ul.interview_list li {
	position: relative;
	width: calc(50% - 40px);
	margin: 55px 20px;
	max-width: 480px;
}
ul.interview_list li .interview_content {
	position: relative;
	padding: 25px;
	width: 100%;
	height: 100%;
	border:3px solid #3B77FF;
	background-color: #fff;
	z-index: 0;
}
ul.interview_list li .interview_content .interview_img {
	position: absolute;
	top: -40px;
}
ul.interview_list li.fadein:nth-child(1) .interview_content .interview_img,
ul.interview_list li.fadein:nth-child(2) .interview_content .interview_img,
ul.interview_list li.active .interview_content .interview_img {
	opacity: 0;
	animation-duration: 500ms;
	animation-delay : 500ms;
	animation-name: interview_img;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-timing-function:ease-out;
}
@keyframes interview_img {
	from { opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0px); }
}
ul.interview_list li .interview_content .interview_img figure {
	position: relative;
	width: 160px;
	height: 160px;
	border-radius: 100px;
	overflow: hidden;
}
ul.interview_list li .interview_content .interview_img figure img {
	display: block;
  width: 100%;
  height: auto;
  object-fit: fill;
}
ul.interview_list li .interview_content .interview_img::before {
	content: "";
	position: absolute;
	width: 140px;
	height: 40px;
	left: 50%;
	top: -30px;
	transform: translateX(-50%);
	background: url('../img/user-voice/img_icon.svg') center center no-repeat;
  background-size: cover;
}
ul.interview_list li .interview_content .interview_flag {
	position: absolute;
	display: inline-block;
	margin: 0;
	padding: 15px;
	top: -13px;
  right: 20px;
	width: 80px;
	text-align: center;
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: bold;
	color: #fff;
	background: #DE2448;
	z-index: 2;
}
ul.interview_list li .interview_content .interview_flag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 40px solid #DE2448;
  border-right: 40px solid #DE2448;
  border-bottom: 10px solid transparent;
}
ul.interview_list li .interview_content .interview_flag::after {
	position: absolute;
  content: '';
  top: 0;
  right: -6px;
  border: none;
  border-bottom: solid 10px #3B77FF;
  border-right: solid 6px transparent;
}
ul.interview_list li .interview_content .tag_area {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-end;
	width: calc(100% - 150px);
	margin: 62px 0 0 auto;
	text-align: right;
}
ul.interview_list li .interview_content .tag_area p {
	display: block;
	padding: 2px 8px;
  margin: 2px 0 2px 5px;
  border: 3px solid #FFEC5A;
  font-size: 1.3rem;
  line-height: 2rem;
}
ul.interview_list .tag_area::before {
	content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  top: 0;
  left: 0;
  box-sizing: border-box;
  background-color: #FFEC5A;
  z-index: -1;
}
ul.interview_list li .interview_content .student_info {
	display: inline-flex;
	padding: 15px 0 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #D0D4DD;
}
ul.interview_list li .interview_content .student_info .student_info_name {
	display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  margin-right: 15px;
  font-size: 1.8rem;
  background-color: #EDF0F2;
}
ul.interview_list li .interview_content .student_info .student_info_univ {
	font-size: 1.5rem;
  font-weight: 500;
  flex: 1;
}
ul.interview_list li .interview_content .student_info .student_info_univ p {
	display: inline-block;
	padding: 0 3px;
}
ul.interview_list li .interview_content .student_info .student_info_univ p:first-child {
	width: 100%;
}
ul.interview_list li .interview_content .student_info .student_info_univ .student_info_company {
  display: inline;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFEC5A));
  background: -webkit-linear-gradient(transparent 60%, #FFEC5A 60%);
  background: linear-gradient(transparent 60%, #FFEC5A 60%);
}
ul.interview_list li::after {
	content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: -12px;
  bottom: -12px;
  border: 3px solid #3B77FF;
  background-color: #FFF7CB;
  z-index: -1;
}
/*footer*/
.footer {
	padding: 20px 0 250px;
	margin-bottom: -20px;
	background: url('../img/user-voice/footer_bg.svg') center bottom no-repeat;
  background-size: 100%;
}
.footer small {
	display: block;
	width: 100%;
	text-align: center;
	color: #012554;
	font-size: 1.2rem;
}
.footer__nav {
	max-width: 850px;
	margin: 20px auto;
}
.footer__nav ul {
	display: flex;
  justify-content: space-evenly;
  max-width: 350px;
  margin: 30px auto 15px;
}
.footer__nav ul li {
	display: block;
  height: 18px;
  padding: 0 15px;
  border-left: 1px solid #022454;
	line-height: 18px;
  text-align: center;
}
.footer__nav ul li:last-child {
	border-right: 1px solid #022454;
}
.footer__nav a {
	font-size: 1.3rem;
	color: #012554;
}
.footer__nav a:hover {
	color: #2f90f7;
}

/* fadein effect */
.animate_wrap li.fadein:nth-child(n + 3){
  opacity: 0;
  transform: translateY(50px);
  transition: all 500ms ease-in-out;
}
.animate_wrap li.fadein.active{
  opacity: 1;
  transform: translateY(0px);
}
.animate_wrap li.fadein:nth-child(1),
.animate_wrap li.fadein:nth-child(2) {
	opacity: 0;
	animation-duration: 800ms;
	animation-delay : 300ms;
	animation-name: about_feature01_ani;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
.animate_wrap li.fadein:nth-child(2) {
animation-delay : 500ms;
}
@keyframes about_feature01_ani {
	from { opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0px); }
}
.animate_wrap li.fadein.active:nth-of-type(3) {
  transition-delay: 0.1s;
}
.animate_wrap li.fadein.active:nth-of-type(4) {
  transition-delay: 0.2s;
}
.animate_wrap li.fadein.active:nth-of-type(5) {
  transition-delay: 0.3s;
}
.animate_wrap li.fadein.active:nth-of-type(6) {
  transition-delay: 0.4s;
}
.animate_wrap li.fadein.active:nth-of-type(7) {
  transition-delay: 0.5s;
}
.animate_wrap li.fadein.active:nth-of-type(8) {
  transition-delay: 0.6s;
}
.animate_wrap li.fadein.active:nth-of-type(9) {
  transition-delay: 0.7s;
}
.animate_wrap li.fadein.active:nth-of-type(10) {
  transition-delay: 0.8s;
}
.animate_wrap li.fadein.active:nth-of-type(11) {
  transition-delay: 0.9s;
}
.animate_wrap li.fadein.active:nth-of-type(12) {
  transition-delay: 1s;
}
.animate_wrap li.fadein.active:nth-of-type(13) {
  transition-delay: 1.1s;
}
.animate_wrap li.fadein.active:nth-of-type(14) {
  transition-delay: 1.2s;
}
.animate_wrap li.fadein.active:nth-of-type(15) {
  transition-delay: 1.3s;
}
.animate_wrap li.fadein.active:nth-of-type(16) {
  transition-delay: 1.4s;
}
.animate_wrap li.fadein.active:nth-of-type(17) {
  transition-delay: 1.5s;
}
.animate_wrap li.fadein.active:nth-of-type(18) {
  transition-delay: 1.6s;
}
.animate_wrap li.fadein.active:nth-of-type(19) {
  transition-delay: 1.7s;
}
.animate_wrap li.fadein.active:nth-of-type(20) {
  transition-delay: 1.8s;
}
@media screen and (min-width:768px) and ( max-width:960px) {
	.top_visual {
	    min-height: 350px;
	}
	ul.interview_list li.fadein:nth-child(1) .interview_content .interview_img,
	ul.interview_list li.fadein:nth-child(2) .interview_content .interview_img,
	.animate_wrap li.fadein:nth-child(n + 3) {
		opacity: 1;
    transform: translateY(0);
		animation: none;
	}
}
@media screen and (max-width:767px) {
	.top_visual {
    max-height: 100%;
    min-height: 160vw;
	}
	.top_visual .content_wrap {
		flex-direction: column;
	}
	.top_visual .top_title,
	.top_visual .top_visual_phpto {
		width: 100%;
	}
	.top_visual .top_title {
		padding: 0 20px;
		margin: 0 auto;
    max-width: 100%;
	}
	.top_visual .top_logo {
		position: relative;
    top: auto;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: left;
	}
	.top_visual .top_logo img {
    width: 50vw;
    max-width: 200px;
	}
	.top_visual .top_logo::after {
    width: 40vw;
    max-width: 150px;
    height: 3px;
    left: 0;
    bottom: 5px;
	}
	.top_visual .top_visual_phpto {
		padding: 10px;
    text-align: center;
	}
	.top_visual .top_title img, .top_visual .top_visual_phpto img {
    max-width: 650px;
    margin: 0 auto;
	}
	.top_visual .top_obj_01 {
    width: 80vw;
    max-width: 400px;
    height: 30vw;
    max-height: 200px;
    top: -410px;
    left: auto;
    right: -140px;
	}
	.top_visual .top_obj_02 {
    width: 40vw;
    max-width: 150px;
    height: 40vw;
    max-height: 150px;
    border-radius: 50vw;
    bottom: auto;
    top: 0;
    right: auto;
    left: -80px;
	}
	.top_obj_03 {
    width: 80vw;
    max-width: 300px;
    height: 35vw;
    max-height: 250px;
    top: -200px;
    left: auto;
    right: -180px;
	}
	.confetti {
		width: calc(100% + 20vw);
    height: 600px;
    top: 0;
    left: -5vw;
	}
	ul.interview_list {
		margin: 0 auto;
		width: 100%;
		padding: 20px 30px 20px 20px;
		flex-direction: column;
	}
	ul.interview_list li {
    width: 100%;
		margin: 55px auto;
		max-width: 650px;
	}
	ul.interview_list li .interview_content .interview_img {
    top: -50px;
	}
	ul.interview_list li .interview_content .interview_img figure {
		width: 30vw;
    height: 30vw;
		max-width: 130px;
		max-height: 130px;
	}
	ul.interview_list li .interview_content .interview_img::before {
    width: 120px;
    height: 35px;
    top: -25px;
    background-size: contain;
	}
	ul.interview_list li .interview_content .tag_area {
    justify-content: center;
    width: 100%;
	}
	ul.interview_list li .interview_content .student_info {
		flex-direction: column;
		width: 100%;
	}
	ul.interview_list li .interview_content .student_info .student_info_name {
		width: 100%;
    padding: 5px;
    margin-bottom: 10px;
	}
	/*footer*/
	.footer {
    padding: 20px 0 30vw;
    background-size: 130%;
	}
	.footer__nav {
		text-align: center;
	}
	.footer__nav ul, .footer__nav ul li {
		display: inline-flex;
	}
	.footer__nav ul li {
		padding: 0 10px;
		height: 15px;
	}
	.footer__nav a {
    font-size: 1.1rem;
	}
	ul.interview_list li.fadein:nth-child(1) .interview_content .interview_img,
	ul.interview_list li.fadein:nth-child(2) .interview_content .interview_img,
	.animate_wrap li.fadein:nth-child(n + 3) {
		opacity: 1;
    transform: translateY(0);
		animation: none;
	}
}
