@import url(./reset.css);

@font-face {
  font-family: kopubBatang_bold;
  src: url(../font/KoPubWorld\ Batang_Pro\ Bold.otf);
  /* src: url(../font/KoPubWorld\ Batang_Pro\ Light.otf);
  src: url(../font/KoPubWorld\ Batang_Pro\ Medium.otf); */
}

@font-face {
  font-family: kopubBatang_Light;
  src: url(../font/KoPubWorld\ Batang_Pro\ Light.otf);
}

@font-face {
  font-family: kopubBatang_Medium;
  src: url(../font/KoPubWorld\ Batang_Pro\ Medium.otf);
}

@font-face {
  font-family: maitree;
  src: url(../font/Maitree/Maitree-Bold.ttf);
}

@font-face {
  font-family: Maitree_Light;
  src: url(../font/Maitree/Maitree-Light.ttf);
}
*{
  scroll-behavior: smooth;
}

main {
  width: 100%;
}

body {
  font-family: kopubBatang_Light;
  font-size: 16px;
  transition: .2 linear;
}

.title {
  font-family: maitree;
  font-size: 1.2rem;
  font-weight: 600;
}

header {
  width: 100%;
  margin-top: 3vh;
  /* position: fixed;
  top: 0;
  left: 0; */
  z-index: 99;
  font-size: 1.1rem;
  /* 헤더 마우스휠 내리면 사라지고 올리면 나타나게 */
  transition: .2s linear;
}

main header h1 span {
  font-size: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px)
}

header .h_inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.h_inner h1 {
  width: fit-content;
  height: fit-content;
  z-index: 9990;
}

.h_inner .menu {
  width: 40%;
  display: flex;
  justify-content: space-evenly;
  font-family: kopubBatang_bold;
}

.h_inner .menu>li {
  line-height: 35px;
  font-weight: bold;
  margin-top: 25px;
  text-align: center;
  position: relative;
  z-index: 99;
}

/* 밑줄 효과 */
.h_inner .menu>li:not(:last-child)::after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: 2px solid #000;
  transition: all 250ms ease-out;
  left: 50%;
  width: 0;
}

.h_inner .menu>li:not(:last-child):hover::after {
  transition: all 250ms ease-out;
  left: 0%;
  width: 100%;
}

.h_inner button {
  /* 예약하기버튼 */
  border: none;
  cursor: pointer;
  width: 80px;
  height: 80px;
  background-color: #000;
  border-radius: 100%;
  margin-left: 10px;
  margin-top: -25px;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 4px 4px 0 rgb(0 0 0 / 30%);
  transform: rotate(-15deg);
  /* hover원래 각도로 */
}

.h_inner button:hover {
  transform: rotate(0deg);
  transition: .2s;
}

/* //header */
#nav-icon4 {
  width: 45px;
  height: 32px;
  margin-right: 2%;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
  z-index: 9990;
}

#nav-icon4 span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: #000000;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
  top: 13px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
  top: 26px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 29px;
  left: 8px;
}

/* //nav */
/* mouse */
.circle {
  border-radius: 100px;
  will-change: transform;
  position: absolute;
}

.circle--1 {
  height: 40px;
  width: 40px;
  border: solid rgba(255, 255, 255, 0.5) 3px;
}

.circle--2 {
  background: black;
  height: 6px;
  width: 6px;
  z-index: 2;
  background: rgb(168, 168, 168);
}

/* open menu */
.openbox {
  cursor: none;
  width: 100%;
  height: 100%;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9990;
  display: none;
}

.openbox .o_top {
  position: relative;
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.openbox h1 {
  width: 200px;
  margin-left: 2%;
}

.openmenu {
  padding: 200px 0;
}

.openmenu ul {
  position: relative;
  width: 80%;
  margin: auto;
  z-index: 100;
}

.openmenu ul li {
  width: fit-content;
  font-size: 2rem;
  line-height: 80px;
  color: #fff;
}

.openmenu ul li a {
  cursor: none;
  display: block;
}

.openmenu ul li:hover {
  color: rgb(98, 98, 98);
  transition: .3s linear;
}


/* //header */

/* //main */
.art {
  width: 100%;
  height: 100vh;
  margin: 5% 0;
}

.art .a_inner {
  max-width: 1300px;
  margin: 0 auto;
}

.art .title h2 {
  font-family: maitree;
  text-decoration: overline;
  text-decoration-thickness: 4px;
  font-size: 1.3rem;
}

.a_inner .allbox {
  display: flex;
  justify-content: center;
}

.a_inner .allbox .text {
  width: 54%;
  position: relative;
}

.a_inner .allbox .name {
  margin-right: 2%;
}

.a_inner .allbox .textbox {
  margin-top: 5%;
  width: 78%;
  margin-left: 5%;
}

.a_inner .allbox .textbox p {
  font-family: kopubBatang_Medium;
  margin: 5% 0;
  font-size: 1.5rem;
  line-height: 45px;
}

.a_inner .allbox .textbox span {
  display: block;
  position: absolute;
  font-size: 1rem;
  font-weight: 900;
  bottom: 0;
  right: 5%;
}

.a_inner .allbox .textbox .icon {
  position: absolute;
  right: 15%;
}

.a_inner .allbox .name p {
  font-family: maitree;
  font-size: 6vw;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.a_inner .allbox .name p span {
  display: block;
  width: fit-content;
  height: fit-content;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* //art */
/* profile */
.profile{
    width: 100%;
}
.profile .p_inner{
    max-width: 1300px;
    margin: 0 auto;
}
.p_inner .con1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15%;
}
.p_inner .con1 .left{
    width: 50%;
}
.p_inner .con1 .right{
    width: 50%;
    margin-left: 3%;
    margin-top: 1%;
}
.p_inner .con1 .right span{
    display: block;
    margin-bottom:6%;
    line-height: 26px;
}
.p_inner .con2{
    width: 100%;
}

.p_inner .con2 .title h2{
  font-family: maitree;
    text-decoration: overline;
  text-decoration-thickness: 4px;
  font-size: 1.3rem;
}
.p_inner .con2 .all{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  margin: 5% 0;
}
.p_inner .con2 .all .box{
  font-family: kopubBatang_Light;
  line-height: 28px;
}
.p_inner .con2 .all .b2,.b4{
  margin-top: 25%;
  margin-left: 15%;
}
.p_inner .con2 .all .box .s_title{
  font-family: maitree;
  /* bold */
}
.Architecture{
  width: 100%;
  margin: 15% 0;
}
.Architecture_inner{
  max-width: 1300px;
  margin: 0 auto;
}
.Architecture_inner .title h2 {
  font-family: maitree;
  text-decoration: overline;
  text-decoration-thickness: 4px;
  font-size: 1.3rem;
}
.Architecture_inner .all{
  width: 100%;
}
.Architecture_inner .all figure{
  margin-bottom: 1.5%;
}
.Architecture_inner .all .f1{
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Architecture_inner .all .f2{
  width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
/* footer */

footer {
  width: 100%;
  background-color: #000;
  color: #fff;
}

.f_inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.f_inner .f_1st {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3%;
}

.f_inner .f_1st .flogo {
  width: fit-content;
  height: fit-content;
}

.f_inner .f_1st .flogo img {
  width: 80%;
}

.f_inner .f_1st .f_menu {
  font-family: kopubBatang_bold;
  width: 50%;
}

.f_inner .f_1st .f_menu ul li {
  float: left;
  margin: 0 5%;
}

.f_inner .f_2nd {
  display: flex;
  justify-content: space-between;
  margin-top: 2%;
}

.f_inner .text {
  font-size: .8rem;
  color: #adadad;
  line-height: 30px;
}

.f_inner .f_2nd .icon {
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
}

.f_inner .f_2nd .icon a {
  display: block;
  width: 25%;
  margin: 0 3%;
}

.f_inner .copy {
  font-size: .7rem;
  margin-top: 25px;
  border-top: 1px solid #adadad;
}

.f_inner .copy span {
  display: block;
  font-size: .9rem;
  color: #adadad;
  line-height: 45px;
  float: right;
}


/* tbtn */
.btnTop {
  display: block;
  position: absolute;
  cursor: pointer;
  right: 80px;
  top: -100px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 1.5px solid #000;
  background: #fff url(../img/btn_top.png) no-repeat center center;
  transition: all .3s ease;
  text-indent: -9999px;
}
@media screen and (max-width:1400px) {
  
  header .h_inner {
      max-width: 1200px;
      transition: .2s linear;
    }
  
    .h_inner button {
      /* 예약하기버튼 */
      width: 72px;
      height: 72px;
    }
  
    .f_inner {
      max-width: 1200px;
      transition: .2s linear;
    }
  
    .f_inner .f_1st .f_menu {
      font-family: kopubBatang_bold;
      width: 60%;
    }
    .btnTop {
      right: 20px;
    }
  }
  @media screen and (max-width:1200px) {
    header .h_inner {
      max-width: 1024px;
    }
  
    .h_inner .menu {
      width: 45%;
    }
   .f_inner {
      max-width: 1024px;
    }
  
    .f_inner .f_1st .f_menu {
      width: 65%;
    }
    .btnTop {
      top: -80px;
    }
    }
  
  @media screen and (max-width:1024px) {
    header .h_inner {
      max-width: 767px;
    }
  
    .h_inner .menu {
      width: 50%;
      margin-bottom: 1%;
    }
  
    .h_inner .menu>li {
      font-size: .95rem;
      margin-top: 25px;
    }
  
    .h_inner button {
      font-size: .8rem;
      width: 65px;
      height: 65px;
    }
  
    .f_inner {
      max-width: 767px;
    }
  
    .f_inner .f_1st .f_menu {
      width: 70%;
      font-size: .9rem;
      margin-left: 8%;
    }
  
    .f_inner .f_1st .f_menu ul li {
      margin: 0 3%;
    }
    .btnTop {
      top: -100px;
      right: 30px;
    }
  
  }
  @media screen and (max-width:767px) {
    header .h_inner {
      width: 90%;
      margin: 0 auto;
    }
  
    header .h_inner .menu {
      display: none;
    }
  
    #nav-icon4 {
      display: block;
    }
  
  
    .f_inner {
      width: 90%;
      margin: 0 auto;
    }
  
    .f_inner .f_1st {
      display: block;
    }
  
    .f_inner .f_1st .flogo img {
      width: 30%
    }
  
    .f_inner .f_1st .f_menu {
      margin-left: 0%;
      width: 100%;
    }
  
    .f_inner .f_1st .f_menu ul li {
      font-size: .9rem;
      margin: 3% 0;
      margin-right: 3%;
    }
  
    .f_inner .text {
      font-size: .7rem;
      color: #adadad;
      line-height: 25px;
    }
  
    .f_inner .copy span {
      display: block;
      font-size: .7rem;
      color: #575757;
      line-height: 45px;
      float: right;
    }
  
    .f_inner .f_2nd .icon {
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }
  
    .f_inner .f_2nd .icon a {
      display: block;
      width: 20%;
      margin: 0 3px;
    }
  
    .btnTop {
      right: 20px;
      top: -100px;
      width: 50px;
      height: 50px;
    }
  
  
  }
  @media screen and (max-width:600px){
   .f_inner .f_1st .flogo img {
      width: 40%
    }
  }
  
  
  @media screen and (max-width:450px){
    .h_inner h1 a img {
      width: 80%;
    }
    .openmenu ul li {
      font-size: 1.5rem;
      line-height: 60px;
  }
      
    .f_inner .f_1st .flogo img {
      margin-left: 25%;
    }
  
    .f_inner .f_1st .f_menu {
      margin: auto;
    }
  
    .f_inner .f_1st .f_menu ul {
      display: flex;
      justify-content: space-evenly;
    }
  
  
    .f_inner .f_1st .f_menu ul li {
      font-size: .75rem;
      margin-top: 10%;
    }
  
    .f_inner .copy span {
      display: block;
      font-size: .7rem;
      color: #575757;
      line-height: 40px;
      float: right;
    }
  
    .f_inner .f_2nd {
      display: none;
    }
  
    .btnTop {
      right: 25px;
      top: 15px;
      width: 35px;
      height: 35px;
      border-radius: 0;
    }
  }
  
  