.hidden {
  text-indent: -9999px;
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
}

.layout {
  padding: 0 2rem;
  width: 100%;
  max-width: 1226px;
  margin: auto;
}

.subTitle {
  font-size: 2rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

.subDesc {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
}

.more {
  border-radius: 1.25rem;
  border: 1px solid #b1d82a;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1rem;
  background-color: #fff;
  transition: all 0.2s ease-in;
}
.more:hover {
  background-color: #b1d82a;
}

.header {
  width: 100%;
  z-index: 50;
  background-color: #fff;
  position: sticky;
  left: 0;
  top: 0;
}
.header > .topNav {
  width: 100%;
  max-width: 27.5rem;
  margin-left: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0.625rem 0;
}
.header > .topNav > form > label {
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header > .topNav > form > label > input {
  width: calc(100% - 1.25rem);
  padding: 0.5rem;
  font-size: 1rem;
  color: #333;
}
.header > .topNav > form > label > button {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0.5rem;
}
.header > .topNav > a {
  font-size: 0.75rem;
  color: #666;
  font-weight: 400;
}
.header > .gnb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  max-width: 100rem;
  padding: 1rem 2rem;
}
.header > .gnb > .mobileButton {
  display: none;
}
.header > .gnb > .mobileButton.close > ul > li:nth-of-type(1) {
  transform: rotate(45deg);
  transform-origin: center;
}
.header > .gnb > .mobileButton.close > ul > li:nth-of-type(2) {
  display: none;
}
.header > .gnb > .mobileButton.close > ul > li:nth-of-type(3) {
  transform: rotate(135deg);
  transform-origin: center;
}
@media screen and (max-width: 1024px) {
  .header > .gnb > .mobileButton {
    display: block;
    width: 3.125rem;
    height: 3.125rem;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header > .gnb > .mobileButton > ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
  .header > .gnb > .mobileButton > ul > li {
    transition: all 0.2s ease;
    width: 1.75rem;
    height: 3px;
    border-radius: 3px;
    background-color: #333;
  }
}
.header > .gnb > .logo {
  display: block;
  font-size: 2rem;
  color: #b1d82a;
  font-weight: 500;
}
.header > .gnb > .logo img {
  width: 100%;
  max-width: 11.25rem;
}
@media screen and (max-width: 1024px) {
  .header > .gnb > nav {
    display: none;
  }
  .header > .gnb > nav.active {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 60;
    width: 80%;
    background-color: #fefee6;
  }
  .header > .gnb > nav.active > ul {
    padding: 2rem;
    flex-wrap: wrap;
    gap: 0rem;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .header > .gnb > nav.active > ul > li {
    width: 50%;
  }
  .header > .gnb > nav.active > ul > li > ul {
    display: block;
    position: initial;
    top: 0;
    width: 100%;
    transform: translate(0, 0);
    background-color: transparent;
  }
}
.header > .gnb > nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 3rem;
}
.header > .gnb > nav > ul > li {
  white-space: nowrap;
  position: relative;
  padding: 1rem 0;
}
.header > .gnb > nav > ul > li:hover > ul {
  display: block;
}
.header > .gnb > nav > ul > li > a {
  font-size: 1.125rem;
  color: #333;
  font-weight: 400;
  transition: all 0.3s ease-in;
  display: block;
}
.header > .gnb > nav > ul > li > a:hover {
  color: #b1d82a;
}
.header > .gnb > nav > ul > li > ul {
  display: none;
  position: absolute;
  top: 2.5rem;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 7.5rem;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  white-space: nowrap;
}
.header > .gnb > nav > ul > li > ul > li {
  line-height: 2;
}
.header > .gnb > nav > ul > li > ul > li > a {
  transition: all 0.3s ease-in;
  color: #333;
  font-size: 1rem;
}
.header > .gnb > nav > ul > li > ul > li > a:hover {
  color: #5e5332;
}

.footer {
  background-color: #f4f4f4;
  padding: 2rem 0;
}
.footer .flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .footer .flex {
    flex-direction: column;
  }
}
.footer .flex > .left {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .footer .flex > .left {
    width: 100%;
  }
}
.footer .flex > .left > strong {
  display: block;
  font-size: 2rem;
  color: #b1d82a;
  font-weight: 500;
  margin-bottom: 2rem;
}
.footer .flex > .left > strong img {
  width: 100%;
  max-width: 11.25rem;
}
.footer .flex > .left > ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer .flex > .left > ul > li {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .flex > .left > ul > li img {
  width: min(100%, 2rem);
}
.footer .flex > .right {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .footer .flex > .right {
    width: 100%;
  }
}
.footer .flex > .right > .unb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.footer .flex > .right > .unb > li {
  font-size: 1rem;
  padding-right: 0.5rem;
  white-space: nowrap;
  border-right: 1px solid #ddd;
  color: #666;
}
.footer .flex > .right > .unb > li:last-of-type {
  padding: 0;
  border-right: 0;
}
.footer .flex > .right > .desc {
  display: flex;
  flex-wrap: wrap;
}
.footer .flex > .right > .desc > span {
  position: relative;
  white-space: nowrap;
  padding: 0.25rem;
  font-size: 0.75rem;
  color: #666;
}
.footer .flex > .right > .desc > span:last-of-type::after {
  display: none;
}
.footer .flex > .right > .desc > span::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 0.625rem;
  transform: translate(0, -50%);
  background-color: #bbb;
  content: "";
}
.footer .flex > .right > .copyright {
  margin-top: 2rem;
  color: #666;
  font-size: 0.75rem;
  font-weight: 400;
}

.mainSection01 {
  margin-bottom: 6.25rem;
}
.mainSection01 > .mainBannerContainer {
  position: relative;
  width: 100%;
  padding: 0 2rem;
  margin: auto;
  max-width: 100rem;
}
.mainSection01 > .mainBannerContainer > button {
  position: absolute;
  top: 50%;
  width: 5rem;
  height: 5rem;
  z-index: 20;
  transform: translate(0, -50%);
}
.mainSection01 > .mainBannerContainer > button.prevBtn {
  left: 5rem;
}
@media screen and (max-width: 1024px) {
  .mainSection01 > .mainBannerContainer > button.prevBtn {
    left: 0;
  }
}
.mainSection01 > .mainBannerContainer > button.nextBtn {
  right: 5rem;
}
@media screen and (max-width: 1024px) {
  .mainSection01 > .mainBannerContainer > button.nextBtn {
    right: 0;
  }
}
.mainSection01 > .mainBannerContainer > button > img {
  width: 100%;
}

.mainSection02 {
  margin-bottom: 6.25rem;
}
.mainSection02 .subTitle {
  text-align: center;
}
.mainSection02 .subDesc {
  text-align: center;
  color: #b1d82a;
  margin-bottom: 2rem;
}
.mainSection02 .more {
  margin: auto;
}
.mainSection02 .item {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .mainSection02 .item {
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, 45%);
  }
}
.mainSection02 .item > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mainSection02 .item > li > a > img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2.5rem;
  border: 10px solid transparent;
  transition: all 0.2s ease-in;
  line-height: 0;
  font-size: 0;
}
.mainSection02 .item > li > a > img:hover {
  border-color: #b1d82a;
}
.mainSection02 .item > li > strong {
  display: block;
  text-align: center;
  font-size: 1rem;
  color: #333;
  line-height: 2;
}

.mainSection03 {
  margin-bottom: 6.25rem;
  margin-left: 2rem;
  border-radius: 0 0 0 12.5rem;
  padding: 6.25rem 0;
  background: linear-gradient(90deg, #b1d82a 0%, #f3ffc9 100%);
}
.mainSection03 .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3.75rem;
}
.mainSection03 .item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .mainSection03 .item {
    grid-template-columns: repeat(auto-fit, 45%);
  }
}
@media screen and (max-width: 1024px) {
  .mainSection03 .item > li:last-of-type {
    display: none;
  }
}
.mainSection03 .item > li img {
  width: 100%;
}
.mainSection03 .item > li div {
  background-color: #fff;
  border-radius: 0 0 2.5rem 2.5rem;
  padding: 1rem;
}
.mainSection03 .item > li div > strong {
  display: block;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.mainSection03 .item > li div > p {
  font-size: 1rem;
  word-break: keep-all;
  color: #333;
  font-weight: 400;
  line-height: 1.8;
}

.mainSection04 {
  margin-bottom: 6.25rem;
}
.mainSection04 .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .mainSection04 .flex {
    flex-direction: column;
  }
}
.mainSection04 .flex > .top {
  width: 17.5rem;
}
@media screen and (max-width: 1024px) {
  .mainSection04 .flex > .top {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.mainSection04 .flex > .top > .subDesc {
  color: #b1d82a;
  margin-bottom: 2rem;
}
.mainSection04 .flex > .item {
  width: calc(100% - 20rem);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .mainSection04 .flex > .item {
    width: 100%;
  }
}
.mainSection04 .flex > .item > li {
  width: 33.33336%;
  position: relative;
}
.mainSection04 .flex > .item > li:nth-of-type(2) {
  top: 2rem;
}
@media screen and (max-width: 1024px) {
  .mainSection04 .flex > .item > li {
    width: 45%;
  }
  .mainSection04 .flex > .item > li:last-of-type {
    display: none;
  }
}
.mainSection04 .flex > .item > li img {
  width: 100%;
  border-radius: 2.5rem;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.mainSection04 .flex > .item > li strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-top: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mainSection04 .flex > .item > li .date {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #666;
  padding: 0.5rem 0;
}
.mainSection04 .flex > .item > li .desc {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #333;
}

.mainLogin {
  min-height: 70vh;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mainLogin .title {
  font-size: 2rem;
  color: #b1d82a;
  font-weight: 500;
  margin-bottom: 1rem;
}
.mainLogin .desc {
  font-size: 1rem;
  color: #333;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.mainLogin form {
  width: min(100% - 2rem, 340px);
}
.mainLogin form > .formBox {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.mainLogin form > .formBox > input {
  width: 100%;
  height: 2.5rem;
  border: 1px solid #ddd;
  padding: 0.25rem;
  font-size: 1rem;
  margin: 0.25rem 0;
  background-color: #fff;
}
.mainLogin form > .formBox > button {
  width: 100%;
  height: 2.5rem;
  padding: 0.25rem;
  font-size: 1rem;
  margin: 0.25rem 0;
  background-color: #5e5332;
  color: #fff;
}
.mainLogin form > .formBox > .autoLabel {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: auto;
}
.mainLogin form > .formBox > .autoLabel > input {
  width: 1.25rem;
  height: 1.25rem;
}
.mainLogin form > .formBox > .autoLabel > p {
  font-size: 0.875rem;
  color: #333;
}
.mainLogin form > .forgetInfo {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.mainLogin form > .forgetInfo > button {
  background-color: #fefee6;
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}
.mainLogin form > .signupDesc {
  background-color: #fefee6;
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  height: 2.5rem;
  border: 1px solid #ddd;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.modalHoder {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.45);
}

.modal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
}
.modal > .modalClose {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: #333;
  font-size: 1.25rem;
  font-weight: 500;
}
.modal > strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #373737;
  margin-bottom: 1rem;
}
.modal ul > li {
  margin-bottom: 0.5rem;
}
.modal ul > li > input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 0.2rem;
  font-size: 0.875rem;
  height: 2.5rem;
}
.modal .submitButton {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 100%;
  background-color: #5e5332;
  font-size: 0.875rem;
  color: #fff;
  border-radius: 5px;
}
.modal .findButton {
  color: #949494;
  font-size: 0.75rem;
  padding: 1rem 0;
}
.modal p {
  font-size: 0.75rem;
  text-align: center;
  color: #666;
  padding-top: 1rem;
  font-weight: 500;
}
.modal.userIdModal {
  display: none;
}
.modal.userPwModal {
  display: none;
}

.mainSignup01 {
  min-height: 70vh;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mainSignup01 .title {
  font-size: 2rem;
  color: #b1d82a;
  font-weight: 500;
  margin-bottom: 1rem;
}
.mainSignup01 .desc {
  font-size: 1rem;
  color: #333;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.mainSignup01 > ul > li {
  width: 100%;
  max-width: 20rem;
  margin-bottom: 1rem;
}
.mainSignup01 > ul > li > a {
  display: flex;
  align-items: center;
  padding: 0.25rem;
  border-radius: 0.625rem;
  font-size: 1rem;
  color: #333;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0.625rem 0.25rem rgba(0, 0, 0, 0.05);
}
.mainSignup01 > ul > li:first-of-type img {
  height: 2rem;
  width: auto;
  margin-left: 0.375rem;
}
.mainSignup01 > ul > li > a > img {
  width: min(100%, 2rem);
  margin-right: 1rem;
}

.mainSignup02 > .container {
  padding: 3rem 0;
}
.mainSignup02 > .container .title {
  font-size: 2rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 1rem;
}
.mainSignup02 > .container .desc {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 5rem;
}
.mainSignup02 > .container form {
  display: flex;
  flex-direction: column;
}
.mainSignup02 > .container form > .info {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.mainSignup02 > .container form > .info > strong {
  display: block;
  font-size: 1.125rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 1rem;
}
.mainSignup02 > .container form > .info > textarea {
  width: 100%;
  min-height: 18rem;
  padding: 1rem;
  border: 1px solid #ddd;
}
.mainSignup02 > .container form > .info > label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-top: 1rem;
  margin-left: auto;
}
.mainSignup02 > .container form > .info > label > input {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}
.mainSignup02 > .container form > .info > label > p {
  font-size: 1rem;
  color: #333;
  font-weight: 400;
}
.mainSignup02 > .container form > button {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #5e5332;
  margin-left: auto;
  padding: 0 1rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  color: #fff;
  font-size: 1rem;
}

.mainSignup03 {
  padding: 3rem 0;
  background-color: #f8f8fb;
}
.mainSignup03 > .container {
  width: min(100%, 40rem);
  padding: 2rem;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 0.625rem;
  border: 1px solid #dde7e9;
}
.mainSignup03 > .container .title {
  font-size: 2rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 1rem;
}
.mainSignup03 > .container .desc {
  font-size: 1rem;
  color: #333;
  font-weight: 400;
  margin-bottom: 3rem;
}
.mainSignup03 > .container .signupList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mainSignup03 > .container .signupList > li {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .mainSignup03 > .container .signupList > li {
    flex-direction: column;
    align-items: flex-start;
  }
}
.mainSignup03 > .container .signupList > li:last-of-type {
  border-bottom: 0;
}
.mainSignup03 > .container .signupList > li > p {
  white-space: nowrap;
  color: #373737;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.mainSignup03 > .container .signupList > li > div {
  width: 100%;
}
.mainSignup03 > .container .signupList > li > div.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 26rem;
}
.mainSignup03 > .container .signupList > li > div.sexBox {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.mainSignup03 > .container .signupList > li > div > .addressSearchButton {
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  padding: 0 2rem;
  height: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.5rem;
  border-radius: 5px;
}
.mainSignup03 > .container .signupList > li > div > .overwriteButton {
  background-color: #5e5332;
  white-space: nowrap;
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  padding: 0 2rem;
  height: 2.5rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
}
.mainSignup03 > .container .signupList > li > div > .label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.mainSignup03 > .container .signupList > li > div > .label > input {
  width: 1.25rem;
  height: 1.25rem;
}
.mainSignup03 > .container .signupList > li > div > .label > p {
  font-size: 1rem;
  color: #333;
  padding-left: 0.5rem;
}
.mainSignup03 > .container .signupList > li > div > .address {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  color: #444;
  height: 2.5rem;
  padding: 0.25rem;
  width: 100%;
  max-width: 40rem;
  margin-bottom: 0.5rem;
}
.mainSignup03 > .container .signupList > li > div > input {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  color: #444;
  height: 2.5rem;
  padding: 0.25rem;
  width: 100%;
  max-width: 30rem;
}
.mainSignup03 > .container .signupList > li > div > input.normal {
  width: 100%;
  max-width: 7.5rem;
}
.mainSignup03 > .container .signupList > li > div > input.long {
  width: 100%;
  max-width: 40rem;
  margin-bottom: 0.5rem;
}
.mainSignup03 > .container .buttonBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mainSignup03 > .container .buttonBox > a {
  color: #333;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  padding: 0 2rem;
  height: 2.5rem;
  width: 100%;
  border-radius: 5px;
}
.mainSignup03 > .container .buttonBox > .signupButton {
  background-color: #5e5332;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  padding: 0 2rem;
  height: 2.5rem;
  width: 100%;
  border-radius: 5px;
}

.tnb {
  background-color: #4e5059;
  padding: 1rem 0;
  margin-bottom: 3.75rem;
}
.tnb .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tnb .flex h2 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}
.tnb .flex > ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
}

#subTitle {
  font-size: 2rem;
  font-weight: 500;
  color: #333;
  line-height: 2;
}

#subDesc {
  word-break: keep-all;
  font-size: 1rem;
  color: #333;
  margin-bottom: 3.75rem;
  line-height: 1.6;
  font-weight: 400;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 6.25rem;
}
.pagination > li:first-of-type > a {
  width: auto;
  height: auto;
  color: #333;
  background-color: transparent;
  line-height: normal;
}
.pagination > li:last-of-type > a {
  width: auto;
  height: auto;
  color: #333;
  background-color: transparent;
  line-height: normal;
}
.pagination > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
  border-radius: 50%;
  width: 1.5rem;
  font-size: 0.875rem;
  line-height: 0;
  height: 1.5rem;
}
.pagination > li > a.active {
  background-color: #b1d82a;
}

.subGnb {
  width: 17.625rem;
  position: sticky;
  top: 11.25rem;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .subGnb {
    display: none;
  }
}
.subGnb ul > li > a {
  line-height: 2;
  font-size: 1rem;
  color: #333;
}
.subGnb ul > li > a.active {
  color: #5e5332;
  text-decoration: underline;
}

.wide {
  width: calc(100% - 19.625rem);
}
@media screen and (max-width: 1024px) {
  .wide {
    width: 100%;
  }
}

.selectQ {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.selectQ > li > button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background-color: #f0f0f0;
  color: #333;
  height: 2.5rem;
  border-radius: 0.625rem;
  font-size: 1.125rem;
}
.selectQ > li > button.active {
  background-color: #b1d82a;
}

.sub01 {
  margin-bottom: 6.25rem;
}
.sub01 .flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.sub01 .listForm {
  width: 100%;
  margin-bottom: 2rem;
}
.sub01 .listForm > select {
  border: 1px solid #333;
  padding: 0.5rem;
  font-size: 1rem;
  color: #333;
  background-color: #fff;
  border-radius: 0.625rem;
  min-width: 12.5rem;
}
.sub01 .listForm > .type01 > li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.sub01 .listForm > .type01 > li > p {
  font-size: 1.125rem;
  color: #333;
  white-space: nowrap;
  font-weight: 500;
}
.sub01 .listForm > .type01 > li > .formFlex {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.sub01 .listForm > .type01 > li > .formFlex > .allDate {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.sub01 .listForm > .type01 > li > .formFlex > .allDate > p {
  font-size: 1rem;
  color: #333;
  font-weight: 400;
}
.sub01 .listForm > .type01 > li > .formFlex > .allDate > input {
  margin-right: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #333;
}
.sub01 .listForm > .type01 > li > .formFlex > input[type="date"] {
  border: 1px solid #333;
  padding: 0.25rem;
  background-color: #fff;
  border-radius: 0.625rem;
}
.sub01 .listForm > .type01 > li > .formFlex > input[type="text"] {
  width: 100%;
  max-width: 31.25rem;
  border: 1px solid #333;
  padding: 0 1rem;
  font-size: 1rem;
  border-radius: 0.625rem;
  color: #333;
  height: 2.5rem;
}
.sub01 .listForm > .type01 > li > .formFlex > .submitButton {
  background-color: #333;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  cursor: pointer;
  font-size: 1rem;
  white-space: nowrap;
  font-weight: 400;
  height: 2.5rem;
}
.sub01 .listForm > .type01 > li > .formFlex > .resetButton {
  background-color: #fff;
  color: #333;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1rem;
  white-space: nowrap;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
  height: 2.5rem;
}

.item > .wrightRouter {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #5e5332;
  color: #fff;
  font-size: 1rem;
}
.item > .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  .item > .list {
    justify-content: space-between;
  }
}
.item > .list > li {
  width: 31.33334%;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  border-radius: 2.5rem;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .item > .list > li {
    width: calc(50% - 1rem);
  }
}
.item > .list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.item > .list > li > a > img {
  width: 100%;
}
.item > .list > li > a .info {
  width: 100%;
  padding: 1rem;
}
.item > .list > li > a .info > .date {
  text-align: center;
  color: #666;
  font-weight: 400;
  font-size: 1rem;
  padding: 1rem 0;
}
.item > .list > li > a .info > .title {
  text-align: center;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  padding: 1rem 0;
}
.item > .list > li > a .info > .subject {
  font-size: 1rem;
  word-break: keep-all;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
}
.item > .list > li > a .info strong {
  text-align: center;
  font-size: 1rem;
  width: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
  color: #333;
  padding: 1rem 0;
}
.item > .list > li > a .info strong > span {
  display: block;
  padding-bottom: 0.5rem;
  text-align: center;
  font-weight: 500;
}
.item > .list > li > a .info > p {
  text-align: center;
  padding-bottom: 1rem;
  font-size: 1rem;
}
.item > .list > li > a .info > p > span.before {
  font-weight: 400;
  color: #666;
  text-decoration: line-through;
}
.item > .list > li > a .info > p > span.current {
  font-weight: 600;
  color: #5e5332;
}
.item > .list02Head {
  display: grid;
  grid-template-columns: 10% 15% 50% 15% 10%;
  text-align: center;
  margin: 1rem 0;
  align-items: center;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
}
.item > .list02Head > li {
  color: #333;
  padding: 1rem 0;
  border-right: 1px solid #ddd;
  font-size: 1rem;
  font-weight: 500;
}
.item > .list02Head > li:last-of-type {
  border: 0;
}
.item > .list02 > li {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
.item > .list02 > li ul {
  display: grid;
  align-items: center;
  text-align: center;
  grid-template-columns: 10% 15% 50% 15% 10%;
}
.item > .list02 > li ul > li {
  color: #333;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 400;
}
.item > .list02 > li:last-of-type {
  border: 0;
}
.item > .list03Head {
  display: grid;
  grid-template-columns: 10% 15% 15% 40% 10% 10%;
  text-align: center;
  margin: 1rem 0;
  align-items: center;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
}
.item > .list03Head > li {
  color: #333;
  padding: 1rem 0;
  border-right: 1px solid #ddd;
  font-size: 1rem;
  font-weight: 500;
}
.item > .list03Head > li:last-of-type {
  border: 0;
}
.item > .list03 > li {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
.item > .list03 > li ul {
  display: grid;
  align-items: center;
  text-align: center;
  grid-template-columns: 10% 15% 15% 40% 10% 10%;
}
.item > .list03 > li ul > li {
  color: #333;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 400;
}
.item > .list03 > li:last-of-type {
  border: 0;
}
.item > .list04Head {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin: 1rem 0;
  align-items: center;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
}
.item > .list04Head > li {
  color: #333;
  padding: 1rem 0;
  border-right: 1px solid #ddd;
  font-size: 1rem;
  font-weight: 500;
}
.item > .list04Head > li:last-of-type {
  border: 0;
}
.item > .list04 > li {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
.item > .list04 > li ul {
  display: grid;
  align-items: center;
  text-align: center;
  grid-template-columns: repeat(7, 1fr);
}
.item > .list04 > li ul > li {
  color: #333;
  padding: 1rem 0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}
.item > .list04 > li:last-of-type {
  border: 0;
}
.item > .list05Head {
  display: grid;
  grid-template-columns: 20% 40% 40%;
  text-align: center;
  margin: 1rem 0;
  align-items: center;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
}
.item > .list05Head > li {
  color: #333;
  padding: 1rem 0;
  border-right: 1px solid #ddd;
  font-size: 1rem;
  font-weight: 500;
}
.item > .list05Head > li:last-of-type {
  border: 0;
}
.item > .list05 > li {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
.item > .list05 > li ul {
  display: grid;
  align-items: center;
  text-align: center;
  grid-template-columns: 20% 40% 40%;
}
.item > .list05 > li ul > li {
  color: #333;
  padding: 1rem 0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}
.item > .list05 > li:last-of-type {
  border: 0;
}
.item > .list06Head {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  margin: 1rem 0;
  align-items: center;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
}
.item > .list06Head > li {
  color: #333;
  padding: 1rem 0;
  border-right: 1px solid #ddd;
  font-size: 1rem;
  font-weight: 500;
}
.item > .list06Head > li:last-of-type {
  border: 0;
}
.item > .list06 > li {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
.item > .list06 > li ul {
  display: grid;
  align-items: center;
  text-align: center;
  grid-template-columns: repeat(4, 1fr);
}
.item > .list06 > li ul > li {
  color: #333;
  padding: 1rem 0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}
.item > .list06 > li:last-of-type {
  border: 0;
}

.detail > .info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .detail > .info {
    flex-direction: column;
  }
}
.detail > .info > img {
  width: 100%;
  max-width: 27.5rem;
}
.detail > .info .container {
  width: calc(100% - 30rem);
}
@media screen and (max-width: 1024px) {
  .detail > .info .container {
    width: 100%;
    margin-top: 2rem;
  }
}
.detail > .info .container > p {
  font-size: 1rem;
  color: #333;
  font-weight: 400;
  padding-bottom: 0.5rem;
}
.detail > .info .container > strong {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
  display: block;
}
.detail > .info .container > form > .itemInfo {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.detail > .info .container > form > .itemInfo > p {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}
.detail > .info .container > form > .itemInfo > p span.data {
  display: block;
}
.detail > .info .container > form > .itemInfo > p span.before {
  font-weight: 400;
  text-decoration: line-through;
}
.detail > .info .container > form > .itemInfo > p span.current {
  font-weight: 600;
}
.detail > .info .container > form > .itemInfo > p span.desc {
  font-weight: 400;
}
.detail > .info .container > form > .countTitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}
.detail > .info .container > form > .countBox {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.detail > .info .container > form > .countBox > button {
  border: 1px solid #ddd;
  padding: 0.25rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  border-radius: 0.625rem;
}
.detail > .info .container > form > .countBox input {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  width: 6.25rem;
}
.detail > .info .container > form > .buttonBox {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.detail > .info .container > form > .buttonBox > a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1rem;
  font-weight: 400;
  border-radius: 0.625rem;
  background-color: #fefee6;
  color: #333;
}
.detail > .info .container > form > .buttonBox > button {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1rem;
  font-weight: 400;
  border-radius: 0.625rem;
}
.detail > .info .container > form > .buttonBox > button.add {
  background-color: #5e5332;
  color: #fff;
}
.detail > .info .container > form > .buttonBox > button.submit {
  background-color: #b1d82a;
  color: #333;
}
.detail > .moreDetail {
  margin-top: 2rem;
}
.detail > .moreDetail > .title {
  font-size: 1.125rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 2rem;
}
.detail > .moreDetail div {
  line-height: 1.8;
  color: #333;
}

.detailq > .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.detailq > .top > p {
  font-size: 1.125rem;
  color: #666;
  font-weight: 400;
}
.detailq > .top > button {
  color: #333;
  font-size: 1.125rem;
  font-weight: 400;
}
.detailq > .content > strong {
  font-size: 1.25rem;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
  display: block;
  word-break: keep-all;
}
.detailq > .content > img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 25rem;
}
.detailq > .content > .q {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
  margin: 1rem 0;
}
.detailq > .content .doQuestionBox {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}
.detailq > .content .doQuestion {
  width: 100%;
  max-width: 280px;
  background-color: #b1d82a;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 0.625rem;
  /* margin: 2rem auto; */
}
.detailq > .content > .answers p {
  background-color: #fefee6;
  padding: 0.5rem;
  font-size: 1rem;
  color: #333;
  font-weight: 400;
  margin: 2rem 0 1rem;
}
.detailq > .content > .answers textarea {
  width: 100%;
  height: 15.625rem;
  border: 1px solid #ddd;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
}
.detailq > .content > .answers .sendButton {
  width: 100%;
  max-width: 283px;
  background-color: #b1d82a;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 0.625rem;
  margin: 2rem auto;
}

.detailn > .top > .info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.detailn > .top > .info > li {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}
.detailn > .top > .contentInfo > p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.detailn > .top > .contentInfo > p.date {
  color: #666;
  font-weight: 400;
}
.detailn > .top > .contentInfo > p.subject {
  color: #333;
  font-weight: 500;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
.detailn > .top > .contentInfo > .downloadBox {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}
.detailn > .top > .contentInfo > .downloadBox > a {
  background-color: #f0f0f0;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #333;
  font-weight: 400;
  border-radius: 0.625rem;
}
.detailn > .content {
  font-size: 1rem;
  color: #333;
  font-weight: 400;
  line-height: 1.6;
  margin: 2rem 0;
}
.detailn > .content > img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 25rem;
}
.detailn > .router > li {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
}
.detailn > .router > li:last-of-type {
  border-top: 0;
}
.detailn > .router > li > a {
  padding: 1rem;
  font-size: 1rem;
  color: #333;
  font-weight: 400;
}

.commentBox {
  margin: 1rem 0;
}
.commentBox > .buttonBox {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.commentBox > .buttonBox > button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 0.625rem;
}
.commentBox > .mainCommentForm {
  border: 1px solid #ddd;
  padding: 1rem;
  display: none;
}
.commentBox > .mainCommentForm.active {
  display: block;
}
.commentBox > .mainCommentForm form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.commentBox > .mainCommentForm form button {
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  padding: 0 1rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commentBox > .mainCommentForm form button.submit {
  background-color: #5e5332;
  color: #fff;
}
.commentBox > .mainCommentForm form button.cancel {
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
}
.commentBox > .mainCommentForm form input {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  justify-content: center;
  padding: 0 1rem;
  height: 2rem;
  width: 100%;
  flex-shrink: 1;
  border: 1px solid #333;
  font-size: 1rem;
  font-weight: 400;
}
.commentBox > .mainCommentForm form input.readonly {
  background-color: #f0f0f0;
  border: 0;
  color: #666;
  max-width: 5rem;
}
.commentBox > .comments {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
}
.commentBox > .comments > li {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.commentBox > .comments > li > .main {
  width: 100%;
  margin-bottom: 0.5rem;
}
.commentBox > .comments > li > .main > .data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.commentBox > .comments > li > .main > .data > p {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
}
.commentBox > .comments > li > .main > .data > p > .name {
  font-weight: 600;
}
.commentBox > .comments > li > .main > .data > button {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.625rem;
  padding: 0 1rem;
  height: 2rem;
  font-size: 0.75rem;
  color: #333;
  font-weight: 400;
}
.commentBox > .comments > li > .main > .reCommentBox {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  margin: 1rem 0;
  display: none;
}
.commentBox > .comments > li > .main > .reCommentBox.active {
  display: block;
}
.commentBox > .comments > li > .main > .reCommentBox > form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.commentBox > .comments > li > .main > .reCommentBox > form > input {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  font-size: 1rem;
  padding: 0 0.5rem;
}
.commentBox > .comments > li > .main > .reCommentBox > form > input.readonly {
  width: 8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  background-color: #f0f0f0;
  color: #666;
}
.commentBox > .comments > li > .main > .reCommentBox > form > input.desc {
  width: 100%;
  border: 1px solid #333;
}
.commentBox > .comments > li > .main > .reCommentBox > form > button {
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  padding: 0 1rem;
  height: 2rem;
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  justify-content: center;
}
.commentBox > .comments > li > .main > .reCommentBox > form > button.submit {
  background-color: #5e5332;
  color: #fff;
}
.commentBox > .comments > li > .main > .reCommentBox > form > button.cancel {
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
}
.commentBox > .comments > li > .sub {
  width: 100%;
  padding-left: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  justify-content: space-between;
}
.commentBox > .comments > li > .sub > p {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
  padding-right: 1rem;
}
.commentBox > .comments > li > .sub > p > .name {
  font-weight: 600;
}
.commentBox > .comments > li > .sub > button {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  border-radius: 0.625rem;
  justify-content: center;
  padding: 0 1rem;
  font-size: 0.75rem;
  height: 2rem;
  color: #333;
}

.detailControlsBox {
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.detailControlsBox > button {
  background-color: #f0f0f0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  font-size: 0.875rem;
  color: #333;
  border-radius: 0.625rem;
  border: 1px solid #ddd;
}

.wrightForm01 {
  width: 100%;
}
.wrightForm01 .data > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.wrightForm01 .data > li > p {
  font-size: 1.125rem;
  color: #333;
  padding: 0.5rem;
  font-weight: 500;
}
.wrightForm01 .data > li > input[type="text"] {
  width: 100%;
  max-width: 10rem;
  border: 1px solid #333;
  border-radius: 0.3125rem;
  padding: 0 1rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrightForm01 .data > li > input[type="text"].long {
  max-width: 30rem;
}
.wrightForm01 .data > li > input[type="text"].readonly {
  background-color: #ddd;
  border: 0;
  color: #666;
}
.wrightForm01 .data > li > .content {
  width: 100%;
}
.wrightForm01 .data > li > .content > textarea {
  width: 100%;
  height: 15rem;
  font-size: 1rem;
  padding: 1rem;
  border: 1px solid #333;
}
.wrightForm01 .wrightControls {
  display: flex;
  margin: 1rem 0;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.wrightForm01 .wrightControls > button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  height: 2rem;
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: 0.1875rem;
}
.wrightForm01 .wrightControls > button.submit {
  background-color: #b1d82a;
}

.mypage .buttonBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.mypage .buttonBox > a {
  color: #333;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  padding: 0 2rem;
  height: 2.5rem;
  width: 100%;
  border-radius: 5px;
}
.mypage .buttonBox > .signupButton {
  background-color: #5e5332;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  padding: 0 2rem;
  height: 2.5rem;
  width: 100%;
  border-radius: 5px;
}
.mypage .signupList {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mypage .signupList > li {
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .mypage .signupList > li {
    flex-direction: column;
    align-items: flex-start;
  }
}
.mypage .signupList > li:last-of-type {
  border-bottom: 0;
}
.mypage .signupList > li > p {
  white-space: nowrap;
  color: #373737;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.mypage .signupList > li > div {
  width: 100%;
}
.mypage .signupList > li > div.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 26rem;
}
.mypage .signupList > li > div.sexBox {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.mypage .signupList > li > div > .addressSearchButton {
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  padding: 0 2rem;
  height: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.5rem;
  border-radius: 5px;
}
.mypage .signupList > li > div > .overwriteButton {
  background-color: #5e5332;
  white-space: nowrap;
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  padding: 0 2rem;
  height: 2.5rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
}
.mypage .signupList > li > div > .label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.mypage .signupList > li > div > .label > input {
  width: 1.25rem;
  height: 1.25rem;
}
.mypage .signupList > li > div > .label > p {
  font-size: 1rem;
  color: #333;
  padding-left: 0.5rem;
}
.mypage .signupList > li > div > .address {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  color: #444;
  height: 2.5rem;
  padding: 0.25rem;
  width: 100%;
  max-width: 40rem;
  margin-bottom: 0.5rem;
}
.mypage .signupList > li > div > input {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  color: #444;
  height: 2.5rem;
  padding: 0.25rem;
  width: 100%;
  max-width: 30rem;
}
.mypage .signupList > li > div > input.readonly {
  background-color: #f0f0f0;
}
.mypage .signupList > li > div > input.normal {
  width: 100%;
  max-width: 7.5rem;
}
.mypage .signupList > li > div > input.long {
  width: 100%;
  max-width: 40rem;
  margin-bottom: 0.5rem;
}

.myCart > .cartHead {
  display: grid;
  grid-template-columns: 40% 15% 15% 15% 15%;
  text-align: center;
  align-items: center;
  white-space: nowrap;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
}
.myCart > .cartHead > li {
  padding: 1rem 0;
  font-size: 1rem;
  color: #333;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.myCart > .cartHead2 {
  display: grid;
  grid-template-columns: 40% 20% 20% 20%;
  text-align: center;
  align-items: center;
  white-space: nowrap;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
}
.myCart > .cartHead2 > li {
  padding: 1rem 0;
  font-size: 1rem;
  color: #333;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.myCart > .list > li {
  border-bottom: 1px solid #ddd;
}
.myCart > .list > li > ul {
  display: grid;
  grid-template-columns: 40% 15% 15% 15% 15%;
  text-align: center;
  align-items: center;
  white-space: nowrap;
}
.myCart > .list > li > ul > li {
  font-size: 0.875rem;
  color: #333;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.5rem 0;
}
.myCart > .list > li > ul > li button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #666;
  margin: auto;
}
.myCart > .list2 > li {
  border-bottom: 1px solid #ddd;
}
.myCart > .list2 > li > ul {
  display: grid;
  grid-template-columns: 40% 20% 20% 20%;
  text-align: center;
  align-items: center;
  white-space: nowrap;
}
.myCart > .list2 > li > ul > li {
  font-size: 0.875rem;
  color: #333;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.5rem 0;
}
.myCart > .list2 > li > ul > li button {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #666;
  margin: auto;
}
.myCart .totalPrice {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 2rem 0;
  gap: 1rem;
}
.myCart .totalPrice > p {
  font-size: 1.125rem;
  color: #333;
  font-weight: 600;
}
.myCart .buyForm {
  width: 100%;
}
.myCart .buyForm > ul > li {
  margin-bottom: 2rem;
}
.myCart .buyForm > ul > li > strong {
  font-size: 1.125rem;
  display: block;
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
  border-left: 2px solid #ccc;
  padding-left: 1rem;
}
.myCart .buyForm > ul > li > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.myCart .buyForm > ul > li > div > label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.myCart .buyForm > ul > li > div > select {
  width: 100%;
  max-width: 20rem;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  height: 2.5rem;
  font-size: 1rem;
  color: #333;
  border-radius: 0.625rem;
}
.myCart .buyForm > ul > li > div > input {
  width: 100%;
  max-width: 30rem;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  height: 2.5rem;
  font-size: 1rem;
  color: #333;
}
.myCart .buyForm > ul > li > div > input.long {
  max-width: 50rem;
}
.myCart .buyForm > ul > li > div > button {
  background-color: #333;
  color: #fff;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 0 1rem;
}
.myCart .buyForm > ul > li > div > textarea {
  width: 100%;
  height: 15.625rem;
  border: 1px solid #333;
  padding: 1rem;
  font-size: 1rem;
}
.myCart .buyButton {
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  font-size: 1.25rem;
  color: #fff;
  background-color: #b1d82a;
  padding: 0 2rem;
  width: 100%;
  max-width: 20rem;
}
.myCart > .cartButtons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 3rem;
}
.myCart > .cartButtons > button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 0.625rem;
  height: 2rem;
  font-size: 0.875rem;
  color: #333;
  font-weight: 400;
  padding: 0 1rem;
}

.noItem {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.25rem;
  color: #333;
  padding: 5rem 0;
  font-weight: 400;
}

.wrightAnswerPage {
  display: none;
}
.wrightAnswerPage.active {
  display: block;
}

.checkQuizPage {
  display: none;
}
.checkQuizPage.active {
  display: block;
}

.quiz > p {
  font-size: 1rem;
  color: #5e5332;
  padding: 1rem 0;
  font-weight: 400;
}
.quiz .info {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
}
.quiz .info > li {
  text-align: center;
  font-size: 0.875rem;
  color: #333;
  font-weight: 400;
  padding: 1rem 0;
}
.quiz button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b1d82a;
  font-size: 1rem;
  font-weight: 400;
  height: 2.5rem;
  padding: 0 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3rem;
  border-radius: 0.625rem;
}
.quiz > strong {
  font-size: 1.25rem;
  color: #333;
  font-weight: 500;
  padding: 1rem 0;
  display: block;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
.quiz .comments > li {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}
.quiz .comments > li > p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 400;
}
.quiz .comments > li > p.no {
  font-weight: 600;
}
.quiz .comments > li > p.comment {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  padding: 1rem;
}
.quiz .comments > li > p > span {
  display: block;
}
.quiz .contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}
.quiz .contents > li {
  border: 1px solid #ddd;
  padding: 0.5rem;
  border-radius: 0.625rem;
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .quiz .contents > li {
    width: 40%;
  }
}
.quiz .contents > li.good {
  border-color: #b1d82a;
}
.quiz .contents > li.good > p {
  color: #b1d82a;
}
.quiz .contents > li.bad {
  border-color: #c12121;
}
.quiz .contents > li.bad > p {
  color: #c12121;
}
.quiz .contents > li > p {
  font-size: 0.875rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.quiz .contents > li .flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5rem;
  gap: 1rem;
}
.quiz .contents > li .flex > div {
  display: flex;
  align-items: center;
  width: calc(50% - 2rem);
}
@media screen and (max-width: 1024px) {
  .quiz .contents > li .flex > div {
    width: 100%;
  }
}
.quiz .contents > li .flex > div > p {
  color: #333;
  font-size: 0.875rem;
  font-weight: 400;
}

.gree .content img {
  width: 100%;
} /*# sourceMappingURL=style.css.map */

.con_flex {
  display: flex;
  align-items: top;
  gap: 1.5rem;
}
.con_flex .greeImgBox {
  width: 50%;
}
.con_flex .greeImgBox img {
  width: 100%;
}
.con_flex .con_text {
  width: 50%;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .con_flex {
    flex-direction: column;
  }
  .con_flex .greeImgBox {
    width: 100%;
  }
  .con_flex .con_text {
    width: 100%;
  }
}

.gree02_img {
  width: 100%;
}
.gree02_img img {
  width: 100%;
}
.gree02_text {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.gree02_text li {
  padding: 1.6rem;
}
.gree02_text li > strong {
  color: #333;
  font-size: 1.125rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
  font-weight: 500;
  display: block;
  text-decoration: underline;
  margin-bottom: 1rem;
}

.gree02_text li > p {
  font-size: 1rem;
  color: #4e5059;
  font-weight: 400;
  line-height: 1.6;
}

.gree02_text li > p strong {
  background-color: #b1d82a;
  display: block;
  margin-top: 0.375rem;
  font-weight: 400;
}
.gree02_list {
  margin-top: 1.5rem;
  padding-left: 1.6rem;
}
.gree02_list p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}
.gree02_list p span {
  background-color: #b1d82a;
}

@media screen and (max-width: 1024px) {
  .gree02_text {
    flex-direction: column;
  }
}

.gree04 > div {
}
.gree04 > div > strong {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 1rem;
  display: inline-block;
  line-height: 1.8;
  text-decoration: underline;
  font-weight: 500;
}
.gree04 > div > .all {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  color: #373737;
  min-height: 6.25rem;
  background-color: #f0f0f0;
  margin-bottom: 1.5rem;
}
.gree04_table {
  display: flex;
  flex-direction: column;
  flex: auto;
}

.gree04_table > li {
  width: 100%;
  border-bottom: 1px solid #ddd;
}
.gree04_table > li:first-of-type {
  border-top: 1px solid #ddd;
}
.gree04_table li ul {
  display: flex;
  flex: auto;
}
.gree04_table li ul li {
  padding: 1rem;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  border-right: 1px solid #ddd;
}
.gree04_table li ul li:first-of-type {
  border-left: 1px solid #ddd;
}
