body{
	margin: 0;
	overflow-x: hidden;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}
.site-header{
	display: flex;
	position: relative;
	z-index: 100;
	margin-left: 6%;
}
h1{
	margin: 0;
}
h2{
	color: rgb(60,60,60);
}
.site-global{
	margin-top: 1%;
	margin-left: 1%;
	margin-right: 30px;
	z-index: 100;
}
.logo {
	width: 165px;
	height: 48px;
}
.logo img {
	width: 100%;
}

@media screen and (max-width: 480px) {
	.logo{
		width: 80px;
		height: 36px;
	}
	.site-global{
		margin: auto 0;
	}
}


/* PC用のCSSはメディアクエリの外に記述する */

/*@media screen and (max-width: 959px) {
		.logo {
			width: 115px;
			height: 30px;
			margin-left: 5%;
			margin-top: 3%;
		}
}*/
@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
}

.site-global-nav ul{
	margin: 0;
	padding: 0;
		padding-top: 35px;
}
.site-global-nav li{
	list-style: none;
	display: inline;
	font-family: 'Noto Sans JP', sans-serif;
}
.site-global-nav li a{
	color: #000000;
	text-decoration: none;
	font-size: 1.2rem;
}
li.link a:hover{
	color: #f2a4b0;
}
.site-global-header{

}
.site-global-nav li{
	padding-right: 20px;
}
@media screen and (max-width: 1280px) {	
	.site-global-nav li{
	padding-right: 10px;
	}
	.site-global-nav li a{
		font-size: 1rem;
	}
}
@media screen and (max-width: 1100px) {	
	.site-global-nav li a{
		display: none;
	}
}
#page-top{
  width: 400px;
  height: 120px;
  position: fixed;
  right: 0;
  bottom: 50px;
  background: black;
  opacity: 0.6;
  text-decoration: none;
  border-radius: 15px 0px 0px 15px;
}
#page-top a{
  position: relative;
  display: block;
  width: 400px;
  height: 120px;
  bottom: 28px;
  text-decoration: none;
  font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 500;
	color: white;
	font-size: 28px;
	text-align: center;
}
#page-top a p{
	position: relative;
	top: 35px;
}
@media screen and (max-width: 480px) {	
	#page-top{
		bottom: -1px;
		width: 100%;
		text-align: center;
		border-radius: 0;
	}
	#page-top a{
		font-size: 21px;
		width: 100%;
		text-align: center;
	}
	#page-top a p{
		top: 50px;
	}
}

.hero-layout{
	display: flex;
}
.hero-left{
	width: 45%;
}
.hero-right{
	width: 55%;
	position: relative;
	top: -75px;
}
@media screen and (max-width: 861px) {	
	.hero-layout{
		flex-wrap: wrap-reverse;

	}
	.hero-left{
		width: 100%;
	}
	.hero-right{
		width: 100%;
		top: 0;
	}
}
.hero-slogan{
	margin-top: 20%;
}
.hero-slogan h2{
	font-size: clamp(30px, 3.5vw, 60px);
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 500;
	padding-left: 14.5%;
}
.hero-slogan p{
	font-size: clamp(16px, 1.8vw, 3px);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	padding-left: 14.5%;
	padding-right: 10px;
}
@media screen and (max-width: 861px) {	
	.hero-slogan{
		margin-top: 3%;
	}
	.hero-slogan h2{
		padding-left: 10%;
	}
	.hero-slogan p{
		padding-left: 10%;
		padding-right: 10%;
	}
}
@media screen and (max-width: 480px) {	
	.hero-slogan p{
		font-size: 13px;
	}
}
.hero-bg{
	width: 100%;
	max-height: 860px;
}
.hero-bg img{
	width: 100%;
	max-width: 1294px;
}
.hero-entry{
	width: 65%;
	padding-left: 15%;
	padding-top: 10%;
}
.hero-entry img{
	width: 100%;
	max-width: 460px;
}
@media screen and (max-width: 861px) {	
	.hero-entry{
		width: 80%;
		padding-left: 10%;
		padding-right: 10%;
	}
}

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #000000;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #000000;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #000000;
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
@media screen and (max-width: 861px) {	
	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
 	    content: '';
  	    display: block;
  	    height: 1px;
  	    width: 25px;
  		border-radius: 3px;
  	 	background-color: #ffffff;
    	position: absolute;
	}
	.menu-btn {
     	height: 50px;
  	    width: 50px;
  	    top: 5px;
	}
}


.news-title h2{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 400;
	font-size: clamp(20px, 2.4vw, 48px);
	margin: 0;
}
#news{
	border-top: 3px solid #f2a4b0;
}
.news{
	margin-left: 6.8%;
	position: relative;
	top: -26px;
}
.news-title{
	display: inline-block;
	background-color: white;
}


#aboutus{
	margin-top: 200px;
	background-color: #E1FCF4;
	position: relative;
	z-index: 10;
}
.aboutus-wrap{
	display: flex;
	justify-content: center;
}
.aboutus-wrap-left{
	width: 50%;
	padding: 0 5%;
	position: relative;
	top: -150px;
	max-width: 524px;
}
.aboutus-wrap-left img{
	width: 100%;
}
.aboutus-wrap-right{
	width: 50%;
	padding: 0 5%;
	position: relative;
	top: -100px;
	max-width: 477px;
}
.aboutus-wrap-right img{
	width: 100%;
}
.aboutus-wrap-title h2{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 48px;
	font-weight: 700;
	margin-left: 10%;
	margin-top: 0;

}
.aboutus-wrap-text{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 400;
	font-size: 24px;
	margin-left: 10%;
	padding-right: 5%;
}
@media screen and (max-width: 861px) {	
	.aboutus-wrap-text{
		font-size: 16px;
	}
}
@media screen and (max-width: 861px) {	
	.aboutus-wrap-left{
		top: -100px;
	}
}


.aboutus-wrap-bot{
	position: relative;
	top: -80px;
}
.wanted-title{
	display: inline-box;
	text-align: center;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 700;
}
.wanted-title h2{
	font-size: 80px;
}
.wanted-text{
	text-align: center;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 700;
	font-size: 24px;
}
@media screen and (max-width: 560px) {	
	.wanted-text{
		font-size: 15px;
		padding-left: 0%;
		padding-right: 0%;
	}
}
.wanted-btn{
	text-align: center;
	padding-top: 50px;
	padding-bottom: 30px;
}
.wanted-btn img{
	width: 100%;
	max-width: 380px;
}
.wanted{
	position: relative;
}
@media screen and (max-width: 480px) {	
	.wanted-btn{
		width: 70%;
		padding-left: 15%;
		padding-right: 15%;
	}
}


.circle-top{
  width: 120px;
  height: 120px;
  border-radius: 50%;
background-color: #FFEEEF;
  position: absolute;
    top: -100px;
    left: -30px;
}
.circle-bot{
  width: 60px;
  height: 120px;
  position: absolute;
  bottom: -50px; 
  right: 0;
  border-radius: 60px 0 0 60px;
  background-color: rgb(245,246,157);/*背景色*/
}

@media screen and (max-width: 861px) {	
	.circle-bot{
		width: 45px;
		height: 80px;
	}
}

.wanted-wrap{
	background-image: url("../img/wanted-bg.png");
	background-size: cover;
}
.talent-title{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 500;
	font-size: 30px;
	margin-left: 5%;
    width: 200px;
    background-color: #FFEEEF;
    border-radius: 20px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}
.talent-title h2{
	color: rgb(60, 60, 60);
	font-weight: 700;
}
.talent-row1{
	display: flex;
	margin-left: 5%;
	flex-wrap: wrap;
}
.talent-row2{
	display: flex;
	margin-left: 5%;
	margin-top: 60px;
	flex-wrap: wrap;
}
.talent-list{
	display: flex;
	flex-flow: column;
	text-align: center;
	width: 15%;
	margin-right: 8%;
	max-width: 280px;
}
@media screen and (max-width: 720px) {	
	.talent-list{
		width: 40%;
	}
	.talent-row2{
		margin-top: 0px;
	}
	.talent-icon{
		margin-top: 20px;
	}
	.talent-icon-top{
		margin-top: 0;
	}
	.talent-title{
		margin: 0 auto;
	}
}


.talent-list a{
	text-decoration: none;
}
.talent-icon{
	padding-left: 3%;
	padding-right: 3%;
}
.talent-icon img{
	width: 100%;
	border-radius: 45px;
	border: solid 3px #FECCD8;
}
.talent-name{
	color: rgb(0,0,0);
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 700;
	font-size: 24px;
}
/*.talent-list a:hover .talent-name{
	color: rgb(249,111,114);
}
.talent-list a:hover .talent-icon img{
	border-color: rgb(249,111,114);
}*/

.talent-list a:hover .talent-name{
	color: #000000;
}
.talent-list a:hover .talent-icon img{
	border-color: #000000;
}

@media screen and (max-width: 480px) {	
	.talent-name{
		font-size: 16px;
	}
	.talent-list{
		margin:  0 4%;
	}
}


.contact-title{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 700;
	font-size: 30px;
    width: 260px;
    background-color: #FFEEEF;
    border-radius: 20px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}
.contact-title h2{
	color: rgb(60, 60, 60);
	font-weight: 700;
}
.contact-text{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 00;
	font-size: 24px;
	margin-left: 5%;
}
.contact-list{
	display: flex;
	flex-flow: row;
}
.contact-icon{
	width: 60px;
	margin-left: 5%;
}
.contct-icon a{
	text-decoration: none;
}
.contact-icon a img{
	width: 100%;
}
.footer-wrap{
	text-align: center;
}
.footer-logo{
	width: 100px;
	margin: 0 auto;
	padding-top: 10px;
}

.footer-logo img{
	width: 100%;
}
.choice .choice-title h2{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 48px;
	font-weight: 700;
	margin-left: 5%;
}
.choice .choice-box1{
	border: 3px solid #96F3D0;
	position: relative;
	left: -10px;
/*	display: inline-block;*/
	padding-left: 3%;
	margin-right: 7%;
}
.choice-box1 .choice-maru{
  position: absolute;
  top: -45px;
  right: -40px;
  width: 50px;
  height: 50px;
  border: 2px solid #96F3D0;
  background-color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
}
.choice-box1 .choice-maru span{
	color: #96F3D0;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 24px;
}
.choice-inbox .choice-box-title h3{
	font-size: 30px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 700;
	margin: 10px 0;
}
.choice-inbox .choice-box-text{
	font-size: 16px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 700;
	margin-bottom: 20px;
}

.choice .choice-box2{
	margin-top: 30px;
	border: 3px solid #85D1E2;
	position: relative;
	right: -10px;
/*	display: inline-block;*/
	padding-left: 3%;
	margin-left: 8%;
}
.choice-box2 .choice-maru{
  position: absolute;
  top: -42px;
  left: -40px;
  width: 50px;
  height: 50px;
  border: 2px solid #85D1E2;
  background-color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
}
.choice-box2 .choice-maru span{
	color: #85D1E2;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 24px;
}


.choice .choice-box4{
	margin-top: 30px;
	border: 3px solid #41687B;
	position: relative;
	right: -10px;
/*	display: inline-block;*/
	padding-left: 3%;
	margin-left: 12%;
}
.choice-box4 .choice-maru{
  position: absolute;
  top: -42px;
  left: -40px;
  width: 50px;
  height: 50px;
  border: 3px solid #41687B;
  background-color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
}
.choice-box4 .choice-maru span{
	color: #41687B;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 24px;
}

.choice .choice-box3{
	margin-top: 30px;
	border: 3px solid #5CB2ED;
	position: relative;
	left: -10px;
/*	display: inline-block;*/
	padding-left: 3%;
	margin-right: 14%;
}
.choice-box3 .choice-maru{
  position: absolute;
  top: -42px;
  right: -40px;
  width: 50px;
  height: 50px;
  border: 2px solid #5CB2ED;
  background-color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
}
.choice-box3 .choice-maru span{
	color: #5CB2ED;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 24px;
}

.choice .choice-box5{
	margin-top: 30px;
	border: 3px solid rgba(30,35,60,0.8);
	position: relative;
	left: -10px;
/*	display: inline-block;*/
	padding-left: 3%;
	margin-right: 7%;
}
.choice-box5 .choice-maru{
  position: absolute;
  top: -42px;
  right: -40px;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(30,35,60,0.8);
  background-color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
}
.choice-box5 .choice-maru span{
	color: rgba(30,35,60,0.8);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 24px;
}
@media screen and (max-width: 561px) {	
	.choice-inbox .choice-box-text{
		font-size: 14px;
		padding-right: 5%;
		padding-left: 5%;
	}
	.choice .choice-box4{
		right: -15px;
	}
	.choice .choice-bo2{
		right: -15px;
	}
	.choice-inbox .choice-box-title h3{
		font-size: 20px;
		padding-left: 5%;
		padding-right: 5%;
	}
	.choice .choice-title h2{
		font-size: 32px;
		padding-bottom: 24px;
		padding-top: 15px;
	}
	.choice-box1 .choice-maru{
		border: 2px solid #96F3D0;
	}
	.choice-box2 .choice-maru{
		border: 2px solid #85D1E2;
	}
	.choice-box3 .choice-maru{
		border: 2px solid #5CB2ED;
	}
	.choice-box4 .choice-maru{
		border: 2px solid #41687B;
	}
	.choice-box5 .choice-maru{
		border: 2px solid rgba(30,35,60,0.8);
	}

}
@media screen and (max-width: 480px) {	
	.choice .choice-title h2{
		margin: 0 auto;
		text-align: center;
		padding-bottom: 10px;	
	}
	.choice .choice-wrap .choice-box1{
		margin-top: 0;
	}
}


.choice .choice-box-title h3 br{
		display: none;
	}
@media screen and (max-width: 561px) {	
	.choice .choice-box-title h3 br{
		display: unset;
	}
}

.choice .choice-box-text-k span{
	font-weight: 500;
}

@media screen and (max-width: 480px) {	
	.choice .choice-box1{
		margin-top: 30px;
		border: 3px solid #96F3D0;
		margin: 5%;
		position: unset;
		border-radius: 20px;
	}
	.choice .choice-box2{
		margin-top: 30px;
		border: 3px solid #85D1E2;
		margin: 5%;
		position: unset;
		border-radius: 20px;
	}
	.choice .choice-box3{
		margin-top: 30px;
		border: 3px solid #5CB2ED;
		margin: 5%;
		position: unset;
		border-radius: 20px;
	}
	.choice .choice-box4{
		margin-top: 30px;
		border: 3px solid #41687B;
		margin: 5%;
		position: unset;
		border-radius: 20px;
	}
	.choice .choice-box5{
		margin-top: 30px;
		border: 3px solid rgba(30,35,60,0.8);
		margin: 5%;
		position: unset;
		border-radius: 20px;
	}

}

.accordion-007 {
    max-width: 500px;
    margin: 0 auto 8px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}
@media screen and (max-width: 480px) {
	.accordion-007{
		padding: 0 3%;
	}
}

.accordion-007 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border: 3px solid #134d76;
    border-radius: 25px;
    color: #134d76;
    font-weight: 600;
    cursor: pointer;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    text-align: left;
}

.accordion-007 summary::-webkit-details-marker {
    display: none;
}

.accordion-007 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-bottom: 3px solid #134d76;
    border-right: 3px solid #134d76;
    content: '';
    transition: transform .3s;
    position: relative;
    right: -20px;
}

.accordion-007[open] summary::after {
    transform: rotate(225deg);
}

.accordion-007 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    margin-top: 0;
    padding: .8em 1.2em;
  /*  border: 3px solid #5295C7;*/
    border-radius: 25px;
    background-color: #fff;
    color: #000000;
    transition: transform .5s, opacity .5s;
    text-align: left;
}

.accordion-007[open] p {
    transform: none;
    opacity: 1;
}

/*.accordion-007 p::before,
.accordion-007 p::after {
    position: absolute;
    top: -15px;
    left: 1.2em;
    width: 30px;
    height: 15px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    content: '';
}

.accordion-007 p::before {
    background-color: #5295C7;
}

.accordion-007 p::after {
    top: -12px;
    background-color: #fff;
}*/
.faq-box{
	text-align: center;
}
.faq-title{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 700;
	font-size: 30px;
	margin-left: 5%;
    width: 260px;
    background-color: #FFEEEF;
    border-radius: 20px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}
.faq-title h2{
	color: rgb(60, 60, 60);
	font-weight: 700;
}
.contact-flex{
	display: flex;
	padding-bottom: 120px;
}
.contact-company{
	width: 50%;
	border-right: 3px solid black;
}
.contact-liver{
	width: 50%;
}
.contact-company p{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 500;
	font-size: 32px;
	text-align: center;
}
.contact-liver p{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 500;
	font-size: 32px;
	text-align: center;
}
.contact-company a{
	text-decoration: none;
	color: black;
}
.contact-company a:hover{
	color: #FECCD8;
}
.contact-liver a{
	text-decoration: none;
	color: black;
}
.contact-liver a:hover{
	color: #FECCD8;
}
@media screen and (max-width: 561px) {	
	.contact-company p{
		font-size: 24px;
	}
	.contact-liver p{
		font-size: 24px;
	}
}
@media screen and (max-width: 391px) {	
	.contact-company p{
		font-size: 16px;
	}
	.contact-liver p{
		font-size: 16px;
	}
}


/*ここからentrypage*/
.liverentry-wrap{
	padding: 0 5%;
	margin-bottom: 120px;
}

.liverentry-flow{
	display: flex;
	flex-flow: row wrap;
	padding: 0 5%;
}
.liverentry-box{
	display:flex;
	flex-direction: column;
	width: 27%;
	position: relative;
	padding: 0 3%;
}

.page-title-wrap-title{
	margin-left: 5%;
}

.liverentry-title h2{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 48px;
	font-weight: 700;
}
.liverentry-maru{
  position: absolute;
  top: -20px;
  left: 0px;
  width: 60px;
  height: 60px;
  background-color: #FECCD8;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
}
 .liverentry-maru span{
	color: rgba(30,35,60,1);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 36px;
}
.liverentry-box .liverentry-box-title h3{
	font-size: 16px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	margin-top: 0;
}
.liverentry-inbox .liverentry-box-text{
	font-size: 16px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	margin-bottom: 40px;
}
.liverentry-img{
	max-width: 100%;
}
.liverentry-img img{
	width: 100%;
}

.lb-ya::before {
    content: "";
    position: absolute;
    top: -45px;
    bottom: 0;
    left: -5px;
    margin: auto;
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    border: 15px solid transparent;
    border-left: 15px solid #FECCD8;
}
.ma-pa{
	margin-top: 30px;
}

.liverentry-flow .liver-entry-box-5::before{
	top: -125px;
}


.liverentry-box-entry{
	background-color: #06C755;
	border-radius: 20px;
	padding: 3%;
	font-size: 12px;
	text-align: center;
}
.liverentry-box-entry:hover{
	background-color: rgba(30,35,60,1);
	transition-timing-function: linear;
	transition-duration: 0.2s;
}

.liverentry-box-entry a{
	text-decoration: none;
	color: #FFFFFF;
}

@media screen and (max-width: 1200px) {	
	.liverentry-box{
		width: 20%;
	}
}

@media screen and (max-width: 961px) {	
	.liverentry-box{
		width: 94%;
		padding: 0 3%;
		margin-top: 30px;
	}
	.lb-ya::before{
		display: none;
	}
}

@media screen and (max-width: 480px) {	
	.talent-title{
		font-size: 16px;
	}
	.contact-title{
		font-size: 16px;
	}
	.faq-title{
		font-size: 16px;
	}
	.aboutus-wrap-title h2{
		font-size: 30px;
	}
	.choice-title{
		font-size: 16px;
	}
}
@media screen and (max-width: 861px){
	.liverentry-maru{
		top: -30px;
		left: -20px;
	}
} 