@charset "UTF-8";
:root {
  --color-orange: #FAA74B;
  --color-mint: #00B3AB;
  --color-brown: #594A41;
  --color-pink: #F3ACCB;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-pretendard: "Pretendard", sans-serif;
}

.font70 {
  --fontsize: 7.0rem;
  font-size: var(--fontsize);
}

.font64 {
  --fontsize: 6.4rem;
  font-size: var(--fontsize);
}

.font50 {
  --fontsize: 5.0rem;
  font-size: var(--fontsize);
}

.font40 {
  --fontsize: 4.0rem;
  font-size: var(--fontsize);
}

.font38 {
  --fontsize: 3.8rem;
  font-size: var(--fontsize);
}

.font34 {
  --fontsize: 3.4rem;
  font-size: var(--fontsize);
}

.paging {
  margin: 120px 0 0;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.paging a {
  border: none;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.paging .arr,
.paging ul {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.paging .arr a {
  width: 15px;
  height: 12px;
  margin: 0;
}
.paging .arr a .arrow-cls {
  fill: #666;
}
.paging ul {
  gap: 0 15px;
  padding: 0 15px;
}
.paging ul li {
  margin: 0 !important;
}
.paging ul li a {
  width: 40px;
  height: 40px;
  color: #666;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 50%;
  transition: all 0.4s;
}
.paging ul li:hover a, .paging ul li.on a {
  background: var(--color-white);
  color: #111;
}

input[type=checkbox],
input[type=radio] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid #dbdbdb;
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
}
input[type=checkbox]:checked,
input[type=radio]:checked {
  border-color: rgba(243, 172, 203, 0.4);
  background: url("/img/sub/checked.png") no-repeat center/50%;
}

textarea {
  resize: none;
}

select {
  border: none;
  outline: none;
  appearance: none;
  background: #fff url("/img/sub/arrow_select.png") no-repeat calc(100% - 20px) center;
  color: #555;
}
select::-ms-expand {
  display: none;
}

.check-box,
.radio-box {
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 5px;
  align-items: center;
  justify-content: flex-start;
}
.check-box span,
.radio-box span {
  color: #555;
  font-size: 1.5rem;
  font-weight: 300;
}

.board-box table {
  border-top: 1px solid #191919;
  table-layout: fixed;
}
.board-box table tr.top td > a {
  font-weight: 600;
}
.board-box table th, .board-box table td {
  height: 85px;
  font-size: 1.9rem;
  text-align: center;
  border-bottom: 1px solid #191919;
}
.board-box table th {
  background: #090909;
}
.board-box table td.left {
  text-align: left;
}
.board-box table td.subject {
  padding: 0 20px;
}
.board-box table td.subject a {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.view-box .top {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid #e0e0e0;
  padding: 0 0 60px;
  display: flex;
  flex-direction: column;
  row-gap: 30px 0;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.view-box .top h4 {
  height: 1.3em;
  font-size: 4.8rem;
  font-weight: 500;
  font-family: var(--font-optima);
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.view-box .top div {
  display: flex;
  flex-direction: row;
  row-gap: 0 20px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.view-box .top div p {
  color: #aaa;
  font-size: 1.9rem;
  line-height: 1;
}
.view-box .top div hr {
  width: 1px;
  height: 15px;
  background: #333;
}
.view-box .content {
  padding: 40px;
}
.view-box .content * {
  word-break: normal;
}
.view-box .content .inner {
  margin: 60px 0;
}
.view-box .content .file-box {
  display: flex;
  flex-direction: column;
  row-gap: 10px 0;
  column-gap: 0;
  align-items: flex-end;
  justify-content: flex-end;
}
.view-box .content .file-box a {
  font-size: 1.7rem;
  display: flex;
  flex-direction: row;
  row-gap: 0 10px;
  column-gap: 0;
  align-items: center;
  justify-content: flex-end;
}
.view-box .post-box {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  position: relative;
}
.view-box .post-box::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.view-box .post-box dl {
  height: 100px;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.view-box .post-box dl > * {
  height: 100%;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}
.view-box .post-box dl dt {
  width: 250px;
  gap: 0 20px;
  flex-shrink: 0;
  font-size: 1.7rem;
}
.view-box .post-box dl dd a {
  font-size: 1.9rem;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.agreement .privacy-text {
  width: 100%;
  height: 200px;
  background: #f9f9f9;
  border: 1px solid #dfdfdf;
  padding: 20px;
  margin-top: 20px;
  display: none;
}
.agreement .privacy-text * {
  line-height: 1.6;
}
.agreement .privacy-text .scrollable {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
}
.agreement .privacy-text .policy-top {
  margin-bottom: 20px;
}
.agreement .privacy-text .dl-box {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  column-gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
.agreement .privacy-text .dl-box > dl > dt {
  color: #444;
  font-size: 1.8rem;
  font-weight: 500;
}
.agreement .privacy-text .dl-box > dl > dd > p {
  margin: 10px 0;
}
.agreement .privacy-text .square {
  display: flex;
  gap: 0 5px;
}
.agreement .privacy-text .square::before {
  content: "■";
}
.agreement .privacy-text .square > p {
  width: 100%;
  padding: 0 0 0 13px;
}

.agree {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.agree .check-box span {
  color: var(--color-black);
  font-size: 1.6rem;
}
.agree button {
  width: 100px;
  height: 40px;
  border-radius: 100px;
  color: #222;
  font-size: 1.5rem;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: center;
}

.inquiry-box {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--color-pink);
  position: relative;
}
.inquiry-box::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #dfdfdf;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.inquiry-box .max50 {
  max-width: 50px;
}
.inquiry-box .max60 {
  max-width: 60px;
}
.inquiry-box .max70 {
  max-width: 70px;
}
.inquiry-box .max90 {
  max-width: 90px;
}
.inquiry-box .max200 {
  max-width: 200px;
}
.inquiry-box .max508 {
  max-width: 508px;
}
.inquiry-box .max600 {
  max-width: 600px;
}
.inquiry-box dl {
  width: 100%;
  min-height: 70px;
  display: flex;
  border-bottom: 1px solid #dfdfdf;
}
.inquiry-box dl.width-l {
  max-width: 750px;
}
.inquiry-box dl.width-s {
  max-width: 650px;
}
.inquiry-box dl dt,
.inquiry-box dl dd {
  height: 100%;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 0;
  align-items: center;
  justify-content: flex-start;
}
.inquiry-box dl dt {
  width: 200px;
  flex-shrink: 0;
  background: #f9f9f9;
  color: #222;
  font-size: 1.5rem;
  font-weight: 300;
  padding-left: 35px;
}
.inquiry-box dl dd {
  width: 100%;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  padding: 10px 20px;
}
.inquiry-box dl dd > .flex-box {
  width: 100%;
  height: 100%;
}
.inquiry-box input[type=text],
.inquiry-box input[type=password],
.inquiry-box .border {
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  width: 100%;
  height: 100%;
}
.inquiry-box input[type=text],
.inquiry-box input[type=password],
.inquiry-box select {
  font-size: 1.5rem;
  padding: 0 20px;
}
.inquiry-box input[type=text]::placeholder,
.inquiry-box input[type=password]::placeholder {
  color: #c9c9c9;
  font-size: 1.5rem;
  font-weight: 300;
}
.inquiry-box .flex-box {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.inquiry-box .flex-box.choice {
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 60px;
}
.inquiry-box .flex-box.list {
  max-width: 85%;
  padding: 10px 0;
}
.inquiry-box .flex-box.list label {
  height: auto;
}
.inquiry-box .flex-box label,
.inquiry-box .flex-box .flex-box {
  height: 100%;
}
.inquiry-box .phone > *:not(span) {
  width: 100%;
}
.inquiry-box .phone span {
  display: block;
  width: 10px;
  height: 1px;
  flex-shrink: 0;
  background: #ccc;
}
.inquiry-box .address button {
  height: 100%;
  flex-shrink: 0;
  background: #f5f5f5;
  border-radius: 5px;
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 300;
  padding: 0 15px;
}
.inquiry-box .detail,
.inquiry-box .detail .inner {
  width: 100%;
}
.inquiry-box .detail {
  border-right: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  padding: 25px;
}
.inquiry-box .detail .inner {
  height: 240px;
  position: relative;
}
.inquiry-box .detail p {
  color: #222;
  font-size: 1.5rem;
  font-weight: 300;
  position: absolute;
  top: 25px;
  left: 25px;
}
.inquiry-box .detail p span {
  color: #999;
}
.inquiry-box textarea {
  font-size: 1.5rem;
  padding: 25px;
  width: 100%;
  height: 100%;
}

.form-button {
  width: 190px;
  height: 62px;
  border-radius: 100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  row-gap: 0;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
}
.form-button.mint {
  background: var(--color-mint);
}
.form-button.brown {
  background: var(--color-brown);
}
.form-button span {
  color: var(--color-white);
  font-size: 1.7rem;
  font-weight: 600;
}

@media (max-width: 1760px) {
  .inquiry-box dl.width-l {
    max-width: 730px;
  }
  .inquiry-box dl.width-s {
    max-width: 630px;
  }
}
@media (max-width: 1760px) {
  .inquiry-box dl.width-l, .inquiry-box dl.width-s {
    max-width: 100%;
  }
  .inquiry-box dl dt {
    width: 240px;
  }
  .inquiry-box .flex-box.list {
    max-width: 100%;
  }
}
@media (max-width: 1400px) {
  .inquiry-box .flex-box.choice {
    column-gap: 40px;
  }
}
@media (max-width: 1200px) {
  .paging {
    margin: 60px 0 0;
  }
  select {
    background-position: calc(100% - 20px) center;
  }
  .search-box > * {
    height: 70px;
    padding: 0 20px;
  }
  .search-box select,
  .search-box button {
    max-width: 200px;
  }
  .view-box .top h4 {
    font-size: 4.2rem;
  }
  .view-box .content {
    padding: 20px;
  }
  .view-box .post-box dl {
    height: 80px;
  }
  .view-box .post-box dl dt {
    width: 200px;
  }
  .inquiry-box dl {
    height: auto;
    min-height: auto;
    flex-direction: column;
  }
  .inquiry-box dl dt,
  .inquiry-box dl dd {
    height: auto;
  }
  .inquiry-box dl dt {
    width: 100%;
    border-right: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    font-size: 1.7rem;
    padding: 20px;
  }
  .inquiry-box dl dd > .flex-box {
    height: auto;
  }
  .inquiry-box input[type=text],
  .inquiry-box input[type=password],
  .inquiry-box select,
  .inquiry-box select.border,
  .inquiry-box .address button {
    height: 50px;
  }
  .inquiry-box .detail,
  .inquiry-box textarea {
    padding: 20px;
  }
  .inquiry-box .detail p {
    top: 20px;
    left: 20px;
  }
  .inquiry-box .flex-box.choice {
    padding: 10px 0;
  }
}
@media (max-width: 960px) {
  .search-box button {
    max-width: 140px;
  }
  .board-box table col:first-child,
  .board-box table th:first-child,
  .board-box table td:first-child {
    display: none;
  }
  .board-box table th,
  .board-box table td {
    height: 75px;
    font-size: 1.8rem;
  }
  .view-box .top {
    gap: 20px 0;
    padding: 0 0 40px;
  }
  .view-box .top h4 {
    font-size: 3.4rem;
  }
  .view-box .form-button {
    width: 200px;
    height: 70px;
    margin: 60px auto 0;
  }
}
@media (max-width: 768px) {
  .paging {
    margin: 50px 0 0;
  }
  .paging ul {
    gap: 0 10px;
    padding: 0 10px;
  }
  .paging ul li a {
    width: 35px;
    height: 35px;
  }
  .check-box span,
  .radio-box span {
    font-size: 1.7rem;
  }
  .search-box select {
    max-width: 160px;
  }
  .search-box button {
    max-width: 120px;
  }
  .board-box table colgroup,
  .board-box table thead,
  .board-box table th:first-child,
  .board-box table td:first-child {
    display: none;
  }
  .board-box table tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 0;
    border-bottom: 1px solid #191919;
    padding: 20px;
  }
  .board-box table td {
    height: auto;
    order: 2;
    border-right: none;
    border-bottom: none;
  }
  .board-box table td.subject {
    order: 1;
    width: 100%;
    padding: 0;
  }
  .board-box table td.subject a {
    text-align: left;
  }
  .board-box table td.after::after {
    content: "|";
    color: #333;
    font-size: 1.4rem;
    margin: 0 10px;
  }
  .board-box table td.marginRight {
    order: 3;
    margin: 0 0 0 auto;
  }
  .view-box .top h4 {
    font-size: 2.8rem;
  }
  .view-box .post-box dl {
    height: 60px;
  }
  .view-box .post-box dl dt {
    width: 140px;
  }
  .view-box .form-button {
    width: 160px;
    height: 60px;
  }
  .inquiry-box .max200 {
    max-width: 160px;
  }
  .inquiry-box .m-wrap {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .inquiry-box input[type=text],
  .inquiry-box input[type=password],
  .inquiry-box select,
  .inquiry-box select.border,
  .inquiry-box .address button {
    height: 45px;
  }
  .inquiry-box .address button {
    font-size: 1.7rem;
  }
  .form-button {
    width: 140px;
    height: 55px;
  }
}
@media (max-width: 640px) {
  .check-box span,
  .radio-box span {
    white-space: nowrap;
  }
  .inquiry-box .flex-box.choice {
    row-gap: 10px;
    column-gap: 30px;
  }
  .inquiry-box .address {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}