/* font */
@font-face {
    font-family: 'S-Core Dream';
    src: url('../font/SCDream4-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'S-Core Dream';
    src: url('../font/SCDream6-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
/* responsible */
html,body{
  font-family: 'S-Core Dream', 'Malgun Gothic', sans-serif;
  font-size: 20px;
}
@media screen and (max-width: 1023px) {
html,body{
  font-size: 18px;
}
}
@media screen and (max-width: 767px) {
html,body{
  font-size: 16px;
}
}
/* color */
:root{
  --primary01: #1A2636;
  --primary02: #2D415C;
  --secondary01: #4F3127;
  --secondary02: #F9ECC9;
  --gray01: #606060;
  --gray02: #999999;
}
/* common */
main{
  color: var(--gray01);
}
main img{
  width: 100%;
  object-fit: cover;
}
.en-tit{
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 400;
}
.en-par{
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
}
.kr-tit{
  font-size: 1.8rem;
  font-weight: 700;
}
.kr-tit-s{
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
  word-break: keep-all;
}
.kr-par{
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.1;
  text-align: center;
}
.kr-par-s{
  font-size: .7rem;
  font-weight: 400;
  line-height: 1.6;
}
.bd04{
    border-radius: .4rem;
    overflow: hidden;
}
.w1400{
  width: calc(100% - 40px);
  max-width: 1400px;
}
.banner-tit{
  position: relative;
  width: 100%; height: 24rem;
  padding-top: 11.35rem;
  background-blend-mode: multiply;
  box-sizing: border-box;
}
.banner-tit h2{
  position: absolute;
  left: 50%; bottom: 20%;
  transform: translateX(-50%);
  font-size: 3.2rem;
  font-weight: 200;
  letter-spacing: .5rem;
  color: #fff;
}
.title{
  width: 100%;
  padding-bottom: 3rem;
}
.title::before,
.title::after{
  content: "";
  display: block;
  width: 100%; height: 1px;
  background: var(--secondary01);
}
.title h2{
  flex-shrink: 0;
  margin: 0 1.5rem;
  color: var(--secondary01);
}
.scroll-disable{ /* 스크롤 비활성화 클래스 */
	height:100%; 
	min-height:100%; 
	overflow:hidden !important; 
	touch-action:none;
}