:root {
  --theme-color: #00B140;
  --theme-bg-color: #F7F7F7;
  --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: 80px;
  --custom-size-20-40: clamp(20px, 40* var(--custom-size), 40px);
  --custom-size-10-20: clamp(10px, 20* var(--custom-size), 20px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* Safari */
  -moz-box-sizing: border-box;
  /* Firefox */
}

html {
  color: #111;
  font-weight: 300;
  font-family: Arial;
}

img {
  display: block;
  font-size: 0px;
  max-width: 100%;
  position: relative;
}

video {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

ul,
ol,
li {
  list-style: none;
}


.clearfix:after {
  content: "";
  visibility: hidden;
  height: 0;
  display: block;
  clear: both;
  zoom: 1;
}

a {
  text-decoration: none;
  color: #111;
  font-weight: 300;
}

/* 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 {
  width: clamp(30px, 50 * var(--custom-size), 50px);
  height: clamp(30px, 50 * var(--custom-size), 50px);
  border-radius: 50%;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.18);
  border: solid 1px #ffffff;
  cursor: pointer;
  transition: .3s;
}

.banner-lay {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.content_id {
  display: none;
}

.main {
  margin: 0 clamp(10px, 160* var(--custom-size), 160px);
}

.container {
  position: relative;
}

svg path {
  transition: .3s;
}

.swiper {
  height: 100%;
}

.card-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  --column: 3;
  --gap: var(--custom-size-10-20);
}

.card-wrap>.item {
  width: calc((100% - (var(--column) - 1)*var(--gap))/var(--column));
  margin-bottom: var(--gap);
  margin-right: var(--gap);
}

.card-wrap>.item:nth-child(3n) {
  margin-right: 0;
}

: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;
}