@charset "UTF-8";

/* ==========================================================================
   Setting
========================================================================== */
:root {
  --white: #ffffff;
  --l-gray: #F7F6F6;
  --l-gray2: #EFEDED;
  --l-gray3: #EAE2E1;
  --gray: #d1d1d1;
  --d-gray: #727272;
  --dd-gray: #343434;
  --black: #000;
  --border1: #DCD9D9;
  --border2: #BEB2B0;
  --color1: #847370;
  --color1-h: #918482;
  --color2: #B59274;
  --color2-h: #A58268;
  --color3: #AC928E;
  --color3-h: #B29C9A;
  --red: #dd301d;

  --font1: "Lato", sans-serif;
  --font2: "Barlow Condensed", sans-serif;
  --font3: "Libre Baskerville", serif;
  --gothic: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  --mincho: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

/* ==========================================================================
   Loading
========================================================================== */
body #container::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--l-gray2) url(../img/loading.svg) no-repeat center center / 5em;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 994;
  transition: 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
body.loaded #container::before {
  opacity: 0;
  pointer-events: none;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ==========================================================================
   Animation
========================================================================== */
.iv {
  opacity: 0;
}

/* ==========================================================================
   Base
========================================================================== */
html {
  font-family: var(--gothic);
  font-size: 81.3%;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 374px) {
  html {
    font-size: 3.475vw;
  }
}

body {
  background: var(--white);
  color: var(--black);
}

#container {
  overflow: hidden;
  position: relative;
}

#content {
  padding-top: 70px;
}
@media (min-width: 992px) {
  #content {
    padding-top: 135px;
  }
}

/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
}
#siteHeader .inner-header {
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#siteHeader .inner-header::before {
  content: '';
  background: var(--white);
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(((100vw - 100%)/2)*-1);
  right: calc(((100vw - 100%)/2)*-1);
  transition: background 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

#logo {
  flex: 0 0 74px;
  width: 74px;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1;
  position: relative;
  z-index: 2;
}
#logo .logo__inner {
  display: block;
  width: 100%;
  color: inherit;
}
#logo .logo__inner img {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 991px) {
  #siteHeader {
    position: fixed;
  }
}
@media (min-width: 992px) {
  #siteHeader {
    height: 135px;
    font-size: 0.923em;
  }
  #siteHeader .inner-header {
    padding: 0 4.5vw;
  }


  #siteHeader.standby {
    height: 80px;
    position: fixed;
    opacity: 0;
    transition: none;
  }
  #siteHeader.ready {
    height: 80px;
    position: fixed;
    opacity: 1;
    transform: translateY(-100%);
    transition: opacity .4s .4s cubic-bezier(0.16, 1, 0.3, 1), transform .4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  #siteHeader.fixed {
    height: 80px;
    position: fixed;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1), transform .6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  #siteHeader.standby #logo,
  #siteHeader.ready #logo,
  #siteHeader.fixed #logo {
    flex: 0 0 74px;
    width: 74px;
  }


  body.home #siteHeader .inner-header {
    padding: 0 3vw;
  }
  body.home #logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 1200px) {
  #logo {
    flex: 0 0 105px;
    width: 105px;
  }
}


/* ==========================================================================
   Navigation
========================================================================== */
nav a {
  display: block;
  text-decoration: none;
}

nav ul {
  display: flex;
  border-bottom: 0;
  margin: 0;
}
nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: 1.25;
}
nav ul li a span {
  display: block;
}
nav ul li a em {
  display: block;
  font-family: var(--font1);
  font-style: normal;
  font-size: 1.077em;
  font-weight: 300;
  letter-spacing: .08em;
}

.gNav {
  flex: 1 1 100%;
  max-width: 100%;
  height: 100%;
  color: var(--black);
}
.gNav__inner {
  display: flex;
  width: 100%;
  height: 100%;
}
.gNav nav {
  display: flex;
  width: 100%;
}
.gNav nav ul li a {
  line-height: 1.5rem;
  position: relative;
  transition: none;
}
.gNav .navBar_inner > ul > li > a {
  display: flex;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  padding-right: 1.5vw;
  padding-left: 1.5vw;
}

.gNav .main-nav > li > a {
  text-align: left;
  border-bottom: 1px solid var(--border1);
  margin-bottom: .5em;
}
.gNav .main-nav > li > a::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--color1);
  border: 1px solid var(--color1);
  position: absolute;
  top: 50%;
  right: 0;
  transition: background .2s;
  transform: translateY(-50%);
}
.gNav .main-nav > li > a::after {
  content: "";
  display: block;
  width: .5rem;
  height: .5rem;
  color: var(--white);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 50%;
  right: .3rem;
  transition: color .2s;
  transform: translate(-75%, -50%) rotate(45deg);
}
.gNav .main-nav > li > a:hover::before {
  background: transparent;
}
.gNav .main-nav > li > a:hover::after {
  color: var(--color1);
}
.gNav .main-nav > li > a > span {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 0;
}
.gNav .main-nav > li > a > span em {
  width: 8.5em;
}

.sns-nav li a {
  line-height: 1.5em;
  position: relative;
  transition: none;
  display: flex;
  align-items: center;
  font-family: var(--font1);
  font-size: 1.077em;
  font-weight: 300;
  letter-spacing: .08em;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  padding: .5em 0 !important;
}
.sns-nav li a svg {
  fill: currentColor;
  width: 22px;
  height: 22px;
  margin-right: .75em;
}


/* 日英 */
.roll-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  padding: 0.5em 0;
}
.roll-menu > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 1.5rem;
  line-height: 1.5rem;
  position: relative;
}
.roll-menu em {
  display: block;
  font-family: var(--font1);
  font-style: normal;
  font-size: 1.077em;
  font-weight: 300;
  letter-spacing: .08em;
  transition: opacity .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.roll-menu em + span {
  display: block;
  font-size: .923rem;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  transition: opacity .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.roll-menu:hover em {
  opacity: 0;
}
.roll-menu:hover em + span {
  opacity: 1;
}


/* Nav Btn */
.nav-btn {
  background: transparent;
  color: currentColor;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.nav-btn i {
  display: block;
  background: currentColor;
  height: 1px;
  position: absolute;
  right: 20px;
  left: 20px;
  margin-top: -0.5px;
  transition: transform .3s;
}
.nav-btn i:nth-of-type(1) {
  top: 50%;
}
.nav-btn i:nth-of-type(2) {
  top: calc(50% - 10px);
}
.nav-btn i:nth-of-type(3) {
  top: calc(50% + 10px);
}
.nav-btn.on {
  color: var(--black);
}
.nav-btn.on i:nth-of-type(1) {
  transform: scaleX(0);
}
.nav-btn.on i:nth-of-type(2) {
  top: 50%;
  transform: rotate(45deg);
}
.nav-btn.on i:nth-of-type(3) {
  top: 50%;
  transform: rotate(135deg);
}

@media (min-width: 992px) {
  body:not(.pagegroup__wedding) .nav-btn {
    display: none;
  }
  .nav-btn {
    width: calc(30px + 9vw);
  }
  .nav-btn i {
    right: 4.5vw;
    left: 4.5vw;
  }
}

/* ==========================================================================
   PC Navigation
========================================================================== */
@media (min-width: 992px) {
  /* Wedding 以外 */
  .gNav:not(.wedding) {
    display: block !important;
  }
  .gNav:not(.wedding) nav {
    justify-content: flex-end;
  }
  .gNav:not(.wedding) nav > ul {
    justify-content: flex-end;
  }
  .gNav:not(.wedding) .main-nav {
    height: 100%;
  }
  .gNav:not(.wedding) .main-nav > li > a {
    height: 100%;
    text-align: center;
    border-bottom: 0;
    margin-bottom: 0;
  }
  .gNav:not(.wedding) .main-nav > li > a em {
    width: auto;
  }
  .gNav:not(.wedding) .navBar_inner {
    display: flex;
    align-items: center;
  }
  .gNav:not(.wedding) .navBar_inner > ul > li > a:before,
  .gNav:not(.wedding) .navBar_inner > ul > li > a:after {
    display: none;
  }

  body.home .gNav nav {
    width: 100%;
  }
  body.home .gNav nav .navBar_inner {
    width: 100%;
    justify-content: space-between;
  }

  #siteHeader .sns-nav {
    margin-right: -.75em;
    margin-left: calc(1.5vw - .75em);
  }
  body.home #siteHeader .sns-nav {
    margin-right: calc(1.5vw - .75em);
  }
  #siteHeader .sns-nav li a {
    padding: .75em !important;
  }
  #siteHeader .sns-nav li a svg {
    width: 16.5px;
    height: 16.5px;
    margin: 0;
  }
}

/* ==========================================================================
   SP Navigation
========================================================================== */
@media (max-width: 991px) {
  .gNav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: none;
  }
  .gNav__inner {
    background: var(--white);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding-top: 70px;

    opacity: 0;
    height: 0;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), height 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .gNav nav {
    flex-direction: column;
    justify-content: flex-start;
  }
  .gNav .navBar_inner {
    height: 100%;
    overflow-y: auto;
    padding: 2em 20px;
  }
  .gNav nav ul {
    max-width: 28em;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 1s 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .gNav nav ul li a {
    padding: 1.125em 0 !important;
  }
  .gNav .main-nav > li > a > span em {
    opacity: 1;
  }
  .gNav .main-nav > li > a > span em + span {
    opacity: 1;
    position: static;
    transform: translate(0, 0);
    transition: none;
  }

  /* OPEN */
  .gNav.on {
    display: block;
  }
  .gNav.on .gNav__inner {
    opacity: 1;
    height: 100vh;
  }
  .gNav.on ul {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==========================================================================
   Book Navigation
========================================================================== */
.bookNav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
}
.bookNav__inner {
  height: 100dvh;
  background: var(--color2);
  color: var(--white);
}
.bookNav .bookNav__inner > div {
  height: 100%;
  padding-top: 70px;
}
.bookNav .nav-book-row {
  padding: 1em 0 5em;
  overflow-y: auto;
}
.bookNav .nav-book-row .ttlBox {
  text-align: center;
  padding: 2em 0 1em;
}
.bookNav .nav-book-row .buttons {
  display: flex;
  flex-direction: column;
}
.bookNav .nav-book-row .btn {
  background: var(--white);
  color: var(--color2);
}
.bookNav .nav-book-row .btn.btn-b {
  color: var(--white);
}
.bookNav .nav-book-row .tel-link {
  order: 10;
}
.bookNav .nav-book-row .txt {
  order: 10;
}
.bookNav .nav-book-row.basic .reception {
  display: none;
}

.book-btn {
  color: var(--color2);
  white-space: nowrap;
  height: 100%;
  padding-right: 1.5vw;
  padding-left: 1.5vw;
  position: relative;
}
.book-btn svg {
  fill: currentColor;
}

/* ==========================================================================
   PC Book Navigation
========================================================================== */
@media (min-width: 992px) {
  .bookMenu {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .bookNav {
    display: block !important;
    max-width: 31.38rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .bookMenu:hover .bookNav {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .bookNav .bookNav__inner > div {
    padding-top: 135px;
  }
  #siteHeader.fixed .bookNav .bookNav__inner > div {
    padding-top: 80px;
  }
  .bookMenu .nav-book-row {
    padding-top: 2em;
  }
  .bookMenu .nav-book-row.row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .book-btn > span {
    display: block;
    padding: 0;
    position: relative;
  }
}
/* ==========================================================================
   SP Book Navigation
========================================================================== */
@media (max-width: 991px) {
  .bookNav {
    display: none;
  }
  .bookNav__inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    opacity: 0;
    height: 0;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), height 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .bookNav .nav-book-row {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s 0.6s cubic-bezier(0.19, 1, 0.22, 1), transform 1s 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  /* Book Btn */
  .book-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: auto;
    height: 70px;
    padding: 0;
    margin-right: 0;
    position: fixed;
    top: 0;
    right: 70px;
    z-index: 2;
  }
  .book-btn > span {
    padding: 0;
  }
  .book-btn > span em {
    font-size: .923em;
    font-weight: 700;
  }
  .book-btn svg {
    display: block;
    margin: 0.5em auto 0.25em;
  }

  .bookNav.on {
    display: block;
  }
  .bookNav.on .bookNav__inner {
    opacity: 1;
    height: 100vh;
  }
  .bookNav.on .nav-book-row {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Book List
========================================================================== */
.nav-book-row dl {
  max-width: 22.6em;
  margin: 0 auto 0;
  display: flex;
  flex-direction: column;
}
.nav-book-row dt {
  margin-bottom: .75em;
}
.nav-book-row dt span {
  font-size: 1.077em;
  font-weight: 700;
}
.nav-book-row dd p {
  margin-top: 0;
  margin-bottom: .75rem;
  line-height: 1.75;
}
.nav-book-row h5 {
  font-weight: 400;
  margin-bottom: .75rem;
}
.nav-book-row .tel-txt {
  font-family: var(--font1);
  font-weight: 700;
}
.nav-book-row .tel-link {
  margin-bottom: 0.75em;
}

@media (max-width: 991px) {
  .nav-book-row dl {
    max-width: 32em;
  }
}

@media (min-width: 992px) {
  .nav-book-row dt {
    margin-bottom: 0.75em;
  }
}


/* ==========================================================================
   Footer Information
========================================================================== */
#footer-info {
  background: var(--l-gray2);
  color: var(--color2);
  position: relative;
  z-index: 3;
}

#footer-info .en_ttl {
  text-align: center;
}
#footer-info .ttl {
  display: block;
  text-align: center;
  margin-top: 1em;
}
#footer-info .nav-book-row .reception {
  color: var(--black);
}
#footer-info .nav-book-row dd.txt {
  margin-bottom: .5em;
}
#footer-info .nav-book-row .ttl {
  display: block;
  text-align: center;
  margin-top: 1em;
}


@media (max-width: 991px) {
  #footer-info .nav-book-row > div:not(:first-child) dt {
    border-top: 1px solid var(--border1);
    padding-top: 2em;
    margin-top: 1em;
  }
}
@media (min-width: 992px) {
  #footer-info .nav-book-row > div:not(:first-child) {
    border-left: 1px solid var(--border1);
  }
  #footer-info .nav-book-row dl {
    margin: 0 auto;
  }
}


/* ==========================================================================
   Breadcrumb
========================================================================== */
.breadcrumb-wrapper {
  background: var(--white);
  border-bottom: 1px solid var(--l-gray2);
  overflow: hidden;
  padding: 2em 0;
  position: relative;
  z-index: 3;
}
#breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  line-height: 1.25;
}
#breadcrumb ol li {
  display: flex;
  align-items: center;
  padding: 0.5em 0;
}
#breadcrumb ol li a {
  display: inline-block;
}
#breadcrumb ol .separator {
  display: block;
  padding: 0.5em 0.25em;
}

.breadcrumb-wrapper .nav-breadcrumb ul {
  margin-right: -1.125em;
  margin-left: -1.125em;
}
.breadcrumb-wrapper .nav-breadcrumb ul li {
  padding-right: 1.125em;
  padding-left: 1.125em;
  border-right: 1px solid #bdc1c7;
}
.breadcrumb-wrapper .nav-breadcrumb ul li:last-child {
  border-right: none;
}
.breadcrumb-wrapper .nav-breadcrumb ul li a {
  line-height: 1.5;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .nav-breadcrumb ul {
    margin-right: -2vw;
    margin-left: -2vw;
  }
  .breadcrumb-wrapper .nav-breadcrumb ul li {
    padding-right: 2vw;
    padding-left: 2vw;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper {
    padding: 1em 0;
  }
  .breadcrumb-wrapper .nav-breadcrumb {
    margin-top: 0.5em;
  }
}
@media (min-width: 992px) {
  .breadcrumb-wrapper .nav-breadcrumb ul {
    justify-content: flex-end;
  }
}

/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  background: var(--white);
  clear: both;
  overflow: hidden;
  padding: 3.5em 0 calc(50px + 2em);
  position: relative;
  z-index: 3;
}
#siteFooter a:hover {
  opacity: 0.5;
}

#siteFooter #footerLogo {
  max-width: 121px;
  margin: 0 auto 2em;
}
#siteFooter #footerLogo a {
  display: inline-block;
}

#siteFooter .navBar_inner {
  font-size: .923rem;
}
#siteFooter .navBar_inner > ul > li > a {
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1.25em 0;
  border-bottom: 1px solid var(--border1);
  margin-bottom: 1.25em;
}
#siteFooter .navBar_inner .sub-menu {
  width: 100%;
}
#siteFooter .navBar_inner .sub-menu ul {
  display: block;
}
#siteFooter .navBar_inner .sub-menu ul li a {
  padding: 0.75em 0;
}
#siteFooter .navBar_inner .sub-menu {
  padding-bottom: 2em;
  display: none;
}


#siteFooter .sns-nav {
  font-family: var(--font1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em auto 2.5em;
}
#siteFooter .sns-nav li {
  padding: .75em 1em;
}
#siteFooter .sns-nav li a {
  font-size: 1rem;
}
#siteFooter .sns-nav li a svg {
  width: 17px;
  height: 17px;
}


#siteFooter .footer-bottom {
  font-size: 0.786rem;
  text-align: center;
}
#siteFooter .footer-bottom nav ul {
  font-family: var(--gothic);
  justify-content: center;
}
#siteFooter .footer-bottom nav ul li:not(:last-child) {
  border-right: 1px solid currentColor;
}
#siteFooter .footer-bottom nav ul li a {
  padding: 0 1em;
}

#siteFooter .copyright {
  font-size: 1rem;
  text-align: center;
  margin-top: 1.5em;
}

@media (max-width: 767px) {
  #siteFooter .navBar_inner > ul > li > a {
    opacity: 1 !important;
    position: relative;
  }
  #siteFooter .navBar_inner > ul > li > a::before,
  #siteFooter .navBar_inner > ul > li > a::after {
    content: '';
    display: block;
    width: 1em;
    height: 1px;
    background: currentColor;
    position: absolute;
    top: 50%;
    right: 0;
    transition: opacity .2s;
  }
  #siteFooter .navBar_inner > ul > li > a::after {
    transform: rotate(90deg);
  }
  #siteFooter .navBar_inner > ul > li.on > a::after {
    opacity: 0;
  }
}
@media (min-width: 768px) {
  #siteFooter #footerLogo {
    max-width: 138px;
    margin-bottom: 3.5em;
  }
  #siteFooter .navBar_inner > ul > li .sub-menu {
    display: flex !important;
    margin: 0 -1rem;
  }
  #siteFooter .navBar_inner > ul > li .sub-menu ul {
    padding: 0 1rem;
    min-width: 15em;
  }
  #siteFooter .sns-nav {
    margin-top: 2.5em;
  }
}
@media (min-width: 992px) {
  #siteFooter {
    padding: 5em 0;
  }
  body.home #siteFooter {
    padding-bottom: 9em;
  }
  #siteFooter .navBar_inner > ul > li .sub-menu ul {
    min-width: 16.75em;
  }
}
@media (min-width: 1200px) {
  #siteFooter .navBar_inner > ul > li.home {
    flex: 0 0 28%;
    max-width: 28%;
  }
  #siteFooter .navBar_inner > ul > li.restaurant {
    flex: 0 0 16%;
    max-width: 16%;
  }
  #siteFooter .navBar_inner > ul > li.wedding {
    flex: 0 0 56%;
    max-width: 56%;
  }
  #siteFooter .navBar_inner .sub-menu ul {
    padding-bottom: 0;
  }
  #siteFooter .navBar_inner > ul > li .sub-menu ul {
    min-width: 13.5em;
  }
}

/* ==========================================================================
   Fixed Bottom Nav
========================================================================== */
#fixedBottomNav {
  width: 100%;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
  color: var(--white);
  transform: translateY(105%);
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
#fixedBottomNav.open {
  transform: translateY(0);
}
#fixedBottomNav.close {
  transform: translateY(105%);
}
#fixedBottomNav .buttons {
  display: flex;
  height: 4rem;
  background: var(--color2);
}
#fixedBottomNav .buttons > div {
  flex-basis: 100%;
}
#fixedBottomNav .buttons > div:not(:last-of-type) {
  border-right: 1px solid var(--white);
}
#fixedBottomNav .buttons > div.tel-link {
  flex: 0 0 4rem;
}
#fixedBottomNav .buttons a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
}
#fixedBottomNav .buttons > div.tel-link a {
  background: url(../img/icon-phone.svg) no-repeat center center / 1.615em;
}

#fixedBottomNav .bar {
  height: 7em;
  padding: 0 0 0 3vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  position: relative;
}
#fixedBottomNav .bar::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color2);
  position: absolute;
  top: 0;
  left: 0;
  opacity: .95;
  z-index: -1;
}
#fixedBottomNav .bar .bar-ttl {
  display: flex;
  align-items: center;
  font-size: 1.231em;
  letter-spacing: .1em;
}
#fixedBottomNav .bar .bar-ttl svg {
  display: inline-block;
  width: 2em;
  height: 2em;
  margin-right: .5em;
}
#fixedBottomNav .bar .nav {
  line-height: 1.25;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
#fixedBottomNav .bar .nav .btn {
  color: currentColor;
  line-height: 1;
  width: 22em;
  padding: .75em 1.5em;
}
#fixedBottomNav .bar .nav .tel {
  margin-left: 4em;
}
#fixedBottomNav .bar .nav .tel .num {
  display: inline-block;
  font-size: 1.231em;
  letter-spacing: .1em;
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid currentColor;
}
#fixedBottomNav .close-btn {
  background: transparent;
  color: currentColor;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(6vw + 21px);
  height: 100%;
  cursor: pointer;
  position: relative;
  margin-left: 6em;
}
#fixedBottomNav .close-btn i {
  display: block;
  background: currentColor;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 3vw;
  left: 3vw;
  margin-top: -0.5px;
  transform: rotate(45deg);
  transition: transform .3s;
}
#fixedBottomNav .close-btn i:nth-of-type(2) {
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  #fixedBottomNav {
    max-width: 100%;
    left: 0;
  }
}
@media (max-width: 1199px) {
  #fixedBottomNav .bar .nav .btn {
    width: 21em;
  }
  #fixedBottomNav .close-btn {
    margin-left: 0;
  }
}
