/* pers_creative — Styles (tokens만 참조) */
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@400;700&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html,body{width:100%;height:100%;overflow:hidden;}
#root{height:100%;}
a{color:inherit;text-decoration:none;}
img{display:block;max-width:100%;}
button{font:inherit;color:inherit;background:transparent;border:0;padding:0;cursor:pointer;letter-spacing:inherit;text-transform:inherit;}
input,textarea{font:inherit;letter-spacing:inherit;}

body {
  font-family: var(--font-en);
  font-size: var(--t-base);
  line-height: var(--lh-base);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
}

/* ── App Shell ─────────────────────────── */
.app {
  height: 100%;
  color: var(--black);
  flex-direction: column;
  justify-content: space-between;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  display: flex;
}

/* ── GNB ───────────────────────────────── */
.gnb {
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: var(--gnb-pt);
  padding-bottom: var(--gnb-pb);
  display: flex;
  position: relative;
  z-index: var(--z-logo);
}

.logo-box { z-index: var(--z-logo); }

.logo-box.short {
  z-index: 2;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.logo-img { height: var(--nav-h); }
.logo-text {
  font-weight: 700;
  font-size: var(--t-base);
  letter-spacing: 0.05em;
}

.link-box {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.linkitem-box {
  color: var(--black);
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: var(--t-base);
  line-height: var(--lh-base);
  text-decoration: none;
  transition: color var(--dur-fast), background-color var(--dur-fast);
  display: flex;
  padding: var(--sp-2xs) var(--sp-sm);
}
.linkitem-box:hover { color: var(--white); background-color: var(--overlay); }

.linkitem-box.kr {
  background-color: var(--white);
  color: var(--black);
  letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid var(--black);
  border-radius: var(--r-pill);
  flex: 0 auto;
  padding: var(--sp-2xs) var(--sp-sm);
  font-family: var(--font-ko);
  font-size: var(--t-sm);
  font-weight: 500;
  transition: border-color var(--dur-fast), color var(--dur-fast), background-color var(--dur-fast);
}
.linkitem-box.kr:hover { color: var(--white); background-color: var(--overlay); border-color: transparent; }

.divider {
  background-color: var(--pers-gray);
  width: 1px;
  height: 7px;
  margin-left: var(--sp-sm);
  margin-right: var(--sp-sm);
  display: flex;
  flex-shrink: 0;
}

/* ── Home Grid ─────────────────────────── */
.mainbody-grid {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.brandmenu-box {
  flex: none;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: var(--gnb-pt);
  padding-bottom: var(--gnb-pb);
  display: flex;
  position: relative;
  z-index: var(--z-logo);
}

.logo-image { height: 20px; display: block; }

.mainlink-container {
  position: relative;
  z-index: 3;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  flex: none;
}

.systemicon-svg {
  width: 15px;
  height: 15px;
  margin-right: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menuitem-text {
  font-size: var(--t-12);
  line-height: var(--lh-base);
  margin-right: 8px;
}

.menuitem-kor { display: none; }

/* ── Featured Slider ───────────────────── */
.featuredcontents-wrapper {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.featuredcontents-slider {
  height: 100%;
  position: relative;
}

.featuredcontents-mask {
  height: 100%;
  position: relative;
}

.featuredcontents-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50%;
  text-decoration: none;
  display: block;
  opacity: 0;
  transition: opacity var(--dur-mid);
}

.featuredcontents-slide.active { opacity: 1; }

.featuredcontents-linkbox {
  opacity: 0;
  color: rgba(255,255,255,0.75);
  background-image: linear-gradient(transparent, rgba(0,0,0,0.5));
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-xl);
  transition: opacity var(--dur-mid);
}
.featuredcontents-slide:hover .featuredcontents-linkbox { opacity: 1; }

.slide-nav-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: var(--sp-xs);
  font-size: 8px;
  opacity: 0.75;
  color: var(--white);
  gap: 4px;
  z-index: 1;
}

.w-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--dur-fast);
}
.w-slider-dot.active { background: rgba(255,255,255,0.95); }

/* ── About Panel (in-flow accordion) ─── */
.aboutitem-box {
  z-index: var(--z-about);
  background-color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: auto;
  font-size: var(--t-13);
  line-height: var(--t-13);
  display: flex;
  flex: none;
}

.aboutlabel-bar {
  border-bottom: 1px solid var(--black);
  height: var(--nav-h);
  color: var(--black);
  cursor: pointer;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding-right: var(--sp-xs);
  font-size: var(--t-12);
  line-height: var(--lh-base);
  text-decoration: none;
  display: flex;
}

.aboutitem-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-slow) var(--ease);
  background-color: var(--white);
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.aboutitem-box.open .aboutitem-content {
  max-height: 80vh;
}

/* nav links dim when about is open */
.aboutitem-box.open ~ .mainlink-container .linkbutton-bar {
  opacity: 0.3;
  transition: opacity var(--dur-mid);
}
.mainlink-container .linkbutton-bar {
  transition: opacity var(--dur-mid);
}

/* About Content */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.aboutinfo-box {
  z-index: 1;
  background-image: linear-gradient(to right, transparent, var(--white) 25%);
  text-align: left;
  letter-spacing: 1px;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--sp-2xl) 0 var(--sp-3xl);
  font-family: var(--font-ko);
  font-size: var(--t-about);
  font-weight: 300;
  line-height: var(--t-about);
  display: flex;
}

.tagline-text {
  letter-spacing: 0;
  margin-bottom: var(--sp-xl);
  font-family: var(--font-serif);
  font-size: var(--t-tagline);
  font-weight: 700;
  line-height: 20px;
  text-transform: none;
}

.abouttext-block {
  border-bottom: 1px solid var(--black);
  align-self: stretch;
  margin-bottom: var(--sp-sm);
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
  transition: opacity var(--dur-mid);
  text-transform: none;
}
.abouttext-block:hover { opacity: 0.5; }

/* Press Content */
.press-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  overflow: auto;
  padding: var(--sp-xl) var(--gutter);
}

.press-empty {
  color: var(--pers-gray);
  font-size: var(--t-sm);
  font-family: var(--font-ko);
  font-weight: 300;
  text-transform: none;
}

.presscollection-list {
  display: flex;
  gap: var(--sp-md);
  overflow-x: auto;
}

.presslink-box {
  opacity: 0.85;
  background-color: var(--pers-gray);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 80px;
  height: 110px;
  flex-shrink: 0;
  transition: opacity var(--dur-fast);
  cursor: pointer;
}
.presslink-box:hover { opacity: 1; }

/* Contact Content */
.contact-content {
  padding: var(--sp-xl) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.contactbutton-box {
  color: var(--black);
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: var(--t-12);
  line-height: var(--lh-base);
  text-decoration: none;
  display: flex;
  cursor: pointer;
}

/* ── Navmenu Container ────────────────── */
.navmenu-container {
  z-index: 3;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
  position: fixed;
  inset: auto var(--gutter) 20px;
}

.linkbutton-bar {
  height: var(--nav-h);
  color: var(--black);
  border-bottom: 1px solid var(--black);
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding-right: var(--sp-2xs);
  font-size: var(--t-12);
  line-height: var(--lh-base);
  text-decoration: none;
  display: flex;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.linkbutton-bar:hover { background: rgba(0,0,0,0.02); }
.linkbutton-bar.projects { border-bottom: none; }

.linklabel-shorttext { display: none; }

.link-arrow { opacity: 0.35; font-size: var(--t-sm); }

/* ── Footer Section ───────────────────── */
.footer-section {
  z-index: var(--z-footer);
  background-color: var(--white);
  flex-direction: row;
  flex: none;
  justify-content: space-between;
  align-items: center;
  height: var(--footer-h);
  display: flex;
}

.footerlink-container {
  height: var(--footer-h);
  color: var(--black);
  flex-direction: row;
  flex: 1;
  justify-content: flex-end;
  align-self: stretch;
  align-items: flex-end;
  padding-bottom: var(--sp-sm);
  font-size: var(--t-sm);
  line-height: var(--t-sm);
  display: flex;
  gap: var(--sp-xs);
}

.footerlink-box {
  color: var(--black);
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: color var(--dur-fast);
  display: flex;
  font-size: var(--t-sm);
  line-height: var(--t-sm);
}
.footerlink-box:hover { color: var(--pers-gray); }
.footerlink-box.copyright { font-size: var(--t-sm); line-height: var(--t-sm); }

.companyinfo-text {
  color: var(--black);
  font-size: var(--t-sm);
  line-height: var(--t-sm);
  font-family: var(--font-ko);
  text-transform: none;
}

.contactinfo-box {
  opacity: 0.5;
  color: var(--black);
  flex: none;
  justify-content: center;
  align-items: center;
  font-family: var(--font-ko);
  font-size: var(--t-base);
  line-height: var(--lh-base);
  text-decoration: none;
  transition: opacity var(--dur-fast);
  display: flex;
  gap: var(--sp-xs);
  text-transform: none;
}
.contactinfo-box:hover { opacity: 1; }
.contactinfo-box.top { opacity: 1; display: none; }
.contactinfo-box.top:hover { opacity: 0.5; }

/* ── Inquiry Modal ────────────────────── */
.inquirymodal-container {
  z-index: var(--z-modal);
  background-color: var(--white);
  transform-origin: 50% 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  display: flex;
  position: fixed;
  inset: 0;
  overflow: auto;
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease);
}
.inquirymodal-container.open { transform: translateY(0); }

.modalbar-box {
  flex: none;
  justify-content: space-between;
  height: var(--modal-bar-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.modalclose-button {
  width: var(--nav-h);
  color: var(--black);
  cursor: pointer;
  flex: none;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--dur-fast);
  display: flex;
  gap: var(--sp-xs);
  font-size: var(--t-sm);
}
.modalclose-button:hover { opacity: 0.5; }

.guidetext-box {
  color: var(--text-dim);
  letter-spacing: 0.5px;
  margin-top: var(--sp-sm);
  margin-bottom: var(--sp-sm);
  padding-right: 30%;
  font-family: var(--font-ko);
  font-size: var(--t-sm);
  font-weight: 400;
  line-height: var(--lh-base);
  text-transform: none;
}

.inquirymodal-box {
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: var(--sp-lg);
  display: flex;
}

.formtype-container {
  border-bottom: 1px solid var(--black);
  align-items: center;
  height: 35px;
  display: flex;
  position: relative;
}

.formtype-button {
  width: 100px;
  color: var(--black);
  justify-content: flex-start;
  align-items: center;
  padding-left: var(--sp-2xs);
  font-weight: 400;
  text-decoration: none;
  display: flex;
  gap: var(--sp-xs);
  cursor: pointer;
  opacity: 0.4;
  transition: opacity var(--dur-fast);
  font-size: var(--t-base);
}
.formtype-button.active { opacity: 1; }

.typeunderline-box {
  background-color: var(--black);
  width: 90px;
  height: 1.5px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: left var(--dur-mid) var(--ease);
}

.inquiryform-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xs);
}

.estimateform-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg) var(--sp-lg);
}

.formitem-box {
  border-bottom: 1px solid var(--black);
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: var(--nav-h);
  padding-left: 1px;
  display: flex;
}
.formitem-box.message {
  align-items: flex-start;
  height: auto;
  padding-top: 8px;
}

.fieldlabel-text {
  width: 100px;
  margin-bottom: 0;
  font-weight: 400;
  font-size: var(--t-base);
  flex-shrink: 0;
}

.inputfield-box {
  border: none;
  border-radius: 0;
  flex: 1;
  margin-bottom: 0;
  padding: 0;
  font-size: var(--t-base);
  font-weight: 500;
  line-height: var(--t-base);
  background: transparent;
  outline: none;
  text-transform: none;
}
.inputfield-box::placeholder {
  color: var(--pers-gray);
  font-size: var(--t-base);
  font-weight: 300;
}
.inputfield-box.textarea {
  height: 60px;
  resize: vertical;
}

.formfunction-box {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: var(--sp-sm);
  display: flex;
}

.formsend-button {
  background-color: var(--black);
  color: var(--white);
  width: 120px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 500;
  font-size: var(--t-base);
  transition: background-color var(--dur-fast), color var(--dur-fast);
  border: none;
  cursor: pointer;
}
.formsend-button:hover { background-color: var(--pers-gray); color: var(--black); }

/* ── Portfolio Page ───────────────────── */
.portfolio-body {
  flex: 1;
  overflow-y: auto;
}

.portfolionav-bar {
  z-index: 1;
  height: var(--nav-h);
  color: var(--black);
  background-color: rgba(255,255,255,0.85);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  font-family: var(--font-en);
  font-size: var(--t-12);
  line-height: var(--lh-base);
  position: sticky;
  top: 0;
  backdrop-filter: blur(4px);
}

.portfolioback-button {
  z-index: 0;
  color: var(--black);
  flex-direction: row;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  font-size: var(--t-12);
  line-height: var(--lh-base);
  text-decoration: none;
  transition: opacity var(--dur-fast);
  display: flex;
  gap: var(--sp-xs);
}
.portfolioback-button:hover { opacity: 0.5; }

.viewmode-tabs {
  color: var(--black);
  font-family: var(--font-en);
  font-size: var(--t-13);
  line-height: var(--t-13);
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
}

.viewmode-link {
  color: var(--pers-gray);
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  transition: color var(--dur-fast);
  font-size: var(--t-13);
  display: flex;
  align-items: center;
}
.viewmode-link:hover { color: var(--black); }
.viewmode-link.active { color: var(--black); }

.companyinfo-box {
  color: var(--pers-gray);
  justify-content: flex-end;
  align-items: center;
  font-size: var(--t-sm);
  line-height: var(--t-sm);
  display: flex;
}

/* Portfolio Grid (3-col) */
.feedcollection-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
}

.portfoliothumbnail-box {
  background-color: var(--pers-gray);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-end;
  height: var(--portfolio-thumb-h);
  display: flex;
  cursor: pointer;
}

.portfolioinfo-box {
  opacity: 0;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  background-image: linear-gradient(transparent 25%, rgba(0,0,0,0.5));
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  padding: var(--sp-md);
  font-size: var(--t-12);
  line-height: 16px;
  text-decoration: none;
  transition: opacity var(--dur-mid);
  display: flex;
}
.portfoliothumbnail-box:hover .portfolioinfo-box { opacity: 1; }

.portfoliotitle-text {
  text-transform: lowercase;
  margin-bottom: var(--sp-xs);
  font-size: var(--t-12);
}

.portfolioclient-text {
  color: rgba(0,0,0,0.4);
  text-transform: lowercase;
  font-size: var(--t-12);
  line-height: var(--t-12);
}

.portfoliofooter-section {
  z-index: -1;
  padding: var(--sp-2xl) var(--gutter) var(--sp-md);
  display: flex;
}

/* Portfolio Detail */
.portfolio-section {
  color: var(--black);
  font-family: var(--font-en);
  position: relative;
}

.portfolioinfo-section {
  z-index: 1;
  display: flex;
  position: relative;
}

.portfolioinfo-container {
  flex-direction: column;
  justify-content: flex-start;
  width: 50%;
  height: 100%;
  display: flex;
  position: fixed;
}

.portfolioinfo-grid {
  grid-column-gap: 20px;
  color: var(--black);
  text-transform: lowercase;
  display: grid;
  grid-template-columns: 1fr;
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-xl);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  font-family: var(--font-en);
  font-size: var(--t-12);
  line-height: var(--t-12);
}

.itemtitle-box {
  letter-spacing: 0;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: var(--sp-lg);
  font-family: var(--font-serif);
  font-size: var(--t-item-title);
  font-weight: 700;
  line-height: 25px;
  display: flex;
  text-transform: none;
}

.iteminfo-box {
  border-bottom: 1px solid var(--black);
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  height: var(--sp-xl);
  margin-top: var(--sp-sm);
  padding-left: 1px;
  display: flex;
  overflow: auto;
}

.itemlabel-text {
  color: rgba(0,0,0,0.3);
  align-self: stretch;
  margin-bottom: var(--sp-xs);
  font-size: var(--t-xs);
  line-height: var(--t-xs);
  text-transform: uppercase;
}

.itemdescription-box {
  text-align: left;
  letter-spacing: 0.5px;
  padding-top: var(--sp-lg);
  padding-left: 1px;
  font-family: var(--font-ko);
  font-size: var(--t-base);
  font-weight: 400;
  line-height: 18px;
  text-transform: none;
}

.portfolioimage-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 40%;
  margin-left: auto;
  display: flex;
  position: relative;
}

.imagecollection-item {
  object-fit: cover;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 1px;
  display: flex;
}

.imagecollection-item img {
  width: 100%;
  display: block;
}

/* Back to top */
.backtop-button {
  z-index: 1;
  color: rgba(255,255,255,0.75);
  background-color: rgba(0,0,0,0.4);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  transition: transform 0.2s, color 0.2s, background-color 0.2s;
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.backtop-button:hover {
  color: var(--white);
  background-color: rgba(0,0,0,0.85);
  transform: translateY(-3px);
}

/* Next/Prev */
.nextbutton-container {
  color: var(--black);
  flex: 1;
  justify-content: flex-start;
  align-items: flex-end;
  padding-bottom: var(--sp-lg);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  font-family: var(--font-en);
  display: flex;
}

/* ── Contact Page ─────────────────────── */
.contact-page-body {
  flex: 1;
  overflow-y: auto;
}

/* ── Notice Modal ─────────────────────── */
.noticemodal-box {
  z-index: var(--z-modal);
  background-color: var(--white);
  border-top-left-radius: var(--sp-md);
  border-top-right-radius: var(--sp-md);
  flex-direction: column;
  justify-content: flex-start;
  margin-left: var(--sp-sm);
  margin-right: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-sm) var(--sp-lg);
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -1px 5px 1px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease);
}
.noticemodal-box.open { transform: translateY(0); }

.noticeclose-button {
  cursor: pointer;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  display: flex;
}

.noticecontent-box {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: var(--sp-md);
  margin-left: var(--sp-xl);
  margin-right: var(--sp-xl);
  font-family: var(--font-ko);
  font-size: var(--t-base);
  line-height: var(--lh-base);
  display: flex;
  text-transform: none;
}

.noticelink-block {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: var(--sp-sm) 25px;
  font-family: var(--font-ko);
  font-size: var(--t-12);
  line-height: var(--t-12);
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
  display: flex;
  cursor: pointer;
  text-transform: none;
}
.noticelink-block:hover { background-color: var(--pers-gray); color: var(--black); }

/* ── Responsive ───────────────────────── */
@media (max-width: 991px) {
  .feedcollection-list { grid-template-columns: 1fr; }
  .portfoliothumbnail-box { height: 55vh; }
}

@media (max-width: 767px) {
  .app { padding-left: var(--gutter-sm); padding-right: var(--gutter-sm); }
  .gnb { padding-bottom: var(--sp-2xl); }
  .divider { display: none; }
  .navmenu-container { left: var(--gutter-sm); right: var(--gutter-sm); }
  .footer-section { position: fixed; left: 20px; right: 20px; bottom: 0; }
  .linklabel-longtext { display: none; }
  .linklabel-shorttext { display: block; }
  .footerlink-box { display: none; }
  .footerlink-box.copyright { display: flex; }
  .portfoliothumbnail-box { height: 90vh; }
  .guidetext-box { padding-right: 0; }
  .inquirymodal-container { padding-left: var(--gutter-sm); padding-right: var(--gutter-sm); }
  .contactinfo-box.instagram { display: none; }
  .contactinfo-box.top { justify-content: flex-end; width: 40px; display: flex; }
  .contactinfo-text { display: block; }
}

@media (max-width: 479px) {
  .feedcollection-list { grid-template-columns: 1fr; }
  .portfoliothumbnail-box { height: 35vh; }
  .fieldlabel-text { width: auto; margin-right: var(--sp-lg); }
  .contactinfo-box.mail { display: none; }
}
