@charset "UTF-8";
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

/* ====================================================
HTML
==================================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-feature-settings: "palt";
  font-weight: 400;
  line-height: 2;
  background: #f8f4f1;
  color: #2b4758;
  font-family: "IBM Plex Sans JP", sans-serif;
  position: relative;
  letter-spacing: 0.05em;
  z-index: 1;
  overflow-x: clip;
}
@media screen and (max-width: 834px) {
  body {
    font-size: 14px;
  }
}

.inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

.en {
  font-family: "Montserrat", sans-serif;
}

.ja {
  font-family: "IBM Plex Sans JP", sans-serif;
}

/* ====================================================
Animation
==================================================== */
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1.5s;
  filter: blur(1.5px);
  -webkit-filter: blur(1.5px);
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0px);
  -webkit-filter: blur(0px);
}

/*文字アニメーション*/
.smoothText {
  overflow: hidden;
}

span.smoothTextTrigger {
  transition: 0.8s ease-in-out;
  transform: translate3d(0, 100%, 0);
  transform-origin: left;
  display: block;
}

span.smoothTextTrigger.smoothTextAppear {
  transform: translate3d(0, 0, 0);
}

/* ====================================================
floating-banner
==================================================== */
.floating-banner {
  position: fixed;
  background: #ffffff;
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  width: 320px;
  height: 60px;
  aspect-ratio: 1/1;
  border-radius: 12px;
  box-shadow: 0px -1px 20px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 834px) {
  .floating-banner {
    max-width: 300px;
    border-radius: 5px 5px 0 0;
    height: 56px;
    width: 90%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.floating-banner.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.floating-banner:hover {
  background-position: 100% 100%;
}
.floating-banner nav {
  width: 100%;
  padding: 0 12%;
}
.floating-banner ul {
  display: flex;
  justify-content: space-between;
}
.floating-banner li {
  width: 50%;
}
.floating-banner li:first-child {
  border-right: 2px dotted #bbbbbb;
  padding-right: 10px;
}
.floating-banner li:last-child {
  padding-left: 10px;
}
.floating-banner a {
  display: flex;
  align-items: center;
  font-size: 16px;
  justify-content: center;
}
@media screen and (max-width: 834px) {
  .floating-banner a {
    font-size: 15px;
  }
}
.floating-banner a p {
  font-size: 16px;
  color: #2b4758;
  margin-left: 4%;
  font-weight: 400;
}
@media screen and (max-width: 834px) {
  .floating-banner a p {
    font-size: 15px;
  }
}
.floating-banner a p span.en {
  font-weight: 300;
}
.floating-banner a.fb-web img {
  width: 20px;
  height: auto;
}
.floating-banner a.fb-hours img {
  width: 19px;
  height: auto;
}/*# sourceMappingURL=floating-banner.css.map */