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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

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

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

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

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/**
 * 追記
 */
body {
  margin: 0;
  padding: 0;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover,
a:focus {
  opacity: 0.6;
  transition: opacity 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

/* ------------------------------
 * default
------------------------------ */
html {
  font-size: 100%;
}

body {
  font-size: clamp(0.875rem, 0.875rem + (1rem - 0.875rem) * (100vw - 375px) / (1380px - 375px), 1rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #0A101B;
  position: relative;
  background: url(../images/bg.png) repeat left top/auto auto;
}
@supports (width: 100cqw) {
  body {
    font-size: clamp(0.875rem, 1rem / 1380px * 100cqw, 1rem);
  }
}

.l-adjust {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

._screenhidden {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

@media screen and (max-width: 768px) {
  ._pc-only {
    display: none;
  }
}

._sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  ._sp-only {
    display: block;
  }
}

.header {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: fluid(10px, 30px) fluid(10px, 30px) 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@supports (width: 100cqw) {
  .header {
    padding: clamp(10px, 2.1739130435cqw, 30px) clamp(10px, 2.1739130435cqw, 30px) 0;
  }
}
.header__logo {
  max-width: fluid(80px, 138px);
  width: 100%;
}
@supports (width: 100cqw) {
  .header__logo {
    max-width: clamp(80px, 10cqw, 138px);
  }
}

.footer {
  text-align: center;
  padding: 115px 20px 20px;
  border-bottom: 9px solid #67363A;
}
.footer__note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 15px;
}
@media screen and (max-width: 768px) {
  .footer__note {
    flex-direction: column;
  }
}
.footer__note-item {
  font-size: 0.875rem;
  line-height: 1.71;
}
.footer__copy {
  font-size: 0.6875rem;
  margin-top: 30px;
}

.pagetop {
  width: 60px;
  height: 60px;
  background-color: #67363A;
  position: fixed;
  bottom: clamp(20px, 20px + (30px - 20px) * (100vw - 375px) / (1380px - 375px), 30px);
  right: clamp(20px, 20px + (30px - 20px) * (100vw - 375px) / (1380px - 375px), 30px);
  opacity: 0;
  transition: opacity 0.3s;
}
.pagetop.is-show {
  opacity: 1;
}
.pagetop__link {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.pagetop__link::before, .pagetop__link::after {
  content: "";
  width: 2px;
  height: 12px;
  margin: 0 auto;
  display: block;
  background-color: #fff;
  transform-origin: 50% 0px;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}
.pagetop__link::before {
  transform: rotate(45deg);
}
.pagetop__link::after {
  transform: rotate(-45deg);
}

.kv {
  width: 100%;
}
.kv__image {
  max-width: 100%;
  width: 100%;
  display: block;
}

.takeout {
  margin-top: clamp(60px, 60px + (120px - 60px) * (100vw - 375px) / (1380px - 375px), 120px);
}
.takeout__list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
}
@media screen and (max-width: 768px) {
  .takeout__list {
    flex-direction: column;
  }
}
.takeout__item {
  width: calc(33.3333333333% - 20px);
  padding-bottom: 20px;
  border: 1px solid #231811;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.4s linear, transform 0.5s linear;
}
@media screen and (max-width: 1100px) {
  .takeout__item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 768px) {
  .takeout__item {
    width: 100%;
  }
}
.takeout__item:nth-child(odd) {
  background-color: #DBCDB5;
}
.takeout__item:nth-child(odd) .takeout__def-bg {
  background-color: #DBCDB5;
}
.takeout__item:nth-child(even) {
  background-color: #FAFAFA;
}
.takeout__item:nth-child(even) .takeout__def-bg {
  background-color: #FAFAFA;
}
.takeout__item.is-show {
  opacity: 1;
  transform: translateY(0);
}
.takeout__photo {
  position: relative;
}
.takeout__image {
  max-width: 100%;
  width: 100%;
  display: block;
}
.takeout__detail {
  padding-top: 20px;
}
.takeout__heading {
  width: calc(100% - 30px);
  background-color: #67363A;
  position: relative;
}
@media screen and (max-width: 768px) {
  .takeout__heading {
    width: calc(100% - 20px);
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .takeout__heading.is-open {
    cursor: auto;
  }
}
.takeout__title {
  font-size: clamp(1.125rem, 1.125rem + (1.25rem - 1.125rem) * (100vw - 375px) / (1380px - 375px), 1.25rem);
  line-height: 1.3;
  color: #FAFAFA;
  min-height: 54px;
  padding-inline: clamp(30px, 30px + (40px - 30px) * (100vw - 375px) / (1380px - 375px), 40px) 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
@supports (width: 100cqw) {
  .takeout__title {
    font-size: clamp(1.125rem, 1.25rem / 1380px * 100cqw, 1.25rem);
  }
}
.takeout__title::before {
  content: "";
  width: 2px;
  height: 80%;
  display: block;
  background-color: #FAFAFA;
  position: absolute;
  top: 50%;
  left: clamp(20px, 20px + (30px - 20px) * (100vw - 375px) / (1380px - 375px), 30px);
  transform: translateY(-50%);
}
.takeout__title-small {
  font-size: 0.875rem;
  display: block;
}
.takeout__more {
  width: 18px;
  height: 18px;
  display: none;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 768px) {
  .takeout__more {
    display: block;
  }
}
.takeout__more::before, .takeout__more::after {
  content: "";
  width: 2px;
  height: 12px;
  margin: auto;
  display: block;
  background-color: #fff;
  transform-origin: 50% 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.takeout__more::before {
  transform: rotate(45deg);
}
.takeout__more::after {
  transform: rotate(-45deg);
}
.takeout__more.is-open {
  opacity: 0;
}
.takeout__wrap {
  padding: 15px clamp(20px, 20px + (30px - 20px) * (100vw - 375px) / (1380px - 375px), 30px) 10px;
}
@media screen and (max-width: 768px) {
  .takeout__wrap {
    height: 0;
    padding-block: 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .takeout__wrap.is-open {
    padding-block: 20px 10px;
  }
}
.takeout__meta {
  display: flex;
  gap: 0 15px;
}
.takeout__floor, .takeout__tel {
  font-family: "Lato", sans-serif;
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.takeout__floor::before, .takeout__tel::before {
  content: "";
  display: block;
}
.takeout__floor {
  font-size: clamp(1rem, 1rem + (1.25rem - 1rem) * (100vw - 375px) / (1380px - 375px), 1.25rem);
  font-weight: 700;
}
@supports (width: 100cqw) {
  .takeout__floor {
    font-size: clamp(1rem, 1.25rem / 1380px * 100cqw, 1.25rem);
  }
}
.takeout__floor::before {
  width: 12px;
  height: 16px;
  background: url(../images/icon-floor.svg) no-repeat center center;
}
.takeout__tel {
  font-size: 1rem;
  font-weight: 400;
}
.takeout__tel::before {
  width: 17px;
  height: 14px;
  background: url(../images/icon-tel.svg) no-repeat center center;
}
.takeout__tel-text, .takeout__tel-link {
  color: inherit;
}
.takeout__tel-text {
  display: inline;
}
@media screen and (max-width: 768px) {
  .takeout__tel-text {
    display: none;
  }
}
.takeout__tel-link {
  display: none;
}
@media screen and (max-width: 768px) {
  .takeout__tel-link {
    display: inline;
  }
}
.takeout__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  margin-top: 15px;
}
.takeout__note {
  font-size: 0.875rem;
  line-height: 1.714;
  margin-top: 10px;
}
.takeout__budget {
  margin-top: 15px;
  position: relative;
}
.takeout__budget::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #231811;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.takeout__budget .takeout__def-bg {
  font-size: 0;
  padding-right: 10px;
  display: inline-block;
  position: relative;
  z-index: 5;
}
.takeout__budget .takeout__def-dt,
.takeout__budget .takeout__def-dd {
  font-size: 1rem;
  color: #B70000;
  display: inline;
}
.takeout__budget .takeout__def-dt {
  white-space: nowrap;
}
.takeout__budget .takeout__def-dt::after {
  content: "：";
}
.takeout__sales {
  margin-top: 15px;
}
.takeout__sales .takeout__def {
  position: relative;
}
.takeout__sales .takeout__def-wrap {
  text-indent: -1em;
  padding-left: 1em;
  position: relative;
}
.takeout__sales .takeout__def-wrap::before {
  content: "・";
  font-size: 1rem;
  line-height: 1.81;
  width: 1em;
  height: 1em;
  position: absolute;
  display: block;
}
.takeout__sales .takeout__def-wrap:not(.takeout__def-flex) {
  text-indent: 0;
  padding-left: 0;
}
.takeout__sales .takeout__def-dt,
.takeout__sales .takeout__def-dd {
  font-size: 1rem;
  line-height: 1.81;
}
.takeout__sales .takeout__def-flex .takeout__def-dt,
.takeout__sales .takeout__def-flex .takeout__def-dd {
  display: inline;
}
.takeout__sales .takeout__def-dt {
  padding-left: 1em;
}
.takeout__sales .takeout__def-dt::after {
  content: "／";
  padding-left: 0.25rem;
}
.takeout__sales .takeout__def-dt.takeout__def-dt-delivery::after {
  content: "：";
}
.takeout__sales .takeout__def-wrap:not(.takeout__def-flex) .takeout__def-dt::after {
  content: none;
}
.takeout__sales .takeout__def-wrap:not(.takeout__def-flex) .takeout__def-dd {
  padding-left: 1em;
}
.takeout__btn {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.takeout__btn-link {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  max-width: 240px;
  width: 100%;
  height: clamp(44px, 44px + (48px - 44px) * (100vw - 375px) / (1380px - 375px), 48px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #67363A;
}/*# sourceMappingURL=style.css.map */