@charset "UTF-8";
/*ハンバーガーメニュー*/
.mobile-nav {
  position: absolute; }
  @media (min-width: 1024px) {
    .mobile-nav {
      display: none; } }

/*ハンバーガーメニュー*/
.openbtn {
  position: fixed;
  cursor: pointer;
  width: 32px;
  height: 51px;
  text-align: center;
  top: 7px;
  right: 13px;
  z-index: 1000;
  /*ボタン内側*/ }
  .openbtn span {
    display: block;
    position: absolute;
    width: 25px;
    transition: .35s ease-in-out;
    left: 6px;
    border-bottom: solid 1px #333333; }
    .openbtn span:nth-child(1) {
      top: 7px; }
    .openbtn span:nth-child(2) {
      top: 17px; }
    .openbtn span:nth-child(3) {
      top: 27px; }
    .openbtn span:nth-child(4) {
      border: none;
      color: #333333;
      top: 34px; }

/*activeクラスが付与されると線が回転して×になる*/
.openbtn.active span:nth-child(1) {
  top: 18px;
  left: 6px;
  border-bottom: solid 1px #333333;
  transform: rotate(-45deg); }
.openbtn.active span:nth-child(2), .openbtn.active span:nth-child(3) {
  top: 18px;
  border-bottom: solid 1px #333333;
  transform: rotate(45deg); }

/*メニュー押した後の背景アニメーション*/
.circle-bg {
  position: fixed;
  background-color: #f7f7f7;
  right: 0;
  top: 0;
  width: 0;
  height: 100vh;
  transition: all 1s ease-in-out;
  overflow: hidden;
  z-index: 10; }
  .circle-bg.open {
    opacity: 1.0;
    visibility: visible;
    width: 100%;
    overflow: scroll;
    transform: scale(100); }

/*メニュー押した後のアニメーション*/
#g-nav {
  position: relative;
  text-align: left;
  padding-top: 70px;
  display: none; }
  #g-nav.navActive {
    position: fixed;
    z-index: 100;
    top: 0;
    width: 100%;
    height: 100vh;
    display: inherit; }
  #g-nav ul {
    margin-left: 24px; }
    #g-nav ul li {
      margin-bottom: 20px;
      opacity: 0; }
      @media (min-width: 410px) {
        #g-nav ul li {
          margin-bottom: 30px; } }
      #g-nav ul li .room {
        color: #333333;
        font-size: 1.3em; }
      #g-nav ul li a {
        display: block;
        position: relative;
        color: #333333;
        text-decoration: none;
        font-size: 1.3em;
        letter-spacing: 0.05em; }
        @media (min-width: 410px) {
          #g-nav ul li a {
            font-size: 1.5em; } }
      #g-nav ul li .wa {
        font-size: 0.4em;
        margin-left: 10px;
        vertical-align: middle; }
      #g-nav ul li .sns-icon {
        margin-top: 20px; }
        #g-nav ul li .sns-icon img {
          float: left;
          width: 20px;
          height: auto;
          margin-right: 15px; }
      #g-nav ul li ul {
        margin-top: 10px; }
        #g-nav ul li ul li {
          font-size: 0.8em;
          margin-bottom: 13px; }
  #g-nav .navappointment {
    text-align: center;
    margin-bottom: 100px;
    opacity: 0; }
    #g-nav .navappointment a {
      color: #333333;
      display: inline-block;
      width: 250px;
      text-align: center;
      font-size: 1.0em;
      border-radius: 7px;
      height: 60px;
      line-height: 60px;
      border: 1px solid #333333;
      font-feature-settings: "palt";
      letter-spacing: 0.08em; }

#g-nav.navActive .navappointment {
  animation: fadeIn 0.5s ease forwards;
  animation-delay: .90s;
  margin-top: 90px; }

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
#g-nav.navActive li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s; }
  #g-nav.navActive li:nth-of-type(2) {
    animation-delay: 0.4s; }
  #g-nav.navActive li:nth-of-type(3) {
    animation-delay: 0.45s; }
  #g-nav.navActive li:nth-of-type(4) {
    animation-delay: 0.50s; }
  #g-nav.navActive li:nth-of-type(5) {
    animation-delay: 0.55s; }
  #g-nav.navActive li:nth-of-type(6) {
    animation-delay: 0.60s; }
  #g-nav.navActive li:nth-of-type(7) {
    animation-delay: 0.65s; }
  #g-nav.navActive li:nth-of-type(8) {
    animation-delay: 0.70s; }
  #g-nav.navActive li:nth-of-type(9) {
    animation-delay: 0.75s; }
  #g-nav.navActive li:nth-of-type(10) {
    animation-delay: 0.80s; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
.fadeInRight {
  animation-name: fadeInRight; }