.sub_visual {
	overflow: hidden;
	height: 80vh;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
	display: flex;
    align-items: center;
    justify-content: center;
}
.sv_txt_wrap{
	max-width:1500px;
	width:100%;
	padding:0 50px;
	margin:0 auto;
	text-align:center;
}
.sv_txt_wrap p{
	font-size: 3em;
    font-weight: 900;
	color:#05613e;
}
.sv_txt_wrap span{
    font-size: 1.4em;
	line-height:1.4;
    font-weight: 500;
    display: block;
	padding-top:20px;
}
.product_visual{
	background-image:url('../img/product_visual.png');
}
.about_visual{
	background-image:url('../img/about_visual.png');
}
.inquiry_visual{
	background-image:url('../img/inquiry_visual.png');
}
.board_visual{
	background-image:url('../img/board_visual.png');
}
.sub_tit{
	padding-bottom:80px;
	padding-left: 20px;
    padding-right: 20px;
	text-align:center;
}
.sub_tit p{
	font-size:2.6em;
	font-weight:700;
}
.sub_tit span{
	font-size: 1.2em;
    padding-top: 10px;
    display: block;
}
.sub_tit strong{
	color:#1a7c57;
}

.video{
	text-align: center;
    background: #fff0c6;
}
.video video{
	max-width:900px;
	width:100%;
	margin:0 auto;
}

/* 제품소개 */
:root {
  --light: #ffe6e6;
  --dark: #0c0c0c;
}

.product_header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.product_category_container {
  --gap: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: calc(var(--gap) * 2);
  width: 100%;
  height: 50vh;
}

.product_content{
  --active: 0;
  cursor: pointer;
  overflow: clip;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* gap: 1.5rem; */
  padding: 2.5rem;
  width: calc((100% / 3) - var(--gap));
  height: 100%;
  border-radius: 1rem;
  transition: width 0.5s ease-in-out;
}
.product_content a{
	position:absolute;
	width:100%;
	height:100%;
	left:0;
	top:0;
	z-index:1;
}

.product_content:hover {
  --active: 1;
  /* width: calc(70% - var(--gap)); */
}

.product_content::before {
  content: "";
  position: absolute;
  z-index: -10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: var(--dark); */
  opacity: 0.2;
}
.product_content:last-child::before{
  background:linear-gradient(160deg, rgba(0,0,0, 0) 40%, rgba(0,0,0, .6) 60%, rgba(0,0,0, .8) 100%);
}
.product_content:hover:before {
  /* background-color: var(--dark); */
  opacity: 0.4;
  background:linear-gradient(160deg, rgba(0,0,0, 0) 40%, rgba(0,0,0, .6) 60%, rgba(0,0,0, .8) 100%);
}
.product_content:last-child:hover:before{
	 opacity: 0.25;
	background-color: var(--dark);
}

.product_content img {
  position: absolute;
  z-index: -20;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.product_content .profile_image {
  /* opacity: calc(1 - var(--active));
  transition: opacity 0.3s ease-in-out; */
}

.profile_detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 12rem;
  transition: transform 0.5s cubic-bezier(0.23, 0.93, 0.77, 1) 0.01s;
}

.profile_detail span {
  font-size: 1.8em;
  font-weight: 700;
  color: #fff;
  text-wrap: nowrap;
}

.profile_detail p {
  font-size: 0.9em;
  font-weight: 500;
  color: #fff;
}

.profile_quote p {
  font-size: 1.2em;
  font-weight: 600;
  color: #fff;
  transform: translate(0, calc((1 - var(--active)) * (100% + 2.5rem)));
  transition: transform 0.5s cubic-bezier(0.23, 0.93, 0.77, 1) 0.1s;
}

.product_wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.5s cubic-bezier(0.23, 0.93, 0.77, 1) 0.01s;
  transition: grid-template-rows 0.5s cubic-bezier(0.23, 0.93, 0.77, 1) 0.01s, -ms-grid-rows 0.5s cubic-bezier(0.23, 0.93, 0.77, 1) 0.01s;
}

.profile_quote {
  min-height: 0;
  transform: translateY(50%);
  opacity: 0;
  width: 100%;
  transform: translate(0, calc((1 - var(--active)) * (100% + 2.5rem)));
  transition: opacity 0.8s ease-in-out, transform 0.8s cubic-bezier(0.23, 0.93, 0.77, 1) 0.01s;
}
.product_more_btn {
	opacity:0;
	position:absolute;
	top:30px;
	right:30px;
	width:40px;
	height:40px;
	background:#fff;
	border-radius:50%;
	transition: ease 0.5s;
}
.product_more_btn img{
	display:block;
	opacity:1;
	width:13px;
	height:13px;
	filter: brightness(0%);
	z-index:1;
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}


.product_content:hover .product_wrapper {
  grid-template-rows: 1fr;
}

.product_content:hover .profile_quote {
  transform: none;
  padding-top:20px;
  opacity: 1;
}
.product_content:hover .product_more_btn{
	opacity:1;
}


.product_section{
	width:100%;
	color:#222;
}
.product_section_wrap{
	width:100%;
}
.product_section_wrap .flex{
	justify-content: space-between;
	align-items: center;
}
.product_section_wrap .flex:first-child{
	padding-bottom:120px;
}
#moni{
	background-color:#e1ede3;
}
#dashboard{
	background-color:#294b27;
	color:#fff;
}
#dashboard .product_more{
	border: 1px solid #fff;
	color:#fff;
	margin-bottom:80px;
}
#dashboard .product_more img{
	-webkit-filter: brightness(0) invert(1); 
	filter: brightness(0) invert(1);
}

.product_info_img img{
	width:100%;
	border-radius:40px;
}
.product_info_img_detail > div{
	background:#c5d7c8;
	border-radius:30px;
	padding:60px 0;
}
.product_info_img_detail img{
	display:block;
	margin:30px auto;
}
.product_info_top, .product_info_img, .product_info_img_detail, .product_info_bottom{
	width:46%;
}
.product_info_name{
	font-weight:400;
	font-size:0.9em;
}
.product_info_name p{
	padding-top:10px;
	font-weight:700;
	font-size:3em;
}
.product_info_name p span{
	font-size:0.8em;
	font-weight:500;
	padding-left:5px;
	color:#b1b1b1;
}
.product_info_sub{
	font-size: 1.8em;
    font-weight: 700;
    line-height: 1.4;
	margin:30px 0;
}
.product_info_con p{
	font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 60px;
    word-break: keep-all;
}
.product_info_bottom {
	padding-top:80px;
}
.product_feature{
	padding-left:20px;
	border-left:2px solid #c5d7c8;
}
.product_feature > div{
	padding:10px 0;
	position:relative;
}
.product_feature > div::after{
	content: '';
    display: block;
    position: absolute;
    left: -26px;
    top: 22%;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #94cb9d;
}
.product_feature > div::before{
	content: '';
    display: block;
    position: absolute;
    left: -24px;
    top: 28%;
    width: 15px;
    height: 2px;
    border-radius: 2px;
    background-color: #94cb9d;
}
.product_feature b{
	display:block;
	padding-bottom:3px;
	font-size:1.2em;
}
.product_spec{
	display:flex;
	justify-content: space-between;
	margin-top:50px
}
.product_spec_box{
	padding:25px 20px;
	border:1px solid #94cb9d;
	border-radius:20px;
	width:calc(100%/3 - 0.5rem);
}
.product_spec_box p{
	display:block;
	margin-bottom:15px;
	font-weight:700;
}
.product_spec_box ul li {
	padding-top:10px;
	line-height:1.5;
	letter-spacing:-0.02em;
}
.product_spec_box ul li span:first-child{
	display:block;
	font-size:0.9em;
	font-weight:400;
	padding-bottom:4px;
	color:#555;
}


/* 회사소개 */
.vision_wrap{
	display:flex;
	gap:40px;
}
.vision_wrap div{
	width: calc(100% / 3);
	display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    border: 5px solid #abcfb5;
    border-radius: 30px;
	text-align:center;
}
.vision_wrap div img{
	max-width:180px;
	display:block;
	margin:0 auto;
	margin-bottom:20px;
}
.vision_wrap div strong{
	display:block;
	font-size:1.2em;
	margin-bottom:20px;
}
.vision_wrap div p{
	word-break: keep-all;
	font-size:1.1em;
}
.vision_wrap div p span{
	display:block;
	margin-top:20px;
	font-size:0.9em;
	color:#555;
}

.value{
	/* background:#fff2cb; */
}
.value .inner, .team .inner{
	padding:0 50px 150px 50px;
}
.value_wrap{
	display: flex;
    flex-direction: column;
    gap: 40px;
}
.value_in{
	display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-radius: 30px;
    padding: 30px 30px;
}
.value_in:nth-child(2){
	flex-direction: row-reverse;
}
.value_in div.value_in_img {
    width: 48%;
	padding:0;
}
.value_in_img img{
	width:100%;
	border-radius: 25px;
}
.value_in div{
	background: #fff;
    border-radius: 25px;
    width: 48%;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
	line-height:1.6;
}
.value_in div strong{
	font-size:1.2em;
	display:block;
	margin-bottom:20px;
}


/* 팀 팝업 */
.team_wrap {
    /* padding: 30px 20px 40px; */
    display: flex;
    /* gap: 40px; */
    justify-content: space-between;
}
.member{
	width: calc(100% / 4 - 20px);
	display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3%;
    background: #f5f5f5;
	border-radius:30px;
	/* box-shadow: 25px 24px 49px -48px rgba(0,0,0,0.4);
	-webkit-box-shadow: 25px 24px 49px -48px rgba(0,0,0,0.4);
	-moz-box-shadow: 25px 24px 49px -48px rgba(0,0,0,0.4); */
	transition:ease 0.5s;
}
.member:hover{
	box-shadow:none;
	-webkit-box-shadow: none;
	-moz-box-shadow:none;
}
.member a{
	display:flex;
	width:40px;
	height:40px;
	border-radius:50%;
	background:#fff;
	align-items: center;
    justify-content: center;
	transition:ease 0.5s;
}
.member a img{
	width:13px;
}
.member a:hover{
	box-shadow: 10px 10px 20px -15px rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 10px 10px 20px -15px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 10px 10px 20px -15px rgba(0, 0, 0, 0.4);
}
.member_img{
	width:220px;
	height:220px;
	border-radius:50%;
	overflow:hidden;
}
.member img{
	width:100%;
}
.member strong{
	font-size: 0.9em;
    margin: 30px auto;
    margin-bottom: 15px;
    display: block;
}
.member strong:after{
	display: block;
    content: '';
    width: 30px;
    height: 2px;
    background: #17871a;
    margin: 0 auto;
    margin-top: 10px;
}
.member p{
	font-size: 1.3em;
	font-weight:700;
    text-align: center;
    margin-bottom: 30px;
}
.member p span{
	display: block;
	font-weight:400;
    font-size: 0.7em;
    color: #555;
}

.team{
	/* background: #e7e7e7; */
}

.team_popup{
	max-width: 1000px;
    width: 90%;
    position: fixed;
    border-radius: 25px;
    padding: 55px 50px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	box-shadow: 20px 20px 30px -28px rgba(0, 0, 0, 0.2);
    z-index: 2;
    /* border: 1px solid #1a7c57; */
}
.team_wrap > .btn_box{
	border: 1px solid #dadada; 
	padding: 15px 40px 15px; 
	background: #f5f6f7; 
	text-align: left; 
	margin-bottom: 20px; 
	box-shadow: 2px 2px 6px #dadada; 
	font-weight: 600; font-size: 17px; 
	position: relative; 
	display: inline-block; 
	width: 100%;
}

.team_popup_in{
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.popup_img{
	width:40%;
}
.popup_img img{
	width:100%;
	border-radius:25px;
}
.popup_txt{
	width: 60%;
    padding-left: 5%;
}
.popup_txt_top{
	padding: 15px 0 30px 0;
}
.popup_txt_top strong{
	font-size:1.4em;
}
.popup_txt_top strong span{
	padding-left: 10px;
    font-size: 0.9em;
    color: #aaa;
    font-weight: 500;
}
.popup_txt_top p{
	padding-top:4px;
	color: #1a7c57;
}
.popup_txt_bottom{
	margin-bottom:30px;
}
.popup_txt_bottom b{
	display:block;
	padding-top:20px;
}
.popup_txt_bottom ul{
	padding: 10px 20px 20px 20px;
    display: flex;
    flex-wrap: wrap;
}
.popup_txt_bottom ul li{
	list-style:disc;
	width:50%;
	padding:4px 0;
}
.pop_link{
	display:flex;
	justify-content:space-between;
	align-items: center;
}
.pop_email{
	display: table;
    color: #555;
    font-size: 0.9em;
    font-weight: 400;
	padding:0 2px;
	border-bottom:1px solid #aaa;
}
.pop_position{
	display: table;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid #2a2a2a;
    font-weight: 800;
	font-size:0.85em;
	transition:ease 0.5s;
}
.pop_position:hover{
	background:#f8f8f8;
}
.close_btn{
	display:block; 
	border:0;
	width:40px;
	height:40px;
	color: #fff; 
	background-image: url('../img/icon_close.png');
	background-repeat:no-repeat;
	background-position: center center;
	background-size:20px;
	background-color: #1a7c57; 
	position: absolute;
    right: 30px;
    top: 30px;
	border-radius:10px;
	cursor:pointer;
}


.history_wrap{
	/* padding-top:150px; */
	background: linear-gradient(180deg, rgba(237,186,105,1) 0%, rgba(184,201,123,1) 35%, rgba(131,176,210,1) 100%);
	overflow: hidden;
	position:relative;
}
.history_wrap .sub_tit{
	color:#fff;
}
.scrollfield {
	 /*height: 550vh;
	 overflow: visible;
	 view-timeline-name: --section-pin-tl;
	 view-timeline-axis: block; */
	 /* background-color: #edba69; */
}
 .scrollfield--sticky {
	 /* position: sticky;
	 top: 0;
	 overflow-x: hidden; */
}
 .anim-sector {
	 /* width: max-content; */
	 /* animation: linear move forwards, linear color forwards;
	 animation-timeline: --section-pin-tl;
	 animation-range: contain 0% contain 100%;
	 position: relative; */
}
 .heading {
	/* height: 100vh; */
    /* width: auto;
    display: flex;
    align-items: center;
    padding: 0 400px; */
	position: relative;
    z-index: 1;
}
.history_box_wrap{
	/* width: auto; */
    /* display: flex;
    flex-direction: column;
    	padding-right: 25px; */
	/* position:relative; */
	/* z-index:1; */
	max-width:1000px;
	width:100%;
	margin:0 auto;
}
.history_box_wrap h2{
	font-size: 2.3em;
    color: #fff;
    padding-bottom: 30px;
	text-align:center;
}
.history_box{
	display: flex;
	flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    padding-bottom: 80px;
}
.history_item{
	width: 100%;
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 20px 30px;
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    color: #fff;
    cursor: default;
    align-items: center;
}


.history_item:hover{
	box-shadow:0 0 4px 0 rgba(255,255,255,1)
}
.history_item strong{
	font-size:1.4em;
}
.history_item p{
	font-size: 1.2em;
    word-break: keep-all;
	width:80%;
	text-align:right;
}
.eng_history .history_item p{
}
 .articles {
	 /* height: 100%;
	 left: 0;
	 padding:80px 0;
	 position: absolute;
	 top: 0; */
	 /* width: 100%;
	 display: flex;
	 flex-flow: row nowrap;
	 justify-content: space-between;
	 overflow: hidden; */
	 position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 0 50px;
}
 .articles .article {
	 display: flex;
	 flex-flow: row nowrap;
	 /* height: 50vh; */
	 align-items: center;
	 gap: 25px;
}
 .articles .article--top {
	 align-self: start;
}
 .articles .article--top .article__visual {
	 align-self: start;
}
 .articles .article--bottom {
	 align-self: center;
}
 .articles .article--bottom .article__visual {
	 align-self: center;
}
 .articles .article__visual {
	 width: 100%;
	 /* max-height: 350px; */
	 display:flex;
	 justify-content: space-between;
	 flex-wrap: wrap;
}
 .articles .article__visual img {
	 object-fit: contain;
	 height: 100%;
}
 .articles .article__visual img:last-child{
	margin-left:80%;
 }
 .articles .article__content {
	 max-width: 350px;
	 color: #fff;
}
@keyframes move {
  to {
    transform: translateX(calc(-100% + 100vw));
  }
}

@keyframes color {
 0%, 25%{
    background-color: #edba69;
  }
  50%{
    background-color: #f1db96;
  }
  
  75% {
    background-color: #b8c97b;
  }
  100%{
	background-color: #83b0d2;
  }

}

#map, .map{
	width:60%; height:500px;
	border-radius:25px;
}
.map_inner{
	display: flex;
    justify-content: space-between;
	flex-direction: row-reverse;
}
.map_inner_wrap{
	display: flex;
	width:35%;
	flex-direction: column;
}
.map_img{
	width:100%;
}
.map_img img{
	width: 100%;
    border-radius: 25px;
}
.map_info{
	display:flex;
	justify-content: space-between;
    margin-top: 30px;
}
.map_info_wrap > div{
	padding-bottom:20px;
}
.map_info_wrap span{
	display:block;
}

.count_btn button{
	border: 0;
    border-radius: 50px;
    color: #fff;
    padding: 12px 20px;
    width: 200px;
    height: 60px;
    font-size: 1.1em;
	 background: #1a7c57;
	 box-shadow: 10px 10px 20px -15px rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 10px 10px 20px -15px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 10px 10px 20px -15px rgba(0, 0, 0, 0.4);
	transition:background 0.5s;
	margin: auto;
	 position: relative;
}
 .count_btn button:hover {
	 background: linear-gradient(-45deg, #004099 0%, #1a7c57 100%);
	 box-shadow:none;
	 -webkit-box-shadow:none;
	 -moz-box-shadow:none;
}
 .countup {
	 margin: auto;
	 position: relative;
	 width:200px;
}
.like_area{
	margin: 0 auto;
    text-align: Center;
    padding-bottom: 150px;
}
.like_area_img{
	margin-top:20px;
}
.like_area_img img{
	width:60px;
	margin-right:10px;
}
.like_area_img span{
	font-size:1.2em;
}
.frills, .frills:after, .frills:before {
	 position: absolute;
	 background: #1a7c57;
	 border-radius: 4px;
	 height: 4px;
}
 .frills:after, .frills:before {
	 content: "";
	 display: block;
}
 .frills:before {
	 bottom: 30px;
}
 .frills:after {
	 top:30px;
}
 .left-frills {
	 right: 164px;
	 top: 28.5px;
}
 .active .left-frills {
	 animation: move-left 0.38s ease-out, width-to-zero 0.38s ease-out;
}
 .left-frills:before, .left-frills:after {
	 left: 15px;
}
 .active .left-frills:before {
	 animation: width-to-zero 0.38s ease-out, move-up 0.38s ease-out;
}
 .active .left-frills:after {
	 animation: width-to-zero 0.38s ease-out, move-down 0.38s ease-out;
}
 .right-frills {
	 left: 164px;
	 top: 28.5px;
}
 .active .right-frills {
	 animation: move-right 0.38s ease-out, width-to-zero 0.38s ease-out;
}
 .right-frills:before, .right-frills:after {
	 right: 15px;
}
 .active .right-frills:before {
	 animation: width-to-zero 0.38s ease-out, move-up 0.38s ease-out;
}
 .active .right-frills:after {
	 animation: width-to-zero 0.38s ease-out, move-down 0.38s ease-out;
}
 .left-frills:before, .right-frills:after {
	 transform: rotate(34deg);
}
 .left-frills:after, .right-frills:before {
	 transform: rotate(314deg);
}
 @keyframes move-left {
	 0% {
		 transform: none;
	}
	 65% {
		 transform: translateX(-80px);
	}
	 100% {
		 transform: translateX(-80px);
	}
}
 @keyframes move-right {
	 0% {
		 transform: none;
	}
	 65% {
		 transform: translateX(80px);
	}
	 100% {
		 transform: translateX(80px);
	}
}
 @keyframes width-to-zero {
	 0% {
		 width: 38px;
	}
	 100% {
		 width: 8px;
	}
}
 @keyframes move-up {
	 100% {
		 bottom: 69.75px;
	}
}
 @keyframes move-down {
	 100% {
		 top: 69.75px;
	}
}

/* faq */
.sub_faq{

}


@media screen and (max-width:1400px){
	.sub_tit p{
		font-size:1.7em;
	}
	.sub_tit span{
		font-size:1.1em;
	}
	.sv_txt_wrap p {
		font-size: 2.5em;
	}
	.sv_txt_wrap span {
		font-size: 1.2em;
	}
	.product_info_name p {
		font-size: 2em;
	}
	.product_info_sub {
		font-size:1.4em;		
	}
	.product_info_con p{
		font-size:1em;		
	}
	.product_spec_box ul li span:first-child {
		font-size:0.8em;
	}
	.product_spec_box ul li span:last-child {
		font-size:0.9em;
	}
	.vision_wrap{
		gap:20px;
	}
	.value_in{
		padding:0;
	}
	.team_wrap {
		gap:20px;
		flex-wrap: wrap;
	}
	.member{
		width: calc(100% / 2 - 10px);
	}
	
}


@media screen and (max-width:1118px){
	.sub_tit p{
		font-size:1.4em;
	}
	.sub_tit span{
		font-size:1em;
	}
	.product_section_wrap .flex {
		flex-direction: column;
	}
	.product_section_wrap .flex:first-child{
		flex-direction: column-reverse;
		padding-bottom:80px;
	}
	.product_info_img_detail > div{
		padding:0;
	}
	.product_info_img_detail img{
		margin:0 auto;
		width:100%;
	}
	.product_info_top, .product_info_bottom{
		width:80%;
		padding-top:60px;
	}
	.product_info_img, .product_info_img_detail{
		width: 100%;
		max-width: 500px;
	}
	.member_img{
		width:150px;
		height:150px;
	}
	.vision_wrap {
		flex-direction: column;
	}
	.vision_wrap div {
		width: 100%;
		display: flex;
		flex-direction: row;
		text-align: left;
	}
	.vision_wrap div p {
		padding-left: 30px;
	}
	.heading{
		/* padding:0 140px; */
	}
	.history_item strong {
		/* font-size: 1.5em; */
	}
	/* .history_item{
		width: 260px;
		height: 350px;
	} */
	.articles {
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 120%;
		transform: translate(-50%, 0);
		padding:0;
	}
	.articles .article{
		height:100vh;
	}
	.articles .article__visual img {
		object-fit: contain;
		width: 250px;
		height: auto;
	} 
	.history_box_wrap h2{
		font-size:1.2em;
	}
	.value_in div{
		padding:3%;
	}
	.value_in div.value_in_img{
		padding:0;
	}
}

@media screen and (max-width:912px){
	.sub_visual{
		height:60vh;
	}
	.sv_txt_wrap span br{
		display:none;
	}
	.product_info_top, .product_info_bottom{
		width:100%;
	}
	.product_category_container{
		height:100vh;
		flex-direction: column;
	}
	.product_content{
		width:100%;
	}
	.product_wrapper{
		grid-template-rows: 1fr;
	}
	.profile_detail span {
		font-size: 1.4em;
	}
	.profile_quote {
		min-height: 70px;
		opacity: 1;
		width: 100%;
		transform: none;
		transition: none;
		padding-top: 20px;
	}
	.profile_quote p {
		font-size:1em;
		transform: none;
	}
	.product_content:last-child::before {
		background: rgba(0, 0, 0, 0.3);
		opacity: 1;
	}
	.product_more_btn{
		opacity:1;
	}
	.map_inner {
		flex-direction: column-reverse;
	}
	.map_inner {
		display: flex;
		flex-direction: column-reverse;
	}
	#map, .map {
		width: 100%;
		height: 350px;
	}
	.map_inner_wrap {
		width: 100%;
		flex-direction: row;
		margin-bottom: 40px;
	}
	.map_img {
		width: 60%;
	}
	.map_info {
		margin-top: 0;
		padding-left: 30px;
	}
	.count_btn button {
		width: 180px;
		height: 50px;
		font-size: 1em;
	}
	.member_img {
        width: 120px;
        height: 120px;
    }
	.member strong {
		margin: 10px auto;
		margin-bottom: 10px;
		padding-bottom: 0;
	}
	.member p {
		font-size: 1.2em;
		margin-bottom:15px;
	}
	.member a{
		width:30px;
		height:30px;
	}
	.member:last-child p{
		font-size:1em;
	}
	/* .articles .article__visual{
		height:100vh;
	}*/
}

@media screen and (max-width:768px){
	.product_info_name p{
		font-size:1.6em;
	}
	.product_info_name{
		font-size:0.7em;
	}
	.product_info_sub {
        font-size: 1.2em;
		margin:20px 0;
    }
	.product_info_con p{
		font-size:1em;
		margin-bottom:40px;
	}
	.product_feature b{
		font-size:1.1em;
	}
	.product_spec{
		flex-direction: column;
		gap:20px;
	}
	.product_spec_box {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	.product_spec_box ul{
		width:50%;
	}
	.vision_wrap div{
		flex-direction:column;
	}
	.vision_wrap div img {
		max-width: 150px;
	}
	.vision_wrap div strong{
		font-size:1.1em;
	}
	.vision_wrap div p{
		font-size:1em;
	}
	.value_in {
		flex-direction: column;
		padding-bottom:20px;
	}
	.value_in:nth-child(2) {
		flex-direction: column;
	}
	.value_in div{
		width:100%;
	}
	.value_in div.value_in_img{
		width:100%;
		padding-bottom:10px;
	}
	.map_img{
		width:100%;
	}
	.map_inner_wrap{
		display:block;
	}
	.map_info{
		margin-top:40px;
		padding-left:0;
	}
	.map_info_wrap{
		width:80%;
	}
	.team_wrap {
		flex-direction: column;
	}
	.member{
		width:100%;
	}
	.history_item{
		align-items: flex-start;
		flex-direction: column;
	}
	.history_item strong{
		font-size:1.1em;
	}
	.history_item p{
		width:100%;
		font-size:1em;
		text-align:left;
		padding-top:15px;
	}
	.articles .article__visual img{
		width:200px;
	}
	.articles .article__visual img:last-child {
		margin-left: 70%;
	}
	/* .scrollfield{
		height:450vh;
	} */
	.team_popup{
		padding: 40px 40px;
	}
	.team_popup_in {
		flex-direction: column;
	}
	.popup_txt {
		width: 100%;
		padding-left: 0;
	}
	.popup_txt_top strong {
		font-size: 1.2em;
		padding-top: 10px;
		display: block;
	}
	.close_btn{
		width:30px;
		height:30px;
	}
	.popup_txt_bottom {
		font-size:0.9em;
        height: 110px;
        overflow-y: scroll;
    }
	.popup_txt_bottom::-webkit-scrollbar {
		width: 8px;
	  }
	.popup_txt_bottom::-webkit-scrollbar-thumb {
		background-color: #1a7c57;
		border-radius: 10px;
		background-clip: padding-box;
		border: 2px solid transparent;
	  }
	.popup_txt_bottom::-webkit-scrollbar-track {
		background-color: rgba(255,255,255.3);
		border-radius: 10px;
	  }

}

@media screen and (max-width:600px){
	.sub_tit{
		padding-bottom:40px;
	}
	.vision_wrap {
        flex-direction: column;
    }
	.vision_wrap div p {
        padding-left: 0;
        text-align: center;
    }
	.value_in div strong {
		font-size: 1.1em;
		margin-bottom: 15px;
	}
	.popup_img{
		width:60%;
	}
	.member{
		padding:40px;
	}
	.member a {
        width: 50px;
        height: 50px;
    }
	.popup_txt_top strong{
		font-size:1.1em;
	}
	.pop_link {
		flex-direction: column;
		gap: 20px;
	}
}