/* Common */
.sec-title {
	font-size:6.4rem;
	line-height:1.2;
}

.sec-title * {
	font-size: inherit;
}

.sec-title-custom {
	font-size:5.6rem;
	line-height:1.5;
}

.sec-text {
	font-size: 2rem;
	line-height:1.8;
}

.sec-text * {
	font-size: inherit;
}

.sec-link {
	display: flex;
	justify-content: center;
}

.sec-link a {
	display: flex;
	justify-content: center;
	align-items: center;
	width:320px;
	height: 56px;
	border:2px solid #ffffff;
	border-radius:100px;
	overflow: hidden;
	font-size:1.8rem;
	font-weight: 500;
	transition:all .3s ease;
}

.sec-link span {
	font-size: inherit;
	font-weight: inherit;
}

.sec-link .btn-wrap {
	display: flex;
	position: relative;
	overflow: hidden;
}

.sec-link .btn-wrap span {
	display: block;
	transition: all .3s ease;
}

.sec-link .btn-wrap span.show {
  transform: translateY(0);
}

.sec-link .btn-wrap span.hide {
  position: absolute;
  transform: translateY(100%);
}

@media screen and (min-width:1201px) {
	.sec-link a:hover {
		border-color:#0081c7;
		background-color: #0081c7;
	}

	.sec-link a:hover .btn-wrap span.show {
		transform: translateY(-100%);
	}

	.sec-link a:hover .btn-wrap span.hide {
		transform: translateY(0);
	}
}
@media screen and (max-width:1200px) {
	.sec-title {
		font-size:5rem;
	}

	.sec-title-custom {
		font-size:4.4rem;
	}

	.sec-text {
		font-size:1.8rem;
	}

	.sec-link a {
		width:280px;
		height: 50px;
		background-color: #0081c7;
		border-color: #0081c7;
		font-size:1.6rem;
	}
}
@media screen and (max-width:1024px) {
	.sec-link a {
		width: 240px;
		height: 46px;
	}
}
@media screen and (max-width:768px) {
	.sec-title {
		font-size:3.6rem;
	}

	.sec-title-custom {
		font-size:3rem;
	}

	.sec-text {
		font-size:1.6rem;
	}

	.sec-link a {
		width:200px;
		height:40px;
		font-size:1.4rem;
	}
}
@media screen and (max-width:576px) {
	.sec-title {
		font-size:2.8rem;
	}

	.sec-title-custom {
		font-size:2.4rem;
	}

	.sec-text {
		font-size:1.4rem;
	}

	.sec-link a {
		width:140px;
		height:36px;
		font-size:1.3rem;
	}
}


/* Pointer */
.pointer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	pointer-events: none;
}

.pointer .img {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transform: translate(-50%,-50%);
	opacity: 0;
	width:128px;
	height:128px;
	transition: all 0.25s ease-out;
}

.pointer .img img {
	width: 100%;
	height:100%;
}

@media screen and (min-width:1201px) {
	.pointer.on .img {
		opacity: 1;
	}
}


/* Intro */
.intro-art {
  position: fixed;
  top:50%;
	left:50%;
	transform: translate(-50%,-50%);
  width: 100%;
	height: 100%;
  height: calc(var(--vh, 1vh)*100);
	min-height: 100svh;
  z-index: 999;
  background-color: #0081c7;
}

.intro-art .intro-art-wrap {
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
}

.intro-art .intro-art-ani {
  opacity: 0;
	transform: translateY(100%);
	transition: all .6s ease;
}

.intro-art .intro-art-ani02 {
	transition-delay: .1s;
}

.intro-art .intro-art-ani03 {
	transition-delay: .2s;
}

.intro-art.out {
	opacity: 0;
  pointer-events: none;
}

.intro-art.show {
	visibility: visible;
}

.intro-art.up .intro-art-ani {
	opacity:1;
	transform: translateY(0);
}

.intro-art.hide .intro-art-ani {
	opacity: 0;
	transform: translateY(-100%);
}

.intro-art.fade-out {
  /* opacity: 0; */
	transition: all 1.2s ease;
  pointer-events: none;
	top:-100vh;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Visual */
.sec01 {
	display: flex;
	align-items: center;
	width: 100%;
	height: calc(var(--vh, 1vh)*100);
	height: 100svh;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}

.sec01 .mo {
	display: none;
}

.sec01 .wave {
	display: flex;
	flex-wrap: nowrap;
	gap:120px;
}

.sec01 .wave-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 60px;
	padding-left:100px;
}

.sec01 .wave-item-con {
	white-space: nowrap;
}

.sec01 .wave-item-con ul {
	white-space: nowrap;
	font-size:0px;
}

.sec01 .wave-item-con li {
	display: inline-block;
	vertical-align: top;
}

.sec01 .wave-item-con li:not(:last-child) {
	margin-right:24px;
}

.sec01 .wave-item-con .img {
	position: relative;
}

.sec01 .wave-item-con .img img {
	position: absolute;
	top: 50px;
	left: 0;
	height: 100%;
	border-radius:20px;
	object-fit: cover;
}

.sec01 .wave-item-con li.one {
	width:540px;
}

.sec01 .wave-item-con li.two {
	width:480px;
}

.sec01 .wave-item-con li.three {
	width: 560px;
}

.sec01 .wave-item-con li.four {
	width: 600px;
}

.sec01 .wave-item-con li.one .img {
	padding-top: calc(480/540*100%);
}

.sec01 .wave-item-con li.two .img {
	padding-top: calc(480/480*100%);
}

.sec01 .wave-item-con li.three .img {
	padding-top: calc(480/560*100%);
}

.sec01 .wave-item-con li.four .img {
	padding-top: calc(480/600*100%);
}

.sec01 .wave-container {
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	max-width:1280px;
	width: 100%;
	margin:0 auto;
}

@media screen and (max-width:1536px) {
	.sec01 .wave {
		gap:60px;
	}

	.sec01 .wave-item {
		padding-left: 40px;
	}

	.sec01 .wave-item-con li.one {
		width:440px;
	}

	.sec01 .wave-item-con li.two {
		width:400px;
	}

	.sec01 .wave-item-con li.three {
		width: 460px;
	}

	.sec01 .wave-item-con li.four {
		width: 500px;
	}

}
@media screen and (max-width:1200px) {
	.sec01 .wave-item {
		padding-left:20px;
	}
}
@media screen and (max-width:1024px) {
	.sec01 .pc {
		display: none;
	}

	.sec01 .mo {
		display: block;
	}

	.sec01 {
		position: relative;
		width: 100%;
		height: calc(var(--vh, 1vh)*100);
		height: 100svh;
	}

	.sec01 br {
		display: block;
	}
	
	.sec01 .mo {
		display: block;
		position: relative;
		width: 100%;
		height:100%;
	}

	.sec01 .swiper {
		overflow: visible;
	}

	.sec01 .swiper-wrapper {
		-webkit-transition-timing-function: linear;
		transition-timing-function: linear;
	}

	.sec01 .visual-mo-inner {
		display: flex;
		flex-direction: column;
		gap:40px;
		position: absolute;
		top:50%;
		left:20px;
		transform: translateY(-50%);
		width: 100%;
	}

	.sec01 .visual-mo-inner h1 {
		line-height:1.2;
	}

	.sec01 .visual-mo-inner .img {
		position: relative;
		width:100%;
		height:0;
		overflow: hidden;
		border-radius:20px;
	}

	.sec01 .visual-mo-inner .img img {
		position: absolute;
		top:0;
		left:0;
		max-width:100%;
		width:100%;
		height:100%;
	}

	.sec01 .visual-mo-inner ul {
		gap:12px;
	}

	.sec01 .visual-mo-inner li:nth-child(1) {
		width:360px;
	}

	.sec01 .visual-mo-inner li:nth-child(2) {
		width: 300px;
	}

	.sec01 .visual-mo-inner li:nth-child(3) {
		width: 280px;
	}

	.sec01 .visual-mo-inner li:nth-child(4),
	.sec01 .visual-mo-inner li:nth-child(5),
	.sec01 .visual-mo-inner li:nth-child(6),
	.sec01 .visual-mo-inner li:nth-child(7),
	.sec01 .visual-mo-inner li:nth-child(8),
	.sec01 .visual-mo-inner li:nth-child(9),
	.sec01 .visual-mo-inner li:nth-child(10),
	.sec01 .visual-mo-inner li:nth-child(11),
	.sec01 .visual-mo-inner li:nth-child(12) {
		width: 380px;
	}

	.sec01 .visual-mo-inner li:nth-child(13) {
		width:400px;
	}

	.sec01 .visual-mo-inner li:nth-child(1) .img {
		padding-top: 90.3%;
	}

	.sec01 .visual-mo-inner li:nth-child(2) .img {
		padding-top: 108.6%;
	}

	.sec01 .visual-mo-inner li:nth-child(3) .img {
		padding-top: 116.3%;
	}

	.sec01 .visual-mo-inner li:nth-child(4) .img,
	.sec01 .visual-mo-inner li:nth-child(5) .img,
	.sec01 .visual-mo-inner li:nth-child(6) .img,
	.sec01 .visual-mo-inner li:nth-child(7) .img,
	.sec01 .visual-mo-inner li:nth-child(8) .img, 
	.sec01 .visual-mo-inner li:nth-child(9) .img,
	.sec01 .visual-mo-inner li:nth-child(10) .img,
	.sec01 .visual-mo-inner li:nth-child(11) .img,
	.sec01 .visual-mo-inner li:nth-child(12) .img {
		padding-top: calc(480/560*100%);
	}

	.sec01 .visual-mo-inner li:nth-child(13) .img {
		padding-top: calc(480/600*100%);
	}

	.sec01 .wave-container {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.sec01 .visual-mo-inner ul {
		gap:8px;
	}

	.sec01 .visual-mo-inner li:nth-child(1) {
		width:320px;
	}

	.sec01 .visual-mo-inner li:nth-child(2) {
		width: 240px;
	}

	.sec01 .visual-mo-inner li:nth-child(3) {
		width: 220px;
	}

	.sec01 .visual-mo-inner li:nth-child(4),
	.sec01 .visual-mo-inner li:nth-child(5),
	.sec01 .visual-mo-inner li:nth-child(6),
	.sec01 .visual-mo-inner li:nth-child(7),
	.sec01 .visual-mo-inner li:nth-child(8),
	.sec01 .visual-mo-inner li:nth-child(9),
	.sec01 .visual-mo-inner li:nth-child(10),
	.sec01 .visual-mo-inner li:nth-child(11),
	.sec01 .visual-mo-inner li:nth-child(12) {
		width: 320px;
	}

	.sec01 .visual-mo-inner li:nth-child(13) {
		width:340px;
	}

	.sec01 .visual-mo-inner li:nth-child(1) .img {
		padding-top: 85.7%;
	}

	.sec01 .visual-mo-inner li:nth-child(2) .img {
		padding-top: 114.3%;
	}

	.sec01 .visual-mo-inner li:nth-child(3) .img {
		padding-top: 124.6%;
	}
}
@media screen and (max-width:576px) {
	.sec01 .visual-mo-inner {
		gap:20px;
	}
	
	.sec01 .visual-mo-inner h1 {
		line-height:1.3;
	}
}


/* Full */
.sec02 {
	overflow: hidden;
	visibility: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	width: 100%;
	height:0;
}

.sec02 .container {
	position: relative;
	z-index:10;
}

.sec02 .background {
	position: absolute;
	left:50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100%;
	height:100%;
	overflow: hidden;
}

.sec02 .background img {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
  object-fit: cover;
  z-index: 0;
}

.sec02 h1 {
	font-size: inherit;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.sec02 {
		overflow: visible;
		visibility: visible;
		height: calc(var(--vh, 1vh)*100);
		height: 100dvh;
	}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* History */
.sec03 {
	padding:160px 0px;
	background: url('/image/main/sec03_bak.png') no-repeat center / cover;
}

.sec03 .list {
	display: flex;
	flex-wrap: wrap;
	margin:-20px;
}

.sec03 .list li {
	flex:1 1 33.33%;
	max-width:33.33%;
	padding:20px;
}

.sec03 .list .card {
	width: 100%;
	height:100%;
	padding:60px 0px;
	background-color: rgba(0,68,128,.8);
	backdrop-filter:blur(10px);
	border:1px solid #1a6faf;
	border-radius:20px;
	overflow: hidden;
}

.sec03 .list .icon {
	display: block;
	width:56px;
	height:56px;
	background-repeat: no-repeat;
	background-position: center;
}

.sec03 .list .icon01 {
	background-image: url('/image/main/sec03_ico01.png');
}

.sec03 .list .icon02 {
	background-image: url('/image/main/sec03_ico02.png');
}

.sec03 .list .icon03 {
	background-image: url('/image/main/sec03_ico03.png');
}

.sec03 .list .icon04 {
	background-image: url('/image/main/sec03_ico04.png');
}

.sec03 .list .icon05 {
	background-image: url('/image/main/sec03_ico05.png');
}

.sec03 .list .icon06 {
	background-image: url('/image/main/sec03_ico06.png');
}

.sec03 .list p {
	line-height:1.4;
}

@media screen and (max-width:1200px) {
	.sec03 .list {
		margin:-12px;
	}

	.sec03 .list li {
		padding:12px;
	}
}
@media screen and (max-width:1024px) {
	.sec03 {
		padding:120px 0px;
	}

	.sec03 .list {
		margin:-8px;
	}

	.sec03 .list li {
		flex:1 1 50%;
		max-width:50%;
		padding:8px;
	}

	.sec03 .list .card {
		padding:40px 0px;
	}

	.sec03 .list .icon {
		width:46px;
		height:46px;
		background-size:auto 46px;
	}
}
@media screen and (max-width:768px) {
	.sec03 {
		padding:100px 0px;
	}

	.sec03 .list {
		margin:-4px;
	}

	.sec03 .list li {
		padding:4px;
	}

	.sec03 .list .card {
		padding:28px 0px;
	}

	.sec03 .list .icon {
		width:40px;
		height:40px;
		background-size:auto 40px;
	}
}
@media screen and (max-width:576px) {
	.sec03 {
		padding:80px 0px;
	}

	.sec03 .list {
		margin:-2px;
	}

	.sec03 .list li {
		flex:1 1 100%;
		max-width:100%;
		padding:2px;
	}

	.sec03 .list .card {
		padding:20px 0px;
	}

	.sec03 .list .icon {
		width:30px;
		height:30px;
		background-size:auto 30px;
	}
}


/* Business */
.sec04 {
	padding:160px 0px;
	position: relative;
	background: url('/image/main/sec04_bak01.jpg') no-repeat center / cover;
}

.sec04 .container {
	position: relative;
	z-index:10;
}

.sec04 .bak {
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size:cover;
	opacity: 0;
	transition:all .6s ease;
}

.sec04 .bak01 {
	background-image: url('/image/main/sec04_bak01.jpg');
}

.sec04 .bak02 {
	background-image: url('/image/main/sec04_bak02.jpg');
}

.sec04 .list {
	display: flex;
	justify-content: flex-end;
	gap:20px;
}

.sec04 .list li {
	max-width:440px;
	width: 100%;
	background-color: rgba(100,100,100,.3);
	backdrop-filter:blur(10px);
	box-shadow: 5.142px 6.128px 25px 0px rgba(0, 0, 0, 0.2);
	border-radius:20px;
	overflow: hidden;
}

.sec04 .list .card {
	padding:40px;
	overflow: hidden;
	transition:all .6s ease;
}

.sec04 .list .icon {
	width:64px;
	height:48px;
	background-repeat: no-repeat;
	background-position: center;
}

.sec04 .list .icon01 {
	background-image: url('/image/main/sec04_ico01.png');
}

.sec04 .list .icon02 {
	background-image: url('/image/main/sec04_ico02.png');
}

.sec04 .list span {
	position: relative;
	transition:all .6s ease;
}

.sec04 .list span::after {
	content: "";
	display: block;
	position: absolute;
	top:50%;
	right:0;
	transform: translateY(-50%);
	width:20px;
	height: 16px;
	background: url('/image/main/sec04_arr.png') no-repeat center;
	opacity:0;
	transition:all .6s ease .2s;
}

@media screen and (min-width:1201px) {
	.sec04.tank .bak01 {
		opacity: 1;
	}

	.sec04.grain .bak02 {
		opacity: 1;
	}

	.sec04 .list li:hover .card {
		background-color: #0081c7;
	}

	.sec04 .list li:hover span {
		padding-right:40px;
	}

	.sec04 .list li:hover span::after {
		opacity: 1;
	}
}
@media screen and (max-width:1200px) {
	.sec04 .list li {
		background-color: transparent;
		backdrop-filter:blur(0px);
	}

	.sec04 .list .card {
		background-color: #0081c7;
	}
}
@media screen and (max-width:1024px) {
	.sec04 {
		padding:120px 0px;
	}

	.sec04 .list {
		gap:12px;
	}

	.sec04 .list li {
		max-width:unset;
		width: 50%;
	}

	.sec04 .list .card {
		padding:28px;
	}

	.sec04 .list .icon {
		width:52px;
		height:40px;
		background-size: auto 40px;
	}
}
@media screen and (max-width:768px) {
	.sec04 {
		padding:100px 0px;
	}

	.sec04 .list {
		flex-wrap: wrap;
		gap:8px;
	}

	.sec04 .list li {
		width:100%;
	}

	.sec04 .list .icon {
		width:50px;
		height:36px;
		background-size: auto 36px;
	}
}
@media screen and (max-width:576px) {
	.sec04 {
		padding:80px 0px;
	}

	.sec04 .list {
		gap:4px;
	}

	.sec04 .list .card {
		padding:20px;
	}

	.sec04 .list .icon {
		width:40px;
		height:28px;
		background-size: auto 28px;
	}
}


/* Vision */
.sec05 {
	padding:160px 0px;
	background: #f2f8fc url('/image/main/sec05_bak.png') no-repeat center / cover;
}

.sec05 .list {
	display: flex;
	gap:80px;
}

.sec05 .list li {
	flex:1 1;
}

.sec05 .list li:last-child .card {
	margin-top: 80px;
}

.sec05 .list p {
	line-height:1.4;
}

@media screen and (max-width:1200px) {
	.sec05 .list {
		gap:60px;
	}
}
@media screen and (max-width:1024px) {
	.sec05 {
		padding:120px 0px;
	}

	.sec05 .list {
		gap:40px;
	}

	.sec05 .list li:last-child .card {
		margin-top: 60px;
	}
}
@media screen and (max-width:768px) {
	.sec05 {
		padding:100px 0px;
	}

	.sec05 .list {
		flex-wrap: wrap;
		gap:30px;
	}

	.sec05 .list li {
		flex:1 1 100%;
		max-width: 100%;
	}

	.sec05 .list li:last-child .card {
		margin-top: 0px;
	}
}
@media screen and (max-width:576px) {
	.sec05 {
		padding:80px 0px;
	}

	.sec05 .list {
		gap:20px;
	}
}


/* Support */
.sec06 {
	padding:160px 0px;
	background: url('/image/main/sec06_bak.jpg') no-repeat center / cover;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.sec06 {
		padding:120px 0px;
	}
}
@media screen and (max-width:768px) {
	.sec06 {
		padding:100px 0px;
	}
}
@media screen and (max-width:576px) {
	.sec06 {
		padding:80px 0px;
	}
}


/* News */
.sec07 {
	padding:160px 0px;
}

.sec07 .hd {
	width: 30%;
}

.sec07 .bd {
	width: 70%;
}

.sec07 .list {
	border-top: 2px solid #0081c7;
	border-bottom: 1px solid #aaaaaa;
}

.sec07 .list li {
	position: relative;
}

.sec07 .list li:not(:last-child)::after {
	content: "";
	display: block;
	position: absolute;
	left:0;
	bottom:0;
	width: 100%;
	height:1px;
	background-color:#d8d8d8;
}

.sec07 .list li.list-message {
	padding: 200px 30px;
}

.sec07 .list a {
	display: block;
	position: relative;
	padding:40px 0px;
	transition: all .4s ease;
}

.sec07 .list dt {
	width:140px;
}

.sec07 .list dd {
	width: calc(100% - 140px);
	padding-right:100px;
}

.sec07 .list dd h5 {
	position: relative;
	transition:all .4s ease;
}

.sec07 .list dd h5::before {
	content: "";
	display: block;
	position: absolute;
	top:50%;
	left:0;
	transform: translateY(-50%);
	width:0;
	height:2px;
	background-color: #000;
	transition:all .4s ease;
}

.sec07 .list dd p {
	line-height:1.7;
}

@media screen and (min-width:1201px) {
	.sec07 .list li:hover a {
		background-color: #e7f6ff;
	}

	.sec07 .list li:hover dd h5 {
		padding-left:30px;
	}

	.sec07 .list li:hover dd h5::before {
		width:20px;
	}
}
@media screen and (max-width:1200px) {
	.sec07 .list dd  {
		padding-right:0px;
	}
}
@media screen and (max-width:1024px) {
	.sec07 {
		padding:120px 0px;
	}

	.sec07 .list a {
		padding: 28px 0px;
	}

	.sec07 .list dt {
		width:100px;
	}

	.sec07 .list dd {
		width: calc(100% - 100px);
	}
}
@media screen and (max-width:768px) {
	.sec07 {
		padding:100px 0px;
	}

	.sec07 .hd {
		width: 100%;
		margin-bottom:40px;
	}

	.sec07 .bd {
		width: 100%;
	}

	.sec07 .list a {
		padding:20px 0px;
	}

	.sec07 .list dt {
		width:80px;
	}

	.sec07 .list dd {
		width: calc(100% - 80px);
	}
}
@media screen and (max-width:576px) {
	.sec07 {
		padding:80px 0px;
	}

	.sec07 .hd {
		margin-bottom:30px;
	}

	.sec07 .list a {
		padding:16px 0px;
	}
}

/* Popup */
#popup {
	position: relative;
}

.popup-layer {
	z-index: 900;
	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; }
}