@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  font-family: YuGothic, 'Yu Gothic', sans-serif;
  color: #222222;
  background-color: #FFF1E1;
}

.header,
.main,
.footer {
  max-width: 1130px;
  padding-inline: 15px;
  margin: 0 auto;
}

.top .header,
.top .footer {
  opacity: 0;
  visibility: hidden;
}

.top .header {
  animation: fadeIn-header 1s ease forwards;
  animation-delay: 2.6s;
  transform: translate(-50%, -200px);
}

@keyframes fadeIn-header {
  to {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
  }
}

.header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 200;
  width: 100%;
}

.header-inner {
  padding: 20px 40px;
  background-color: #FFF;
  border-radius: 20px;
  box-shadow: 5px 5px 10px -1px rgba(166, 171, 189, 0.3);
  margin: 0 auto 28px;
  position: relative;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top h1 {
  max-width: 247px;
  margin-bottom: 5.29px;
}

.header-top h1 img {
  width: 100%;
  height: auto;
}

.header-top p {
  font-size: 14px;
  line-height: 19.6px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 13px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 50px;
  height: 4px;
  background-color: #222;
  border-radius: 4px;
  transition: 0.5s;
}

.hamburger.open span:first-of-type {
  transform: rotate(45deg) translate(12px, 12px) scale(1.1);
}

.hamburger.open span:nth-of-type(2) {
  transform: translateX(65px) scale(0);
}

.hamburger.open span:last-of-type {
  transform: rotate(-45deg) translate(11px, -11px) scale(1.1);
}

.header-nav {
  margin-top: 40px;
  display: none;
}

.header-nav.active {
  display: block;
}

.header-nav ul {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 20px 30px;
}

.header-nav li {
  max-width: 240px;
}

.header-nav li a {
  display: block;
  width: 100%;
}

.header-nav__name {
  font-size: 16px;
  font-weight: bold;
}

.header-nav__img {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}

.header-nav__img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.header-yet .header-nav__img {
  position: relative;
}

.header-yet .header-nav__img::after {
  display: inline-block;
  content: "Coming Soon";
  font-size: 24px;
  font-weight: bold;
  color: #2A82B1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  white-space: nowrap;
  text-shadow:
    1px 1px 1px #FFF, -1px -1px 1px #FFF,
    -1px 1px 1px #FFF, 1px -1px 1px #FFF,
    1px 0 1px #FFF, -1px 0 1px #FFF,
    0 1px 1px #FFF, 0 -1px 1px #FFF;
}

.header-btn__box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-btn {
  max-width: 240px;
  font-size: 18px;
  font-weight: bold;
  color: #21A0E1;
  background-color: #FFF;
  padding: 12.5px 0;
  padding-left: 30px;
  border: solid 3px #21A0E1;
  border-radius: 100px;
  position: relative;
  line-height: normal;
  text-align: center;
}

.header-btn::before {
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  background-color: #21A0E1;
  border-radius: 100px;
  position: absolute;
  top: 12px;
  left: 12px;
}

.header-btn::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border-left: solid 2px #FFF;
  border-bottom: solid 2px #FFF;
  position: absolute;
  top: 22px;
  left: 23px;
  transform: rotate(45deg);
}

.main {
  margin-top: 152px;
  padding-bottom: 40px;
  position: relative;
}

.map {
  max-width: 1100px;
  position: relative;
  z-index: 10;
}

.map img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  opacity: 0;
  animation: fadeIn-map 3s ease forwards;
}

@keyframes fadeIn-map {
  to {
    opacity: 1;
  }
}

.pin {
  position: absolute;
  max-width: 37px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  animation: pinIn 0.6s ease forwards,
    bound 2s infinite;
  animation-delay: 2s, 2.8s;
}

@keyframes pinIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes bound {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.pin:hover {
  animation-play-state: paused;
}

.pin img {
  width: 100%;
  height: auto;
}

#pinA {
  top: calc(69.72 / 550 * 100%);
  left: calc(314 / 1100 * 100%);
}

#pinB {
  top: calc(154.72 / 550 * 100%);
  left: calc(624 / 1100 * 100%);
}

#pinC {
  top: calc(210 / 550 * 100%);
  left: calc(949 / 1100 * 100%);
}

#pinD {
  top: calc(346 / 550 * 100%);
  left: calc(428 / 1100 * 100%);
}

#pinE {
  top: calc(426 / 550 * 100%);
  left: calc(746 / 1100 * 100%);
}

.pop {
  position: absolute;
  width: 200px;
  text-align: center;
  background-color: #FFF;
  border: solid 2px #21A0E1;
  border-radius: 10px;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  display: none;
  z-index: 10;
}

.pin:hover .pop {
  display: block;
}

.pop a {
  display: block;
  width: 100%;
  height: 100%;
}

.pop h2 {
  padding-top: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 20px;
}

.pop p {
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
  background-color: #21A0E1;
  padding-top: 5px;
  padding-bottom: 5px;
}

.area-item {
  position: absolute;
}

.area-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.area-A {
  width: calc(114 / 1100 * 100%);
  height: calc(94 / 550 * 100%);
  top: calc(74 / 550 * 100%);
  left: calc(277 / 1100 * 100%);
}

.area-B {
  width: calc(156 / 1100 * 100%);
  height: calc(115 / 550 * 100%);
  top: calc(150 / 550 * 100%);
  left: calc(568 / 1100 * 100%);
}

.area-C {
  width: calc(122 / 1100 * 100%);
  height: calc(126 / 550 * 100%);
  top: calc(200 / 550 * 100%);
  left: calc(904 / 1100 * 100%);
}

.area-D {
  width: calc(160 / 1100 * 100%);
  height: calc(120 / 550 * 100%);
  top: calc(335 / 550 * 100%);
  left: calc(375 / 1100 * 100%);
}

.area-E {
  width: calc(115 / 1100 * 100%);
  height: calc(102 / 550 * 100%);
  top: calc(433 / 550 * 100%);
  left: calc(710 / 1100 * 100%);
}

.top .footer {
  animation: fadeIn-footer 1s ease forwards;
  animation-delay: 2.6s;
  transform: translate(0, 150px);
}

@keyframes fadeIn-footer {
  to {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
  }
}


.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 82px 20px 40px;
  background-color: #FFF;
  border-radius: 20px;
  box-shadow: 5px 5px 10px -1px rgba(166, 171, 189, 0.3);
  margin-bottom: 40px;
  position: relative;
}

.footer-logo {
  max-width: 200px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.sns-logos {
  display: flex;
  gap: 10px;
  padding-top: 10px;
}

.sns-logos p {
  width: 35px;
  height: 35px;
}

.sns-logos p img {
  width: 100%;
  height: 100%;
}

.footer-rooms {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 2px 83px;
}

.footer-rooms li {
  font-size: 14px;
  line-height: normal;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
}

.footer-nav li {
  font-size: 14px;
  padding-inline: 15px;
  border-right: solid 1px #222;
}

.footer-nav li:first-child {
  padding-left: 0;
}

.footer-nav li:last-child {
  border-right: none;
  padding-right: 0;
}

.footer-rooms .yet {
  position: relative;
}

.footer-rooms .yet::after {
  display: inline-block;
  content: "Coming Soon";
  font-size: 18px;
  font-weight: bold;
  color: #2A82B1;
  position: absolute;
  top: -2px;
  left: 56%;
  transform: translateX(-50%) rotate(-5deg);
  white-space: nowrap;
  text-shadow:
    1px 1px 1px #FFF, -1px -1px 1px #FFF,
    -1px 1px 1px #FFF, 1px -1px 1px #FFF,
    1px 0 1px #FFF, -1px 0 1px #FFF,
    0 1px 1px #FFF, 0 -1px 1px #FFF;
}

.copyright {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.copyright small {
  font-size: 12px;
}


@media screen and (max-width: 900px) {

  .header-yet .header-nav__img::after {
    font-size: 22px;
  }
}

@media screen and (max-width: 860px) {

  .footer-rooms {
    grid-template-rows: repeat(4, auto);
  }
}

@media screen and (max-width: 820px) {

  .header-yet .header-nav__img::after {
    font-size: 20px;
  }
}

@media screen and (max-width: 750px) {

  .header-nav ul {
    grid-template-columns: repeat(3, auto);
  }
}

@media screen and (max-width: 680px) {

  .pin {
    max-width: 30px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
  }

  .footer-rooms {
    grid-template-rows: repeat(3, auto);
  }
}


@media screen and (max-width: 640px) {

  .header-nav ul {
    grid-template-columns: repeat(2, auto);
  }

  .header-inner {
    padding: 10px 25px;
  }

  .main {
    margin-top: 132px;
    padding-bottom: 30px;
  }

}

@media screen and (max-width: 570px) {

  .header-top p {
    font-size: 12px;
    line-height: 14px;
  }

  .main {
    margin-top: 120px;
    padding-bottom: 30px;
  }

  .pin {
    max-width: 25px;
  }

  .footer-rooms {
    grid-template-rows: unset;
    grid-template-columns: repeat(2, auto);
    grid-auto-flow: row;
  }
}

@media screen and (max-width: 390px) {


  .header-inner {
    padding: 10px 15.5px;
    margin-bottom: 16px;
  }

  .header-top h1 {
    max-width: 200px;
    margin-bottom: 4.66px;
  }

  .header-top p {
    font-size: 10px;
    line-height: 14px;
  }

  .hamburger {
    gap: 9px;
  }

  .hamburger span {
    width: 39px;
  }

  .hamburger.open span:first-of-type {
    transform: rotate(45deg) translate(9px, 9px) scale(1.1);
  }

  .hamburger.open span:last-of-type {
    transform: rotate(-45deg) translate(9px, -9px) scale(1.1);
  }

  .header-nav ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }

  .header-nav li {
    max-width: 150px;
  }

  .header-yet .header-nav__img::after {
    font-size: 18px;
  }

  .header-btn {
    max-width: 150px;
    font-size: 16px;
  }

  .header-btn::before {
    top: 10px;
  }

  .header-btn::after {
    top: 20px;
  }

  .main {
    margin-top: 101px;
    padding-bottom: 20px;
  }

  .pin {
    max-width: 20px;
  }

  #pinA {
    top: calc(27.86 / 248 * 100%);
    left: calc(31 / 360 * 100%);
  }

  #pinB {
    top: calc(65.86 / 248 * 100%);
    left: calc(170 / 360 * 100%);
  }

  #pinC {
    top: calc(95.12 / 248 * 100%);
    left: calc(314 / 360 * 100%);
  }

  #pinD {
    top: calc(153.86 / 248 * 100%);
    left: calc(83 / 360 * 100%);
  }

  #pinE {
    top: calc(190.86 / 248 * 100%);
    left: calc(225 / 360 * 100%);
  }

  .area-A {
    width: calc(55 / 360 * 100%);
    height: calc(48 / 248 * 100%);
    top: calc(30 / 248 * 100%);
    left: calc(12 / 360 * 100%);
  }

  .area-B {
    width: calc(74 / 360 * 100%);
    height: calc(57 / 248 * 100%);
    top: calc(65 / 248 * 100%);
    left: calc(142 / 360 * 100%);
  }

  .area-C {
    width: calc(56 / 360 * 100%);
    height: calc(52 / 248 * 100%);
    top: calc(93 / 248 * 100%);
    left: calc(296 / 360 * 100%);
  }

  .area-D {
    width: calc(71 / 360 * 100%);
    height: calc(52 / 248 * 100%);
    top: calc(152 / 248 * 100%);
    left: calc(58 / 360 * 100%);
  }

  .area-E {
    width: calc(52 / 360 * 100%);
    height: calc(46 / 248 * 100%);
    top: calc(196 / 248 * 100%);
    left: calc(208 / 360 * 100%);
  }

  .pin:hover {
    animation-play-state: running;
  }

  .pin:hover .pop {
    display: none;
  }


  .footer-rooms {
    grid-template-rows: unset;
    grid-template-columns: repeat(2, auto);
    grid-auto-flow: row;
    gap: 5.7px 53px;
  }

  .footer-nav ul {
    flex-wrap: wrap;
    gap: 6px 0;
  }

}