@charset "UTF-8";

/* ==========================================================================
   Setting
========================================================================== */
:root {
  --white: #FFF;
  --l-gray: #FBFBFB;
  --l-gray2: #F5F6EE;
  --l-gray3: #E2E2E2;
  --gray: #DFDFDE;
  --d-gray: #727171;
  --black: #202020;
  --border1: #DFDFDE;
  --color1: #103381;
  --color1-h: #062C70;
  --red: #8E0505;

  --font1: "Bon Vivant", serif;
  --font2: "Marcellus", serif;
  --mincho: "Noto Serif JP", serif;
  --gothic: "Noto Sans JP", sans-serif;

  --header-height: 80px;
}

@media (min-width: 992px) {
  :root {
    --header-height: 7.692rem;
  }
}

/* ==========================================================================
   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;
  filter: blur(1rem);
  transform: translateY(2rem);
  transition: .6s ease-out;
  transition-property: opacity, filter, transform;
}
.iv.show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
@keyframes fadeinup {
  0% {
    opacity: 0;
    filter: blur(1.5rem);
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* ==========================================================================
   Base
========================================================================== */
html {
  font-family: var(--mincho);
  font-size: 81.3%;
  line-height: 2;
  letter-spacing: .1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 389px) {
  html {
    font-size: 3.34vw;
  }
}
@media (min-width: 576px) {
  html {
    font-size: min(2vw, 81.3%);
  }
}
@media (min-width: 768px) {
  html {
    font-size: min(1.5vw, 81.3%);
  }
}
@media (min-width: 992px) {
  html {
    font-size: min(1vw, 81.3%);
  }
}
@media (min-width: 1441px) {
  html {
    font-size: 87.5%;
  }
}

body {
  background: var(--white);
  color: var(--black);
}
body.navOpen {
  height: 100%;
  overflow: hidden;
}


body:not(:has(#mv)) #content {
  padding-top: var(--header-height);
}

#main {
  position: relative;
  z-index: 2;
}


@media (max-width: 991px) {
  ._pc {
    display: none !important;
  }
}
@media (min-width: 992px) {
  ._sp {
    display: none !important;
  }
}

/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  height: var(--header-height);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
}
#siteHeader::before {
  content: '';
  background: var(--border1);
  width: 100%;
  height: 1px;
  position: absolute;
  top: 100%;
  z-index: -1;
  left: 0;
  right: 0;
}
#siteHeader .inner-header {
  height: 100%;
  padding: 0 0 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: .1em;
  position: relative;
}
#siteHeader .inner-header::before {
  content: '';
  background: transparent;
  width: 100%;
  height: 100%;
  opacity: 1;
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
  right: 0;
  transition: background 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
#siteHeader.fixed .inner-header::before {
  background: var(--white);
}
@media (max-width: 991px) {
  #siteHeader:has(.on) .inner-header::before {
    background: var(--white);
  }
}
@media (min-width: 992px) {
  #siteHeader .inner-header {
    font-size: min(1em, .95vw);
    padding: 0 0 0 2em;
  }
}

#logo {
  width: min(14em, calc(100vw - 40px - 160px));
  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;
  background: url(../img/logo_w.svg) no-repeat center / 100%
}
#logo .logo__inner img,
#logo .logo__inner svg {
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

#siteHeader .header-r {
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
@media (min-width: 992px) {
  #logo {
    width: 15em;
  }
  #siteHeader .header-r {
    flex-basis: 100%;
  }
}



#siteHeader:has(.on) {
  position: fixed !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}
#siteHeader.standby {
  position: fixed;
  opacity: 0;
  transition: none;
}
#siteHeader.ready {
  position: fixed;
  opacity: 1;
  transform: translateY(-101%);
  transition: opacity .4s .4s cubic-bezier(0.16, 1, 0.3, 1), transform .4s cubic-bezier(0.16, 1, 0.3, 1);
}
#siteHeader.fixed {
  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);
}




body:has(#mv) #siteHeader:not(.fixed):not(:has(.on)) .inner-header::before {
  background: rgba(32, 32, 32, .05);
}
@media (max-width: 991px) {
  body:has(#mv) #siteHeader:not(.fixed):not(:has(.on)) #logo img {
    visibility: hidden;
  }
  body:has(#mv) #siteHeader:not(.fixed):not(:has(.on)) .nav-btn {
    color: var(--white);
  }
}
@media (min-width: 992px) {
  body:has(#mv) #siteHeader:not(.fixed) #logo img {
    visibility: hidden;
  }
  body:has(#mv) #siteHeader:not(.fixed) {
    color: var(--white);
  }
  body:has(#mv) #siteHeader:not(.fixed) .gNav nav li a:hover {
    color: var(--white);
    opacity: .5;
  }
  body:has(#mv) #siteHeader:not(.fixed) .book-btn {
    background: transparent;
  }
}


/* ==========================================================================
   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;
}


.gNav__inner {
  display: flex;
  width: 100%;
  height: 100%;
}
.gNav nav {
  width: 100%;
}
.gNav nav ul li a {
  line-height: 1.5rem;
  position: relative;
}

.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(--font2);
  font-weight: 500;
  text-transform: uppercase;
}
.sns-nav li a svg {
  fill: currentColor;
  width: 22px;
  height: 22px;
}

/* Nav Btn */
.nav-btn {
  background: transparent;
  color: var(--color1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 80px;
  height: 100%;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.nav-btn > div {
  width: 30px;
  height: 20px;
  position: relative;
}
.nav-btn > div::after {
  content: 'MENU';
  display: block;
  font-family: var(--font2);
  font-size: .769em;
  line-height: 1;
  letter-spacing: .12em;
  position: absolute;
  top: calc(50% + 12px);
  left: 50%;
  transform: translateX(-50%);
}
.nav-btn svg {
  display: block;
  position: absolute;
  top: -10px;
  right: -5px;
  transition: transform .2s;
}
.nav-btn i {
  display: block;
  background: currentColor;
  height: 1px;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  transition: transform .2s, right .2s, left .2s, top .2s .2s;
}
.nav-btn i:nth-of-type(1) { top: calc(50% - 12px); right: 15px; }
.nav-btn i:nth-of-type(2) { top: calc(50% - 6px); right: 10px; }
.nav-btn i:nth-of-type(3) { top: 50%; right: 5px; }



.gNav.on .nav-btn svg {
  transform: scale(0);
}
.gNav.on .nav-btn i {
  transition: transform .2s .2s, right .2s, left .2s, top .2s;
}
.gNav.on .nav-btn i:nth-of-type(1) {
  top: calc(50% - 6px);
  right: 3px;
  left: 3px;
  transform: rotate(45deg);
}
.gNav.on .nav-btn i:nth-of-type(2) {
  transform: translateX(55px);
  transition: transform .4s;
}
.gNav.on .nav-btn i:nth-of-type(3) {
  top: calc(50% - 6px);
  right: 3px;
  left: 3px;
  transform: rotate(-45deg);
}
@media (min-width: 992px) {
  .nav-btn {
    display: none;
  }
}

/* ==========================================================================
   PC Navigation
========================================================================== */
@media (min-width: 992px) {
  .gNav {
    flex: 1 1 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
    display: block !important;
  }
  .gNav nav,
  .gNav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .gNav nav .navBar_inner .pcNav {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-end;
    row-gap: 1rem;
    padding: 0 2em;
    height: 100%;
  }
  
  .gNav .main-nav li a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 .8em;
    font-size: 1em;
  }
  .gNav .main-nav li a:hover {
    color: var(--color1);
  }

  .gNav .sub-nav {
    margin-top: .125em;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: .25em;
  }
  .gNav nav .sub-nav li {
    display: flex;
    align-items: center;
  }
  .gNav nav .sub-nav ul:first-child li:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: .9em;
    background: currentColor;
    opacity: .5;
  }
  .gNav nav .sub-nav li a {
    padding: 0 1em;
    font-size: .923em;
    transition: color .2s;
  }
  .gNav nav .sub-nav li a:hover {
    color: var(--color1);
  }
  .gNav ul li a:has(svg) {
    display: flex;
    align-items: baseline;
    gap: .5em;
  }
  .gNav ul li a:has(.num) svg {
    width: .769em;
    height: .769em;
  }
  .gNav nav .sub-nav li a:has(.num) {
    font-size: 1rem;
    letter-spacing: .05em;
  }

  .nav-btn {
    display: none;
  }
}

/* ==========================================================================
   SP Navigation
========================================================================== */
@media (max-width: 991px) {
  .gNav__inner {
    width: 100%;
    max-width: 32rem;
    height: 100dvh;
    background: var(--white);
    color: var(--black);
    position: fixed;
    top: 0;
    right: 0;
    padding-top: 80px;
    opacity: 0;
    transition: opacity .6s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
  }
  .gNav nav {
    flex-direction: column;
    justify-content: flex-start;
  }
  .gNav .navBar {
    background: var(--white);
    border-top: 1px solid var(--border1);
  }
  .gNav .navBar_inner {
    height: 100%;
    overflow-y: auto;
    padding: 2em min(5.2vw, 40px);
  }
  .gNav nav ul {
    flex-wrap: wrap;
    gap: 5%;
  }
  .gNav .main-nav li {
    flex: 0 0 47.5%;
  }
  .gNav .main-nav li > a {
    color: var(--color1);
    border-bottom: 1px solid var(--border1);
    padding: 1.25em 0;
  }
  .gNav .main-nav li > a > span {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0;
  }

  .gNav .info {
    margin: 1em 0;
  }
  .gNav .info .logo__inner {
    margin: 2.5em 0 1.5em;
  }
  .gNav .info p {
    font-size: .846em;
    margin-top: .5em;
    margin-bottom: .5em;
  }
  .gNav .info-nav {
    justify-content: center;
    gap: 1.75em;
    font-size: .769em;
  }
  .gNav .btn {
    justify-content: center;
    margin-top: 1.5em;
  }

  /* OPEN */
  .gNav.on {
    display: block;
  }
  .gNav.on .gNav__inner {
    opacity: 1;
    pointer-events: auto;
  }

  .gNav nav .sub-menu ul li a em {
    padding-left: 1.5em;
  }
}

/* ==========================================================================
   Book Navigation
========================================================================== */
.bookNav__inner {
  display: block;
  width: 100%;
  max-width: 32rem;
  height: calc(100dvh - 70px);
  background: var(--color1);
  color: var(--white);
  position: absolute;
  top: 100%;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s cubic-bezier(0.19, 1, 0.22, 1);
}
.bookNav .bookNav__inner > div {
  height: 100%;
  overflow: hidden;
}
.bookNav .nav-book-row {
  padding: 4.5rem min(5.2vw, 40px);
  height: 100%;
  overflow-y: auto;
}
.bookNav .headline .en_ttl {
  color: var(--gray);
  font-size: 1.692em;
}
.bookNav .nav-book-row dd.buttons {
  width: 100%;
}
.bookNav .nav-book-row dd.buttons .btn {
  width: 100%;
  background: var(--white);
  color: var(--color1);
}
.bookNav .nav-book-row dd.buttons .btn:hover {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}
.bookNav.on .bookNav__inner {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 991px) {
  .bookNav {
    order: -1;
  }
}
@media (min-width: 992px) {
  .bookNav {
    border-left: 1px solid var(--border1);
  }
  .bookNav__inner {
    height: calc(100dvh - var(--header-height));
  }
}


.book-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: var(--color1);
  color: var(--white);
  white-space: nowrap;
  text-align: center;
  width: 80px;
  height: 100%;
  font-size: .769em;
  line-height: 1;
  letter-spacing: .12em;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.book-btn i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  line-height: 1;
  border: 1px solid var(--white);
  border-radius: 100%;
  transition: background .2s, color .2s;
}
.book-btn:hover i {
  background: var(--white);
  color: var(--color1);
}
.book-btn span {
  display: block;
}
.book-btn svg {
  display: block;
  width: 50%;
  fill: currentColor;
}
.book-btn em {
  display: block;
  font-style: normal;
  font-family: var(--font1);
  margin-bottom: 0.75em;
}
@media (min-width: 992px) {
  .book-btn {
    flex-direction: row;
    gap: 1.5em;
    width: 15em;
    font-size: .923em;
    line-height: 1.5;
    text-align: left;
  }
}

/* ==========================================================================
   Book List
========================================================================== */
.nav-book-row {
  text-align: center;
}
.nav-book-row dl {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.nav-book-row dt {
  padding-top: .25rem;
  margin-bottom: 1rem;
  font-size: 1.077em;
  line-height: 1.5;
  letter-spacing: .15em;
}
.nav-book-row dl:has(.buttons) dt {
  font-size: .923em;
}
.nav-book-row dt span {
  display: block;
  font-size: 1.077em;
  margin-bottom: .25em;
}
.nav-book-row dd p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.nav-book-row dd.buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 1.5rem auto 2.5rem;
}
.nav-book-row dd.buttons > p {
  margin: 0;
}
.nav-book-row dd .tel {
  color: inherit;
  font-size: 1.538em;
}
.nav-book-row dd .tel i {
  border: 1px solid currentColor;
}
.nav-book-row dd .tel + .reception {
  font-size: .846em;
  color: inherit;
}

@media (max-width: 991px) {
  .nav-book-row dl {
    max-width: 32em;
  }
}
@media (min-width: 576px) {
  .nav-book-row dd.buttons {
    width: 100%;
  }
  .nav-book-row .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Other contents
========================================================================== */
#other-contents .headline {
  color: var(--black);
}
#other-contents .card-img picture {
  aspect-ratio: 35 / 12;
}
@media (min-width: 576px) {
  #other-contents .card-img picture {
    aspect-ratio: 14 / 17;
  }
}

/* ==========================================================================
   Breadcrumb
========================================================================== */
.breadcrumb-wrapper {
  background: var(--color1);
  color: var(--white);
  border-bottom: 1px solid var(--border1);
  overflow: hidden;
  font-size: .846em;
  letter-spacing: .15em;
  padding: 1.5em 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 Information
========================================================================== */
#footer-info {
  border-top: 1px solid var(--border1);
  padding-top: 0;
  position: relative;
  z-index: 3;
}

#footer-info .headline .en_ttl {
  color: var(--gray);
  font-size: 1.75em;
  line-height: .96;
  padding-top: 0;
}
#footer-info .nav-book-row .ttl {
  display: block;
  text-align: center;
  margin-top: 1em;
}

#footer-info .nav-book-row dl {
  text-align: center;
  max-width: 100%;
  color: var(--d-gray);
}
#footer-info .nav-book-row dd.buttons {
  width: min(100%, 21em);
}
#footer-info .nav-book-row dl:has(.buttons) dt {
  font-size: .923em;
  margin-top: .5em;
}
#footer-info .nav-book-row dd .tel {
  color: var(--color1);
}
#footer-info .nav-book-row dd .tel i {
  border-color: var(--color1);
}


@media (min-width: 576px) {
  #footer-info .headline .en_ttl {
    font-size: 2.25em;
  }
  #footer-info .nav-book-row dd.buttons {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  #footer-info .nav-book-row dd.buttons > p {
    flex: 0 0 calc((100% - 20px)/2);
  }
}
@media (min-width: 768px) {
  #footer-info .headline .en_ttl {
    font-size: 3em;
  }
}
@media (min-width: 992px) {
  #footer-info .headline .en_ttl {
    font-size: 4em;
  }
  #footer-info .nav-book-row dt {
    font-size: 1.231em;
  }
  #footer-info .nav-book-row dl:has(.buttons) dt {
    font-size: 1.077em;
  }
  #footer-info .nav-book-row dd.buttons {
    margin: 2.5rem 0 3.5rem;
  }
  #footer-info .nav-book-row dd.buttons > p {
    flex: 0 0 calc((100% - 60px)/4);
  }
}
@media (min-width: 1200px) {
  #footer-info .headline .en_ttl {
    font-size: 5.5em;
  }
}

/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  background: var(--white);
  font-size: .769rem;
  letter-spacing: .1em;
  clear: both;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
#siteFooter a:hover {
  opacity: 0.5;
}

#siteFooter .inner-footer {
  background: var(--color1);
  color: var(--white);
  padding: 3.5em 0;
}
#siteFooter .info {
  padding-top: 1em;
  padding-bottom: 1em;
}
#siteFooter #footerLogo {
  max-width: 22em;
  margin: 0 auto 2.5em;
  text-align: center;
}
#siteFooter #footerLogo a {
  width: 100%;
  display: inline-block;
}
#siteFooter #footerLogo a img {
  width: 100%;
}
#siteFooter .address {
  font-size: 1.1em;
}

#siteFooter .navBar_inner > ul > li > span {
  display: block;
  font-size: 1.1em;
  letter-spacing: .2em;
  opacity: .5;
  margin-bottom: .75em;
  margin-top: 1em;
}
#siteFooter .navBar_inner .sub-menu {
  font-size: 1.2em;
  width: 100%;
  display: flex !important;
  justify-content: space-between;
  padding-bottom: 2em;
}
#siteFooter .navBar_inner .sub-menu ul {
  display: block;
}
#siteFooter .navBar_inner .sub-menu ul li a {
  padding: 0.5em 0;
  white-space: nowrap;
}

#siteFooter .info {
  letter-spacing: .2em;
}
#siteFooter .info-nav {
  margin: 1em 0 2.5em;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 1.5em;
  row-gap: .5em;
}

#siteFooter .info-nav li a {
  padding: 0.5em 0;
  white-space: nowrap;
}
@media (min-width: 992px) {
  #siteFooter .info-nav {
    flex-direction: column;
  }
}


#siteFooter .footer-bottom {
  padding: 2rem 0;
  text-align: center;
}
#siteFooter .footer-bottom .copyright {
  line-height: 0.6rem;
  opacity: .5;
}


@media (max-width: 991px) {
  #siteFooter .info {
    text-align: center;
  }
}

@media (min-width: 768px) {
  #siteFooter .navBar_inner .sub-menu {
    justify-content: flex-start;
    margin: 0 -2.5em;
  }
  #siteFooter .navBar_inner .sub-menu ul {
    padding: 0 2.5em;
    min-width: 14em;
  }
}
@media (min-width: 992px) {
  #siteFooter #footerLogo {
    margin-left: 0;
    text-align: left;
  }
  #siteFooter .inner-footer {
    padding: 5em 0;
  }
}

/* ==========================================================================
   Fixed Bottom Nav
========================================================================== */

#fixedBottom {
  width: 100%;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 991px) {
  body:has(#fixedBottom) #siteFooter {
    padding-bottom: 4.6rem;
  }
}
@media (min-width: 576px) {
  #fixedBottom {
    width: auto;
  }
}




#fixedBottom .float-card {
  margin: 5px;
  position: relative;
}
#fixedBottom .float-card__inner {
  font-size: .846rem;
  line-height: 1.5;
  letter-spacing: 0;
  background: var(--white);
  display: flex;
}
#fixedBottom .float-card__inner picture {
  flex: 0 0 27.5%;
}
#fixedBottom .float-card__inner picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#fixedBottom .float-card__inner .card-body {
  padding: 1.125em;
}
#fixedBottom .float-card__inner .card-body .sub_ttl,
#fixedBottom .float-card__inner .card-body .ttl {
  display: block;
  color: var(--color1);
  font-weight: 600;
  letter-spacing: .1em;
}
#fixedBottom .float-card__inner .card-body .sub_ttl {
  margin-bottom: .25em;
}
#fixedBottom .float-card__inner .card-body p {
  color: var(--d-gray);
  font-family: var(--gothic);
  font-weight: 400;
  letter-spacing: 0;
  margin-top: .75em;
}

#fixedBottom .float-card .float-close {
  width: 2.5em;
  height: 2.5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
#fixedBottom .float-card .float-close::before,
#fixedBottom .float-card .float-close::after {
  content: '';
  display: block;
  width: .6em;
  height: 1px;
  background: var(--d-gray);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
}
#fixedBottom .float-card .float-close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
@media (min-width: 576px) {
  #fixedBottom .float-card__inner {
    width: 380px;
  }
}
@media (min-width: 992px) {
  #fixedBottom .float-card {
    margin: 10px;
  }
}


#fixedBottom .buttons {
  display: flex;
  height: 4.6rem;
}
#fixedBottom .buttons > div {
  flex-basis: 100%;
}
#fixedBottom .buttons > div:not(:last-of-type) {
  border-right: 1px solid var(--white);
}
#fixedBottom .button {
  background: var(--color1);
  color: var(--white);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: .75em;
  font-size: 1.154rem;
  letter-spacing: .1em;
  line-height: 1.25;
  position: relative;
}
#fixedBottom .button:hover {
  background: var(--color1-h);
}
#fixedBottom .button .label {
  display: block;
  padding: .5em 2em;
  border-radius: 3em;
  background: var(--l-gray);
  color: var(--color1);
  font-family: var(--gothic);
  font-size: .846rem;
  font-weight: 500;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%);
}
#fixedBottom .button:has(.label) {
  padding-top: .5em;
}

@media (min-width: 576px) {
  #fixedBottom .button {
    width: 300px;
  }
}
