/* /home ============================================ */
.home {
  width: 100%;
}
.home h1 {
  display: block;
  width: 100%;
  height: auto;
  padding: 20px 0;
  font-family: "Pretendard-SemiBold";
  text-align: center;
}
.home h2 {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 5px;
  font-family: "Pretendard-SemiBold";
}
.home > div {
  width: 100%;
  height: auto;
  padding: 30px 10px;
  border-top: 1px solid #eee;
}
.home > div > div:not(:last-child) {
  padding-bottom: 25px;
}
.Containerbox {
  padding-bottom: 16px;
}
.FaqBox {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.contentWrap {
  width: 95%;
  height: auto;
  border-bottom: 1px solid var(--color_gray_light);
  padding: 20px 0px; /* Modified padding to be 0 on the sides */
}
.flexContainer {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* 민값을 내려보기. 작은핸드폰 사이즈 고려 */
.FaqBox .contentWrap {
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--color_gray_light);
  margin: 0 auto;
}
.FaqBox .contentWrap:last-child {
  border-bottom: none;
}

.FaqBox .titleText img {
  width: 20px;
  height: auto;
  /* background-color: #fff; */
}
.FaqBox .font_content2 {
  display: block;
  text-align: left;
  width: calc(100% - 60px);
  padding-left: 10px;
  /* background-color: darkcyan; */
}

.FaqBox .contentWrap > span {
  display: block;
  margin-top: 20px;
}

.contentText {
  width: calc(100% - 50px);
  margin: 0 auto;
  height: auto;
}
.contentText > div {
  width: 100%;
}
.font_content2 div > span {
  display: block;
}
.contentText div > span {
  display: block;
  line-height: 160%;
}
.contentText img {
  display: inline-block;
  width: auto;
  height: 20px;
  transform: translateY(12%);
  margin-top: 5px;
  margin-right: 2px;
}
.arrowContainer {
  width: 20px;
  height: 100%;
  /* background-color: #fff; */
}

.arrow {
  transition: transform 0.3s ease;
  margin-left: 2px;
}

@media screen and (min-width: 500px) and (max-width: 832px) {
  .contentWrap {
    max-width: 480px;
  }
}

@media screen and (min-width: 833px) {
  .contentWrap {
    max-width: 800px;
  }
  .FaqBox .titleText img {
    top: 6px;
    width: 22px;
  }
  .FaqBox .contentText div > span {
    font-size: 20px;
  }
}

.rotate {
  transform: rotate(360deg);
}

.titleText {
  transition: color 0.5s ease;
}

.greenText {
  color: #41b2a4;
}

.expand {
  animation: expandAnimation 0.2s ease-out;
}

@keyframes expandAnimation {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 100px;
    opacity: 1;
  }
}

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

.feedback {
  width: 100%;
  height: auto;
  padding: 40px 0 60px;
}

.feedback a {
  display: block;
  width: 120px;
  padding: 10px;
  background-color: var(--color_green_primary);
  color: white;
  text-align: center;
  border-radius: 5px;
  font-weight: 100;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}
/* contents ============================================ */
.commonContainer {
  width: 100%;
  height: auto;
}
.commonContainer ul {
  width: 90%;
  height: auto;
  margin: 0 auto;
}

.commonContainer li {
  width: 100%;
  border-radius: 15px;
  margin-top: 22px;
}
.commonContainer li:first-child {
  margin-top: 10px;
}

/* ---------------------------------------------------------------- */
.eventAddHeader {
  padding: 15px 0;
}
.eventAddHeader > div {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eventAddHeaderImg {
  float: left;
  margin-right: 10px;
}
.eventAddHeaderImg img {
  width: 18px;
  height: 18px;
}
.eventAddHeaderText {
  float: left;
  text-align: center;
  line-height: 1;
}
.eventAddHeaderText h2 {
  font-size: 16px;
  padding-top: 10px;
}
.eventAddHeaderText span {
  font-size: 12px;
  color: #353535;
}
.commonContainerEvent {
  background-color: none;
}

.commonContainerEventForm {
  width: 90%;
  margin: 0 auto;
}

.eventFormWrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 10px;
}

.eventFormWrap > div:nth-child(1) {
  width: 30%;
}
.eventFormWrap h3 {
  padding-top: 4px;
}
.eventFormWrap > div:nth-child(2) {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.eventFormWrap h3,
.eventFormWrap h4,
.eventFormWrap label {
  font-family: "Pretendard-Bold";
  font-size: 14px;
}

.commonContainerEventForm .eventReqError {
  width: 100%;
  font-size: 12px;
  color: red;
  text-align: right;
  margin: 0 10px 15px 0;
}

.eventFormCheck {
  display: flex;
  align-items: center;
  justify-content: right;
  text-align: right;
  float: left;
}
.eventFormCheck label {
  font-size: 12px;
  margin-left: 6px;
}
.eventFormCheck input:checked,
.eventCheck input:checked {
  background-color: rgb(241, 117, 40);
}
.eventFormCheck input {
  display: inline-block;
  margin-right: 2px;
}
input[type="radio"],
span {
  vertical-align: middle;
}

.eventFormText {
  width: 100%;
  height: auto;
}

.eventFormText input,
.eventFormText textarea {
  padding: 3px;
  border-radius: 2px;
  border: 1px solid #ddd;
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-family: "Pretendard-Bold";
  overflow-wrap: break-word;
}

.eventFormText input::placeholder,
.eventFormText textarea::placeholder {
  resize: none;
  white-space: pre-wrap;
  font-size: 11px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  display: none;
}
.eventCheck {
  margin: 4px 0;
  margin-left: 10px;
  width: 100%;
}
.eventCheck input {
  margin-top: 4px;
}

.eventCheck label {
  font-size: 14px;
  margin-left: 4px;
}

.Toastify__toast-body > div:last-child {
  font-size: 14px;
  font-family: "Pretendard-SemiBold";
  color: var(--color_black_dark);
}

/* ---------------------------------------------------------------- */

.contntsPiece {
  height: auto;
  border: 2px solid black;
}
.contentsWrap h3 {
  font-family: "Pretendard-SemiBold";
  margin-bottom: 25px;
}
.imgaltWrap h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.imgaltWrap span {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.contentsCenterWrap h2 {
  text-align: center;
}

.thinContntsPiece {
  height: auto;
  border: 1px solid black;
}
.contntsPiece img,
.thinContntsPiece img {
  width: 100%;
}

.iconWrap {
  display: flex;
  padding: 15px 0 10px;
}
.iconWrap-iconPart {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 10px;
}
.commonContainer .iconWrap-iconPartWide {
  width: 25%;
}
.iconWrap-iconPart img {
  width: 42px;
  height: 42px;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-bottom: 6px;
}
.iconWrap-iconPart > span {
  width: 100%;
  display: block;
  text-align: center;
  font-family: "Pretendard-Medium";
  font-size: 12px;
  color: #000;
}

.iconWrap-textPart {
  width: 55%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.commonContainer .iconWrap-textPartWide {
  width: 75%;
}
.iconWrap-textPart > span {
  display: block;
  padding: 5px;
}
.iconWrap-textPart span {
  font-size: 15px;
  font-family: "Pretendard-ExtraBold";
  line-height: 85%;
}

.iconWrap-textPart div {
  position: relative;
  display: inline-block;
  width: 20px;
  margin: 0 2px;
}
.iconWrap-textPart img {
  position: absolute;
  display: block;
  top: -16px;
}

/* component : EventPrice */
/* 이벤트 가격 */
.pricePiece {
  position: relative;
  height: 120px;
  transition: all 500ms ease-in;
  background-color: var(--color_white_basic);
}
.pricePieceWrap {
  display: flex;
  height: 100%;
  font-family: "OSeongandHanEum";
  padding-right: 50px;
}
.pricePieceWrap > img {
  display: block;
  width: 100px;
  height: 100px;
  margin-top: 12px;
  transition: all 500ms ease-in;
}
.pricePieceWrap > div {
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  margin: auto;
  height: 100%;
}
.pricePieceWrap > div > span {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  transition: all 500ms ease-in;
}
.pricePieceWrap i:last-child {
  width: auto;
  height: 100%;
  display: inline-block;
  position: absolute;
  display: block;
  right: 6px;
  top: 50%;
  bottom: 50%;
  margin: auto 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--color_orange_basic);
  font-size: 12px;
  text-align: center;
  line-height: 34px;
  color: var(--color_white_basic);
}
.pricePieceWrap svg {
  height: 12px;
  width: 12px;
  padding: 0 1vw;
}
.cancleText {
  position: relative;
  padding: 0 2px;
}
.cancleText span {
  position: absolute;
  left: 0;
  top: 50%;
  bottom: 50%;
  margin: 0 auto;
  width: 100%;
  height: 2px;
}
/* ============================================================= */
/* component : common */

.buttonWrapEvent {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  color: #333;
}
.buttonWrapEvent button,
.buttonWrapEvent a {
  display: inline-block;
  width: 110px;
  height: auto;
  padding: 5px 0;
  margin: 0 10px;
  border-radius: 8px;
  border: 2px solid black;
  color: black;
  text-align: center;
  font-family: none;
  font-weight: 900;
  font-size: 14px;
  word-spacing: -2px;
}

.buttonWrap {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 10px 0 35px;
}
.buttonWrap button,
.buttonWrap a {
  display: inline-block;
  width: auto;
  min-width: 70px;
  height: auto;
  padding: 4px 8px;
  margin: 0 10px;
  border-radius: 5px;
  border: 3px solid black;
  text-align: center;
  font-family: "Pretendard-SemiBold";
  font-size: 13px;
}

.contentsWrap button,
.contentsWrap a {
  border: 3px solid black;
  padding: 2px 20px;
  font-family: "Pretendard-SemiBold";
}

header {
  width: 90%;
  display: flex;
  height: auto;
  margin: 0 auto;
  transition: all 500ms ease-in;
  justify-content: center;
}
header img {
  display: block;
  width: 25px;
  height: 25px;
}
header div {
  width: auto;
  height: auto;
  margin-left: 3px;
}

/* .contentsCenterWrap {
  width: auto;
  height: auto;
  background-color: beige;
} */

/* mob size ============================================================= */
@media screen and (max-width: 599px) {
  .commonBox header {
    max-width: 350px;
    padding-bottom: 5px;
  }
  header img {
    width: 17px;
    height: 17px;
  }
  h2 {
    font-family: "Pretendard-Bold";
    word-spacing: -1px;
    font-size: 16px;
  }
  /*  eventprice page -------------------------------------------- */

  .contentsCenterWrap {
    width: 100%;
    max-width: 360px;
    transform: translateX(-50%);
    margin-left: 50%;
  }
  .contentsCenterWrap > img {
    width: 100%;
  }
}
/* // @media screen and (max-width: 599px) */

/* tab, pc size ============================================================= */
@media screen and (min-width: 600px) {
  .commonBox header {
    width: 550px;
    padding-bottom: 5px;
  }
  header img {
    width: 30px;
    height: 30px;
  }
  header span,
  h2 {
    font-size: 20px;
  }
  h2 {
    font-family: "Pretendard-Bold";
  }
  .contentsCenterWrap,
  .commonContainerEventForm {
    width: 550px;
    transform: translateX(-50%);
    margin-left: 50%;
  }
  .contentsCenterWrap > img {
    width: 100%;
  }
  /*  eventprice page -------------------------------------------- */
  .commonContainer ul {
    width: 550px;
  }
  .iconWrap {
    padding: 20px 0;
  }
  .pricePiece {
    position: relative;
    height: 180px;
    background-color: var(--color_white_basic);
    border-radius: 15px;
  }
  .pricePieceWrap > img {
    width: 170px;
    height: 170px;
    margin-top: 10px;
  }
  .pricePieceWrap > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .pricePieceWrap > div > span {
    display: block;
    text-align: center;
    font-size: 20px;
    padding: 10px 0;
    margin: 0 auto;
  }

  .pricePieceWrap svg {
    height: 15px;
    width: 15px;
    padding: 0 8px;
  }
  .pricePieceWrap > i:last-child {
    right: 6px;
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }

  .buttonWrap button,
  .buttonWrap a {
    min-width: 110px;
    margin: 0 12px;
    font-size: 20px;
  }
  .pricePiece > div span {
    font-size: 20px;
  }
}
/* // @media screen and (min-width: 600px) */

.grandopen {
  width: 100%;
  height: 100vh;
  background-color: var(--color_green_primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.grandopen h2 {
  text-align: center;
  color: var(--color_white_basic);
}
/* Privacy ======================================================================== */
.textBox header {
  display: block;
  width: 100%;
  height: auto;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.textBox h2 {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Pretendard-SemiBold";
}
.textBox h3 {
  display: block;
  font-size: 24px;
  font-family: "Pretendard-SemiBold";
}

.textBox h4 {
  font-size: 22px;
  font-family: "Pretendard-SemiBold";
  padding: 30px 0 20px;
}

.textBox header img {
  position: absolute;
  right: 20px;
  top: 20px;
  width: auto;
  height: 68px;
}

@media screen and (max-width: 430px) {
  .textBox header img {
    display: none;
  }
}

.textContentWrap {
  padding: 20px;
}
.privacyPiece {
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}
.privacyPiece:last-child {
  border-bottom: none;
}
.privacyPiece h5 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 15px;
}
.privacyPiece div,
.privacyPieceNoneTitle div {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #242424;
}
.textContentWrap table {
  width: 100%;
  border-spacing: collapse;
  font-size: 14px;
  margin: 20px 0;
}
.textContentWrap caption {
  margin-bottom: 6px;
  font-size: 18px;
  color: #333;
  font-weight: 800;
}
.textContentWrap td,
.textContentWrap th {
  border: 1px solid #cfcfcf;

  color: #242424;
}
.textContentWrap th {
  background-color: #fafaf6;
  padding: 8px 0;
  font-weight: 800;
}
.textContentWrap td {
  padding: 8px 6px;
  text-align: center;
}

.eventFormLeft {
  width: 30%;
  padding: 5px 0 5px 5px;
  vertical-align: top;
}

.eventFormRight {
  width: 100%;
  padding: 5px 5px 5px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.eventFormRight > div {
  margin-bottom: 5px;
}

.eventFormText {
  width: 90%;
}

.eventFormLeft h3,
.eventFormCheck label {
  font-family: "Pretendard-Bold";
  font-size: 14px;
}

.eventFormCheck .eventFormCheckH4 {
  font-size: 11px;
}

.eventCheck tbody tr div h4 {
  font-size: 12px;
}

.eventCheck tbody tr div input {
  float: left;
  margin: 4px 3px 4px 0;
}

.eventCheck tbody tr div h4 {
  float: left;
  padding: 5px 2% 0 5px;
}

input[type="checkbox"],
input[type="radio"] {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #878787;
  outline: none;
  margin-right: 5px;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background-color: var(—color_orange_basic);
  border: none;
}

.eventFormText input[type="text"]::placeholder {
  line-height: 1.5;
  font-size: 12px;
  white-space: pre-wrap;
}

@media screen and (min-width: 481px) and (max-width: 600px) {
  .pricePieceWrapFont div span,
  .pricePieceWraplabel,
  .eventChecklabel label {
    font-size: 3.6vw;
  }
}

@media screen and (max-width: 480px) {
  .pricePieceWrapFont div span {
    font-size: 3.35vw;
    text-align: center;
  }
  .pricePieceWraplabel label {
    font-size: 3.3vw;
  }
  .eventChecklabel label {
    font-size: 3.6vw;
  }
}

.resign {
  background-color: var(--color_green_primary);
  width: auto;
  min-width: 100vw;
  height: auto;
  min-height: 100vh;
  padding-top: 50px;
}
.resign > div {
  width: 90%;
  max-width: 400px;
  min-width: 300px;
  height: auto;
  margin: auto;
  background-color: #fff;
  padding: 20px 0;
  border-radius: 4px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}
.resign form {
  width: 90%;
  margin: 0 auto;
  border-bottom: 1px solid rgb(212, 212, 212);
  padding: 20px 10px;
}
.resign h2 {
  display: block;
  text-align: center;
}
.resign span {
  display: block;
  font-size: 16px;
  margin: 8px 0;
  margin-bottom: 30px;
  text-align: center;
  color: #878787;
}
.resign form > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: 8px;
}
.resign h3 {
  width: 25%;
  font-size: 14px;
}
.resign input,
.resign textarea {
  width: 75%;
  padding: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.resign button {
  width: auto;
  height: auto;
  padding: 4px 8px;
  background: #878787;
  color: #fff;
  font-size: 12px;
  margin: 0 auto;
  border-radius: 4px;
  margin-top: 20px;
}
.resign .textWrap span {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
}
