@charset "UTF-8";

/* ==========================================================================
   Setting
========================================================================== */
:root {
  --white: #ffffff;
  --l-gray: #E8EAEA;
  --l-gray2: #F0F0F0;
  --l-gray3: #EBEBEB;
  --gray: #d1d1d1;
  --d-gray: #727272;
  --dd-gray: #343434;
  --black: #333333;
  --border1: rgba(182,196,193,.66);
  --border2: #E7E8E8;
  --color1: #6A9383;
  --color1-h: #557F6D;
  --color2: #706A8D;
  --color2-h: #5D4F7D;
  --color3: #5D4F7D;
  --color3-h: #4E4370;
  --red: #dd301d;

  --font1: "Cormorant Garamond", serif;
  --font2: "Libre Baskerville", serif;
  --gothic: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  --mincho: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Noto Serif JP", 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(--mincho);
  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(--l-gray2);
  color: var(--black);
}
body.navOpen {
  height: 100%;
  overflow: hidden;
}

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

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

/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  height: 70px;
  position: fixed;
  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 128px;
  width: 128px;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.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: 100px;
    font-size: 0.923em;
  }
  #siteHeader .inner-header {
    padding: 0 0 0 2.5vw;
  }
}
@media (min-width: 1200px) {
  #logo {
    flex: 0 0 174px;
    width: 174px;
  }
}


/* ==========================================================================
   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: 1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.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 .main-nav li a {
  display: flex;
  align-items: center;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 1vw;
}

.gNav .main-nav li > a {
  text-align: left;
  border-bottom: 1px solid var(--border2);
  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: 11.5em;
  color: var(--color1);
}

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

/* Nav Btn */
.nav-btn {
  background: transparent;
  color: currentColor;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 100%;
  cursor: pointer;
  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);
}

/* ==========================================================================
   PC Navigation
========================================================================== */
@media (min-width: 992px) {
  .gNav {
    display: block !important;
    padding-top: 22px;
  }
  .gNav nav,
  .gNav .nav-row,
  .gNav ul {
    justify-content: flex-end;
    align-items: center;
  }
  .gNav .main-nav > li > a {
    text-align: center;
    border-bottom: 0;
    margin-bottom: 0;
  }
  .gNav .navBar_inner > .nav-row > ul > li > a > span {
    position: relative;
  }
  .gNav .navBar_inner > .nav-row > ul > li > a > span:before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: var(--d-gray);
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    margin: 0 auto;
    transition: width 0.2s;
  }
  .gNav .navBar_inner > .nav-row > ul > li:hover > a > span:before {
    width: 100%;
  }
  .gNav ul li a em {
    display: none;
  }
  .gNav .navBar_inner {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .gNav .navBar_inner > .nav-row {
    width: 100%;
  }
  .gNav .navBar_inner > .nav-row > .main-nav > li > a {
    line-height: 32px;
    padding-top: 6px;
    padding-bottom: 16px;
  }
  .gNav .main-nav li > a::before,
  .gNav .main-nav li > a:after {
    display: none;
  }


  .gNav nav .sns-nav {
    margin: 0 1vw;
  }
  .gNav nav .sns-nav li a svg {
    width: 1em;
    height: 1em;
    margin: 0;
  }

  .gNav nav .has-children{
    position: relative;
  }
  .gNav nav .sub-menu{
    width: 14em;
    position: absolute;
    left: 50%;
    z-index: 10;
    margin-left: -7em;
    background: rgba(240,240,240,.95);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .gNav nav .sub-menu ul {
    flex-wrap: wrap;
    padding: 1em 0 1.75em;
  }
  .gNav nav .sub-menu ul li {
    flex: 0 0 100%;
  }
  .gNav nav .sub-menu li > a {
    padding: .75em 2em;
    text-align: center;
    border-bottom: 0;
    margin-bottom: 0;
  }
  .gNav nav .sub-menu li > a::before,
  .gNav nav .sub-menu li > a::after {
    display: none;
  }
  .gNav nav .sub-menu li > a > span {
    justify-content: center;
  }
  .gNav nav .has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .gNav nav .sub-nav ul.main-nav li {
    position: relative;
  }
  .gNav nav .sub-nav ul.main-nav li:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: 1em;
    background: var(--d-gray);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%,-50%);
  }
  .gNav nav .sub-nav ul li a {
    padding: 0 1.5em;
    line-height: 24px;
    font-size: .923em;
    transition: color .2s;
  }
  .gNav nav .sub-nav ul li a:hover {
    color: var(--color2);
  }

  .nav-btn {
    display: none;
  }

  #sp_gNav.gNav {
    display: none !important;
  }
}

/* ==========================================================================
   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 1.5em;
  }
  .gNav nav ul {
    max-width: 32em;
    margin-right: auto;
    margin-left: auto;
    flex-wrap: wrap;
    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 {
    flex: 0 0 50%;
  }
  .gNav nav ul li:nth-of-type(odd) {
    padding-right: .75em;
  }
  .gNav nav ul li:nth-of-type(even) {
    padding-left: .75em;
  }
  .gNav nav ul li a {
    padding: .75em 0 !important;
  }

  .gNav nav ul.btn-nav li a {
    background: var(--color1);
    color: var(--white);
    padding: 1em 0 !important;
    border-bottom: 0;
    margin-bottom: .75em;
    text-align: center;
  }

  .gNav .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);
  }
  .gNav .nav-book-row .btn2-b {
    font-size: 1.25rem;
    padding: .75em 1.5em;
  }

  /* OPEN */
  .gNav.on {
    display: block;
  }
  .gNav.on .gNav__inner {
    opacity: 1;
    height: 100dvh;
  }
  .gNav.on ul,
  .gNav.on .nav-book-row {
    opacity: 1;
    transform: translateY(0);
  }

  #siteHeader .sns-nav {
    padding-top: 1em;
  }
  #siteHeader .sns-nav li a {
    padding: .5em 0 !important;
    color: var(--color1);
  }
  
  .gNav nav .navBar_inner ul li.has-children > a::after {
    transform: translate(-50%, -70%) rotate(135deg);
  }
  .gNav nav .navBar_inner ul li.has-children.on > a::after {
    transform: translate(-50%, -25%) rotate(-45deg);
  }

  .gNav nav .sub-menu {
    display: none;
  }
  .gNav nav .sub-menu ul li a em {
    padding-left: 1.5em;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gNav nav ul {
    max-width: 24em;
  }
}
/* ==========================================================================
   Book Navigation
========================================================================== */
.bookNav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
}
.bookNav__inner {
  height: 100dvh;
  background: var(--l-gray);
  color: var(--color2);
}
.bookNav .bookNav__inner > div {
  height: 100%;
  overflow-y: auto;
  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 .tel-link {
  order: 10;
}
.bookNav .nav-book-row .txt {
  order: 10;
}
.bookNav .nav-book-row .reception {
  color: var(--black);
}

.book-btn {
  background: var(--color3);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  width: 70px;
  height: 100%;
  font-size: .923em;
  line-height: 1.375;
  padding-right: 1.5vw;
  padding-left: 1.5vw;
  position: relative;
  cursor: pointer;
  transition: background .2s;
}
.book-btn svg {
  fill: currentColor;
  margin-bottom: .75em;
}
.book-btn:hover {
  background: var(--color3-h);
}

/* ==========================================================================
   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: 100px;
  }
  .bookMenu .nav-book-row {
    padding-top: 2em;
  }
  .bookMenu .nav-book-row.row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .book-btn {
    width: 9.76vw;
    margin-left: 1.5vw;
  }
}
/* ==========================================================================
   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 {
    height: 70px;
    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: 100dvh;
  }
  .bookNav.on .nav-book-row {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Book List
========================================================================== */
.nav-book-row {
  text-align: center;
}
.nav-book-row dl {
  max-width: 22.6em;
  margin: 1.5em 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 .txt {
  font-family: var(--gothic);
  font-size: .923em;
  margin-bottom: .5em;
}
.nav-book-row .tel-txt .num {
  display: block;
  font-family: var(--mincho);
  font-size: 1.667em;
  font-weight: 600;
}
.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;
  }
}

/* ==========================================================================
   Fair
========================================================================== */
#fair-cont {
  border-top: 1px solid var(--l-gray);
}
#fair-cont * {
  color-scheme: normal;
}

/* ==========================================================================
   Footer Information
========================================================================== */
#footer-info {
  background: var(--l-gray);
  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 .ttl {
  display: block;
  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: 768px) {
  #footer-info .nav-book-row dl {
    max-width: 100%;
  }
  #footer-info .nav-book-row .buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    margin-right: -5px;
    margin-left: -5px;
  }
  #footer-info .nav-book-row .buttons > p {
    flex-basis: calc(100%/3);
    max-width: calc(22.6em + 10px);
    padding-right: 5px;
    padding-left: 5px;
  }
  #footer-info .nav-book-row .buttons > p .btn {
    width: 100%;
  }
}
@media (min-width: 992px) {
  #footer-info .nav-book-row > div:not(:first-child) {
    border-left: 1px solid var(--border1);
  }
}


/* ==========================================================================
   Breadcrumb
========================================================================== */
.breadcrumb-wrapper {
  background: 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(--color1);
  color: var(--white);
  clear: both;
  overflow: hidden;
  padding: 3.5em 0 calc(50px + 2em);
  position: relative;
  z-index: 3;
}
#siteFooter a {
  white-space: nowrap;
}
#siteFooter a:hover {
  opacity: 0.5;
}

#siteFooter #footerLogo {
  margin: 0 auto 3em;
}

#siteFooter .navBar_inner .nav-row {
  font-size: .923rem;
  display: flex;
  flex-wrap: wrap;
}
#siteFooter .navBar_inner .sub-menu ul {
  display: block;
}
#siteFooter .navBar_inner .sub-menu ul li a {
  padding: 0.75em 0;
}



#siteFooter .sns-nav {
  font-family: 'Lato', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.5em auto 2.5em;
}
#siteFooter .sns-nav li {
  padding: .75em 1em;
}
#siteFooter .sns-nav li a {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}
#siteFooter .sns-nav li a svg {
  width: 17px;
  height: 17px;
}


#siteFooter .footer-bottom {
  font-family: 'Lato', sans-serif;
  font-size: .923rem;
  text-align: center;
}
#siteFooter .footer-bottom nav ul:not(.sns-nav) {
  font-family: var(--mincho);
  justify-content: center;
}
#siteFooter .footer-bottom nav ul:not(.sns-nav) li:not(:last-child) {
  border-right: 1px solid currentColor;
}
#siteFooter .footer-bottom nav ul:not(.sns-nav) li a {
  padding: 0 1em;
}

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

@media (max-width: 991px) {
  #siteFooter .logo__inner {
    width: 82px;
    margin: 0 auto;
  }
  #siteFooter .navBar_inner ul {
    flex-wrap: wrap;
    position: relative;
  }
  #siteFooter .navBar_inner ul::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color1);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
  }
  #siteFooter .navBar_inner ul li {
    border-right: 1px solid var(--border1);
    border-bottom: 1px solid var(--border1);
  }
  #siteFooter .navBar_inner ul li a {
    padding: 1.25em 0;
    text-align: center;
  }
  #siteFooter .navBar_inner .sub-menu {
    display: none;
  }
}
@media (max-width: 575px) {
  #siteFooter .navBar_inner ul li {
    flex: 0 0 calc(100%/2);
  }
}
@media (min-width: 576px) {
  #siteFooter .navBar_inner ul li {
    flex: 0 0 calc(100%/3);
  }
}
@media (min-width: 768px) {
  #siteFooter .navBar_inner ul li {
    flex: 0 0 calc(100%/4);
  }
}
@media (min-width: 992px) {
  #siteFooter {
    padding: 5em 0;
  }
  #siteFooter .logo__inner {
    width: 88px;
  }
  #siteFooter .navBar_inner .nav-row {
    flex-wrap: nowrap;
  }
  #siteFooter .navBar_inner .nav-row ul {
    display: block;
  }
  
  #siteFooter .navBar_inner ul li a {
    padding: 0.75em 0;
  }

  #siteFooter .navBar_inner .sub-menu ul li a {
    display: flex;
    align-items: center;
  }
  #siteFooter .navBar_inner .sub-menu ul li a::before {
    content: '-';
    margin-right: .75em;
    font-family: sans-serif;
  }
}


/* ==========================================================================
   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(--color1);
}
#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 > div.tel-link_width {
  flex: 0 0 25%;
}
#fixedBottomNav .buttons a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
}
#fixedBottomNav .buttons a svg {
  position: absolute;
  left: 10%;
}
#fixedBottomNav .buttons > div.tel-link a.btn_ft_tel {
  background: url(../img/icon-phone.svg) no-repeat center center / 1.615em;
}

#fixedBottomNav .bar {
  height: 7em;
  display: flex;
  justify-content: center;
  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;
  position: absolute;
  left: 3vw;
}
#fixedBottomNav .bar .bar-ttl svg {
  display: inline-block;
  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;
  font-weight: 700;
  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;
  }
}
