@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.restaurant-meal {
  padding-block: 5.625rem 6.25rem;
  background-color: #F2FAFF;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .restaurant-meal {
    padding-block: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .restaurant-meal {
    padding-block: 3.75rem;
  }
}

.restaurant-meal__inner.inner {
  max-width: 87.5rem;
  position: relative;
  padding-inline: 0;
}
@media screen and (max-width: 767px) {
  .restaurant-meal__inner.inner {
    max-width: 37.5rem;
    padding-inline: 1.25rem;
  }
}

.restaurant-meal__inner.inner::after {
  content: "";
  position: absolute;
  top: -15.8125rem;
  right: 10rem;
  width: 9.875rem;
  height: 6.25rem;
  background-image: url("../images/renovation/common/twofish_illust.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .restaurant-meal__inner.inner::after {
    width: 20%;
    top: -17%;
    right: 3%;
  }
}

.restaurant-meal__title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: bold;
  color: #005bac;
}
@media screen and (max-width: 767px) {
  .restaurant-meal__title {
    font-size: 1.5rem;
  }
}

.restaurant-meal__image {
  aspect-ratio: 913/486;
  margin-top: 2.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .restaurant-meal__image {
    margin-top: 1.25rem;
  }
}
.restaurant-meal__image .splide {
  height: 100%;
}
.restaurant-meal__image .splide .splide__track {
  height: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
}
.restaurant-meal__image .splide .splide__list {
  height: 100%;
}
.restaurant-meal__image .splide .splide__slide {
  height: 100%;
}
.restaurant-meal__image .splide .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.restaurant-meal__image .splide .splide__arrows .splide__arrow {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.restaurant-meal__image .splide .splide__arrows .splide__arrow:hover {
  opacity: 1;
  transform: scale(1.1);
}
.restaurant-meal__image .splide .splide__arrows .splide__arrow svg {
  fill: #005bac;
  width: 1rem;
  height: 1rem;
}
@media screen and (max-width: 767px) {
  .restaurant-meal__image .splide .splide__arrows .splide__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
  .restaurant-meal__image .splide .splide__arrows .splide__arrow svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.restaurant-meal__image .splide .splide__arrows .splide__arrow--prev {
  left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .restaurant-meal__image .splide .splide__arrows .splide__arrow--prev {
    left: 0.625rem;
  }
}
.restaurant-meal__image .splide .splide__arrows .splide__arrow--next {
  right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .restaurant-meal__image .splide .splide__arrows .splide__arrow--next {
    right: 0.625rem;
  }
}
.restaurant-meal__image .splide .splide__pagination {
  bottom: 1.25rem;
}
.restaurant-meal__image .splide .splide__pagination .splide__pagination__page {
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #ffffff;
  width: 0.75rem;
  height: 0.75rem;
  margin: 0 0.25rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.restaurant-meal__image .splide .splide__pagination .splide__pagination__page.is-active {
  background: #005bac;
  opacity: 1;
  transform: scale(1.2);
}
@media screen and (max-width: 767px) {
  .restaurant-meal__image .splide .splide__pagination .splide__pagination__page {
    width: 0.625rem;
    height: 0.625rem;
    margin: 0 0.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .restaurant-meal__image .splide .splide__pagination {
    bottom: 0.9375rem;
  }
}
.restaurant-meal__image > img {
  border-radius: 1.25rem;
  height: 100%;
  object-fit: cover;
}

.restaurant-meal__content {
  max-width: 60.625rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .restaurant-meal__content {
    padding-inline: initial;
    max-width: 100%;
    margin-top: 1.25rem;
  }
}

.restaurant-meal__desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .restaurant-meal__desc {
    font-size: 0.875rem;
  }
}

.restaurant-meal__note {
  font-size: 1rem;
  color: #c13c3c;
  line-height: 1.8;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .restaurant-meal__note {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.restaurant-chef {
  margin-top: 7.75rem;
}
@media screen and (max-width: 767px) {
  .restaurant-chef {
    margin-top: 3.75rem;
  }
}

.restaurant-chef__inner.inner {
  display: flex;
  align-items: flex-start;
  gap: 5.75rem;
}
@media screen and (max-width: 767px) {
  .restaurant-chef__inner.inner {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.restaurant-chef__container {
  width: 36%;
  flex: none;
}
@media screen and (max-width: 767px) {
  .restaurant-chef__container {
    width: 100%;
  }
}

.restaurant-chef__photo {
  aspect-ratio: 432/297;
}
.restaurant-chef__photo img {
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .restaurant-chef__photo {
    width: 100%;
  }
}

.restaurant-chef__role {
  font-size: 1.125rem;
  font-weight: bold;
  color: #005bac;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .restaurant-chef__role {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.restaurant-chef__name {
  font-size: 1.75rem;
  font-weight: bold;
  color: #005bac;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .restaurant-chef__name {
    font-size: 1.25rem;
  }
}

.restaurant-chef__nickname {
  font-size: 0.9375rem;
  margin-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .restaurant-chef__nickname {
    margin-left: 0.5rem;
  }
}

.restaurant-chef__en {
  font-size: 1.125rem;
  color: #005bac;
}
@media screen and (max-width: 767px) {
  .restaurant-chef__en {
    font-size: 1rem;
  }
}

.restaurant-chef__one-word {
  font-size: 1.375rem;
  font-weight: bold;
  color: #005bac;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .restaurant-chef__one-word {
    font-size: 1.125rem;
    margin-top: 0.625rem;
  }
}

.restaurant-chef__text {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .restaurant-chef__text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}

.restaurant-chef__profile {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  display: grid;
  gap: 0.125rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .restaurant-chef__profile {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.restaurant-chef__profile-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.restaurant-guidance {
  display: grid;
  gap: 2.875rem;
}
@media screen and (max-width: 767px) {
  .restaurant-guidance {
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.restaurant-guidance__desc {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .restaurant-guidance__desc {
    font-size: 0.875rem;
  }
}

/*# sourceMappingURL=restaurant.css.map */
