@charset "utf-8";
@import url(./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%;
}
section {
  width: 100%;
}
.iframe-form {
  min-height: 100vh;
  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: 8px;
  height: 8px;
}

*::-webkit-scrollbar-thumb {
  background-color: #97afc7;
  border-radius: 10px;
  background-clip: padding-box;
}
*::-webkit-scrollbar-track {
  background: #f2f4f6; /*스크롤바 뒷 배경 색상*/
  border-radius: 10px;
}
/* skip */
.skip {
  display: block;
  height: 1px;
  width: 1px;
  margin: 0 -1px -1px 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: 5px 0;
  text-indent: 10px;
  font-weight: bold;
  font-size: 12px;
  color: #333;
  line-height: 1;
  text-decoration: none !important;
  position: relative;
  text-align: center;
  box-shadow: 0 0 0 1px #000 inset;
}
/* 스크롤 */

.s__container {
  height: inherit;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
.s__row {
  padding: 0 20px;
}

:root {
  --Colors-Black: #131313;
  --Colors-Border: #ddd;
  --Colors-Primary: #003378;
  --Colors-Gray01: #999;
}
body {
  /* font-family: "Noto Sans KR", "Helvetica Neue", Helvetica, Arial, sans-serif; */
  font-family: "Pretendard", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--black);
}

/* input */
.s__input {
  padding: 11px 18px;
  border-radius: 5px;
  border: 1px solid var(--border);
  font-size: 16px;
  min-height: 48px;
  margin: 2px;
}
.s__input-small {
  padding: 8px 14px;
  font-size: 14px;
  min-height: 40px;
}
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 calc(100% - 16px)
    50%/16px auto;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid var(--Colors-Border, #ddd);
  color: var(--Colors-Gray02, #666);
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  padding: 14px 16px;
  flex: 1;
  height: 48px;
  min-width: 110px;
}
.s__select::-ms-expand {
  display: none; /*for IE10,11*/
}

/* PC (해상도 1024px)*/
@media all and (min-width: 1024px) {
}
/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1023px)*/
@media all and (max-width: 1023px) {
}
/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/
@media all and (max-width: 767px) {
  .s__btn-wrap {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .s__btn-between-wrap > div {
    flex-direction: column;
    align-items: stretch;
  }
}
