:root {
  --theme-color: #0a2d72;
  --theme-bg-color: #D0D5F3;
  --theme-bg-color-thin: rgba(208, 213, 243, .5);
  --theme-linear-gradient: linear-gradient(180.00deg, rgb(236, 235, 235), rgb(247, 247, 247) 100%), rgb(247, 247, 247);
  --custom-size: 1 / 1920 * 100vw;
  --header-h: 100px;
  --custom-size-20-40: clamp(20px, 40* var(--custom-size), 40px);
  --custom-size-10-20: clamp(10px, 20* var(--custom-size), 20px);
  --main-margin: clamp(10px, 60* var(--custom-size), 60px);
  --main-page-margin: clamp(20px, 160* var(--custom-size), 160px);
  --section-padding-top: max(30px, 100* var(--custom-size));
  --section-padding-bottom: max(30px, 120* var(--custom-size));
  --font-size-16: clamp(14px, 16* var(--custom-size), 16px);
  --font-size-18: clamp(16px, 18* var(--custom-size), 18px);
  --font-size-20: clamp(18px, 20* var(--custom-size), 20px);
  --font-size-22: clamp(19px, 22* var(--custom-size), 22px);
  --font-size-24: clamp(20px, 24* var(--custom-size), 24px);
  --font-size-26: clamp(22px, 26* var(--custom-size), 26px);
  --font-size-28: clamp(24px, 28* var(--custom-size), 28px);
  --font-size-30: clamp(26px, 30* var(--custom-size), 30px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* Safari */
  -moz-box-sizing: border-box;
  /* Firefox */
}

html {
  color: #fff;
  letter-spacing: 1px;
}

img {
  display: block;
  font-size: 0px;
  max-width: 100%;
  position: relative;
}

video {
  max-width: 100%;
}

section:not(.news-detail-sec2) h1,
section:not(.news-detail-sec2) h2,
section:not(.news-detail-sec2) h3,
section:not(.news-detail-sec2) h4,
section:not(.news-detail-sec2) h5,
section:not(.news-detail-sec2) h6 {
  font-size: 100%;
  font-weight: normal;
}

li {
  list-style: none;
}


.clearfix:after {
  content: "";
  visibility: hidden;
  height: 0;
  display: block;
  clear: both;
  zoom: 1;
}

a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
}

a:hover {
  color: #fff;
}

p {
  line-height: 1.5;
}

/* p+p{
margin-top: clamp(5px, 10* var(--custom-size), 10px);
} */

/* body,
button,
input,
select,
textarea {
  font: 16px/1.5 tahoma, arial, \5b8b\4f53;
} */
input,
select,
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  resize: none;
}

::-webkit-input-placeholder {
  font-size: 14px;
  color: #b2b2b2;
  font-weight: 400;
}

:-moz-placeholder {
  font-size: 14px;
  color: #b2b2b2;
  font-weight: 400;
}

::-moz-placeholder {
  font-size: 14px;
  color: #b2b2b2;
  font-weight: 400;
}

:-ms-input-placeholder {
  font-size: 14px;
  color: #b2b2b2;
  font-weight: 400;
}

.flex {
  display: flex;
}

.flex-jcsb {
  display: flex;
  justify-content: space-between;
}

.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-aic {
  display: flex;
  align-items: center;
}

.flex-jcc {
  display: flex;
  justify-content: center;
}

.flex-dir-col {
  flex-direction: column;
}

.img-lay {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.icon-lay {
  --lay-icon-w: 45;
  --lay-icon-w-max: 45px;
  width: clamp(40px, var(--lay-icon-w)* var(--custom-size), var(--lay-icon-w-max));
  height: clamp(40px, var(--lay-icon-w)* var(--custom-size), var(--lay-icon-w-max));
  border-radius: 50%;
  background-color: var(--theme-color);
  padding: 6px;
  flex-shrink: 0;
}

.banner-lay {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.content_id {
  display: none;
}

.main {
  margin: 0 var(--main-margin);
}

.main-l {
  margin-left: var(--main-margin);
}

.main-r {
  margin-right: var(--main-margin);
}

.main-page {
  margin: 0 var(--main-page-margin);
  position: relative;
}

.main-l-page {
  margin-left: var(--main-page-margin);
}

.main-r-page {
  margin-right: var(--main-page-margin);
}

svg path {
  transition: .3s;
}

.swiper {
  height: 100%;
}

.card-wrap {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  --column: 3;
  --gap: clamp(10px, 30* var(--custom-size), 30px);
  gap: var(--gap);
}

.card-wrap>.item {
  /* min-width: calc((100% - (var(--column) - 1) * var(--gap)) / var(--column)); */
  /* flex: 1; */
  width: calc((100% - (var(--column) - 1)* var(--gap)) / var(--column));
}

:not(html, body)::-webkit-scrollbar-button {
  display: none;
}

:not(html, body)::-webkit-scrollbar {
  width: 5px;
  border-radius: 5px;
  background-color: #ddd;
}

:not(html, body)::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
  border-radius: 5px;
}

body:not(.wfEditorMode) object {
  display: none;
}

.pic-txt-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.pic-txt-wrap .pic {
  height: 100%;
}

.pic-txt-wrap .txt {
  /* flex-shrink: 0; */
  padding: var(--custom-size-20-40);
}

.container {
  margin-top: max(30px, 60 * var(--custom-size));
  position: relative;
}