@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;
}

@keyframes lnb_effects {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
body {
  background-color: rgb(255, 248, 227);
}

#ck-header .ck-logo > a {
  background-image: url("../images/logo/cafe_kitsune_logo.svg");
}
#ck-header .ham-wrap .ham span {
  background-color: #222;
}
#ck-header .ham-wrap .ham span.active {
  background-color: #fff;
}
#ck-header .ham-wrap .circle-wrap .circle-logo {
  background-image: url("../images/header/ck-circle.png");
}

#ck-lnb .ma-lnb-container {
  position: relative;
  width: 100vw;
  padding-top: 200px;
  animation: lnb_effects 1000ms;
  animation-delay: 500ms;
  animation-fill-mode: both;
  z-index: 99;
}
#ck-lnb .ma-lnb-container .ma-lnb-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  width: 1600px;
  margin-left: 100px;
  padding: 40px 0;
}
#ck-lnb .ma-lnb-container .ma-lnb-wrapper h2 a {
  color: #222;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 2px;
}
#ck-lnb .ma-lnb-container .ma-lnb-wrapper .sub-gnb {
  position: absolute;
  left: 0;
  top: 300px;
  width: 100vw;
  height: 0;
  background-color: #222;
  overflow: hidden;
  transition: height 300ms;
  z-index: 9;
}
#ck-lnb .ma-lnb-container .ma-lnb-wrapper .sub-gnb .sg-item {
  padding: 30px 0 30px 100px;
}
#ck-lnb .ma-lnb-container .ma-lnb-wrapper .sub-gnb .sg-item a {
  position: relative;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
}
#ck-lnb .ma-lnb-container .ma-lnb-wrapper .sub-gnb .sg-item a::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 12px;
  width: 40px;
  height: 20px;
  background-image: url(../images/logo/icon-fox-white.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 300ms;
}
#ck-lnb .ma-lnb-container .ma-lnb-wrapper .sub-gnb .sg-item a:hover::before {
  left: -50px;
  opacity: 1;
}
#ck-lnb .ma-lnb-container .ma-lnb-wrapper .sub-gnb .sg-item:first-child {
  padding-top: 40px;
}
#ck-lnb .ma-lnb-container .ma-lnb-wrapper .sub-gnb.active {
  height: 560px;
}
#ck-lnb .ma-lnb-container .ma-lnb-wrapper .moc-lnb {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding-left: 100px;
}
#ck-lnb .ma-lnb-container .ma-lnb-wrapper .moc-lnb li a {
  position: relative;
  color: #222;
  font-size: 2.5rem;
  font-weight: 700;
}
#ck-lnb .ma-lnb-container .ma-lnb-wrapper .moc-lnb li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  display: block;
  width: 8px;
  height: 8px;
  background-color: #222;
  border-radius: 50%;
  opacity: 0;
  transition: 300ms;
}
#ck-lnb .ma-lnb-container .ma-lnb-wrapper .moc-lnb li a:hover::before {
  top: -5px;
  opacity: 1;
}

#ck-main-our-cafe {
  width: 1400px;
  margin: 60px auto;
}
#ck-main-our-cafe .main-oc-container {
  width: 100%;
  margin: 0 auto;
}
#ck-main-our-cafe .main-oc-container .main-oc-wrapper .main-oc-na {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  grid-template-rows: repeat(1, 600px);
  column-gap: 160px;
  row-gap: 200px;
  justify-content: center;
  align-items: center;
  z-index: -1;
}
#ck-main-our-cafe .main-oc-container .main-oc-wrapper .main-oc-na .oc-item .oc-dl {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
#ck-main-our-cafe .main-oc-container .main-oc-wrapper .main-oc-na .oc-item .oc-dl > .oc-location {
  padding-top: 20px;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  order: 3;
}
#ck-main-our-cafe .main-oc-container .main-oc-wrapper .main-oc-na .oc-item .oc-dl > .oc-summary {
  padding-top: 30px;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 3.2rem;
  letter-spacing: 1px;
  order: 2;
}
#ck-main-our-cafe .main-oc-container .main-oc-wrapper .main-oc-na .oc-item .oc-dl > .oc-img {
  width: 320px;
  height: 420px;
  order: 1;
}
#ck-main-our-cafe .main-oc-container .main-oc-wrapper .main-oc-na .oc-item .oc-dl > .oc-img img {
  width: 100%;
  height: 100%;
}
#ck-main-our-cafe .main-oc-container .main-oc-wrapper .main-oc-na .oc-item2 .oc-dl > .oc-img {
  margin-top: 200px;
}
#ck-main-our-cafe .main-oc-container .main-oc-wrapper .main-oc-na .oc-item3 .oc-dl > .oc-img {
  margin-top: 400px;
}

.main-fs-container {
  margin-top: 240px;
}
.main-fs-container .main-fs-wrap .main-fs .fs-item-wrap p {
  color: #222;
}
.main-fs-container .main-fs-wrap .main-fs .fs-item-wrap .fs-item4.active {
  background-color: rgb(255, 248, 227);
  transform: rotate(-15deg);
}
.main-fs-container .main-fs-wrap .main-fs .fs-item-wrap .fs-item5.active {
  background-color: #5e6150;
  transform: rotate(15deg);
}
.main-fs-container .main-fs-wrap .main-fs .fs-item-wrap4 p.active {
  color: #222;
}
.main-fs-container .fs-item-wrap4 {
  background-image: url("../images/main/main_family_site/main_family_04.jpg");
}
.main-fs-container .fs-item-wrap5 {
  background-image: url("../images/main/main_family_site/main_family_05.jpg");
}

#ck-footer {
  width: 100%;
  height: 550px;
  background-color: #222;
}
#ck-footer .ft-info-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
#ck-footer .ft-info-container .ft-info1-wrap {
  display: flex;
  justify-content: space-between;
  min-width: 1400px;
  margin: 0 auto;
}
#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;
}
#ck-footer .ft-info-container .ft-info1-wrap div ul li a {
  display: block;
  padding-bottom: 2rem;
  color: rgb(255, 248, 227);
  font-size: 2rem;
  font-weight: 300;
}
#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: 3rem;
}
#ck-footer .ft-info-container .ft-info1-wrap .ft-sns-brand .ft-brand .ft-brand-inner .brand-label {
  display: block;
  padding-bottom: 50px;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
}
#ck-footer .ft-info-container .ft-info1-wrap .ft-sns-brand .ft-brand .ft-brand-inner .brand-item a {
  display: block;
  padding-bottom: 1rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
}
#ck-footer .ft-info-container .ft-info2-wrap {
  padding-bottom: 50px;
  margin: 0 auto;
  color: rgb(255, 248, 227);
  font-size: 2rem;
  font-weight: 300;
}