/************************************************************************************/
/************************************* Font *************************************/
/************************************************************************************/
/************************************************************************************/
/************************************* Colors *************************************/
/************************************************************************************/
:root {
  --white: #fff;
  --black: #000;
  --red: #9B0000;
  --blue: #0F0078;
  --light-blue: #5163c0;
  --deep-blue: #05014a;
  --orange: #ff9644;
  /* color */
  --font-color: #040404;
  --primary: #4D1FF2;
  --primary400: #2b379e;
  --primary300: #3a49b4;
  --primary200: #7680ca;
  --primary100: #c4c7e9;
  --primary000: #e7e9f6;
  --secondary: #FB6B4D;
  --gray100: #F1F1F1;
  --gray200: #e2e2e2;
  --gray300: #CED4DA;
  --gray400: #ADB5BD;
  --gray500: #767676;
  --brd-c1: #E9ECEF;
  --brd-c2: #CED4DA;
  --c-red: #ec0000;
  --btn-gray: #6c757d;
  --mc: #2e55e7;
  --footer-bg: #202020;
  /* theme_color */
  --theme01: #ffffeb;
  --theme02: #ffffff;
  --theme02-s: #f8f8f8;
  --theme03: #eafff9;
  --theme04: #FFF8E4;
}

/* font-size */
/* absolute-center */
/* transition */
/* common */
html {
  font-size: 62.5%;
}

body {
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Apple SD Gothic Neo", "Malgun Gothic", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  word-break: keep-all;
  letter-spacing: -0.025em;
  color: var(----font-color);
  font-size: 1.8rem;
}
@media (max-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}
body a {
  color: var(--black);
  text-decoration: none;
}
body:has(#modal.show) {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

a,
input,
button,
select {
  outline-offset: 2px;
  outline-color: var(--black);
}

/* ----------------------------------------
* common
* ----------------------------------------*/
:root {
  --header-height: 100px;
}
@media (max-width: 1280px) {
  :root {
    --header-height: 80px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 68px;
  }
}
/* table */
table {
  width: 100%;
}

.wrap-in {
  max-width: 1416px;
  margin: 0 auto;
}
@media (max-width: 1460px) {
  .wrap-in {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .wrap-in {
    max-width: 92%;
  }
}
@media (max-width: 480px) {
  .wrap-in {
    max-width: 90%;
  }
}

.wrap-in2 {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .wrap-in2 {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .wrap-in2 {
    max-width: 92%;
  }
}
@media (max-width: 480px) {
  .wrap-in2 {
    max-width: 90%;
  }
}

header {
  width: 100%;
  padding-inline: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 102;
  height: var(--header-height);
}
header.fixed {
  position: fixed;
  animation: headerSlideDown 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
header a {
  text-decoration: none;
  color: var(--black);
}
header .jeho {
  font-size: 1.6rem;
  font-weight: 600;
}
@media (max-width: 1280px) {
  header .jeho {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  header .jeho {
    font-size: 1.4rem;
  }
}
header .jeho a {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .jeho a > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}
header .jeho a > span span {
  margin-left: 10px;
}
header .jeho a > span::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1;
  background: url("../images/common/arw.svg") no-repeat center/100% 100%;
}
header .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
header .logo a {
  display: block;
  width: 239px;
  height: 34px;
  background: url("../images/common/logo2.svg") no-repeat center/100% 100%;
}
header nav {
  position: relative;
  width: 500px;
  height: 100vh;
  background: var(--white);
  padding: var(--nav-padding);
  position: fixed;
  top: 0;
  bottom: 0;
  right: -500px;
  z-index: 104;
  transition: right 0.4s ease;
}
header nav.--open {
  right: 0;
  height: 100vh;
}
header nav .nav-header {
  width: var(--header-height);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 20px;
}
header nav .nav-header .nav-close {
  position: absolute;
  width: 36px;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header nav .nav-header .nav-close::before, header nav .nav-header .nav-close::after {
  content: "";
  height: 2px;
  border-bottom: 2px solid var(--black);
  display: block;
  transform-origin: center center;
}
header nav .nav-header .nav-close::before {
  transform: rotate(45deg);
  margin-top: 1px;
}
header nav .nav-header .nav-close::after {
  margin-top: -1px;
  transform: rotate(-45deg);
}
header nav ul {
  padding-inline: 1em;
  font-size: 2.4rem;
}
@media (max-width: 1280px) {
  header nav ul {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  header nav ul {
    font-size: 1.8rem;
  }
}
header nav ul a {
  color: var(--font-color);
  text-decoration: none;
  display: block;
  padding: 1em 1em;
  border-bottom: 1px solid var(--font-color);
  background: url("../images/common/arw.svg") no-repeat center right 1em/16px 16px;
}
header .burger-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--header-height);
  aspect-ratio: 1;
  cursor: pointer;
}
header .burger-wrap .cont-in {
  width: 48px;
  height: 12px;
  aspect-ratio: 1;
}
header .burger-wrap .cont-in span {
  width: 100%;
  height: 1px;
  border-bottom: 2px solid var(--black);
  display: block;
  position: absolute;
  left: 0;
  background-color: var(--black);
}
header .burger-wrap .cont-in span:nth-child(1) {
  top: 0;
}
header .burger-wrap .cont-in span:nth-child(2) {
  bottom: 0;
}
@media (max-width: 1280px) {
  header {
    padding-inline: 36px 20px;
  }
  header .logo a {
    width: 191px;
    height: 27px;
  }
  header nav .nav-header {
    margin-right: 10px;
  }
  header nav .nav-header .nav-close {
    width: 32px;
  }
  header .burger-wrap .cont-in {
    width: 40px;
    height: 10px;
  }
}
@media (max-width: 767px) {
  header {
    padding-inline: 4% 2%;
  }
  header .logo a {
    width: 143px;
    height: 20px;
  }
  header nav {
    width: 100%;
    right: -100%;
  }
  header nav .nav-header .nav-close {
    width: 28px;
  }
  header .burger-wrap .cont-in {
    width: 36px;
    height: 10px;
  }
}
@media (max-width: 480px) {
  header {
    padding-inline: 4% 1%;
  }
  header .jeho {
    font-size: 1.2rem;
  }
  header .jeho a {
    display: block;
  }
  header .jeho a > span {
    margin-top: -4px;
    gap: 5px;
  }
  header .jeho a > span::after {
    width: 12px;
    margin-top: -1px;
  }
  header nav .nav-header {
    margin-right: 0;
  }
  header nav .nav-header .nav-close {
    width: 24px;
  }
  header .burger-wrap .cont-in {
    width: 32px;
    height: 10px;
  }
}

footer {
  color: var(--white);
  background: var(--footer-bg);
  padding: 3.56em 4.4em;
  display: flex;
  align-items: flex-start;
}
footer .logo {
  width: 202px;
  margin-right: 5.63em;
}
footer .logo .logo01 {
  width: 202px;
  height: 85px;
  margin-bottom: 1.1em;
  background: url("../images/common/logo_b.png") no-repeat center/100% 100%;
}
footer .logo .logo02 {
  width: 202px;
  height: 43px;
  background: url("../images/common/logo_bscf.svg") no-repeat center/100% 100%;
}
footer .txt-cont {
  margin-top: 1.1em;
  font-size: 1.6rem;
  color: var(--gray200);
}
@media (max-width: 1280px) {
  footer .txt-cont {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  footer .txt-cont {
    font-size: 1.4rem;
  }
}
footer .txt-cont .notice {
  opacity: 0.8;
  font-size: 1.4rem;
  margin-block: 0.6em 1em;
  font-weight: 300;
}
@media (max-width: 1280px) {
  footer .txt-cont .notice {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  footer .txt-cont .notice {
    font-size: 1.2rem;
  }
}
footer .txt-cont .copyright {
  margin-top: 1.78em;
}
footer .txt-cont .sns {
  margin-top: 1.78em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
footer .txt-cont .sns a {
  width: 64px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .txt-cont .sns a img {
  height: 30px;
}
footer .txt-cont .sns a:first-child {
  margin-left: 0;
}
footer .issue-wrap {
  margin-left: auto;
}
footer .issue {
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--gray200);
  padding-block: 0.89em;
  padding-inline: 1.78em 1.33em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: auto;
}
footer .issue::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  background: url("../images/common/arw_link.svg") no-repeat center/100% 100%;
}
@media (max-width: 1280px) {
  footer {
    flex-wrap: wrap;
  }
  footer .logo {
    width: 20.63vw;
  }
  footer .logo .logo01 {
    width: 20.63vw;
    height: 8.67vw;
  }
  footer .logo .logo02 {
    width: 20.63vw;
    height: 2.89vw;
  }
  footer .txt-cont {
    flex: 1;
  }
  footer .issue-wrap {
    width: 100%;
    margin-top: 2em;
    margin-left: calc(19.22vw + 5.63em);
  }
}
@media (max-width: 767px) {
  footer {
    padding: 2.1em 5%;
    flex-direction: column;
  }
  footer .logo {
    width: 100%;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5em 2em;
  }
  footer .logo .logo01 {
    width: clamp(101px, 15.78vw, 121px);
    height: clamp(42px, 6.65vw, 51px);
    margin-bottom: 0;
  }
  footer .logo .logo02 {
    margin-top: -0.2em;
    width: clamp(123px, 23.99vw, 184px);
    height: clamp(21px, 3.26vw, 25px);
  }
  footer .txt-cont {
    margin-top: 2em;
    text-align: center;
  }
  footer .txt-cont .sns {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .txt-cont .sns a {
    width: 40px;
  }
  footer .txt-cont .sns a img {
    height: 20px;
  }
  footer .issue-wrap {
    margin-left: 0;
    text-align: center;
  }
  footer .issue {
    min-width: 120px;
    padding-block: 0.6em;
    padding-inline: 1.6em 1.1em;
  }
}

@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
/************************************************************************************/
/************************************* visual *************************************/
/************************************************************************************/
:root {
  --border-width: 15px;
}

.main-visual-wrap {
  position: relative;
  width: 100%;
  min-height: calc(820px - var(--header-height));
  height: calc(100vh - var(--header-height));
  overflow: hidden;
  margin-top: var(--header-height);
}
.main-visual-wrap .visual-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 100;
}
@media (max-width: 1100px) {
  .main-visual-wrap {
    height: auto;
    overflow: auto;
  }
  .main-visual-wrap .visual-wrap {
    overflow: auto;
  }
}
@media (max-width: 1024px) {
  .main-visual-wrap {
    min-height: calc(768px - var(--header-height));
  }
}
@media (max-width: 480px) {
  .main-visual-wrap {
    height: auto;
    min-height: auto;
  }
}

.main-visual {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150vh;
  height: 100%;
  background: #f6eedc;
  transform: translate(-50%, -50%);
  overflow: hidden;
  min-width: 100%;
}
.main-visual div {
  position: absolute;
  pointer-events: none;
}
.main-visual div img {
  width: 100%;
}
.main-visual .grain-bg {
  width: 100%;
  height: 100%;
  background: url("../images/default/bg_grain.png");
  mix-blend-mode: multiply;
}
.main-visual .floor {
  width: 100%;
  height: 9.3902439024%;
  min-height: 77px;
  background: url("../images/default/floor.jpg");
  bottom: 0;
}
.main-visual .windows {
  border: var(--border-width) solid #d9c083;
  overflow: hidden;
}
.main-visual .windows .door {
  width: 26.4573991031%;
  width: 103%;
  height: 100%;
  border-right: var(--border-width) solid #e0c89b;
  background: #eddbbc;
}
.main-visual .windows .door::before {
  width: 10px;
  height: 10%;
  border-radius: 100px;
  background: #d9bd8a;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
}
.main-visual .windows .door::after {
  width: 15%;
  width: 4%;
  height: 100%;
  background: #fff3df;
  display: block;
  content: "";
  position: absolute;
  right: calc(-1 * (var(--border-width) + 4% - 1px));
}
.main-visual .window-center {
  width: 35.0520833333%;
  aspect-ratio: 1306/1342;
  border-radius: 2000px 2000px 0 0;
  top: 6.4634146341%;
  left: 32.5%;
}
.main-visual .window-center .bg-img {
  width: 100%;
  height: 100%;
  background: url("../images/default/window_center_img.jpg") no-repeat center center/cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-visual .window-center .cloud01 {
  width: 32.8614008942%;
  top: 16.7687595712%;
  right: -2%;
  animation: cloud 10s linear infinite;
}
.main-visual .window-center .cloud02 {
  width: 11.7734724292%;
  top: 37.1362940276%;
  right: 25%;
  animation: cloud 6s linear infinite;
}
.main-visual .window-center .galmegi {
  width: 5.21609538%;
}
.main-visual .window-center .galmegi.galmegi01 {
  top: 39.663093415%;
  left: 10.8166915052%;
  animation: galmegi 8s ease-in-out infinite;
}
.main-visual .window-center .galmegi.galmegi02 {
  top: 48.2388973966%;
  left: 17.3740685544%;
  animation: galmegi 11s ease-in-out -5s infinite;
}
.main-visual .window-center .galmegi.galmegi03 {
  top: 53.2159264931%;
  left: 50.3845007452%;
  animation: galmegi 9s ease-in-out -2.5s infinite;
}
.main-visual .window-center .lightBeam01 {
  top: -1%;
  left: -1%;
  animation: lightBeam 8s ease-in-out infinite;
}
.main-visual .window-center .light {
  width: 3.129657228%;
}
.main-visual .window-center .light.light01 {
  top: 11.9448698315%;
  left: 44.9329359165%;
  animation: lightBeam 3s ease-in-out infinite;
}
.main-visual .window-center .light.light02 {
  top: 34.9923430322%;
  left: 46.348733234%;
  animation: lightBeam 5s ease-in-out infinite;
}
.main-visual .window-left-top,
.main-visual .window-right-bottom {
  width: 23.1770833333%;
  aspect-ratio: 892/772;
  border-radius: 2000px 2000px 0 0;
}
.main-visual .window-left-bottom,
.main-visual .window-right-top {
  width: 23.1770833333%;
  aspect-ratio: 892/350;
}
.main-visual .window-left-bottom .bg,
.main-visual .window-right-top .bg {
  width: 100%;
  height: 100%;
  background: #6CDCD7;
  background: linear-gradient(0deg, rgb(108, 220, 215) 0%, rgb(152, 223, 219) 100%);
}
.main-visual .window-left-top {
  top: 6.4634146341%;
  left: 4.1145833333%;
}
.main-visual .window-left-top .bg-img {
  width: 100%;
  height: 100%;
  background: url("../images/default/window_left_top_bg.jpg") no-repeat center center/cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-visual .window-left-top .tree {
  width: 70.6278026906%;
  left: 15.5%;
  animation: tree 3s ease-in-out infinite;
  transform-origin: bottom left;
}
.main-visual .window-left-top .bidf {
  width: 50%;
  right: 5%;
  bottom: 7%;
}
.main-visual .window-left-top .light01 {
  width: 8.2959641256%;
  top: 22.2513089005%;
  left: 64.0134529148%;
  animation: lightBeam 6s ease-in-out infinite;
}
.main-visual .window-left-top .light02 {
  width: 5.3811659193%;
  top: 24.7382198953%;
  left: 39.798206278%;
  animation: lightBeam 5s ease-in-out infinite;
}
.main-visual .window-left-top .light02 img {
  opacity: 0.6;
}
.main-visual .window-left-top .light03 {
  width: 5.3811659193%;
  top: 36.387434555%;
  left: 75.8968609865%;
  animation: lightBeam 8s ease-in-out infinite;
}
.main-visual .window-left-top .light03 img {
  opacity: 0.6;
}
.main-visual .window-left-top .lightBeam02 {
  top: -1%;
  left: -1%;
  animation: lightBeam 8s ease-in-out infinite;
}
.main-visual .window-left-top .door {
  animation: door 8s ease-in-out infinite;
}
.main-visual .window-left-bottom {
  top: 62.3170731707%;
  left: 4.1145833333%;
  border-radius: 2000px 0 0 2000px;
}
.main-visual .window-left-bottom .camera {
  width: 31.61434978%;
  line-height: 0;
  bottom: 0;
  left: 0;
  transform: translateY(10%);
}
.main-visual .window-left-bottom .ceramic {
  width: 20.73991031%;
  line-height: 0;
  bottom: 0;
  left: 45%;
}
.main-visual .window-left-bottom .electro {
  width: 23.20627803%;
  top: 5%;
  right: 5%;
}
.main-visual .window-left-bottom .star-glow01 {
  width: 4.48430493%;
  top: 15%;
  left: 38%;
  animation: starGlow 3s ease-in-out infinite;
}
.main-visual .window-left-bottom .star-glow02 {
  width: 2.80269058%;
  top: 55%;
  right: 25%;
  animation: starGlow 2s ease-in-out infinite 0.5s;
}
.main-visual .window-left-bottom .star-glow03 {
  width: 4.48430493%;
  top: 70%;
  right: 30%;
  animation: starGlow 2.5s ease-in-out infinite 1.2s;
}
.main-visual .window-right-top {
  top: 6.4634146341%;
  left: 71.71875%;
  border-radius: 0 2000px 2000px 0;
}
.main-visual .window-right-top .umbrage {
  width: 21.97309417%;
  top: 0;
  right: 0;
  animation: tree 3s ease-in-out infinite;
  transform-origin: bottom right;
}
.main-visual .window-right-top .chair {
  width: 53.13901345%;
  line-height: 0;
  bottom: 0;
  right: 0;
}
.main-visual .window-right-top .obuthan {
  width: 31.83856502%;
  line-height: 0;
  aspect-ratio: 284/250;
  top: 5%;
  left: 5%;
}
.main-visual .window-right-top .obuthan .obuthan-inner {
  width: 100%;
  overflow: hidden;
  animation: obuthan 5s ease-in-out infinite;
  transform-origin: top center;
}
.main-visual .window-right-top .obuthan .obuthan-inner img {
  width: calc(100% - 20px);
  margin-left: 10px;
  z-index: 2;
  position: relative;
}
.main-visual .window-right-top .obuthan .obuthan-inner::before, .main-visual .window-right-top .obuthan .obuthan-inner::after {
  content: "";
  width: 100%;
  background: #cd9049;
  aspect-ratio: 284/15;
  display: block;
  position: absolute;
  left: 0;
  z-index: 1;
}
.main-visual .window-right-top .obuthan .obuthan-inner::before {
  top: 3px;
}
.main-visual .window-right-top .obuthan .obuthan-inner::after {
  bottom: 3px;
}
.main-visual .window-right-bottom {
  top: 40.1219512195%;
  left: 71.71875%;
}
.main-visual .window-right-bottom .bg-img {
  width: 100%;
  height: 100%;
  background: url("../images/default/window_right_bottom_bg.jpg") no-repeat center center/cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-visual .window-right-bottom .cosmo {
  width: 50.22421525%;
  left: 10%;
  top: -10%;
}
.main-visual .window-right-bottom .cosmo_txt {
  width: 56.16591928%;
  right: 5%;
  bottom: 20%;
}
.main-visual .window-right-bottom .door {
  animation: door 14s ease-in-out infinite;
}
.main-visual .woman {
  width: 15.9375%;
  bottom: 0;
  left: 21.5104166667%;
  animation: woman 2s steps(1) infinite;
  transform-origin: center;
}
@media screen and (max-width: 1100px) {
  .main-visual {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: grid;
    grid-template-columns: 20px 2.88fr 1fr 2.28fr 20px;
    grid-template-rows: 150px auto auto auto auto;
  }
  .main-visual .windows {
    position: relative;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }
  .main-visual .window-center {
    width: 100%;
    border-radius: 0;
    border-width: calc(var(--border-width) / 2) calc(var(--border-width) / 2) var(--border-width) var(--border-width);
    aspect-ratio: auto;
    grid-column: 2/4;
    grid-row: 3/5;
  }
  .main-visual .window-center .bg-img {
    background-position: bottom left;
  }
  .main-visual .window-left-top {
    width: 100%;
    border-radius: 100% 0 0 0;
    border-width: var(--border-width) calc(var(--border-width) / 2) 0 var(--border-width);
    aspect-ratio: auto;
    grid-column: 2;
    grid-row: 2;
  }
  .main-visual .window-left-top .tree {
    width: 80%;
    left: 20%;
  }
  .main-visual .window-left-top .bidf {
    width: 60%;
    right: 3%;
  }
  .main-visual .window-right-bottom {
    width: 100%;
    border-radius: 0;
    border-width: 0 var(--border-width) var(--border-width) 0;
    aspect-ratio: 258/380;
    grid-column: 4;
    grid-row: 4;
  }
  .main-visual .window-right-bottom .cosmo {
    width: 110%;
    left: -20%;
  }
  .main-visual .window-right-bottom .cosmo_txt {
    bottom: 30%;
  }
  .main-visual .window-left-bottom {
    width: 100%;
    border-radius: 0 100% 0 0;
    border-width: var(--border-width) var(--border-width) 0 0;
    aspect-ratio: 362/371;
    grid-column: 3/5;
    grid-row: 2;
  }
  .main-visual .window-left-bottom .camera {
    width: 55%;
  }
  .main-visual .window-left-bottom .ceramic {
    width: 30%;
    left: 60%;
  }
  .main-visual .window-left-bottom .electro {
    width: 40%;
    top: 10%;
    left: 20%;
    right: auto;
  }
  .main-visual .window-left-bottom .star-glow01 {
    width: 10%;
    top: 40%;
  }
  .main-visual .window-left-bottom .star-glow02 {
    width: 5%;
    top: 50%;
    right: 30%;
  }
  .main-visual .window-left-bottom .star-glow03 {
    display: none;
  }
  .main-visual .window-right-top {
    width: 100%;
    border-radius: 0;
    border-width: calc(var(--border-width) / 2) var(--border-width) calc(var(--border-width) / 2) 0;
    aspect-ratio: 258/390;
    grid-column: 4;
    grid-row: 3;
  }
  .main-visual .window-right-top .umbrage {
    width: 50%;
    top: auto;
    bottom: 0;
    z-index: 2;
  }
  .main-visual .window-right-top .chair {
    width: 140%;
    left: 0;
    right: auto;
    z-index: 3;
  }
  .main-visual .window-right-top .obuthan {
    width: 80%;
    aspect-ratio: 284/230;
    top: 15%;
    left: 10%;
    z-index: 1;
  }
  .main-visual .floor {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1/6;
    grid-row: 45;
  }
  .main-visual .woman {
    width: 40%;
    left: -10%;
  }
}
@media screen and (max-width: 480px) {
  .main-visual {
    grid-template-rows: 100px auto auto auto auto;
  }
}

@keyframes woman {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes cloud {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes galmegi {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  35% {
    transform: translate(12px, -15px) rotate(4deg);
  }
  70% {
    transform: translate(25px, -5px) rotate(-2deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes lightBeam {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes tree {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes door {
  0% {
    left: 0;
  }
  25% {
    left: -70%;
  }
  75% {
    left: -70%;
  }
  100% {
    left: 0;
  }
}
@keyframes door-reverse {
  0% {
    right: 0;
  }
  25% {
    right: -70%;
  }
  75% {
    right: -70%;
  }
  100% {
    right: 0;
  }
}
@keyframes starGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
@keyframes obuthan {
  0% {
    height: 10%;
  }
  25% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 10%;
  }
}
/* ================================================================== */
/* Author : Design Geulggol
/* Date	: 2026-3-20
/* ================================================================== */
/* ----------------------------------------
* common
* ----------------------------------------*/
:root {
  --header-height: 100px;
}
@media (max-width: 1280px) {
  :root {
    --header-height: 80px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 68px;
  }
}
.opening-post {
  top: var(--header-height);
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  padding: 1.78em 2.67em;
  background-color: var(--white);
  z-index: 101;
  text-align: center;
}
.opening-post span {
  display: block;
  white-space: nowrap;
}
.opening-post::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
  background: url("../images/default/plus.svg") no-repeat center/100% 100%;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 110;
}
@media (max-width: 767px) {
  .opening-post {
    padding: 1.4em 2em;
  }
  .opening-post::before {
    width: 16px;
  }
}
@media (max-width: 480px) {
  .opening-post {
    width: 90%;
    padding: 1.2em 1.6em;
    font-size: 1.4rem;
  }
  .opening-post span {
    display: inline;
    white-space: wrap;
  }
  .opening-post::before {
    width: 12px;
  }
}

.default-content {
  display: flex;
  flex-wrap: wrap;
}
.default-content .cont {
  border: 1px solid var(--black);
  border-width: 0 0 1px 0;
  padding: 2.22em;
  display: flex;
  align-items: flex-end;
  width: 25%;
  border-width: 1px 1px 0 0;
  aspect-ratio: 1/1;
}
.default-content .cont a {
  width: 100%;
  color: var(--black);
  text-decoration: none;
  display: block;
}
.default-content .cont a .cate {
  font-family: "Rebecca";
  font-size: clamp(2rem, 1.46vw, 2.8rem);
  margin-bottom: 1.14em;
}
.default-content .cont a h2 {
  font-size: clamp(2.2rem, 1.46vw, 2.8rem);
  font-weight: 500;
  word-break: keep-all;
  margin-bottom: 6px;
}
.default-content .cont a h2 span {
  font-size: 0.85em;
  display: block;
}
.default-content .cont a .writer {
  font-size: clamp(1.6rem, 1.2vw, 2rem);
}
.default-content .cont a .icon {
  width: 6.46vw;
  aspect-ratio: 1;
  position: absolute;
  top: 2.22em;
  right: 2.22em;
  margin-top: 10px;
}
.default-content .cont a .icon.icon01 {
  background: url("../images/default/icon01.svg") no-repeat center/100% 100%;
}
.default-content .cont a .icon.icon02 {
  background: url("../images/default/icon02.svg") no-repeat center/100% 100%;
}
.default-content .cont a .icon.icon03 {
  background: url("../images/default/icon03.svg") no-repeat center/100% 100%;
}
.default-content .cont:nth-child(1) {
  border-top-width: 0;
  background: var(--theme01);
}
.default-content .cont:nth-child(2) {
  position: relative;
  border-top-width: 0;
  aspect-ratio: 1/1;
}
.default-content .cont:nth-child(2)::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/default/main_img01.jpg") no-repeat center/cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.default-content .cont:nth-child(3) {
  background: var(--theme02);
  border-top-width: 0;
}
.default-content .cont:nth-child(4) {
  background: var(--theme03);
  border-top-width: 0;
}
.default-content .cont:nth-child(5) {
  background: var(--theme02);
}
.default-content .cont:nth-child(6) {
  background: var(--theme03);
}
.default-content .cont:nth-child(7) {
  background: var(--theme01);
}
.default-content .cont:nth-child(8) {
  position: relative;
  aspect-ratio: 1/1;
}
.default-content .cont:nth-child(8)::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/default/main_img02.jpg") no-repeat center/cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.default-content .cont:nth-child(4n) {
  border-right-width: 0;
}
@media (max-width: 1280px) {
  .default-content .cont {
    padding: 1.78em;
  }
  .default-content .cont a .icon {
    top: 1.78em;
    right: 1.78em;
  }
}
@media (max-width: 960px) {
  .default-content .cont {
    width: 50%;
  }
  .default-content .cont a .icon {
    width: 12.92vw;
  }
  .default-content .cont:nth-child(2n) {
    border-right-width: 0;
  }
  .default-content .cont:nth-child(-n+4) {
    border-top-width: 1px;
  }
  .default-content .cont:nth-child(5) {
    order: 6;
    border-right-width: 0;
  }
  .default-content .cont:nth-child(6) {
    border-right-width: 1px;
  }
  .default-content .cont:nth-child(7) {
    order: 7;
    border-right-width: 1px;
  }
  .default-content .cont:nth-child(8) {
    order: 8;
    border-right-width: 0;
  }
}
@media (max-width: 480px) {
  .default-content .cont {
    width: 100%;
    aspect-ratio: auto;
    padding-block: 3.2em;
  }
  .default-content .cont:nth-child(n) {
    border-right-width: 0;
  }
  .default-content .cont a .icon {
    margin-left: auto;
    position: static;
    width: clamp(80px, 16.15vw, 124px);
  }
  .default-content .cont:nth-child(5) {
    order: initial;
    border-right-width: 0;
  }
}
