/* ---------------- Common ---------------- */
.section {
	position: relative;
	padding:120px 0px;
}

.heading {
	padding-bottom:70px;
	opacity: 0;
	transform: translateX(-50px);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}

.section-title {
	position: relative;
	font-family: 'Albert Sans', sans-serif;
	font-size:5.4rem;
	font-weight: 700;
}

.section-title::before {
	content:"";
	display: block;
	position: absolute;
	top:50%;
	left: -120px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width:70px;
	height:5px;
	background: linear-gradient(90deg, rgba(100,99,99,1) 0%, rgba(246,168,12,1) 100%);
}

.section-text {
	font-size: 2.4rem;
	margin-top:30px;
}

.button {
	justify-content: space-between;
	max-width:220px;
	width:100%;
	height:60px;
	font-size: 1.8rem;
	font-weight:500;
	padding:0px 30px;
}

.button::after {
	content: "";
	display: block;
	width: 20px;
	height:11px;
	background: url('/en/img/common/i_arr.png') no-repeat center;
	-webkit-transition:all .6s ease;
	-moz-transition:all .6s ease;
	-ms-transition:all .6s ease;
	transition:all .6s ease;
}

.button:hover::after {
	transform: translateX(6px);
}

.section.aos-animate .heading {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.section.aos-animate .area {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

@media screen and (max-width:1600px) {
	.section-title::before {
		position: relative;
		top:unset;
		left:unset;
		-webkit-transform:none;
		-moz-transform:none;
		-ms-transform:none;
		transform:none;
		margin-bottom:20px;
	}
}
@media screen and (max-width:1200px) {
	.section-title {
		font-size:4.8rem;
	}

	.section-title::before {
		width:50px;
		margin-bottom:14px;
	}
}
@media screen and (max-width:1024px) {
	.section {
		padding:100px 0px;
	}

	.heading {
		padding-bottom:54px;
	}

	.section-title {
		font-size:3.6rem;
	}

	.section-text {
		font-size: 2rem;
		margin-top:24px;
	}

	.button {
		max-width:180px;
		height:48px;
		font-size: 1.6rem;
		padding:0px 24px;
	}
}
@media screen and (max-width:768px) {
	.section {
		padding:80px 0px;
	}

	.heading {
		padding-bottom:48px;
	}

	.section-title {
		font-size:2.8rem;
	}

	.section-title::before {
		width:42px;
		height:3px;
		margin-bottom:10px;
	}

	.section-text {
		font-size: 1.8rem;
		margin-top:18px;
	}

	.button {
		height:42px;
		font-size: 1.5rem;
		padding:0px 18px;
	}
}
@media screen and (max-width:500px) {
	.heading {
		padding-bottom:36px;
	}

	.section-title {
		font-size:2.4rem;
	}

	.section-text {
		font-size: 1.6rem;
		margin-top:12px;
	}

	.button {
		max-width:160px;
		height:38px;
		font-size: 1.4rem;
	}
}
/* -------------------------------- */


/* ---------------- Visual ---------------- */
.section--01 {
	padding-top:220px;
	background: url('/en/img/main/section01_bg.png') no-repeat left bottom / cover;
}

.section--01 .title {
	position: relative;
	font-family: 'Albert Sans', sans-serif;
	font-size:6.4rem;
	font-weight: 700;
	margin-bottom:30px;
}

.section--01 .title::before {
	content:"";
	display: block;
	position: absolute;
	top:50%;
	left: -120px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width:70px;
	height:5px;
	background: linear-gradient(90deg, rgba(100,99,99,1) 0%, rgba(246,168,12,1) 100%);
}

.section--01 .text {
	font-size: 2.4rem;
}

.section--01 .area {
	position: relative;
	opacity: 0;
	transform: translateX(50px);
	-webkit-transition: all 1s ease .5s;
	-moz-transition: all 1s ease .5s;
	-ms-transition: all 1s ease .5s;
	transition: all 1s ease .5s;
}

.section--01 .swiper-slide .img {
	font-size:0px;
}

.section--01 .swiper-control {
	position: absolute;
	right:-100px;
	bottom:0px;
}

.section--01 .swiper-control .prev,
.section--01 .swiper-control .next {
	display: flex;
	align-items: center;
	justify-content: center;
	width:60px;
	height:60px;
	background-color: #f6a80c;
	border-radius:50%;
	margin-top:10px;
	cursor: pointer;
}

.section--01 .swiper-control .prev::before,
.section--01 .swiper-control .next::before {
	content:"";
	display: block;
	width:8px;
	height:14px;
	background-repeat: no-repeat;
	background-position: center;
}

.section--01 .swiper-control .prev::before {
	background-image: url('/en/img/main/section01_prev.png');
}

.section--01 .swiper-control .next::before {
	background-image: url('/en/img/main/section01_next.png');
}

.section--01.active .heading {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.section--01.active .area {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

@media screen and (max-width:1600px) {
	.section--01 .title::before {
		position: relative;
		top:unset;
		left:unset;
		-webkit-transform:none;
		-moz-transform:none;
		-ms-transform:none;
		transform:none;
		margin-bottom:20px;
	}

	.section--01 .area {
		display: flex;
		flex-direction: column;
	}

	.section--01 .swiper-container {
		width:100%;
		order:2;
	}

	.section--01 .swiper-control {
		display: flex;
		align-items: center;
		position: relative;
		right:unset;
		bottom: unset;
		order: 1;
		margin-bottom:20px;
	}

	.section--01 .swiper-control .prev,
	.section--01 .swiper-control .next {
		margin:0px 10px 0px 0px;
	}
}
@media screen and (max-width:1200px) {
	.section--01 {
		padding-top:160px;
	}

	.section--01 .title {
		font-size:5.4rem;
	}
}
@media screen and (max-width:1024px) {
	.section--01 {
		padding-top:140px;
	}

	.section--01 .title {
		font-size: 4.8rem;
		margin-bottom:24px;
	}

	.section--01 .title::before {
		width:50px;
		margin-bottom:14px;
	}

	.section--01 .text {
		font-size:2rem;
	}

	.section--01 .swiper-control {
		margin-bottom:14px;
	}

	.section--01 .swiper-control .prev,
	.section--01 .swiper-control .next {
		width:44px;
		height:44px;
		margin:0px 6px 0px 0px;
	}
}
@media screen and (max-width:768px) {
	.section--01 {
		padding-top:120px;
	}

	.section--01 .title {
		font-size:3.6rem;
		margin-bottom:18px;
	}

	.section--01 .title::before {
		width:42px;
		height: 3px;
		margin-bottom:10px;
	}

	.section--01 .text {
		font-size:1.8rem;
	}

	.section--01 .swiper-control {
		margin-bottom:10px;
	}

	.section--01 .swiper-control .prev,
	.section--01 .swiper-control .next {
		width:38px;
		height:38px;
	}
}
@media screen and (max-width:500px) {
	.section--01 .title {
		font-size: 2.8rem;
	}

	.section--01 .text {
		font-size:1.6rem;
	}

	.section--01 .swiper-control .prev,
	.section--01 .swiper-control .next {
		width:34px;
		height:34px;
	}

	.section--01 .swiper-control .prev::before, .section--01 .swiper-control .next::before {
		background-size:auto 12px;
	}
}
/* -------------------------------- */


/* ---------------- About ---------------- */
.section--02 {
	overflow: hidden;
	background: #3d3b3a url('/en/img/main/section02_bg.png') no-repeat right center;
}

.section--02 .section-title {
	color:#fff;
}

.section--02 .area {
	position: relative;
	opacity: 0;
	-webkit-transform: translateX(50px);
	-moz-transform: translateX(50px);
	-ms-transform: translateX(50px);
	transform: translateX(50px);
	-webkit-transition: all 1s ease .5s;
	-moz-transition: all 1s ease .5s;
	-ms-transition: all 1s ease .5s;
	transition: all 1s ease .5s;
}

.section--02 .din {
	display: flex;
	justify-content: space-between;
}

.section--02 .lt {
	width:586px;
}

.section--02 .rt {
	width:calc(100% - 586px);
	padding-left:150px;
}

.section--02 .text {
	margin-bottom:80px;
}

.section--02 .text .t01 {
	font-size:2.8rem;
	font-weight:500;
	line-height:1.6;
	color:#ffffff;
	padding-bottom:30px;
	margin-bottom:30px;
	border-bottom:2px solid #d2d2d2;
}

.section--02 .text .t01 span {
	font-size:4.2rem;
	font-weight:700;
}

.section--02 .text .t02 {
	font-size: 2rem;
	line-height:1.6;
	color:#ffffff;
}

.section--02 .img {
	font-size:0px;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-origin:center 100%;
	-moz-transform-origin:center 100%;
	-ms-transform-origin:center 100%;
	transform-origin:center 100%;
	animation: slideOut ease .65s both;
}

.section--02 .swiper-container {
	overflow: visible;
}

.section--02 .swiper-slide-active .img {
	animation: slideIn ease .65s both;
}

.section--02 .pagination {
	display: flex;
	position: absolute;
	right: 0;
	left: unset;
	bottom:0;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	transform: none;
	width:calc(100% - 736px);
	z-index:50;
}

.section--02 .swiper-pagination-bullet {
	display: block;
	width:33.33%;
	height:60px;
	border:0px;
	opacity:1;
	background-color: transparent;
	margin:0px 10px 0px 0px !important;
}

.section--02 .swiper-pagination-bullet:last-child {
	margin:0px !important;
}

.section--02 .swiper-pagination-bullet span {
	display: flex;
	align-items: center;
	position: relative;
	width:100%;
	height:100%;
	padding-bottom: 20px;
	font-size:2.4rem;
	color:#737373;
	-webkit-transition:all .4s ease;
	-moz-transition:all .4s ease;
	-ms-transition:all .4s ease;
	transition:all .4s ease;
}

.section--02 .swiper-pagination-bullet span::after {
	content: "";
	display: block;
	position: absolute;
	left:0;
	bottom:0;
	width:100%;
	height:2px;
	background-color: #737373;
	-webkit-transition:all .4s ease;
	-moz-transition:all .4s ease;
	-ms-transition:all .4s ease;
	transition:all .4s ease;
}

.section--02 .swiper-pagination-bullet-active span {
	color:#f8a900;
}

.section--02 .swiper-pagination-bullet-active span::after {
	background-color: #f8a900;
}

@keyframes slideIn {
	from {
		opacity: 0;
		-webkit-transform: rotate(50deg);
		-moz-transform: rotate(50deg);
		-ms-transform: rotate(50deg);
		transform: rotate(50deg);
	}
	to {
		opacity: 1;
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}
}

@keyframes slideOut {
	from {
		opacity: 1;
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		opacity: 0;
		-webkit-transform: rotate(-50deg);
		-moz-transform: rotate(-50deg);
		-ms-transform: rotate(-50deg);
		transform: rotate(-50deg);
	}
}

@media screen and (max-width:1200px) {
	.section--02 .rt {
		padding-left:60px;
	}

	.section--02 .pagination {
		flex-direction: column;
		gap: 10px 0;
		width: calc(100% - 646px);
	}
	
	.section--02 .swiper-pagination-bullet {
		max-width: 300px;
		width: 100%;
		height: 50px;
	}
	
	.section--02 .swiper-pagination-bullet span {
		padding-bottom: 0;
	}
	
}
@media screen and (max-width:1024px) {
	.section--02 .swiper-container {
		display: flex;
		flex-direction: column;
	}

	.section--02 .swiper-wrapper {
		order: 2;
	}

	.section--02 .lt {
		width:386px;
	}

	.section--02 .rt {
		width:calc(100% - 386px);
		padding-left:40px;
	}

	.section--02 .text {
		margin-bottom:60px;
	}

	.section--02 .text .t01 {
		font-size: 2rem;
		padding-bottom:24px;
		margin-bottom:24px;
	}

	.section--02 .text .t01 span {
		font-size:3.2rem;
	}

	.section--02 .text .t02 {
		font-size: 1.8rem;
	}

	.section--02 .pagination {
		flex-direction: row;
		position: relative;
		right:unset;
		left: unset;
		bottom:unset;
		width:100%;
		order:1;
		margin-bottom:30px;
	}

	.section--02 .swiper-pagination-bullet {
		height:48px;
		width: 33%;
	}

	.section--02 .swiper-pagination-bullet span {
		font-size:2rem;
	}
}
@media screen and (max-width:768px) {
	.section--02 {
		background-position: right bottom;
		background-size:auto 50%;
	}

	.section--02 .img {
		width:100%;
	}

	.section--02 .img img {
		width:100%;
	}

	.section--02 .din {
		flex-wrap: wrap;
	}

	.section--02 .lt {
		width:100%;
	}

	.section--02 .rt {
		width:100%;
		padding-left:0px;
		padding-top:30px;
	}

	.section--02 .text {
		margin-bottom:54px;
	}

	.section--02 .text .t01 {
		font-size:1.8rem;
		padding-bottom:18px;
		margin-bottom:18px;
	}

	.section--02 .text .t01 span {
		font-size: 2.4rem;
	}

	.section--02 .text .t02 {
		font-size:1.6rem;
	}

	.section--02 .pagination {
		margin-bottom:24px;
	}

	.section--02 .swiper-pagination-bullet span {
		padding-bottom: 15px;
		font-size:1.8rem;
	}

	.section--02 .swiper-pagination-bullet {
		height:42px;
	}

	.section--02 .swiper-pagination-bullet span::after {
		height:1px;
	}
}
@media screen and (max-width:500px) {

	.section--02 .rt {
		padding-top:24px;
	}

	.section--02 .text {
		margin-bottom:48px;
	}

	.section--02 .text .t01 {
		font-size:1.6rem;
		padding-bottom:12px;
		margin-bottom:12px;
	}

	.section--02 .text .t01 span {
		font-size: 2rem;
	}

	.section--02 .text .t02 {
		font-size:1.4rem;
	}

	.section--02 .pagination {
		margin-bottom:18px;
	}

	.section--02 .swiper-pagination-bullet {
		height:38px;
	}

	.section--02 .swiper-pagination-bullet span {
		font-size:1.6rem;
	}
}
/* -------------------------------- */


/* ---------------- News ---------------- */
.section--03 {
	width:100%;
	height:100%;
	background: url('/en/img/main/section03_bg.png') no-repeat center / cover;
}

.section--03 .area {
	position: relative;
	opacity: 0;
	-webkit-transform: translateX(50px);
	-moz-transform: translateX(50px);
	-ms-transform: translateX(50px);
	transform: translateX(50px);
	-webkit-transition: all 1s ease .5s;
	-moz-transition: all 1s ease .5s;
	-ms-transition: all 1s ease .5s;
	transition: all 1s ease .5s;
}

.section--03 .swiper-container {
	overflow: visible;
}

.section--03 .navigation {
	display: flex;
	align-items: center;
	position: absolute;
	top:-130px;
	right:0;
}

.section--03 .navigation::before {
	content: "";
	display: block;
	position: absolute;
	top:50%;
	left:50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width:2px;
	height:20px;
	background-color: #c9c9c9;
}

.section--03 .prev,
.section--03 .next {
	display: block;
	width:22px;
	height:22px;
	cursor: pointer;
	margin:0px 20px;
}

.section--03 .prev::before,
.section--03 .next::before {
	content:"";
	display: block;
	width:100%;
	height:100%;
	background-repeat: no-repeat;
	background-position: center;
}

.section--03 .prev::before {
	background-image: url('/en/img/main/section03_prev.png');
}

.section--03 .next::before {
	background-image: url('/en/img/main/section03_next.png');
}

.section--03 .pagination {
	position: relative;
	top:unset;
	left:unset;
	right:unset;
	bottom:unset;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	transform: none;
	height:8px;
	background-color: #fff;
	margin-top:30px;
}

.section--03 .pagination .swiper-pagination-progressbar-fill {
	background-color: #f6a80c;
}

.section--03 .thumb {
	position: relative;
	width:100%;
	height:0;
	padding-top: calc(464/464*100%);
	overflow: hidden;
	background-color: #000;
}

.section--03 .thumb div {
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	-webkit-transition:all .4s ease-out;
	-moz-transition:all .4s ease-out;
	-ms-transition:all .4s ease-out;
	transition:all .4s ease-out;
}

.section--03 .cont {
	padding:40px;
	background-color: #fff;
}

.section--03 .cont .subject {
	overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
	font-size:2.4rem;
	height:68px;
	font-weight:600;
	line-height: 1.4;
}

@media (min-width:1201px) {
	.section--03 .swiper-slide a:hover .thumb div {
		transform: scale(1.05);
	}
}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.section--03 .navigation {
		top:-100px;
	}

	.section--03 .pagination {
		height:5px;
		margin-top:24px;
	}

	.section--03 .prev, .section--03 .next {
		margin:0px 14px;
	}

	.section--03 .cont {
		padding:34px;
	}

	.section--03 .cont .subject {
		font-size:2rem;
		height:58px;
	}
}
@media screen and (max-width:768px) {
	.section--03 .cont {
		padding:24px;
	}

	.section--03 .cont .subject {
		font-size:1.8rem;
		height:50px;
	}

	.section--03 .navigation {
		display: none;
	}

	.section--03 .pagination {
		height:3px;
		margin-top:18px;
	}
}
@media screen and (max-width:500px) {
	.section--03 .cont {
		padding:18px;
	}

	.section--03 .cont .subject {
		font-size:1.6rem;
		height:44px;
	}
}
/* -------------------------------- */


/* ---------------- Service ---------------- */
.section--04 .list {
	display: flex;
	gap:24px;
}

.section--04 .list li {
	flex:1 1;
}

.section--04 .list .card {
	position: relative;
	width:100%;
	height:0;
	padding-top:calc(400/708*100%);
	overflow: hidden;
}

.section--04 .list .cont {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	padding:0px 80px;
	opacity:0;
	-webkit-transform: translateX(-50px);
	-moz-transform: translateX(-50px);
	-ms-transform: translateX(-50px);
	transform: translateX(-50px);
	-webkit-transition:all 1s ease;
	-moz-transition:all 1s ease;
	-ms-transition:all 1s ease;
	transition:all 1s ease;
}

.section--04 .list .text {
	margin-bottom:40px;
}

.section--04 .list .text .t01 {
	font-size:3.6rem;
	font-weight:700;
	line-height: 1;
	color:#fff;
	padding-bottom:20px;
}

.section--04 .list .text .t02 {
	font-size:2rem;
	color:#fff;
}

.section--04 .list .img {
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index:-1;
}

.section--04 .list .img--01 {
	background-image: url('/en/img/main/section04_thumb01.png');
}

.section--04 .list .img--02 {
	background-image: url('/en/img/main/section04_thumb02.png');
}

.section--04.aos-animate .list .cont {
	opacity: 1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform: translateX(0px);
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.section--04 .list {
		gap:18px;
	}

	.section--04 .list .card {
		padding:0px;
		height:100%;
	}

	.section--04 .list .cont {
		position: relative;
		padding:60px;
	}

	.section--04 .list .text {
		margin-bottom:34px;
	}

	.section--04 .list .text .t01 {
		font-size:2.8rem;
		padding-bottom:14px;
	}

	.section--04 .list .text .t02 {
		font-size:1.8rem;
	}

}
@media screen and (max-width:768px) {
	.section--04 .list {
		flex-wrap: wrap;
		gap:12px;
	}

	.section--04 .list li {
		flex:1 1 100%;
	}

	.section--04 .list .cont {
		padding:40px;
	}

	.section--04 .list .text {
		margin-bottom:24px;
	}

	.section--04 .list .text .t01 {
		font-size: 2.4rem;
		padding-bottom:10px;
	}

	.section--04 .list .text .t02 {
		font-size:1.6rem;
	}
}
@media screen and (max-width:500px) {
	.section--04 .list .cont {
		padding:34px 30px;
	}

	.section--04 .list .text {
		margin-bottom:18px;
	}

	.section--04 .list .text .t01 {
		font-size: 2rem;
		padding-bottom:6px;
	}

	.section--04 .list .text .t02 {
		font-size:1.4rem;
	}
}
/* -------------------------------- */

/* Popup */
#popup {
	position: relative;
}

.popup-layer {
	z-index: 10000;
	position: absolute;
	background: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,.25);
	animation: popup-fade .65s ease-in-out .35s forwards;
	opacity: 0;
	max-width:800px;
}

@keyframes popup-fade {
	0% { opacity: 0;
		-webkit-transform: translateY(25px);
		-ms-transform: translateY(25px);
		transform: translateY(25px); }
	100% { opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0); }
}
.popup-layer__body {
	background: #fff;
}

.popup-layer__body img {
	display: block;
	margin: 0 auto;
	border: none;
	max-width: 100%;
}

.popup-layer__foot {
	background: #424242;
}

.popup-layer__foot ul {
	display:flex;
	flex-wrap: wrap;
}

.popup-layer__foot li {
	width:50%;
	padding:10px;
}

.popup-layer__foot li:first-child {
	padding-right:0;
}

.popup-layer__foot li:last-child {
	text-align: right;
}

.popup-layer__foot span {
	font-size: 1.5rem;
	color: #fff;
	cursor: pointer;
	transition:all 0.3s ease;
}

.popup-layer__foot label:hover span { opacity: .7; }

/* .popup-layer-foot { background: #424242; }
.popup-layer-foot span { font-size: 15px; color: #fff; }
.popup-layer-foot label:hover span { opacity: .7; }
.popup-layer-foot li:first-child { padding-right: 0; }
.popup-layer-foot li:last-child { text-align: right; } */


@media (max-width: 1024px){
	/* .popup-layer { z-index: 999; } */
	.popup-layer { top: 95px !important; left: 0 !important; margin: 0 5px; }
}
@media (max-width: 768px){

	.popup-layer {
		width:calc(100% - 10px);
	}

	.popup-layer img {
		max-width: none;
		width:100%;
		height: auto !important;
	}
	.popup-layer-foot span { font-size: 14px; }

}
@media (max-width: 375px){
	.popup-layer-foot li { width: 100%; }
	.popup-layer-foot li:last-child { text-align: left; }
}
