html {
  scroll-behavior: smooth;
}

*:focus {
  outline: none !important;
}

.z-index-1 {
  z-index: 1;
}

.keyvisual {
  position: relative;
  background: url(/img/ramen/carousel_1.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  height: 650px;
  background-color: #252525;
}
.keyvisual::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.text-link-primary {
  color: #252525 !important;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.text-link-primary:hover {
  color: #6f5337 !important;
}

.banner {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 2;
}
@media (max-width: 1440px) {
  .banner {
    right: 15px;
  }
}
@media (max-width: 992px) {
  .banner {
    bottom: 30%;
  }
}
@media (max-width: 576px) {
  .banner {
    right: 0;
    bottom: 0;
  }
}
.banner img {
  display: block;
  width: 220px;
  height: auto;
}
@media (max-width: 1440px) {
  .banner img {
    width: 200px;
  }
}
@media (max-width: 1120px) {
  .banner img {
    width: 100px;
  }
}
@media (max-width: 992px) {
  .banner img {
    width: 80px;
  }
}
@media (max-width: 576px) {
  .banner img {
    width: 100%;
  }
}

.banner__close-btn {
  position: absolute;
  top: -10px;
  right: 10px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #000000;
  border-radius: 50rem;
}
.banner__close-btn img {
  width: 10px;
  height: 10px;
}
@media (max-width: 1120px) {
  .banner__close-btn {
    right: 5px;
  }
}
@media (max-width: 992px) {
  .banner__close-btn {
    right: -2px;
  }
}
@media (max-width: 576px) {
  .banner__close-btn {
    right: -10px;
  }
}

.contact_img {
  position: absolute;
  bottom: 0px;
  right: -15px;
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@media (max-width: 992px) {
  .contact_img {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
}
@media (max-width: 768px) {
  .contact_img {
    -webkit-transform: scale(0.7, 0.7);
    transform: scale(0.7, 0.7);
  }
}
@media (max-width: 576px) {
  .contact_img {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
    right: -10px;
  }
}

.contact_img--center {
  position: absolute;
  top: 0;
  bottom: 0px;
  right: -15px;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  margin: auto;
}
@media (max-width: 1120px) {
  .contact_img--center {
    top: auto;
    bottom: 0px;
    right: -15px;
  }
}
@media (max-width: 992px) {
  .contact_img--center {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
}
@media (max-width: 768px) {
  .contact_img--center {
    -webkit-transform: scale(0.7, 0.7);
    transform: scale(0.7, 0.7);
  }
}
@media (max-width: 576px) {
  .contact_img--center {
    -webkit-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
}

.stack-section-top-90 {
  position: relative;
  margin-top: -90px;
  padding-top: 90px;
}

.btn-line {
  color: #ffffff !important;
  background-color: #07b53b;
}

.btn-line:hover, .btn-line:active {
  color: #ffffff !important;
  background-color: #000000;
}

@media (max-width: 576px) {
  .fs-sm-large {
    font-size: 18px !important;
  }
}

@media (max-width: 576px) {
  .fs-sm-default {
    font-size: 15px !important;
  }
}

.page-title {
  font-size: 80px;
  text-shadow: 0 0 16px rgba(69, 69, 69, 0.5);
}
@media (max-width: 576px) {
  .page-title {
    font-size: 45px;
  }
}

.bottom-link {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/img/cafe/circle_right_white.svg) no-repeat;
  background-size: contain;
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.service-link {
  display: block;
  width: 100%;
  max-width: 220px;
  height: 100%;
  aspect-ratio: 1/1;
  margin: auto;
  border: 1px solid #ddc499;
  border-radius: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 992px) {
  .service-link {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .service-link {
    aspect-ratio: auto;
  }
}
@media (max-width: 576px) {
  .service-link {
    max-width: 100%;
  }
}
.service-link:hover {
  background-color: rgba(221, 196, 153, 0.2);
}

.service-link__circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  padding-top: 2px;
  border: solid 1px #ddc499;
  border-radius: 50rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.service-link__circle:hover {
  padding-top: 4px;
}

.service-link__icon {
  display: block;
  width: 80px;
  height: 80px;
}
@media (max-width: 768px) {
  .service-link__icon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  .service-link__icon {
    width: 40px;
    height: 40px;
  }
}

.quality-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  display: block;
  width: 50%;
  height: 435px;
  background-color: #ddc499;
}

.quality-card {
  pointer-events: none;
  position: relative;
  height: 524px;
  overflow: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 576px) {
  .quality-card {
    height: 400px;
  }
}
.quality-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0 !important;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.quality-card * {
  z-index: 1;
}
.quality-card:hover {
  background-size: auto 110%;
}
.quality-card:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-animation-name: CardInnerShadowAnimation;
  animation-name: CardInnerShadowAnimation;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(rgba(0, 0, 0, 0.1)), to(rgb(0, 0, 0)));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgb(0, 0, 0));
}

.quality-card--process {
  background: url(/img/cafe/process.png) no-repeat;
  background-size: auto 100%;
  background-position: center;
}

.quality-card--color {
  background: url(/img/cafe/color.png) no-repeat;
  background-size: auto 100%;
  background-position: center;
}

.quality-card--painting {
  background: url(/img/cafe/painting.png) no-repeat;
  background-size: auto 100%;
  background-position: center;
}

@-webkit-keyframes CardInnerShadowAnimation {
  0% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  100% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(1.2);
    transform: scaleY(1.2);
  }
}

@keyframes CardInnerShadowAnimation {
  0% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  100% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: scaleY(1.2);
    transform: scaleY(1.2);
  }
}
.quality-title {
  height: 55px;
}
@media (max-width: 576px) {
  .quality-title {
    height: auto;
  }
}

.quality-link {
  pointer-events: auto;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(/img/cafe/circle_right_outline_white.svg) no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.quality-link:hover {
  background: url(/img/cafe/circle_right_white.svg) no-repeat;
}

.item-card__head {
  padding-left: 15px;
  padding-right: 15px;
}

.item-card__img {
  display: inline-block;
  width: auto;
  height: 132px;
}

.item-card__title {
  padding-left: 15px;
  padding-right: 15px;
}

.item-card__price {
  padding-left: 15px;
  padding-right: 15px;
}

.item-card__description {
  padding-left: 15px;
  padding-right: 15px;
}

.item-card__link {
  padding-left: 13px;
  padding-right: 13px;
}

.ranking-item {
  height: 100%;
}
@media (max-width: 576px) {
  .ranking-item {
    max-width: 300px;
    margin: auto;
  }
}

.ranking-icon {
  position: absolute;
  top: 20px;
}

.ranking-icon__num--mug {
  position: absolute;
  top: 6px;
  left: 15px;
}

.ranking-icon__num--cup-saucer {
  position: absolute;
  top: 6px;
  left: 17px;
}

.ranking-icon__num--plate {
  position: absolute;
  top: 6px;
  left: 14px;
}

.ranking-img {
  display: block;
  width: auto;
  height: 132px;
  margin: auto;
}

.voice-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 75%;
  height: 100%;
  background-color: #f8f3eb;
}

.trading-performance-splide .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 10px;
  overflow: hidden;
}
.trading-performance-splide .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.trading-performance-splide .splide__arrow svg {
  display: none;
}

.trading-performance__img {
  width: auto;
  height: 100px !important;
}

.instagram-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background-color: #ddc499;
  border-radius: 50rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.instagram-more img {
  width: 10px;
  height: 12px;
}
.instagram-more:hover {
  background-color: #ddc499;
}

.splide__arrow:disabled {
  display: none;
}

.instagram-splide .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 10px;
  overflow: hidden;
  text-align: center;
}
.instagram-splide .splide__slide a {
  height: 100%;
}
.instagram-splide .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.splide__arrow {
  width: 50px !important;
  height: 50px !important;
  background-color: #000 !important;
  opacity: 1 !important;
  -webkit-transition: 0.2s !important;
  transition: 0.2s !important;
}
.splide__arrow:hover {
  opacity: 0.7 !important;
}

.splide__arrow--next {
  right: -1rem !important;
}
@media (min-width: 1140px) {
  .splide__arrow--next {
    right: -25px !important;
  }
}
.splide__arrow--next::before {
  content: "";
  display: block;
  width: 15px;
  height: 18px;
  background: url(/img/cafe/arrow_white.svg) no-repeat;
  background-size: contain;
  margin-left: 1px;
}

.splide__arrow--prev {
  left: -1rem !important;
}
@media (min-width: 1140px) {
  .splide__arrow--prev {
    left: -25px !important;
  }
}
.splide__arrow--prev::before {
  content: "";
  display: block;
  width: 15px;
  height: 18px;
  background: url(/img/cafe/arrow_white.svg) no-repeat;
  background-size: contain;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  margin-right: 1px;
}

@media (min-width: 993px) {
  .ranking-mug-splide .splide__arrow--next,
  .ranking-cup-saucer-splide .splide__arrow--next,
  .ranking-plate-splide .splide__arrow--next,
  .ranking-mug-splide .splide__arrow--prev,
  .ranking-cup-saucer-splide .splide__arrow--prev,
  .ranking-plate-splide .splide__arrow--prev {
    display: none;
  }
}

.splide__arrow svg {
  display: none;
}

.faq__question {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 35px;
  padding-right: 20px;
}
.faq__question::before {
  content: "Q.";
  position: absolute;
  top: 10px;
  left: 15px;
}

.faq__answer {
  position: relative;
  padding-left: 35px;
  padding-right: 20px;
}
.faq__answer::before {
  content: "A.";
  position: absolute;
  top: 10px;
  left: 15px;
}

.gap-large {
  gap: 30px;
}