:root {
  --color-main: #9747FF;
  --color-sub: #692498;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --font-pretendard: "Pretendard", sans-serif;
  --font-roboto: "Roboto", sans-serif;
}

.font120 {
  --fontsize: 12.0rem;
  font-size: var(--fontsize);
}

.font100 {
  --fontsize: 10.0rem;
  font-size: var(--fontsize);
}

.font60 {
  --fontsize: 6.0rem;
  font-size: var(--fontsize);
}

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

.font46 {
  --fontsize: 4.6rem;
  font-size: var(--fontsize);
}

.paging {
  margin: 95px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paging a {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paging .arr,
.paging ul {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.paging .arr {
  gap: 0 5px;
}
.paging .arr a {
  width: auto;
  margin: 0;
}
.paging .arr a i {
  color: #666;
}
.paging .arr a.btn_first, .paging .arr a.btn_last {
  letter-spacing: 0;
}
.paging .arr a.btn_first i, .paging .arr a.btn_last i {
  margin: 0 -11px;
  transform: translateX(0);
}
.paging ul {
  gap: 0 12px;
  padding: 0 15px;
}
.paging ul li {
  margin: 0 !important;
}
.paging ul li a {
  width: 30px;
  height: 30px;
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 50%;
  transition: all 0.4s;
}
.paging ul li:hover a, .paging ul li.on a {
  background: var(--color-black);
  color: var(--color-white);
}

input[type=checkbox],
input[type=radio] {
  border: 2px solid rgba(219, 219, 221, 0.73);
  appearance: none;
  cursor: pointer;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
input[type=checkbox]:checked {
  background: url("/img/sub/checkIconB.png") no-repeat center/75%;
  border: 2px solid #000;
}

.formBox .ch-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.formBox .ch {
  position: relative;
}
.formBox .ch input[type="radio"],
.formBox .ch input[type="checkbox"] {
  opacity: 0;
  height: auto;
  line-height: auto;
  position: absolute;
}
.formBox .ch input[type="radio"]+span,
.formBox .ch input[type="checkbox"]+span {
  position: relative;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.4 !important;
  color: #fff;
  width: 100%;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding:0 40px;
  cursor: pointer;
}
.formBox .ch input[type="radio"]+span:before,
.formBox .ch input[type="checkbox"]+span:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  background: #aaa;
  border: none;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 60px;
  z-index:-1;
}
.formBox .ch input[type="checkbox"]:checked+span:before {
  background: var(--color-main);
}
.formBox .ch.rd input[type="radio"]+span {
  font-weight: 400;
  font-size: 1.6rem;
  color: #333;
  padding:0 0 0 35px;
  display: inline-block;
  width: auto;
  height: auto;
}
.formBox .ch.rd input[type="radio"]+span:before {
  width: 13px;
  height: 13px;
  background: #fff;
  border: 6px solid #ddd;
  top: -2px;
}
.formBox .ch.rd input[type="radio"]:checked+span:before {
  border-color: var(--color-main);
  background: #fff;
}

textarea {
  resize: none;
}

select {
  border: none;
  outline: none;
  appearance: none;
  background: var(--color-white) url("/img/sub/selectArrow.png") no-repeat calc(100% - 30px) center;
  color: #111;
  font-size: 1.7rem;
  padding: 0 30px;
}
select::-ms-expand {
  display: none;
}

.searchBox.small {
  text-align: right;
  margin: 0 0 30px;
}
.searchBox.small label {
  display: inline-flex;
  height: 60px;
  position: relative;
  z-index: 1;
}
.searchBox.small label::before {
  content: "";
  display: block;
  background: var(--color-white);
  border: 2px solid #222;
  border-radius: 60px;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.searchBox.small input {
  width: 340px;
  height: 100%;
  background: transparent;
  padding: 0 30px;
}
.searchBox.small input::placeholder {
  color: #aaa;
  font-size: 1.5rem;
  font-weight: 300;
}
.searchBox.small button {
  width: 60px;
  height: 100%;
  flex-shrink: 0;
  background: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.searchBox.small button img {
  width: 24px;
  filter: brightness(0) invert(1);
}
.searchBox.big {
  display: flex;
  gap: 0 10px;
  background: #f9f9f9;
  padding: 60px;
  position: relative;
  z-index: 1;
}
.searchBox.big .inner {
  overflow: hidden;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.searchBox.big span {
  color: rgba(0, 0, 0, 0.02);
  font-size: 16rem;
  font-weight: 900;
  position: absolute;
  right: 0;
	bottom: -0.3em;
}
.searchBox.big input[type=text],
.searchBox.big .searchButton {
  width: 100%;
  height: 60px;
  border-radius: 30px;
}
.searchBox.big .selectCustom,
.searchBox.big .searchButton {
  flex-shrink: 0;
}
.searchBox.big .selectCustom {
  max-width: 420px;
  background-color: var(--color-white);
}
.searchBox.big .selectCustom button {
  border: none;
}
.searchBox.big input {
  color: #111;
  font-size: 1.7rem;
  padding: 0 50px;
}
.searchBox.big input::placeholder {
  color: #ccc;
}
.searchBox.big .searchButton {
  max-width: 180px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 1.7rem;
  font-weight: 700;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.searchBox.big .searchButton:hover {
  background: var(--color-main);
}

.formButton {
  width: 270px;
  height: 70px;
  border-radius: 70px;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  transition: all 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.formButton::before {
  content: "";
  display: block;
  background: var(--color-black);
  border-radius: 100px;
  z-index: -1;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.formButton:hover::before {
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  background: var(--color-main);
}
.formButton.bgX {
  color: #222;
}
.formButton.bgX::before {
  background: var(--color-white);
  border: 2px solid var(--color-black);
}
.formButton.bgX:hover {
  color: var(--color-main);
}
.formButton.bgX:hover::before {
  background: var(--color-white);
  border-color: var(--color-main);
}

span.state {
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  margin: 0 auto;
}
span.state.block {
  width: 85px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
span.state.padding {
  display: inline-block;
  padding: 8px 20px;
}
span.state.bg {
  color: var(--color-white);
}
span.state.border {
  border: 1px solid #333;
  color: #333;
}
span.state.black {
  background: var(--color-black);
}
span.state.on {
  background: var(--color-main);
}
span.state.off {
  background: #999;
}

.boardBox table {
  border-top: 2px solid var(--color-black);
  table-layout: inherit;
}
.boardBox table * {
  font-family: "Roboto", "Pretendard";
}
.boardBox table tbody tr {
  position: relative;
}
.boardBox table tbody tr::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-black);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.6s;
}
.boardBox table tbody tr:hover::after {
  width: 100%;
}
.boardBox table tr.top td > a {
  font-weight: 600;
}
.boardBox table th, .boardBox table td {
  height: 100px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}
.boardBox table th {
  background: #f9f9f9;
  color: #111;
  font-size: 1.7rem;
  position: relative;
}
.boardBox table th:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: #e0e0e0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.boardBox table td {
  font-size: 1.6rem;
}
.boardBox table td > a {
  color: #222;
  font-size: 1.7rem;
  font-weight: 500;
  font-family: var(--font-pretendard);
}
.boardBox table td.left {
  text-align: left;
}
.boardBox table td.subject {
  padding: 0 20px;
}
.boardBox table td.subject a {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.galleryBox .img {
  position: relative;
  overflow: hidden;
}
.galleryBox .img img {
  max-height: inherit;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.galleryBox.vertical {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px 47px;
}
.galleryBox.vertical .item {
  width: 100%;
  overflow: hidden;
}
.galleryBox.vertical .item:hover .img img {
  transform: translate(-50%, -50%) scale(1.2);
}
.galleryBox.vertical .img {
  padding: 33.805% 0px;
}
.galleryBox.vertical .img img {
  transition: all 0.4s;
}
.galleryBox.vertical .text {
  padding: 25px 0 0;
}
.galleryBox.vertical h6 {
  height: 1.3em;
  color: #333;
  font-size: 2rem;
  font-weight: 500;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.galleryBox.vertical hr {
  width: 100%;
  height: 1px;
  background: #e8e8e8;
  border: none;
  margin: 15px 0;
}
.galleryBox.vertical .bottom,
.galleryBox.vertical .bottom p {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.galleryBox.vertical .bottom {
  justify-content: space-between;
}
.galleryBox.vertical .bottom p {
  gap: 0 8px;
}
.galleryBox.vertical .bottom span {
  color: #888;
}
.galleryBox.horizontal {
  border-top: 2px solid var(--color-black);
}
.galleryBox.horizontal .item {
  border-bottom: 1px solid #ccc;
  padding: 50px 30px;
  position: relative;
}
.galleryBox.horizontal .item::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-black);
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all 0.6s;
}
.galleryBox.horizontal .item a {
  gap: 0 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.galleryBox.horizontal .item:hover::after {
  width: 100%;
}
.galleryBox.horizontal .img {
  width: 31.95%;
  flex-shrink: 0;
  border-radius: 20px;
  padding: 9.35% 0;
}
.galleryBox.horizontal .text h5,
.galleryBox.horizontal .text p {
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.galleryBox.horizontal .text h5 {
  height: 1.3em;
  color: #222;
  font-size: 2.8rem;
  font-weight: 600;
  -webkit-line-clamp: 1;
}
.galleryBox.horizontal .text p {
  height: 3.294em;
  color: #666;
  font-size: 1.7rem;
  line-height: 1.647;
  margin: 25px 0 20px;
  -webkit-line-clamp: 2;
}
.galleryBox.horizontal .text em {
  display: block;
  color: #666;
  font-weight: 300;
  font-family: var(--font-roboto);
  margin: 60px 0 0;
}
/*
.viewVideo {
  padding: 28.125% 0;
  position: relative;
}
.viewVideo iframe,
.viewVideo video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
*/
.viewBox .top {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid #e0e0e0;
  padding: 60px 0;
}
.viewBox .top .state {
  margin: 0 auto 30px;
}
.viewBox .top h4 {
  height: 1.3em;
  color: #222;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 30px;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.viewBox .top .flexBox {
  align-items: center;
  justify-content: center;
}
.viewBox .top .flexBox p {
  font-weight: 300;
}
.viewBox .top .flexBox b {
  color: #222;
  font-weight: 600;
}
.viewBox .content {
  padding: 30px 0 120px;
}
.viewBox .content * {
  font-family: 'Pretendard' !important;
  word-break: normal;
}
.viewBox .content ul,
.viewBox .content ol {
  padding-left: 20px;
}
.viewBox .content ul,
.viewBox .content ol,
.viewBox .content li {
  list-style: initial;
  line-height: 1.6;
}
.viewBox .fileBox,
.viewBox .bottom dl {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.viewBox .content .inner {
  padding: 40px 0;
}
.viewBox dl {
  gap: 0 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.viewBox dl dt {
  width: 110px;
  flex-shrink: 0;
  color: #222;
  font-weight: 500;
  position: relative;
}
.viewBox dl dt::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: #e0e0e0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.viewBox dl dd a {
  width: 100%;
  height: 1.32em;
  color: #666;
  transition: all 0.4s;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.viewBox .fileBox {
  padding: 5px 30px;
}
.viewBox .fileBox dl {
  padding: 20px 0;
}
.viewBox .fileBox dl dd {
  width: calc(100% - 140px);
}
.viewBox .fileBox dl dd:hover a {
  color: var(--color-main);
}
.viewBox .fileBox a,
.viewBox .fileBox div {
  display: flex;
  flex-direction: row;
	align-items: flex-start;
}
.viewBox .fileBox a {
  justify-content: space-between;
  column-gap: 10px;
}
.viewBox .fileBox i {
  transform: translateY(0.15em);
}
.viewBox .fileBox div {
  column-gap: 8px;
}
.viewBox .fileBox div:first-child {
  width: calc(100% - 105px);
  height: 1.32em;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.viewBox .fileBox div:last-child {
  flex-shrink: 0;
}
.viewBox .bottom {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.viewBox .bottom dl {
  height: 70px;
  padding: 0 30px;
}
.viewBox .bottom dl dt i {
  margin: 0 15px 0 0;
}
.viewBox .circleButton {
  margin: 100px auto 0;
}
.viewBox .cover {
  text-align: center;
  position: relative;
  z-index: 1;
}
.viewBox .cover::before {
  content: "";
  display: block;
  width: 100%;
  height: 250%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 67.71%);
  position: absolute;
  left: 50%;
  bottom: 60%;
  z-index: -1;
  transform: translateX(-50%);
}
.viewBox .cover p {
  color: #222;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}
.viewBox .cover .formButton {
  margin: 60px auto 0;
}
.viewBox .cover.off {
  display: none;
}

.selectCustom {
  width: 100%;
  height: 60px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}
.selectCustom button,
.selectCustom ul {
  border: 1px solid #ddd;
  border-radius: 30px;
}
.selectCustom button {
  justify-content: space-between;
	gap: 0 10px;
  padding: 0 25px;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.selectCustom em {
  color: #222;
  font-size: 1.7rem;
  font-weight: 300;
}
.selectCustom img {
  transition: all 0.4s;
}
.selectCustom ul {
  background: var(--color-white);
  padding: 60px 25px 17.5px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: none;
}
.selectCustom ul > li {
  color: #333;
  font-weight: 300;
  padding: 2.5px 0;
  cursor: pointer;
}
.selectCustom.on {
  z-index: 2;
}
.selectCustom.on button {
  border-color: transparent;
}
.selectCustom.on img {
  transform: rotateX(180deg);
}

.inputCheck {
  gap: 0 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.inputCheck label {
  color: #333;
  font-size: 1.4rem;
  font-weight: 300;
  cursor: pointer;
}

.formBox {
  display: flex;
  flex-wrap: wrap;
  border-top: 2px solid #222;
}
.formBox * {
  letter-spacing: -0.02em;
}
.formBox input[type=text],
.formBox input[type=password],
.formBox .border,
.formBox .fix {
  width: 100%;
  min-height: 60px;
}
.formBox input[type=text],
.formBox input[type=password],
.formBox .border {
  border: 1px solid #ddd;
  border-radius: 60px;
}
.formBox input[type=text].border20,
.formBox input[type=password].border20,
.formBox .border.border20 {
  border-radius: 20px;
}
.formBox input[type=text],
.formBox input[type=password],
.formBox textarea,
.formBox .border,
.formBox .fix {
  color: #222;
  font-size: 1.7rem;
}
.formBox input[type=text],
.formBox input[type=password],
.formBox select {
  padding: 0 25px;
}
.formBox .subButton {
	max-width: 180px;
	border-color: #333;
}
.formBox textarea {
  width: 100%;
  background: transparent;
}
.formBox .fileInput,
.formBox input[type=text]::placeholder,
.formBox input[type=password]::placeholder {
  color: #999;
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.formBox .fix {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.formBox .max100p {
  max-width: 100%;
}
.formBox .max630 {
  max-width: 630px;
}
.formBox .max440 {
  max-width: 440px;
}
.formBox .max370 {
  max-width: 370px;
}
.formBox .max350 {
  max-width: 350px;
}
.formBox .max285 {
  max-width: 285px;
}
.formBox .max250 {
  max-width: 250px;
}
.formBox .max200 {
  max-width: 200px;
}
.formBox .max180 {
  max-width: 180px;
}
.formBox .max150 {
  max-width: 150px;
}
.formBox dl {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}
.formBox dl.half {
  width: 50%;
}
.formBox dl > * {
  width: 100%;
}
.formBox dl dt {
  max-width: 350px;
  gap: 0 5px;
  flex-shrink: 0;
  background: #f8f8f8;
  color: #222;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
  padding: 20px 33px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.formBox dl dt em {
  font-size: 1.6rem;
  font-weight: 300;
}
.formBox dl dt span {
  color: var(--color-main);
}
.formBox dl dd {
  padding: 20px;
}
.formBox .flexBox {
  align-items: center;
  gap: 0 10px;
}
.formBox .flexBox.column {
  align-items: flex-start;
  gap: 10px 0;
}
.formBox .phone hr {
  width: 15px;
  height: 1px;
  background: #ccc;
  border: none;
  margin: 0;
}
.formBox .text {
  padding: 20px;
}
.formBox .scrollY {
  height: 135px;
}
.formBox .content {
  position: relative;
}
.formBox .content textarea {
  width: 100%;
  height: 100%;
}
.formBox .content p {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.4285;
  font-family: "Noto Sans KR", sans-serif;
  /* position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1; */
}
  /* .formBox .content textarea:focus + p {
  opacity: 0;
} */
.formBox .policy pre {
  color: #888;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6875;
  font-family: "Noto Sans KR", sans-serif;
}
.formBox .file {
  display: flex;
  gap: 10px;
  max-width: 820px;
}
.formBox .file input[type=text]:disabled {
  background: transparent;
}
.formBox .file > input[type=text] {
  width: calc(100% - 190px);
}
.formBox .file label {
  width: 180px;
  height: 60px;
  background: #fff;
  color: #222;
  border: 1px solid #333;
  font-size: 1.7rem;
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.formBox .file label input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.formBox .sel-box {
  display: flex;
  gap:0 30px;
  align-items: center;
  width: 100%;
}
.formBox .sel-box .file,
.formBox .sel-box .ip {
  width: calc(100% - 185px);
  max-width: 820px;
}
.formBox .sel-box .ip {
  display: none;
}
.formBox .sel-box .ch-box {
  gap:0 20px;
  max-width: 145px;
}
.formBox .captcha figure,
.formBox .captcha button {
  flex-shrink: 0;
}
.formBox .captcha figure {
  height: 60px;
}
.formBox .captcha figure img {
  height: 100%;
}
.formBox .captcha button {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.formBox .formButton,
.formBox .buttons {
  margin: 95px auto 0;
}
.formBox .buttons {
  gap: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.formBox .buttons .formButton {
  width: 250px;
  margin: 0;
}

.faqBox {
  border-top: 2px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}
.faqBox button,
.faqBox .flexBox {
  gap: 0 60px;
}
.faqBox em {
  display: inline-block;
  width: 30px;
  font-size: 3.5rem;
  font-weight: 700;
}
.faqBox .q,
.faqBox .a {
  border-bottom: 1px solid #e0e0e0;
}
.faqBox .q {
  padding: 35px 60px;
}
.faqBox .q button {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.faqBox .q em {
  color: #111;
}
.faqBox .q p {
  font-size: 2rem;
  font-weight: 500;
}
.faqBox .q span {
  display: inline-block;
  flex-shrink: 0;
  width: 29px;
  height: 2px;
  background: #666;
  margin-left: auto;
  position: relative;
  transition: all 0.6s;
}
.faqBox .q span::after {
  content: "";
  display: block;
  width: 2px;
  height: 29px;
  background: #666;
  transition: all 0.6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faqBox .a {
  background: #f8f8f8;
  padding: 50px 60px;
  display: none;
}
.faqBox .a .flexBox {
  align-items: center;
}
.faqBox .a em {
  color: var(--color-main);
}
.faqBox .a p {
  color: #333;
  font-size: 1.7rem;
  line-height: 1.588;
}
.faqBox .item.on .q span {
  background: var(--color-main);
}
.faqBox .item.on .q span::after {
  height: 0;
}

@media (max-width: 1400px) {
	.searchBox.big {
		padding: 60px 40px;
	}
	.searchBox.big .selectCustom {
		max-width: 300px;
	}
  .galleryBox.horizontal .item {
		padding: 40px 0;
	}
	.galleryBox.horizontal .item a {
		gap: 0 40px;
	}
	.galleryBox.horizontal .text h5 {
		font-size: 2.4rem;
	}
  .formBox dl dt {
    max-width: 300px;
  }
}
@media (max-width: 1200px) {
	.selectCustom button {
		padding: 0 20px;
	}
	.searchBox.big .selectCustom {
		max-width: 200px;
	}
	.searchBox.big input,
	.searchBox.small input {
		padding: 0 20px;
	}
  .galleryBox.horizontal .text p {
		margin: 15px 0 10px;
	}
	.galleryBox.horizontal .text em {
		margin: 40px 0 0;
	}
  select {
    background-position: calc(100% - 20px) center;
  }
	.boardBox table th, .boardBox table td {
		height: 80px;
	}
  .formBox input[type=text],
  .formBox select {
    padding: 0 20px;
  }
  .formBox .ch input[type="checkbox"]+span {
    padding: 0 30px;
  }
  .formBox dl dt {
    max-width: 220px;
    padding: 27px 20px;
  }
	.faqBox .q,
	.faqBox .a {
		padding: 30px 40px;
	}
}
@media (max-width: 960px) {
  .paging {
    margin: 70px 0 0;
  }
	span.state.block {
		width: 65px;
    height: 30px;
	}
  .formButton,
	.formBox .buttons .formButton {
		width: 200px;
		height: 60px;
	}
	.selectCustom ul {
		padding: 60px 20px 15px;
	}
	.searchBox.big {
		padding: 40px 20px;
	}
	.searchBox.big span {
		font-size: 12rem;
	}
	.searchBox.big .searchButton {
		max-width: 120px;
	}
  .galleryBox.horizontal .item a {
		flex-direction: column;
		gap: 30px 0;
		align-items: flex-start;
	}
	.galleryBox.horizontal .img {
		width: 50%;
		padding: 14.65% 0;
	}
	.galleryBox.horizontal .text em {
		margin: 20px 0 0;
	}
  .viewBox .top {
    padding: 40px 0;
  }
  .viewBox .top h4 {
    font-size: 2.8rem;
    margin: 0 0 20px;
  }
  .formBox dl {
    flex-direction: column;
  }
	.formBox dl.half {
		width: 100%;
	}
  .formBox dl dt {
    max-width: 100%;
    font-size: 1.8rem;
    padding: 20px;
  }
	.formBox .formButton,
	.formBox .buttons {
		margin: 60px auto 0;
	}
	.faqBox button,
	.faqBox .flexBox {
		gap: 0 40px;
	}
}
@media (max-width: 768px) {
  .paging {
    margin: 50px 0 0;
  }
  .paging ul {
    gap: 0 10px;
    padding: 0 10px;
  }
	.searchBox.big .selectCustom {
    max-width: 140px;
	}
	.boardBox table {
		border-bottom: none;
	}
	.boardBox table colgroup,
	.boardBox table thead,
	.boardBox table th:first-child,
	.boardBox table td:first-child {
		display: none;
	}
	.boardBox table tr {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 15px 0;
		border-bottom: 1px solid #e0e0e0;
		padding: 20px;
	}
	.boardBox table tr.top td {
		width: 100%;
		text-align: left;
	}
	.boardBox table tr.top td:first-child {
		display: block;
		order: 1;
		position: absolute;
	}
	.boardBox table tr.top td.subject {
		width: calc(100% - 75px);
	}
	.boardBox table td {
		height: auto;
		order: 2;
		border-right: none;
		border-bottom: none;
	}
	.boardBox table td.subject {
		order: 1;
		width: 100%;
		padding: 0;
	}
	.boardBox table td.subject a {
		text-align: left;
	}
	.boardBox table td.after::after {
		content: "|";
		color: #999999;
		font-size: 1.4rem;
		margin: 0 10px;
	}
	.boardBox table td.marginRight {
		order: 3;
		margin: 0 0 0 auto;
	}
	.boardBox table td .state {
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
	}
	.recruit .boardBox table td.subject {
		width: calc(100% - 75px);
	}
	.formBox .subButton {
		max-width: 140px;
	}
  .formBox .sel-box {
    gap:0 10px;
  }
  .formBox .sel-box .file,
  .formBox .sel-box .ip {
    width: calc(100% - 150px);
  }
  .formBox .sel-box .ch-box {
    gap:0 10px;
    max-width: 130px;
  }
  .viewBox .top h4 {
    font-size: 2.4rem;
  }
  .viewBox .fileBox {
    padding: 5px 20px;
  }
  .viewBox .bottom dl {
    padding: 0 20px;
  }
	.faqBox .q,
	.faqBox .a {
		padding: 30px 20px;
	}
	.faqBox button,
	.faqBox .flexBox {
		gap: 0 20px;
	}
	.faqBox em {
		width: 20px;
		font-size: 2.8rem;
	}
	.faqBox .q span {
		width: 19px;
	}
	.faqBox .q span::after {
		height: 19px;
	}
}
@media (max-width: 640px) {
	.formButton,
	.formBox .buttons .formButton {
		width: 160px;
		height: 50px;
	}
	.formButton {
		font-size: 1.7rem;
	}
	.selectCustom {
		height: 50px;
	}
	.selectCustom button {
		padding: 0 15px;
	}
	.selectCustom ul {
		border-radius: 25px;
		padding: 50px 15px 15px;
	}
	.searchBox.big {
		gap: 0 5px;
		padding: 30px 10px;
	}
	.searchBox.big span {
		font-size: 8.0rem;
	}
	.searchBox.big .selectCustom {
		max-width: 100px;
	}
	.searchBox.big input[type=text], .searchBox.big .searchButton {
		height: 50px;
	}
	.searchBox.big .searchButton {
		max-width: 70px;
	}
  .searchBox.small label {
		height: 50px;
	}
	.searchBox.small input {
		width: 100%;
	}
	.searchBox.small button {
		width: 50px;
	}
	.galleryBox.horizontal .item {
		padding: 30px 0;
	}
	.galleryBox.horizontal .img {
		width: 70%;
		padding: 20.5% 0;
	}
	.galleryBox.horizontal .text h5 {
		font-size: 2.1rem;
	}
  .viewBox .top {
    padding: 30px 0;
  }
  .viewBox .top h4 {
    margin: 0 0 15px;
  }
  .viewBox .top .flexBox {
    gap: 0 20px;
  }
  .viewBox .content {
    padding: 20px 0 80px;
  }
  .viewBox .fileBox {
    padding: 0;
  }
  .viewBox dl {
    gap: 0 20px;
  }
  .viewBox dl dt {
    width: 85px;
  }
  .viewBox .fileBox dl dd {
    width: calc(100% - 105px);
  }
  .viewBox .fileBox dl,
  .viewBox .bottom dl {
    padding: 20px;
  }
  .viewBox .bottom dl {
    height: auto;
  }
  .viewBox .bottom dl dt i {
    margin: 0 10px 0 0;
  }
	.viewBox .cover p {
		font-size: 2.0rem;
	}
	.viewBox .cover .formButton {
		margin: 40px auto 0;
	}
  select {
    background-size: 15px;
    background-position: calc(100% - 10px) center;
  }
  .formBox input[type=text],
  .formBox textarea,
  .formBox select,
  .formBox .border {
    min-height: 50px;
  }
  .formBox input[type=text],
  .formBox select {
    padding: 0 15px;
  }
  .formBox input[type=text].border20, .formBox input[type=password].border20, .formBox .border.border20 {
    padding: 15px;
  }
  .formBox .ch-box {
    gap: 5px;
  }
  .formBox .ch input[type="checkbox"]+span {
    height: 50px;
    padding: 0 18px;
    font-size: 1.6rem;
  }
	.formBox dl dd {
		padding: 20px 15px;
	}
  .formBox .flexBox {
    gap: 0 5px;
  }
	.formBox .subButton,
	.formBox .mail .selectCustom {
		width: 130px;
		flex-shrink: 0;
	}
  .formBox .file > input[type=text] {
    width: calc(100% - 110px);
  }
  .formBox .file label {
    width: 100px;
    height: 50px;
  }
  .formBox .sel-box {
    flex-wrap: wrap;
    gap: 10px;
  }
  .formBox .sel-box .file,
  .formBox .sel-box .ip {
    width: 100%;
  }
  .formBox .sel-box .ch-box {
    padding-left: 15px;
    width: 100%;
    max-width: 100%;
    gap: 0 15px;
  }
  .formBox .ch.rd input[type="radio"]+span {
    font-size: 1.6rem;
    padding: 0 0 0 26px;
  }
  .formBox .ch.rd input[type="radio"]+span:before {
    width: 12px;
    height: 12px;
    border-width: 4px;
    top: 0;
  }
	.formBox .content p {
		top: 15px;
		left: 15px;
	}
  .formBox .captcha img {
    max-height: 50px;
  }
  .formBox .captcha button {
    width: 50px;
    height: 50px;
  }
	.faqBox button,
	.faqBox .flexBox {
		gap: 0 10px;
	}
	.faqBox em {
		width: 15px;
		font-size: 2.2rem;
	}
	.faqBox .q,
	.faqBox .a {
		padding: 20px;
	}
	.faqBox .q p {
		font-size: 1.8rem;
	}
	.faqBox .q span {
		width: 15px;
	}
	.faqBox .q span::after {
		height: 15px;
	}

	.viewVideo {
		padding: 28.125% 0;
		position: relative;
	}
	.viewVideo iframe,
	.viewVideo video {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}