@charset "utf-8";

:root {
  --po-color: #F31D1D;
  --po-gradi: linear-gradient(135deg, #ff2c4d 0%, #d20122 100%);
  --po-gradi-2: linear-gradient(135deg, #ff4548 0%, #F31D1D 50%, #F31D1D 70%, #ff975e 100%);
  --a-bg: rgb(255 97 97 / 4%);
}

/* Pretendard */
/* @import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard-dynamic-subset.css"); */

@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');


/* paperlogy */
@font-face {
  font-family: "paperlogy-R";
  src: url(../font/Paperlogy-4Regular.ttf) format("truetype");
  src: url(../font/Paperlogy-4Regular.ttf) format("woff");
}

@font-face {
  font-family: "paperlogy-M";
  src: url(../font/Paperlogy-5Medium.ttf) format("truetype");
  src: url(../font/Paperlogy-5Medium.ttf) format("woff");
}

@font-face {
  font-family: "paperlogy-SB";
  src: url(../font/Paperlogy-6SemiBold.ttf) format("truetype");
  src: url(../font/Paperlogy-6SemiBold.ttf) format("woff");
}

@font-face {
  font-family: "paperlogy-B";
  src: url(../font/Paperlogy-7Bold.ttf) format("truetype");
  src: url(../font/Paperlogy-7Bold.ttf) format("woff");
}

@font-face {
  font-family: "paperlogy-EB";
  src: url(../font/Paperlogy-8ExtraBold.ttf) format("truetype");
  src: url(../font/Paperlogy-8ExtraBold.ttf) format("woff");
}


::selection {
  background-color: var(--a-bg);
}


* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'paperlogy-M', sans-serif;
  font-size: 1.6rem;
  color: #222;
  cursor: default;
  word-break: keep-all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'paperlogy-SB', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
p {
  margin: 0;
  font-weight: normal;
  word-break: keep-all;
}

input:focus,
textarea,
button,
a,
select {
  outline-color: var(--po-color);
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  vertical-align: top;
}

a {
  font-family: 'paperlogy-M', sans-serif;
  text-decoration: none;
  color: #222;
}



li {
  list-style: none;
}

a,
p,
span {
  word-break: keep-all;
  letter-spacing: -0.3px;
}

.row_c {
  max-width: 1430px;
  margin: 0 auto;
}

.mt15 {
  margin-top: 15px;
}

section,
.padding_LR {
  box-sizing: border-box;
  padding: 0 20px;
}

.wrap {
  min-height: 850px;
}

.br {
  display: block;
}

.page_title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  padding: 20px;
  margin-bottom: 10px;
}

/* radio button */
input[type="radio"] {
  display: none;
}

input[type="radio"]+label {
  cursor: pointer;
}

input[type="radio"]+label>span {
  vertical-align: middle;
  padding-left: 5px;
}

input[type="radio"]+label:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid #aaa;
  border-radius: 50px;
  vertical-align: middle;
  margin-bottom: 2px;
  margin-right: 5px;
}

input[type="radio"]:checked+label:before {
  content: "";
  background-color: var(--po-color);
  border-color: var(--po-color);
  background-image: url('../img/check.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]+label {
  cursor: pointer;
}

input[type="checkbox"]+label>span {
  vertical-align: middle;
  padding-left: 5px;
}

input[type="checkbox"]+label:before {
  content: "";
  display: inline-block;
  background: url(../img/check_deact.png) center;
  background-size: cover;
  width: 17px;
  height: 17px;
  border: 2px solid #aaa;
  border-radius: 50px;
  vertical-align: middle;
}

input[type="checkbox"]:checked+label:before {
  content: "";
  background-color: var(--po-color);
  border-color: var(--po-color);
  background-image: url('../img/check.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

.navi_overflow {
  overflow-x: hidden;
  overflow-y: auto;
}

/* 스크롤바 */
::-webkit-scrollbar {
  width: 3px;
  margin: 10px 0;
}

::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar-thumb {
  background: var(--po-color);
  border-radius: 50px;
}

/* ::-webkit-scrollbar-button:vertical:start:decrement, modal_body::-webkit-scrollbar-button:vertical:start:increment{
  display: block;
  height: 15px;
}
::-webkit-scrollbar-button:vertical:end:decrement{
  display: block;
  width: 15px;
} */
/* 스크롤바 end */



@media screen and (max-width:970px) {
  html {
    font-size: 9px;
  }

  .wrap {
    padding: 0 20px;
  }

}


.mob-img {
  display: none;
}

@media screen and (max-width:760px) {
  .pc-img {
    display: none;
  }

  .mob-img {
    display: block;
  }
}