:root {
  --main: rgb(239, 234, 135);
  --sub: rgb(244, 239, 150);
  --hover: rgb(213, 208, 118);
  --bg-light: #f7f7f7;
  --text-dark: #333;
  --color-accent: #E26B5D;
  --color-accent-dark: #ae483d;
  --floor-area-max-width: 80%;
}

body {
  font-family: "M PLUS 1", sans-serif;
  color: #333;
  font-size: 1rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: weight;
}

a {
  color: #333;
}

img {
  width: 100%;
}

.border {
  border: 3px solid #d6d6d6;
  width: 65%;
  margin: 20px auto;
}

.textBr {
  display: none;
}

.topText,
h1,
h2,
h3 span,
#g-nav,
#headerNavPC,
.openbtn,
#footer {
  letter-spacing: 0.2em;
}

#header {
  position: fixed;
  top: 30px;
  left: 0;
  height: 10%;
  width: 80%;
  border-radius: 0 50px 50px 0;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  background: #fff;
}
#header h1 {
  display: flex;
  align-items: center;
}
#header h1 img {
  display: block;
  width: 150%;
  height: auto;
}

.container {
  background-color: #fff;
}

#headerNavPC span.bgLRextend::before {
  background: #333;
}

@media screen and (max-width: 768px) {
  #headerNavPC {
    display: none;
  }
}
.headerNavList {
  font-size: 70%;
}

#headerNavPC ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}
#headerNavPC ul li {
  font-size: 16px;
}

#headerNavPC li a {
  display: block;
  text-decoration: none;
  color: #676767;
  padding: 0 40px;
  transition: all 0.5s;
  line-height: 1.3;
}

#headerNavPC li.current a,
#headerNavPC li a:hover {
  color: var(--hover);
  font-weight: 900;
  transform: scale(1.1);
}

#g-nav {
  animation-delay: 0.3s;
  position: relative;
  z-index: 4;
  display: none;
}
#g-nav ul li a::after {
  content: "/";
  padding: 0 10px 0 20px;
}
#g-nav ul li a:hover {
  color: #B25938;
}
#g-nav ul ul li a::after {
  content: "";
  padding: 0;
}
@media screen and (max-width: 768px) {
  #g-nav ul li a::after {
    content: "";
    padding: 0;
  }
  #g-nav ul li a:hover {
    color: #fff;
  }
}
#g-nav ul {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 0 50px;
}
#g-nav ul ul {
  display: block;
  margin: 0;
}
#g-nav ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #999;
  padding: 10px;
  transition: all 0.3s;
}
#g-nav ul li a:hover {
  color: #fff;
}
#g-nav ul li.has-child > a::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(135deg);
}
#g-nav ul li.has-child img {
  max-width: 100%;
  height: auto;
  transition: all 0.5s;
  vertical-align: bottom;
}
#g-nav ul li.has-child img:hover {
  transform: scale(1.2);
}
#g-nav ul li.has-child dt {
  overflow: hidden;
  height: 12vh;
  border-radius: 10px 10px 0 0;
}
#g-nav ul li.has-child dd {
  background: #fff;
  padding: 10px 0;
  text-align: center;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 1200px) {
  #g-nav ul li.has-child dt {
    height: 10vh;
  }
}
#g-nav li.has-child ul {
  position: absolute;
  left: 5%;
  top: 58px;
  z-index: 4;
  display: none;
  justify-content: space-around;
  flex-wrap: wrap;
  background: #6ea924;
  width: 90%;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  padding: 10px 0;
}
#g-nav li.has-child ul li {
  width: 18%;
}
#g-nav li.has-child ul li a {
  color: #333;
}
#g-nav li.has-child:hover > ul {
  display: flex;
  visibility: visible;
  opacity: 1;
}
#g-nav p {
  display: none;
}
@media screen and (max-width: 768px) {
  #g-nav p {
    display: block;
    margin: 30px auto 0;
    width: 80px;
  }
  #g-nav ul {
    display: block;
    margin: 0;
  }
  #g-nav li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
    transition: none;
    border-radius: 0;
    padding: 0;
    transform: translate3d(0, 0, 0);
  }
  #g-nav li.has-child ul li {
    width: 100%;
    text-align: left;
  }
  #g-nav li.has-child ul li dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #g-nav li.has-child ul li dt {
    width: 30%;
    height: auto;
    margin: 0;
    border-radius: 0;
  }
  #g-nav li.has-child ul li dd {
    width: 64%;
    border-radius: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    color: #fff;
  }
  #g-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
  #g-nav ul li.has-child img {
    border-radius: 0;
  }
  #g-nav ul li a {
    padding: 10px 20px 10px 40px;
    color: #fff;
  }
  #g-nav ul li a:hover {
    color: #fff;
  }
  #g-nav ul li li a {
    padding: 0;
  }
  #g-nav ul li.has-child > a::before {
    top: 17px;
    left: 20px;
    transform: rotate(135deg);
  }
  #g-nav ul li.has-child.active > a::before {
    transform: rotate(-45deg);
  }
}

@media screen and (max-width: 768px) {
  nav li.has-child:hover > ul {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #g-nav {
    display: none;
  }
  #g-nav.panelactive {
    display: block;
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    height: 100vh;
  }
  .circle-bg {
    position: fixed;
    z-index: 5;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #4394b4;
    transform: scale(0);
    right: 30px;
    top: 30px;
    transition: all 0.6s;
  }
  .circle-bg.circleactive {
    transform: scale(50);
  }
  #g-nav-list {
    opacity: 0;
    position: fixed;
    z-index: 5;
    width: 100%;
    height: 100vh;
    margin-top: 200px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav.panelactive #g-nav-list {
    opacity: 1;
  }
  #g-nav ul {
    opacity: 0;
    width: 90%;
    margin: 0 auto 60px;
  }
  #g-nav ul ul {
    margin: 0;
  }
  #g-nav.panelactive ul {
    opacity: 1;
  }
}
.openbtn {
  display: none;
}
@media screen and (max-width: 768px) {
  .openbtn {
    display: block;
    position: fixed;
    top: 32px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
    width: 70px;
    height: 70px;
    background: #4394b4;
    border-radius: 50%;
  }
  .openbtn span:nth-of-type(3)::after {
    content: "Menu";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.2em;
    text-transform: uppercase;
  }
  .openbtn.active span:nth-of-type(3)::after {
    content: "Close";
  }
}

.pushcircle {
  position: relative;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pushcircle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  border-radius: 10px;
  transform: translate(-50%, -50%) scale(1.1);
  transition: 0.3s ease;
}

.sub-btn-list li:first-child a {
  background: #6ea924;
}
.sub-btn-list li:last-child a {
  background: #457703;
}
.sub-btn-list li:first-child a.pushcircle:after {
  border: 1px solid #6ea924;
}
.sub-btn-list li:last-child a.pushcircle:after {
  border: 1px solid #457703;
}
.sub-btn-list li:first-child a.pushcircle:hover:after,
.sub-btn-list li:last-child a.pushcircle:hover:after {
  transform: translate(-50%, -50%) scale(1);
  border-color: rgba(255, 255, 255, 0.8);
}

.spSlider {
  height: auto;
}
.spSlider img {
  width: 100%;
  height: auto;
  display: block;
}
.spSlider .slick-slide {
  padding: 0 30px;
}

.zoomOut .mask {
  display: block;
  height: auto;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.topText {
  position: fixed;
  z-index: 2;
  top: 40%;
  left: 40%;
  transform: translate(-40%, -40%);
  text-align: center;
  font-size: 5em;
  line-height: 1.4;
  text-transform: uppercase;
  font-family: "BBH Sans Bogle", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.topText span.bgLRextend::before {
  background: #333;
}
@media screen and (max-width: 550px) {
  .topText {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 380px) {
  .topText {
    font-size: 1.8rem;
  }
}

.btnlinestretches3 {
  position: relative;
  color: #333;
  padding: 5px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}
.btnlinestretches3 span {
  position: relative;
  z-index: 2;
}
.btnlinestretches3:hover span {
  color: #fff;
}
.btnlinestretches3::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: #333;
  width: 100%;
  height: 3px;
  transition: all 0.3s ease-in-out;
}
.btnlinestretches3:hover::after {
  height: 100%;
}

#page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  transform: translateX(100px);
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eb6100;
  width: 60px;
  height: 50px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}
#page-top a:hover {
  background: #777;
}
#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #ccc;
}

.slider a {
  display: block;
  background: #fff;
  padding: 10px 0;
}
.slider time {
  display: inline-block;
  font-size: 0.8rem;
  margin-right: 10px;
  color: #777;
}
@media screen and (max-width: 768px) {
  .slider {
    padding: 20px;
    background: #fff;
  }
  .slider li {
    border-bottom: 1px dashed #ccc;
  }
  .slider li:last-child {
    border-bottom: none;
  }
  .slider time {
    display: block;
    padding-bottom: 10px;
  }
}

.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #eb6100;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.flipLeft {
  animation-name: flipLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}

@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
#vision,
.service-area {
  transform: translate3d(0, 0, 0);
}

.bgLRextendTrigger,
.bgappearTrigger,
.fadeUpTrigger,
.flipLeftTrigger {
  opacity: 0;
}

#container {
  position: relative;
  z-index: 1;
  background: #fff;
}

.btnlinestretches {
  position: relative;
  color: #333;
  border: 1px solid #333;
  padding: 30px 0;
  display: inline-block;
  text-decoration: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.btnlinestretches:hover {
  background: #333;
  color: #fff;
  border-color: transparent;
}
.btnlinestretches::before, .btnlinestretches::after {
  content: "";
  position: absolute;
  border: solid #333;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}
.btnlinestretches::before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btnlinestretches::after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btnlinestretches:hover::before, .btnlinestretches:hover::after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #666;
}

#main-area h2 {
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
  text-transform: uppercase;
  font-size: 3rem;
  font-family: "Bruno Ace SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  #main-area h2 {
    font-size: 2rem;
  }
}

#basicinfo {
  background: #fff;
  padding-bottom: 90px;
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  transform: translate3d(0, 0, 0);
}
#basicinfo .tab li {
  flex-basis: 48%;
}

#emergency {
  width: 75vw;
  margin: 0 auto;
  padding-top: 80px;
  background-color: #fff;
}

.urgentNewsBox {
  border: 10px solid #ff0000;
  padding: 20px 80px;
}

.urgentNews {
  display: flex;
  padding: 10px;
  color: #ff0000;
  font-weight: bold;
  font-size: 1.5rem;
  align-items: center;
}
.urgentNews p {
  padding: 0 0 0 30px;
}
.urgentNews > p:first-child {
  color: #fff;
  background-color: #ff0000;
  padding: 10px 40px;
  border-radius: 50px;
}

#NewsContainer {
  width: 75vw;
  margin: 0 auto;
  padding: 80px;
}

.news li {
  display: block;
  background: #fff;
  padding: 30px;
  border-left: 30px solid var(--main);
}
.news span {
  display: inline-block;
  font-size: 0.8rem;
  margin-right: 10px;
  color: #777;
}

#event, #reserve, #using, #faq, #contact {
  padding-top: 150px;
}

#using .usingTab {
  background: #fff;
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  transform: translate3d(0, 0, 0);
}
#using .usingTab li {
  flex-basis: 20%;
}
#using .usingTab li img {
  width: 100%;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
#using .usingTab li img:hover {
  border-radius: 10%;
}

.infoArea {
  display: none;
  opacity: 0;
  background: #daeaff;
  border-radius: 15px;
  padding: 50px 0;
  width: 65%;
  margin: 100px auto;
}
.infoArea h3 {
  font-size: 26px;
  padding: 10px 40px;
  background-color: #fff;
  width: 40%;
}
.infoArea.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.caption {
  width: 100% !important;
}

.taxTable {
  border-collapse: collapse;
  width: 90%;
  margin: 40px auto;
  text-align: center;
}

.taxTableTh {
  color: #fff;
  background-color: rgb(70, 128, 235);
  margin-bottom: 1vh;
  font-size: 1.1em;
}
.taxTableTh tr th {
  padding: 20px;
  border: 2px solid #fff;
}

.taxTableTb tr td {
  border: 2px solid #fff;
  padding: 20px 5px;
  line-height: 1.2;
}

.taxTableTbTr {
  background-color: rgba(170, 167, 167, 0.1);
}

.taxTableTbTr2 {
  background-color: rgba(170, 167, 167, 0.2);
}

.taxTableCap {
  font-size: 14px;
}

.taxTableInfo {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.mtgroom1 {
  background-color: #fff;
}

.mtgroom2 {
  background-color: #1f60e2;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.maininfoArea {
  flex-basis: 45%;
  margin: 50px auto;
  padding: 0 30px;
}
.maininfoArea li {
  position: relative;
  list-style: none;
  padding: 0 0 20px;
}
.maininfoArea dl {
  margin: 0 0 20px 3em;
}
.maininfoArea dt {
  font-size: 55px;
  vertical-align: top;
}
.maininfoArea dd {
  font-size: 24px;
}
.maininfoArea li::before,
.maininfoArea li::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: #666;
  border-radius: 50%;
}
.maininfoArea li::before {
  top: 40px;
}
.maininfoArea li::after {
  bottom: -60px;
}

.borderLine {
  position: absolute;
  left: 0.5em;
  top: 40px;
  width: 4px;
  height: 0;
  background: #666;
}

.tabArea {
  flex-basis: 55%;
  margin: 50px auto;
  padding: 0 30px;
}

.tab {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tab li a img {
  width: 15%;
  margin-right: 5px;
  vertical-align: middle;
}
.tab li.active a {
  transition: all 0.8s ease-out 0ms;
}

.tabBtn {
  position: relative;
  color: #5c5c5c;
  padding: 10px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  font-size: 24px;
}
.tabBtn span {
  position: relative;
  z-index: 2;
}
.tabBtn:hover span {
  color: #121212;
}
.tabBtn::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: var(--main);
  width: 100%;
  height: 3px;
  transition: all 0.3s ease-in-out;
}
.tabBtn:hover::after {
  height: 100%;
  border-radius: 20px 20px 0 0;
}

.borderbottom::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  background-color: var(--main);
  transition: all 0.3s;
}

.borderbottom:hover::before {
  height: 100%;
}

#tax, #newEvent {
  border-bottom: 3px solid var(--main);
}

#newEvent img,
.newEventP {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

#newEvent img {
  display: block;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.newEventArea {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
}

.area {
  display: none;
  opacity: 0;
  padding: 50px 20px;
}
.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.taxArea,
.newEventArea {
  display: none;
  opacity: 0;
  padding: 50px 20px;
}

.taxArea.is-active,
.newEventArea.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.accordionTax {
  list-style: none;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.accordionTax > li {
  margin-bottom: 10px;
}
.accordionTax > li.is-open .accordionTax-q-icon::after {
  transform: rotate(0deg);
}

.accordionTax-q button {
  display: block;
  position: relative;
  width: 100%;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: opacity 400ms;
  background-color: var(--sub);
  border-radius: 10px;
  padding: 20px;
}

.accordionTax-q-content {
  display: block;
  font-weight: 400;
  line-height: 1.6;
}
.accordionTax-q-content img {
  width: 8%;
  margin-right: 10px;
  vertical-align: middle;
}
@media print, (min-width: 768px) {
  .accordionTax-q-content {
    font-size: 20px;
  }
}

.accordionTax-q-icon {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media print, (min-width: 768px) {
  .accordionTax-q-icon {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .accordionTax-q-icon {
    right: 10px;
    width: 16px;
    height: 16px;
  }
}

.taxP {
  font-size: 22px;
  border-bottom: 5px solid var(--main);
}

.taxBox {
  margin-bottom: 30px;
}

.accordionTax-a {
  display: none;
  overflow: hidden;
}

@media print, (min-width: 768px) {
  .accordionTax-a-inner {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .accordionTax-a-inner {
    padding: 5px 0 25px;
  }
}

.accordionTax-a-body {
  position: relative;
}

.reseveP {
  text-align: center;
  margin: 0 auto 100px;
  max-width: 80%;
}

.reserve02p {
  text-align: center;
  margin: 50px auto;
  max-width: 80%;
}

.reseveBtn {
  display: inline-block;
  text-align: center;
  background-color: var(--color-accent);
  margin: 20px;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 60px;
  transition: 0.4s;
}
.reseveBtn:hover {
  background-color: var(--color-accent-dark);
}

.reserveTab {
  padding-left: 0;
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 85%;
  margin: 0 auto;
}
.reserveTab > li {
  max-width: 100%;
}
.reserveTab > li a {
  opacity: 0.3;
}
.reserveTab > li .icon04 {
  line-height: 2;
  width: 2em;
  height: 2em;
  text-align: center;
  color: #fff;
  background: var(--color-accent);
  margin: 0 auto 10px;
  display: block;
  border-radius: 100vh;
  position: relative;
}
.reserveTab > li .icon04::before {
  content: "";
  border: solid transparent;
  border-width: 7px;
  border-top-color: var(--color-accent);
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
}
.reserveTab > li dl {
  padding: 30px 20px;
  margin: 0;
  border: 3px solid var(--color-accent);
  position: relative;
}
.reserveTab > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 10px;
  text-align: center;
}
.reserveTab > li dl dd {
  margin-left: 0;
}
.reserveTab > li:not(:first-child) dl::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 4px solid var(--color-accent);
  border-right: 4px solid var(--color-accent);
  position: absolute;
  top: calc(50% - 14px);
  left: -45px;
  transform: rotate(45deg);
}
.reserveTab li.active a {
  opacity: 1;
}
@media (max-width: 767px) {
  .reserveTab {
    gap: 20px;
  }
  .reserveTab > li {
    max-width: unset;
  }
  .reserveTab > li dl {
    padding: 10px;
  }
  .reserveTab > li dl dt {
    font-size: 0.8em;
  }
  .reserveTab > li:not(:first-child) dl::before {
    display: none;
  }
}

.reserveArea {
  width: 80%;
  margin: 0 auto;
}

.reserveBox {
  width: 80%;
  margin: 0 auto;
}

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

.flow07 {
  padding-left: 0;
}
.flow07 > li {
  display: flex;
  align-items: flex-end;
}
.flow07 > li:not(:last-child) {
  margin: 0 0 50px;
}
.flow07 > li p {
  padding: 0 0 0 30px;
  width: 20%;
}
.flow07 > li dl {
  padding: 0 0 0 30px;
  width: 80%;
}
.flow07 > li dl dt {
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 4px solid #CCCCCC;
  position: relative;
}
.flow07 > li dl dt::after {
  content: "";
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: var(--color-accent);
}
.flow07 > li dl .textArea {
  margin: 0;
  display: flex;
  padding: 0 20px;
}

.icon-btn {
  background: url(../img/reservebtn01.png) no-repeat center/cover;
  display: inline-block;
  width: 180px;
  height: 60px;
  border-radius: 10px;
  margin-right: 20px;
  transition: 0.3s;
}
.icon-btn:hover {
  background-image: url(../img/reservebtn02.png);
}

.pdfDown {
  margin: 30px auto;
  text-align: center;
}

.btnchangeline {
  position: relative;
  color: #333;
  padding: 10px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.btnchangeline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  opacity: 0;
  transform: scale(0, 1);
  transition: all 0.3s;
}
.btnchangeline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #333;
  transition: all 0.3s;
}
.btnchangeline:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}
.btnchangeline:hover::after {
  opacity: 0;
  transform: scale(0, 1);
}
.btnchangeline span {
  position: relative;
  z-index: 2;
  color: #fff;
  transition: all 0.3s;
}
.btnchangeline:hover span {
  letter-spacing: 2px;
  color: #333;
}

.btn03 {
  position: relative;
  text-decoration: none;
  display: block;
  text-align: center;
  background: transparent;
  width: 65%;
  margin: 0 auto;
  outline: none;
  transition: all 0.2s ease;
}
.btn03:hover {
  border-color: transparent;
}
.btn03 span {
  position: relative;
  z-index: 2;
  display: block;
  padding: 10px 30px;
  background: var(--main);
  transition: all 0.3s ease;
}

.pushdown:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 4px;
  left: 0;
  width: 100%;
  height: 100%;
}
.pushdown:hover span {
  background-color: var(--hover);
  color: #fff;
  transform: translateY(4px);
}

.btnText {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}
.btnText p {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-left: 20px;
}

.btnTextImg {
  width: 5%;
}

.btntextchange {
  position: relative;
  border: 1px solid #555;
  border-radius: 25px;
  min-width: 320px;
  padding: 20px;
  margin-left: 20px;
  text-align: center;
  display: block;
  text-decoration: none;
  color: #333;
  outline: none;
  transition: all 0.2s;
}
.btntextchange:hover {
  background: #333;
  color: #fff;
}
.btntextchange span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
  display: block;
  white-space: nowrap;
  padding: 50px;
}
.btntextchange span:nth-child(2) {
  opacity: 0;
}
.btntextchange:hover span:nth-child(1) {
  opacity: 0;
}
.btntextchange:hover span:nth-child(2) {
  opacity: 1;
}

#faq h2 span.bgLRextend::before {
  background: #333;
}

.faq-bg {
  position: relative;
  height: 55vh;
  background: url("../img/pict_05.jpg") no-repeat center;
  background-size: cover;
  margin: 0 0 200px 25%;
}
.faq-bg::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -32%;
  width: 100%;
  height: 55vh;
  background: #f3f3f3;
  z-index: -1;
}

.require,
.FormBtn:hover {
  background: var(--hover);
}

.sns-fixed {
  position: fixed;
  bottom: 60px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 9999;
}
.sns-fixed a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  color: #333;
  font-size: 22px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
.sns-fixed a:hover {
  transform: scale(1.2);
}

.floorTab {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
  font-size: 36px;
}
.floorTab li {
  margin-bottom: 20px;
}
.floorTab li a {
  display: block;
  opacity: 0.3;
  margin: 0 2px;
  padding: 10px 60px;
  position: relative;
  color: #333;
}
.floorTab li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: #333;
  transition: all 0.3s;
  transform: scale(0.04, 1);
  transform-origin: center bottom;
}
.floorTab li a:hover::after {
  height: 8px;
  border-radius: 0;
  transform: scale(0.8, 1);
}
.floorTab li.active a {
  opacity: 1;
}
.floorTab li.current a::after {
  height: 8px;
  border-radius: 0;
  transform: scale(0.8, 1);
}

.reserveTab li.active a {
  opacity: 1;
}

#floorMap {
  background: #fff;
  padding-top: 150px;
}
#floorMap h3 {
  font-size: 3em;
  position: absolute;
  left: -15%;
}
#floorMap .floorMapArea {
  padding: 70px;
  width: 70%;
  margin: 0 auto;
  position: relative;
}
#floorMap .floorMapArea .floorList {
  display: none;
}
#floorMap .floorMapArea .btnNo {
  display: none;
}

.floorMapArea1f,
.floorMapArea2f {
  margin: 70px auto 150px;
  max-width: var(--floor-area-max-width);
}

.floor1f,
.floor2f {
  position: relative;
}

.floorBtnText2-7, .floorBtnText2-1, .floorBtnText2-2, .floorBtnText2-3,
.floorBtnText2-4, .floorBtnText2-5, .floorBtnText2-6, .floorBtnText1-1, .floorBtnText1-2, .floorBtnText1-3, .floorBtnText1-4,
.floorBtnText1-5, .floorBtnText1-6, .floorBtnText1-7, .floorBtnText1-8 {
  background-color: #fff;
  border: 2px solid #333;
  display: inline-block;
  font-weight: bold;
  position: relative;
  border-radius: 40px;
}

.btn2-1Img, .btn2-2Img, .btn2-3Img, .btn2-4Img,
.btn2-5Img, .btn2-6Img, .btn2-7Img, .btn1-1Img, .btn1-2Img, .btn1-3Img, .btn1-4Img,
.btn1-5Img, .btn1-6Img, .btn1-7Img, .btn1-8Img {
  max-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  margin: 0 auto;
  position: absolute;
}
.btn2-1Img img, .btn2-2Img img, .btn2-3Img img, .btn2-4Img img,
.btn2-5Img img, .btn2-6Img img, .btn2-7Img img, .btn1-1Img img, .btn1-2Img img, .btn1-3Img img, .btn1-4Img img,
.btn1-5Img img, .btn1-6Img img, .btn1-7Img img, .btn1-8Img img {
  border-radius: 50%;
}

#floorMap .floorBtnText2-1:hover + .btn2-1Img,
#floorMap .floorBtnText2-2:hover + .btn2-2Img,
#floorMap .floorBtnText2-3:hover + .btn2-3Img,
#floorMap .floorBtnText2-4:hover + .btn2-4Img,
#floorMap .floorBtnText2-5:hover + .btn2-5Img,
#floorMap .floorBtnText2-6:hover + .btn2-6Img,
#floorMap .floorBtnText2-7:hover + .btn2-7Img, #floorMap .floorBtnText1-1:hover + .btn1-1Img,
#floorMap .floorBtnText1-2:hover + .btn1-2Img,
#floorMap .floorBtnText1-3:hover + .btn1-3Img,
#floorMap .floorBtnText1-4:hover + .btn1-4Img,
#floorMap .floorBtnText1-5:hover + .btn1-5Img,
#floorMap .floorBtnText1-6:hover + .btn1-6Img,
#floorMap .floorBtnText1-7:hover + .btn1-7Img,
#floorMap .floorBtnText1-8:hover + .btn1-8Img {
  opacity: 1;
  visibility: visible;
}

.floorBtnText2-7 {
  border-radius: 20px;
}

.accordion {
  list-style: none;
  width: 65%;
  margin: 0 auto;
}
.accordion > li {
  margin-bottom: 10px;
}
.accordion > li.is-open .accordion-q-icon::after {
  transform: rotate(0deg);
}

.accordion-q-prefix {
  display: block;
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-variation-settings: "wdth" 75;
  line-height: 1;
}
@media print, (min-width: 768px) {
  .accordion-q-prefix {
    left: 20px;
    top: 24px;
    font-size: 30px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-q-prefix {
    left: 20px;
    top: 18px;
    font-size: 24px;
    margin: 0;
  }
}

.accordion-q-content {
  display: block;
  font-weight: 400;
  line-height: 1.6;
}
@media print, (min-width: 768px) {
  .accordion-q-content {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-q-content {
    font-size: 16px;
  }
}

.accordion-q-icon {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media print, (min-width: 768px) {
  .accordion-q-icon {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-q-icon {
    right: 10px;
    width: 16px;
    height: 16px;
  }
}
.accordion-q-icon::before, .accordion-q-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}
@media print, (min-width: 768px) {
  .accordion-q-icon::before, .accordion-q-icon::after {
    top: 9px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-q-icon::before, .accordion-q-icon::after {
    top: 7px;
  }
}
.accordion-q-icon::after {
  transform: rotate(90deg);
  transition: transform 400ms;
}

.accordion-q button {
  display: block;
  position: relative;
  width: 100%;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: opacity 400ms;
  background-color: var(--accordion-q-bg);
  border-radius: 10px;
}
@media print, (min-width: 768px) {
  .accordion-q button {
    padding: 20px 100px;
  }
  .accordion-q button:hover, .accordion-q button:active {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .accordion-q button {
    padding: 20px 36px 20px 50px;
  }
}

.accordion-a {
  display: none;
  overflow: hidden;
}
@media print, (min-width: 768px) {
  .accordion-a-inner {
    padding: 5px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-a-inner {
    padding: 5px 0 25px;
  }
}
.accordion-a-body {
  position: relative;
}
@media print, (min-width: 768px) {
  .accordion-a-body {
    padding-left: 70px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-a-body {
    padding-left: 50px;
    padding-right: 25px;
  }
}
.accordion-a-prefix {
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-variation-settings: "wdth" 75;
  line-height: 1;
}
@media print, (min-width: 768px) {
  .accordion-a-prefix {
    left: 20px;
    top: -4px;
    font-size: 30px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-a-prefix {
    left: 20px;
    top: -2px;
    font-size: 24px;
    margin: 0;
  }
}
@media print, (min-width: 768px) {
  .accordion-a-content p {
    font-size: 18px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .accordion-a-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media print, (min-width: 768px) {
  .accordion-a-content p:first-child {
    margin-top: 25px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-a-content p:first-child {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
@media print, (min-width: 768px) {
  .accordion-a-content p + p {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-a-content p + p {
    margin-top: 20px;
  }
}
.accordion-a-close {
  line-height: 1.5;
}
@media print, (min-width: 768px) {
  .accordion-a-close {
    width: 160px;
    margin: 25px auto 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-a-close {
    width: 140px;
    margin: 20px auto 0;
    font-size: 15px;
  }
}
.accordion-a-close button {
  display: block;
  position: relative;
  width: 100%;
  border: none;
  background: #000;
  color: #fff;
  font: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: opacity 400ms;
  border-radius: 7px;
}
@media print, (min-width: 768px) {
  .accordion-a-close button {
    height: 45px;
    text-align: center;
  }
  .accordion-a-close button:hover, .accordion-a-close button:active {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .accordion-a-close button {
    height: 40px;
    text-align: center;
  }
}
.accordion-a-close button > span {
  display: inline-block;
  position: relative;
  padding-left: 17px;
  vertical-align: top;
}
.accordion-a-close button > span > span {
  display: block;
  position: absolute;
  left: -5px;
  top: 50%;
  width: 13px;
  height: 13px;
  margin-top: -6.5px;
  transform: rotate(45deg);
}
.accordion-a-close button > span > span::before, .accordion-a-close button > span > span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  width: 100%;
  height: 1px;
  background: #fff;
}
.accordion-a-close button > span > span::after {
  transform: rotate(90deg);
}

.parent {
  width: 65%;
  margin: 20px auto;
  text-align: center;
}
.parent a {
  display: block;
  text-decoration: none;
  background: #eee;
  padding: 20px;
}
.parent a:hover {
  background: #ccc;
}

.map {
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
}
.map iframe {
  display: block;
  width: 100%;
  height: 320px;
  margin-top: 25px;
}

#formWrap {
  margin-top: 80px;
  padding-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
}

.FormItem {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
.FormItem:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 480px) {
  .FormItem {
    padding: 16px 14px;
    flex-wrap: wrap;
  }
}

.FormItem-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
.FormItem-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .FormItem-Label.isMsg {
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .FormItem-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}

.require {
  border-radius: 6px;
  margin-right: 8px;
  padding: 8px 0;
  width: 48px;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .require {
    border-radius: 4px;
    padding: 4px 0;
    width: 32px;
    font-size: 10px;
  }
}

#name,
#mail,
#tel {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .FormItem-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}

#message {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  #message {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}

.FormBtn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: var(--main);
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  transition: all 0.3s ease-out;
}
.FormBtn:hover {
  color: #ffffff;
}
@media screen and (max-width: 480px) {
  .FormBtn {
    margin-top: 24px;
    padding: 8px 0;
    width: 160px;
    font-size: 16px;
  }
}

#footer {
  border-top: 1px solid #333;
  text-align: center;
  background: #fff;
  position: relative;
}
#footer small {
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.05em;
  font-weight: bold;
}

.copyright {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

#wrapper {
  height: 25vh;
}

.footerAd address p {
  line-height: 1.8;
}

.footerLogo img {
  max-width: 20%;
  margin-top: 80px;
  margin-bottom: 50px;
}

.hhgrowFooter {
  width: 25%;
  margin: 80px auto 30px;
}

.agreement {
  margin: 20px 0;
  font-size: 13px;
  letter-spacing: -0.03em;
}

.site-menu {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
}

.policy {
  font-size: 13px;
  margin-top: 20px;
  margin-bottom: 20px;
}

:root {
  --main: rgb(179, 217, 169);
  --sub: rgb(212, 238, 206);
  --hover: rgb(136, 182, 125);
  --bg-light: #f7f7f7;
  --text-dark: #333;
  --accordion-q-bg: rgb(212, 238, 206);
}

:root {
  --floor-area-max-width: 80%;
}

.floorBtn1-1 {
  position: absolute;
  top: 46%;
  left: 15%;
}

.floorBtn1-2 {
  position: absolute;
  top: 45%;
  left: 51%;
}

.floorBtnText1-2 {
  font-size: 20px;
}

.btn1-1Img {
  bottom: 120%;
  left: -30%;
}

#floorMap .floorBtnText1-1:hover + .btn1-1Img {
  width: 170%;
}

.floorMapArea1f {
  margin-bottom: 50px;
}

.floorBtn1-1 {
  position: absolute;
  top: 46%;
  left: 15%;
}

.floorBtnText1-1 {
  font-size: 16px;
  padding: 3px 20px;
}

.btn1-1Img {
  bottom: 120%;
  left: -30%;
}

#floorMap .floorBtnText1-1:hover + .btn1-1Img {
  width: 170%;
}

.floorBtn1-2 {
  position: absolute;
  top: 45%;
  left: 51%;
}

.floorBtnText1-2 {
  font-size: 20px;
  padding: 3px 20px;
}

.btn1-2Img {
  top: 120%;
  left: -30%;
}

#floorMap .floorBtnText1-2:hover + .btn1-2Img {
  width: 170%;
}

.floorBtn1-3 {
  position: absolute;
  top: 48%;
  right: 10%;
}

.floorBtnText1-3 {
  font-size: 20px;
  padding: 3px 20px;
}

.btn1-3Img {
  top: 120%;
  left: -30%;
}

#floorMap .floorBtnText1-3:hover + .btn1-3Img {
  width: 170%;
}

.floorBtn1-4 {
  position: absolute;
  bottom: 30%;
  left: 12%;
}

.floorBtnText1-4 {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  padding: 3px 20px;
}

.btn1-4Img {
  top: 120%;
  left: -10%;
}

#floorMap .floorBtnText1-4:hover + .btn1-4Img {
  width: 110%;
}

.floorBtn1-5 {
  position: absolute;
  bottom: 6%;
  left: 22%;
}

.floorBtnText1-5 {
  font-size: 16px;
  padding: 3px 20px;
}

.btn1-5Img {
  top: 120%;
  left: -20%;
}

#floorMap .floorBtnText1-5:hover + .btn1-5Img {
  width: 170%;
}

.floorBtn1-6 {
  position: absolute;
  bottom: 11%;
  right: 15%;
}

.floorBtnText1-6 {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  padding: 3px 20px;
}

.btn1-6Img {
  top: 120%;
  left: -35%;
}

#floorMap .floorBtnText1-6:hover + .btn1-6Img {
  width: 150%;
}

.floorBtn1-7 {
  position: absolute;
  top: 15%;
  left: 22%;
}

.floorBtnText1-7 {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  padding: 3px 20px;
}

.btn1-7Img {
  top: 120%;
  left: -35%;
}

#floorMap .floorBtnText1-7:hover + .btn1-7Img {
  width: 150%;
}

.floorBtn1-8 {
  position: absolute;
  top: 15%;
  left: 34%;
}

.floorBtnText1-8 {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  padding: 3px 20px;
}

.btn1-8Img {
  top: 120%;
  left: -5%;
}

#floorMap .floorBtnText1-8:hover + .btn1-8Img {
  width: 110%;
}

.floorBtn2-1 {
  position: absolute;
  top: 38%;
  left: 15%;
}

.floorBtnText2-1 {
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  padding: 3px 20px;
}

.btn2-1Img {
  bottom: 120%;
  left: -18%;
}

#floorMap .floorBtnText2-1:hover + .btn2-1Img {
  width: 170%;
}

.floorBtn2-2 {
  position: absolute;
  top: 46%;
  left: 21%;
}

.floorBtnText2-2 {
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  padding: 3px 20px;
}

.btn2-2Img {
  top: 120%;
  left: -12%;
}

#floorMap .floorBtnText2-2:hover + .btn2-2Img {
  width: 130%;
}

.floorBtn2-3 {
  position: absolute;
  bottom: 14%;
  left: 22%;
}

.floorBtnText2-3 {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  padding: 3px 20px;
}

.btn2-3Img {
  top: 120%;
  left: -18%;
}

#floorMap .floorBtnText2-3:hover + .btn2-3Img {
  width: 150%;
}

.floorBtn2-4 {
  position: absolute;
  bottom: 18%;
  left: 38%;
}

.floorBtnText2-4 {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  padding: 3px 20px;
}

.btn2-4Img {
  top: 120%;
  left: -8%;
}

#floorMap .floorBtnText2-4:hover + .btn2-4Img {
  width: 120%;
}

.floorBtn2-5 {
  position: absolute;
  top: 16%;
  left: 16%;
}

.floorBtnText2-5 {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  padding: 3px 20px;
}

.btn2-5Img {
  bottom: 120%;
  left: -8%;
}

#floorMap .floorBtnText2-5:hover + .btn2-5Img {
  width: 120%;
}

.floorBtn2-6 {
  position: absolute;
  top: 18%;
  left: 33%;
}

.floorBtnText2-6 {
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  padding: 3px 20px;
}

.btn2-6Img {
  bottom: 120%;
  left: -8%;
}

#floorMap .floorBtnText2-6:hover + .btn2-6Img {
  width: 140%;
}

.floorBtn2-7 {
  position: absolute;
  top: 44%;
  left: 33%;
}

.floorBtnText2-7 {
  font-size: 14px;
  line-height: 0.9;
  padding: 10px;
}

.btn2-7Img {
  top: 120%;
  left: -40%;
}

#floorMap .floorBtnText2-7:hover + .btn2-7Img {
  width: 180%;
}/*# sourceMappingURL=index.css.map */