@charset "utf-8";
@import url(./style/font.css);

* {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}
*,
:after,
:before {
  box-sizing: border-box;
  flex-shrink: 0;
}
:root {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  cursor: default;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
  tab-size: 4;
}
html,
body {
  height: 100%;
  word-break: keep-all;
}
section {
  width: 100%;
}
.iframe-form {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
iframe {
  border: 0;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
button {
  background: none;
  border: 0;
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ul,
ol {
  list-style: none;
}

/* 추가 */
*::-webkit-scrollbar {
  width: 1.2rem;
  height: 1.2rem;
}

*::-webkit-scrollbar-thumb {
  background-color: #585e8a4c;
  border-radius: 1rem;
  background-clip: padding-box;
  border: 0.2rem solid transparent;
}

/* skip */
.skip {
  display: block;
  height: 0.1rem;
  width: 0.1rem;
  margin: 0 -0.1rem -0.1rem 0;
  padding: 0;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  background-color: #fff;
  z-index: 9999;
  position: relative;
}
.skip:hover,
.skip:active,
.skip:focus {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0.5rem 0;
  text-indent: 1rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
  line-height: 1;
  text-decoration: none !important;
  position: relative;
  text-align: center;
  box-shadow: 0 0 0 0.1rem #000 inset;
}
/* 스크롤 */

.sec-container {
  height: inherit;
  max-width: 112.8rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.sec-row {
  padding: 0 2.4rem;
  height: 100%;
  width: 100%;
}

body {
  font-family: "Pretendard", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--black);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.s__input::placeholder {
  color: var(--gray);
}
/* select */
.s__select {
  -webkit-appearance: none; /* for chrome */
  -moz-appearance: none; /*for firefox*/
  appearance: none;
  background: url("/image/icon_down_arrow.svg") no-repeat 95% 50%/1.8rem auto;
  background-color: #fff;
  padding: 1.2rem 5.4rem 1.2rem 1.8rem;
  border-radius: 0.5rem;
  border: 0.1rem solid var(--border);
  font-size: 1.6rem;
  min-height: 5rem;
  margin: 0.2rem;
}
.s__select::-ms-expand {
  display: none; /*for IE10,11*/
}

/* button */
.s__btn {
  margin: 0.2rem;
  text-wrap: nowrap;
  font-size: 1.6rem;
  padding: 0.6rem 2rem 0.4rem;
  border-radius: 0.4rem;
  transition: filter 0.3s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
}
.s__btn img {
  width: 2.4rem;
  margin-bottom: 0.2rem;
}
.s__btn-img-left {
  margin-right: 0.4rem;
}
.s__btn-img-right {
  margin-left: 0.4rem;
}
.s__btn-sm {
  font-size: 1.4rem;
  padding: 0.4rem 1.2rem;
  height: 3rem;
}
.s__btn-lg {
  font-size: 1.8rem;
  padding: 1rem 2rem;
  height: 4.8rem;
}
.s__btn-main {
  color: #fff;
  background-color: var(--main);
}
.s__btn-red {
  color: #fff;
  background-color: #dc3545;
}
.s__btn-line {
  border: 0.1rem solid var(--border);
}
.s__btn:disabled {
  opacity: 0.2;
  pointer-events: none;
}
.s__btn-line:hover {
  background-color: #fefefe;
}
.s__btn:hover {
  filter: brightness(0.9);
}
.s__btn:active {
  filter: brightness(0.8);
}
.s__btn-wrap {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.s__btn-left-wrap {
  justify-content: flex-start;
}
.s__btn-center-wrap {
  justify-content: center;
}
.s__btn-right-wrap {
  justify-content: flex-end;
}
.s__btn-between-wrap {
  justify-content: space-between;
}
.s__btn-between-wrap > div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.s__btn-row-wrap {
  flex-direction: column;
  align-items: stretch;
}

@media all and (max-width: 1024px) {
}
@media all and (max-width: 768px) {
}
