@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
変数
----------------------------------------*/
main.eat {
  background-color: var(--colorMain);
}

.sectionTitle {
  font-weight: 500;
  font-size: var(--size25px);
}

/* 各食事のコンテンツ
---------------------------------------------- */
@media screen and (max-width: 899px) {
  .eatContainerWrap {
    padding-bottom: 56px;
  }
}
@media screen and (min-width: 900px) {
  .eatContainerWrap {
    padding-bottom: 172px;
  }
}

.eatContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 899px) {
  .eatContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
@media screen and (min-width: 900px) {
  .eatContainer {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 899px) {
  .eatContainer + .eatContainer {
    margin-top: 64px;
  }
}
@media screen and (min-width: 900px) {
  .eatContainer + .eatContainer {
    margin-top: 152px;
  }
}
@media screen and (min-width: 900px) {
  .eatContainer.imageLeft {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 900px) {
  .eatContainer.imageRight {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 899px) {
  .eatContainer .areaImage {
    margin-inline: calc(50% - 50vw);
  }
}
@media screen and (min-width: 900px) {
  .eatContainer .areaImage {
    width: 60%;
  }
}
.eatContainer .areaImage .image {
  aspect-ratio: 992/744;
}
@media screen and (min-width: 900px) {
  .eatContainer .areaText {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 80px 40px;
  }
}
.eatContainer .areaText .text {
  line-height: 1.5;
}
@media screen and (max-width: 899px) {
  .eatContainer .areaText .text {
    font-size: var(--size14px);
    text-align: center;
    letter-spacing: -0.05em;
    margin-top: 20px;
  }
}
@media screen and (min-width: 900px) {
  .eatContainer .areaText .text {
    letter-spacing: -0.03em;
    margin-top: 40px;
  }
}
@media screen and (max-width: 899px) {
  .eatContainer .areaText .btnBox {
    margin-top: 32px;
  }
}
@media screen and (min-width: 900px) {
  .eatContainer .areaText .btnBox {
    margin-top: 64px;
  }
}/*# sourceMappingURL=eat.css.map */