@charset "UTF-8";
@import url("../css/fonts.css");
@import url("../css/reset.css");
@keyframes rotate_ck_circle {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes move_right {
  100% {
    transform: translateX(100px);
  }
}
@keyframes move_left {
  100% {
    transform: translateX(-100px);
  }
}
@keyframes move_up {
  100% {
    transform: translateY(-100px);
  }
}
@keyframes move_down {
  100% {
    transform: translateY(100px);
  }
}
html {
  -ms-overflow-style: none; /* 인터넷 익스플로러 */
  scrollbar-width: none; /* 파이어폭스 */
}
html::-webkit-scrollbar {
  display: none; /* 크롬, 사파리, 오페라, 엣지 */
}
html body {
  position: relative;
  overflow-x: hidden;
}

#skip {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
#skip > a {
  display: block;
  position: absolute;
  left: 0;
  top: -44px;
  width: 100%;
  color: #fff;
  font-size: 20px;
  line-height: 44px;
  text-align: center;
  background-color: rgb(255, 248, 227);
  transition-property: top;
  transition: 0.5s;
}
#skip > a:focus {
  top: 0;
}
#skip > a:active {
  top: 0;
}

#ck-header {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: calc(100% - (100% - 100vw));
  margin: 0 auto;
  animation: fade_in 1.8s;
  z-index: 999;
}
#ck-header .ck-logo {
  width: 400px;
  height: 200px;
  margin-left: 4vw;
  transition: width 300ms;
  z-index: 100;
}
#ck-header .ck-logo > a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/logo/cafe_kitsune_logo_white.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
#ck-header .ck-logo > a.active {
  background-image: url("../images/logo/cafe_kitsune_logo_white.png");
}
#ck-header .ham-wrap {
  position: absolute;
  right: 0;
  top: 80px;
  margin-right: 3.2vw;
  transition: top 0.5s;
  z-index: 100;
}
#ck-header .ham-wrap .ham {
  position: relative;
  display: block;
  width: 3vw;
  height: 3vw;
  z-index: 1;
}
#ck-header .ham-wrap .ham span {
  position: absolute;
  display: block;
  right: 0px;
  font-size: 0;
  background-color: #fff;
  transition: 300ms;
  overflow: hidden;
}
#ck-header .ham-wrap .ham span.active {
  background-color: #fff;
  width: 50px;
}
#ck-header .ham-wrap .ham .ham-line1 {
  top: 0;
  width: 50px;
  height: 3px;
}
#ck-header .ham-wrap .ham .ham-line1.active {
  top: 20px;
  transform: rotate(135deg);
}
#ck-header .ham-wrap .ham .ham-line2 {
  top: 20px;
  width: 30px;
  height: 3px;
}
#ck-header .ham-wrap .ham .ham-line2.active {
  transform: rotate(-135deg);
}
#ck-header .ham-wrap .ham:hover .ham-line1 {
  width: 30px;
}
#ck-header .ham-wrap .ham:hover .ham-line1.active {
  width: 50px;
}
#ck-header .ham-wrap .ham:hover .ham-line2 {
  width: 50px;
}
#ck-header .ham-wrap .circle-wrap {
  position: absolute;
  right: -160px;
  top: -180px;
  width: 320px;
  height: 320px;
  transition: 300ms;
  overflow: hidden !important;
}
#ck-header .ham-wrap .circle-wrap .circle-logo {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/header/ck_circle_white.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: rotate_ck_circle 12s linear infinite;
  cursor: default;
}
#ck-header .ham-wrap .circle-wrap .circle-logo.active {
  background-image: url("../images/header/ck_circle_white.svg");
}
#ck-header #ck-gnb {
  display: none;
  position: absolute;
  height: 100vh;
  z-index: 99;
}
#ck-header #ck-gnb .modal {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
}
#ck-header #ck-gnb .gnb-wrap {
  position: absolute;
  left: 13vw;
  top: 200px;
}
#ck-header #ck-gnb .gnb-wrap .depth1 {
  display: flex;
  justify-content: flex-start;
  padding: 40px 0;
}
#ck-header #ck-gnb .gnb-wrap .depth1 > a {
  display: inline-block;
  position: relative;
  width: 300px;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  transition: 300ms;
}
#ck-header #ck-gnb .gnb-wrap .depth1 > a::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 18px;
  width: 20px;
  height: 6px;
  background-color: #fff;
  transition: 300ms;
}
#ck-header #ck-gnb .gnb-wrap .depth1 > a:hover {
  transform: translateX(40px);
}
#ck-header #ck-gnb .gnb-wrap .depth1 > a.active::before {
  background-color: #222;
}
#ck-header #ck-gnb .gnb-wrap .depth1 .depth2 {
  display: none;
  position: absolute;
  left: 28vw;
  top: 0;
  width: 400px;
  padding-top: 20px;
}
#ck-header #ck-gnb .gnb-wrap .depth1 .depth2 li {
  padding: 20px 20px 20px 0;
  transition: 300ms;
  overflow: hidden;
}
#ck-header #ck-gnb .gnb-wrap .depth1 .depth2 li > a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
}

#ck-main .main-fs-container {
  min-width: 1200px;
  margin: 8vw 0;
  text-align: center;
}
#ck-main .main-fs-container .main-fs-wrap {
  width: 100%;
}
#ck-main .main-fs-container .main-fs-wrap .main-fs {
  display: flex;
  justify-content: center;
  gap: 8vw;
}
#ck-main .main-fs-container .main-fs-wrap .main-fs .fs-item-wrap {
  position: relative;
  width: 320px;
  height: 480px;
  margin: 120px 0;
  background-position: center center;
  background-size: cover;
  transition: 300ms;
}
#ck-main .main-fs-container .main-fs-wrap .main-fs .fs-item-wrap p {
  position: absolute;
  left: 50%;
  top: -50px;
  color: #fff;
  font-size: 7em;
  font-weight: 300;
  transform: translateX(-50%);
  transition: 300ms;
  z-index: 1;
}
#ck-main .main-fs-container .main-fs-wrap .main-fs .fs-item-wrap p.active {
  top: -40px;
  color: #fff;
}
#ck-main .main-fs-container .main-fs-wrap .main-fs .fs-item-wrap .fs-item {
  position: absolute;
  left: -15%;
  top: -12%;
  display: block;
  width: 420px;
  height: 560px;
  margin: 0 auto;
  background-color: transparent;
  transition: 300ms;
  z-index: -1;
}
#ck-main .main-fs-container .main-fs-wrap .main-fs .fs-item-wrap .fs-item1.active {
  background-color: #363641;
  transform: rotate(15deg);
}
#ck-main .main-fs-container .main-fs-wrap .main-fs .fs-item-wrap .fs-item2.active {
  background-color: #450a0a;
  transform: rotate(-15deg);
}
#ck-main .main-fs-container .main-fs-wrap .main-fs .fs-item-wrap .fs-item3.active {
  background-color: #f94b5a;
  transform: rotate(15deg);
}
#ck-main .main-fs-container .main-fs-wrap .main-fs .fs-item-wrap1 {
  background-image: url("../images/main/main_family_site/main_family_01.jpg");
}
#ck-main .main-fs-container .main-fs-wrap .main-fs .fs-item-wrap2 {
  background-image: url("../images/main/main_family_site/main_family_02.jpg");
}
#ck-main .main-fs-container .main-fs-wrap .main-fs .fs-item-wrap3 {
  background-image: url("../images/main/main_family_site/main_family_03.jpg");
}

#ck-footer {
  width: 100%;
  height: 550px;
  background-color: #222;
  transition: 300ms;
}
#ck-footer .ft-info-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-direction: column;
  height: 100%;
}
#ck-footer .ft-info-container .ft-info1-wrap {
  display: flex;
  justify-content: center;
  gap: 8vw;
  min-width: 1200px;
  margin: 0 auto;
  transition: 300ms;
}
#ck-footer .ft-info-container .ft-info1-wrap div h3 {
  padding: 50px 0 30px 0;
  color: rgb(255, 248, 227);
  font-size: 4rem;
  font-weight: 500;
  transition: 300ms;
}
#ck-footer .ft-info-container .ft-info1-wrap div ul li a {
  display: block;
  padding-bottom: 2rem;
  color: rgb(255, 248, 227);
  font-size: 2.8rem;
  font-weight: 300;
  transition: 300ms;
}
#ck-footer .ft-info-container .ft-info1-wrap .ft-sns-brand .ft-sns ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 10px;
}
#ck-footer .ft-info-container .ft-info1-wrap .ft-sns-brand .ft-sns ul li a {
  display: block;
  font-size: 2.8rem;
}
#ck-footer .ft-info-container .ft-info2-wrap {
  padding-bottom: 40px;
  margin: 0 auto;
  color: rgb(255, 248, 227);
  font-size: 2.8rem;
  font-weight: 300;
}