/* 모바일은 1600부터 */
/* reset.css */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a {
  text-decoration: none;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  background: none;
  border: none;
}
.mobileVisible {
  display: none;
}
.mobileHidden {
  display: block;
}
.commonContainer {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  /* border: 1px black solid; */
  width: 100%;
  max-width: 1920px;
  margin: auto !important;
  /* height: 100vh; */
}
.headerSection {
  /* border: 1px black solid; */
  display: flex;
  align-items: center;
  padding: 0 196px;
  height: 64px;
  flex-shrink: 0 !important;
  justify-content: start;
}
.headerSection .title {
  text-wrap: nowrap;
  font-size: 18px;
}
.headerSection .headerLogo {
  margin-right: 38px;
}
.headerSection .menuBar {
  display: flex;
  margin-left: 250px;
  gap: 30px;
}
.headerSection .menuBar .col {
  /* border: 1px solid black; */
  text-wrap: nowrap !important;
  border-radius: 16px;
  min-width: 96px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: black;
  cursor: pointer;
  padding: 0 20px;
  &:hover {
    background: #aab597;
    color: white;
  }
}
.headerSection .mobileMenuBtn {
  display: none;
}
@media (max-width: 1600px) {
  .headerSection {
    padding: 0 46.76px;
    justify-content: space-between;
  }
  .menuBar {
    display: none !important;
  }
  .headerSection .headerLogo {
    margin-right: 0;
  }
  .headerSection .mobileMenuBtn {
    display: block;
  }
}
.pcFooterSection {
  display: flex;
  flex-direction: column;
  background: #f8f8f8;
}
.pcFooterSection .top {
  /* border: 1px solid black; */
  width: 100%;
  height: 340px;
  display: flex;
  padding-left: 275px;
  align-items: center;
}
.pcFooterSection .top .desc {
  display: flex;
  flex-direction: column;
  height: 146.55px;
  /* border: 1px solid black; */
  width: 699px;
  margin-left: 243px;
  justify-content: space-between;
  font-size: 19.11px;
  font-family: Montserrat;
  color: #605d5e;
  font-weight: 500;
}

.pcFooterSection .top .desc .info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: black;
}
.pcFooterSection .bottom {
  /* border: 1px solid black; */
  width: 100%;
  height: 228px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
}
.pcFooterSection .bottom .contact {
}
.mobileFooterSection {
  display: none;
}
@media (max-width: 1300px) {
  .mobileVisible {
    display: block;
  }
  .pcFooterSection {
    display: none;
  }
  .mobileFooterSection {
    display: flex;
    flex-direction: column;
    background: #f8f8f8;
  }
  .mobileFooterSection .top {
    /* border: 1px solid black; */
    height: 437.53px;
    display: flex;
    flex-direction: column;
    padding: 0 18.28px;
    justify-content: center;
    gap: 16px;
  }
  .mobileFooterSection .top .header {
    height: 117px;
    /* border: 1px solid black; */
    display: flex;
    gap: 7px;
    align-items: center;
  }
  .mobileFooterSection .top .header .left {
    display: flex;
    /* border: 1px solid black; */
    width: 223px;
    height: 100%;
    flex-direction: column;
  }
  .mobileFooterSection .top .header .left .title {
    margin-bottom: 24.38px;
    font-size: 19.11px;
    color: #605d5e;
  }
  .mobileFooterSection .top .header .left .left-desc {
    display: flex;
    flex-direction: column;
    gap: 9.75px;
    font-size: 15px;
  }
  .mobileFooterSection .top .desc {
    /* border: 1px solid black; */
    height: 117px;
  }
  .mobileFooterSection .bottom {
    /* border: 1px solid black; */
    height: 211px;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
  }
}
/* Backdrop */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 900;
}
.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Side menu */
.side-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0px; /* 이미지처럼 왼쪽 여백 */
  width: 320px;
  max-width: 88vw;
  background: #fff;
  z-index: 1000;
  box-shadow: 2px 0 18px rgba(0, 0, 0, 0.12);
  transform: translateX(calc(-100% - 40px));
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.side-menu.open {
  transform: translateX(0);
}

/* Header bar */
.side-menu__top {
  height: 56px;
  background: #aab58c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.side-menu__top span {
  font-size: 18px;
}
.side-menu__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

/* List */
.side-menu__list {
  padding: 14px 0 24px;
  overflow: auto;
}
.side-menu__list a {
  display: block;
  padding: 14px 18px;
  color: #333;
  text-decoration: none;
  font: 500 15px/1.45 "Inter", "Montserrat", "Open Sans", sans-serif;
}
.side-menu__list a:hover {
  background: #f5f6f3;
}
.side-menu__list a + a {
  margin-top: 4px;
}

body.no-scroll {
  overflow: hidden;
}
body {
  overflow-x: hidden;
}

/* 모바일에서만 보이게 하고 싶으면(선택)
@media (min-width: 992px){
  .side-menu, .menu-backdrop{ display:none; }
}
*/
picture {
  padding: 0;
  margin: 0;
}
.commonMainBanner {
  width: 100%;
  height: auto;
  aspect-ratio: 1920/652;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.commonMainBanner .background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  object-fit: cover;
}
.commonMainBanner h2 {
  font-weight: 700;
  font-size: 64px;
}
@media (max-width: 1600px) {
  .commonMainBanner {
    aspect-ratio: 390/227;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .commonMainBanner h2 {
    font-size: 25px;
  }
}
@media (max-width: 460px) {
  .mobileHidden {
    display: none;
  }
}
* {
  box-sizing: border-box !important;
}
.faqSection {
  /* padding: 228px 142px; */
  display: flex;
  justify-content: center;
}
.faqSection .row {
  min-height: 600px;
  width: 100%;
  /* border: 1px solid black; */
  display: flex;
}
.faqSection .row img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-right: 63px;
}
.faqSection .row {
  display: flex;
}
.faqSection .faq {
  flex: 1;
  max-width: 100%;
  /* border: 1px solid #0056b8; */
  /* background: #e7f1ff; */
  border-radius: 8px;
  padding: 24px;
}
.faqSection .faq h3 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
.faqSection .faq details {
  /* margin-top: 12px; */
  /* border-top: 1px solid #cce4ff; */
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  min-height: 80px;
}

.faqSection .faq summary {
  cursor: pointer;

  position: relative;
  list-style: none;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.faqSection .faq summary::marker {
  display: none;
}
.faqSection .faq summary::after {
  content: url("../assets/plus.png");
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 18px;
}
.faqSection .faq details[open] summary::after {
  content: url("../assets/minus.png");
  /* padding-bottom: 50px; */
}
.faqSection .faq p {
  margin: 8px 0 0;
  padding-left: 16px;
  color: #333;
}
.faqSection .faq details[open] {
  padding: 40px;
  background-color: #f9fbfc;
}
.faqSection h2 {
  margin-bottom: 75px;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
}
.faqSection {
  padding: 60px 20px;
  /* max-width: 800px; */
  /* margin: auto; */
  display: flex;
  flex-direction: column;
}
.faq-item {
  border: 1px solid #e5e5e6;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
  background: #fff;
  border: none;
  cursor: pointer;
  outline: none;
  text-align: start;
  line-height: 28px;
  color: black;
}
.faq-icon {
  width: 16.5px;
  height: 16.5px;
  background-size: contain;
  background-repeat: no-repeat;
  /* transition: transform 0.2s; */
}
.faq-icon {
  width: 16.5px;
  height: 16.5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../assets/plus.png");
  transition: background-image 0.2s;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  /* 열려 있을 때만 - 아이콘으로 교체 */
  background-image: url("../assets/minus.png");
  /* top: -10px !important; */
}
.faq-icon {
  position: relative;
  transition: top 0.2s;
}

.faq-item.open .faq-icon {
  top: -13px; /* 열렸을 때 아이콘만 위로 3px 올려줍니다 */
}

.faq-answer {
  max-height: 0;
  padding: 0 20px;

  color: #333;
  font-size: 14px;
  line-height: 1.6;
  /* background: #f9fbfc; */
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  /* 충분히 큰 값으로 열기 */
  max-height: 500px;
  padding: 20px;
  padding-top: 10px;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
a:visited {
  color: inherit;
}
