#lead {
  padding: 20vw 0 10vw;
}

#lead .row {
  position: relative;
  z-index: 1;
}

#lead .row .deco1 {
  width: 16.3vw;
  position: absolute;
  top: -20vw;
  right: -5vw;
  z-index: -1;
}

#lead .row .deco2 {
  width: 57.9vw;
  position: absolute;
  top: -20vw;
  right: 0;
  z-index: -1;
}

#lead .row .img {
  margin-bottom: 8vw;
}

#lead .row .desc .group .txt {
  margin-bottom: 20px;
}

#lead .row .desc .group .txt:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  #lead {
    padding: 135px 0 100px;
  }

  #lead .wrap {
    width: 100%;
    max-width: 1260px;
    padding: 0 30px;
    margin: 0 auto;
  }

  #lead .row {
    margin-left: -80px;
    display: flex;
    justify-content: space-between;
  }

  #lead .row .deco1 {
    width: 126px;
    top: 39px;
    right: -6px;
  }

  #lead .row .deco2 {
    width: 343px;
    top: 92px;
    right: -206px;
  }

  #lead .row .img {
    margin-bottom: 0;
  }

  #lead .row .desc {
    width: 485px;
    flex-shrink: 0;
    margin-top: 160px;
    margin-left: 40px;
  }

  #lead .row .desc h2 {
    line-height: 80px;
    letter-spacing: 0.05em;
    margin-bottom: 84px;
  }

  #lead .row .desc .group .txt {
    font-size: 18px;
    line-height: 40px;
    margin-bottom: 40px;
    letter-spacing: normal;
  }
}

#scene {
  padding: 10vw 0 15vw;
  position: relative;
  z-index: 1;
}

#scene::before {
  content: "";
  position: absolute;
  background: url(../img/lunch/pattern.png) no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 1427/507;
  width: 310vw;
  height: auto;
  top: 0;
  left: -110vw;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

#scene h2 {
  text-align: center;
  position: relative;
  padding-top: 18.1vw;
  margin-bottom: 10vw;
}

#scene h2::before {
  content: "";
  position: absolute;
  background: url(../img/lunch/logo_ico.png) no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 124/71;
  width: 16.5vw;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
}

#scene .js-scene {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: calc(100vh - 70px);
  padding: 4vw 0;
  z-index: 2;
}

#scene .js-scene .bg-para {
  height: 100%;
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
}

#scene .js-scene .bg-para .img_parallax {
  position: absolute;
  inset: 0;
  clip: rect(0, auto, auto, 0);
  margin-bottom: 0;
}

#scene .js-scene .bg-para .img_parallax::before {
  content: "";
  background: url(../img/shared/main_bg.jpg) repeat;
  position: fixed;
  inset: 0 calc(50% - 50vw);
}

#scene .js-scene .img {
  position: relative;
  width: 100%;
  height: calc(100% - 60vw - 181px);
  z-index: 1;
  margin-bottom: 1.5vh;
}

#scene .js-scene .img .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#scene .js-scene .img .photo.active {
  opacity: 1;
  visibility: visible;
}

#scene .js-scene .img .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#scene .js-scene .desc {
  width: 100%;
  flex-shrink: 0;
}

#scene .js-scene .desc .group-ttl {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 2vh;
  margin-bottom: 2vh;
  display: flex;
  flex-direction: column;
  gap: 0.5vh;
}

#scene .js-scene .desc .group-ttl .ttl {
  display: flex;
  align-items: flex-start;
  gap: 6vw;
}

#scene .js-scene .desc .group-ttl .ttl.active .num {
  font-size: 8vw;
}

#scene .js-scene .desc .group-ttl .ttl.active .tit {
  margin-top: 0.6vw;
  font-size: 5.4vw;
  font-weight: 500;
  color: #000;
}

#scene .js-scene .desc .group-ttl .ttl .num {
  width: 7vw;
  font-size: 4vh;
  font-weight: 400;
  font-family: var(--ship);
  letter-spacing: normal;
  line-height: 1;
  color: #000;
}

#scene .js-scene .desc .group-ttl .ttl .tit {
  font-size: 4.3vw;
  font-weight: 400;
  font-family: var(--ship);
  letter-spacing: 0.1em;
  line-height: 1.8em;
  color: #978676;
}

#scene .js-scene .desc .group-txt {
  min-height: 181px;
  position: relative;
  display: block;
}

#scene .js-scene .desc .group-txt .txt {
  font-size: 14px;
  line-height: 2.15em;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

#scene .js-scene .desc .group-txt .txt.active {
  opacity: 1;
  pointer-events: auto;
}

@media only screen and (min-width: 768px) {
  #scene {
    padding: 115px 0 169px;
  }

  #scene::before {
    width: 1427px;
    top: -30px;
    left: -17px;
    right: 0;
  }

  #scene .wrap {
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
  }

  #scene h2 {
    padding-top: 79px;
    margin-bottom: 98px;
  }

  #scene h2::before {
    width: 66px;
  }

  #scene .js-scene {
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: unset;
    width: 100%;
    height: calc(100vh - 100px);
    padding: 0;
    gap: 50px;
    margin-right: calc(50% - 50vw);
  }

  #scene .js-scene .img {
    width: calc(50% + 140px);
    height: calc(100vh - 100px);
    margin-bottom: 0;
  }

  #scene .js-scene .desc {
    padding-left: 40px;
    width: 446px;
    position: relative;
    padding-bottom: 27px;
    align-self: center;
  }

  #scene .js-scene .desc .group-ttl {
    padding-bottom: 66px;
    margin-bottom: 49px;
    gap: 35px;
  }

  #scene .js-scene .desc .group-ttl .ttl {
    gap: 24px;
  }

  #scene .js-scene .desc .group-ttl .ttl:hover .tit {
    color: #000;
  }

  #scene .js-scene .desc .group-ttl .ttl.active .num {
    font-size: 67px;
  }

  #scene .js-scene .desc .group-ttl .ttl.active .tit {
    margin-top: 0;
    font-size: 30px;
    line-height: 56px;
  }

  #scene .js-scene .desc .group-ttl .ttl .num {
    text-align: center;
    margin-top: 4px;
    width: 54px;
    font-size: 36px;
  }

  #scene .js-scene .desc .group-ttl .ttl .tit {
    font-size: 26px;
    line-height: 46px;
    letter-spacing: normal;
  }

  #scene .js-scene .desc .group-txt {
    min-height: 181px;
  }

  #scene .js-scene .desc .group-txt .txt {
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0.05em;
    padding: 0 12px;
    box-sizing: border-box;
  }
}

#message {
  position: relative;
  z-index: 1;
}

#message .bg {
  height: 80vw;
  position: relative;
}

#message .bg img {
  object-position: center right;
}

#message .desc {
  padding: 0 5%;
  box-sizing: border-box;
  margin-top: 10vw;
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  #message {
    height: 800px;
  }

  #message .bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    height: 100%;
  }

  #message .desc {
    width: 520px;
    padding: 0;
    margin-top: 0;
    position: absolute;
    top: 192px;
    left: 149px;
  }

  #message .desc h2 {
    color: #fff;
    line-height: 80px;
    margin-bottom: 49px;
    letter-spacing: 0.025em;
  }

  #message .desc .txt {
    width: 485px;
    color: #fff;
    letter-spacing: 0.05em;
  }
}

#reco {
  padding: 20vw 0 20vw;
  position: relative;
  z-index: 1;
}

#reco::before {
  content: "";
  position: absolute;
  background: url(../img/lunch/pattern.png) no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 1427/507;
  width: 310vw;
  height: auto;
  top: 0;
  left: -110vw;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

#reco h2 {
  font-size: 8.8vw;
  font-weight: 400;
  font-family: var(--ship);
  letter-spacing: 0.2em;
  line-height: 2em;
  color: #000;
  text-align: center;
  margin-bottom: 10vw;
  position: relative;
  padding-top: 18.1vw;
}

#reco h2::before {
  content: "";
  position: absolute;
  background: url(../img/index/sozai_ico.png) no-repeat;
  background-size: contain;
  background-position: center;
  aspect-ratio: 124/71;
  width: 16.5vw;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
}

#reco .note {
  font-size: 14px;
  text-align: center;
  margin-bottom: 10vw;
}

#reco h3 {
  text-align: center;
  position: relative;
  padding-bottom: 4vw;
  margin-bottom: 10vw;
}

#reco h3::before {
  content: "";
  position: absolute;
  background: #3f3226;
  width: 12vw;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

#reco .list {
  padding-bottom: 20vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#reco .list .item {
  margin-bottom: 10vw;
}

#reco .list .item:last-child {
  margin-bottom: 0;
}

#reco .list .item .img {
  margin-bottom: 6vw;
}

#reco .list .item .desc dl {
  text-align: center;
  font-size: 6vw;
  line-height: 1.8em;
  position: relative;
  padding-bottom: 4vw;
  margin-bottom: 4vw;
}

#reco .list .item .desc dl::before {
  content: "";
  position: absolute;
  background: #756e67;
  width: 12vw;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

#reco .list .item .desc dl dt {
  font-size: 100%;
  letter-spacing: 0.15em;
}

#reco .list .item .desc dl dt .small {
  font-size: 80%;
}

#reco .list .item .desc dl dd {
  font-family: var(--amiri);
  font-size: 100%;
  letter-spacing: 0.05em;
}

#reco .list .item .desc dl dd .unit {
  font-family: var(--ship);
  font-size: 66.6666666667%;
}

#reco .list .item .desc .sub {
  text-align: center;
  font-size: 5.5vw;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  margin-bottom: 4vw;
}

#reco .list .item .desc .sub:last-child {
  margin-bottom: 0;
}

#reco .list .item .desc .txt {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  #reco {
    padding: 127px 0 50px;
  }

  #reco::before {
    width: 1427px;
    top: 21px;
    left: -17px;
    right: 0;
  }

  #reco .wrap {
    max-width: 1440px;
    padding: 0 30px;
    margin: 0 auto;
    width: 100%;
  }

  #reco h2 {
    font-size: 40px;
    padding-top: 79px;
    margin-bottom: 18px;
  }

  #reco h2::before {
    width: 66px;
  }

  #reco .note {
    font-size: 14px;
    margin-bottom: 134px;
  }

  #reco h3 {
    padding-bottom: 10px;
    margin-bottom: 94px;
  }

  #reco h3::before {
    width: 75px;
  }

  #reco .list {
    display: flex;
    justify-content: center;
    padding-bottom: 95px;
    gap: 20px;
  }

  #reco .list .item {
    width: 50%;
    max-width: 680px;
    margin-bottom: 0;
  }

  #reco .list .item .img {
    margin-bottom: 49px;
  }

  #reco .list .item .desc dl {
    font-size: 30px;
    line-height: 52px;
    padding-bottom: 12px;
    margin-bottom: 34px;
  }

  #reco .list .item .desc dl::before {
    width: 114px;
    height: 1px;
  }

  #reco .list .item .desc dl dt {
    letter-spacing: 0.05em;
  }

  #reco .list .item .desc .sub {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
  }

  #reco .list .item .desc .txt {
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.05em;
  }
}

#course {
  padding: 10vw 0 10vw;
}

#course h2 {
  text-align: center;
  margin-bottom: 10vw;
}

#course .wrap-slider {
  padding-top: 10vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 8vw;
}

#course .wrap-slider .slick-dots {
  position: absolute;
  top: -6vw;
  right: 0;
  justify-content: flex-end;
}

#course .wrap-slider .slick-slide {
  line-height: 1em;
}

#course .list {
  display: flex;
  justify-content: center;
  gap: 2vw;
  margin-bottom: 10vw;
}

#course .list .photo {
  width: 50%;
}

#course .desc {
  margin-bottom: 10vw;
}

#course .desc .sub {
  font-size: 5.5vw;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  margin-bottom: 4vw;
}

#course .desc dl {
  margin-bottom: 4vw;
  font-size: 7vw;
  line-height: 1.8em;
}

#course .desc dl dt {
  font-size: 100%;
  letter-spacing: 0.15em;
}

#course .desc dl dd {
  text-align: right;
  font-family: var(--amiri);
  font-size: 100%;
  letter-spacing: 0.05em;
}

#course .desc dl dd .unit {
  font-family: var(--ship);
  font-size: 66.6666666667%;
}

#course .desc .txt {
  margin-bottom: 20px;
}

#course .desc .note {
  font-size: 14px;
}

#course .bnr-course a {
  box-sizing: border-box;
  background: #fff;
  border: 2px solid #1f1710;
  position: relative;
  display: flex;
  flex-direction: column;
}

#course .bnr-course a .desc-bnr {
  padding: 5vw 5vw 19vw;
  box-sizing: border-box;
}

#course .bnr-course a .tit {
  text-align: center;
  font-size: 6.5vw;
  font-weight: 400;
  font-family: var(--ship);
  letter-spacing: 0.1em;
  line-height: 1.8em;
  color: #000;
}

#course .bnr-course a .tit .small {
  font-size: 66.6666666667%;
}

#course .bnr-course a .btn-fk {
  width: 13vw;
  height: 13vw;
  position: absolute;
  bottom: 2vw;
  right: 2vw;
}

@media only screen and (min-width: 768px) {
  #course {
    padding: 54px 0 0;
  }

  #course .wrap {
    width: 100%;
    max-width: 1260px;
    padding: 0 30px;
    margin: 0 auto;
  }

  #course h2 {
    text-align: left;
    white-space: nowrap;
    line-height: 66px;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    right: 18px;
    letter-spacing: 0.15em;
  }

  #course .wrap-slider {
    padding-top: 50px;
    margin-left: -130px;
    margin-right: calc(50% - 190px);
    margin-bottom: 66px;
  }

  #course .wrap-slider .slick-dots {
    top: -46px;
    right: 13px;
  }

  #course .wrap-slider .photo {
    height: 714px;
  }

  #course .wrap-slider .photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  #course .list {
    display: flex;
    justify-content: flex-end;
    margin-right: -24px;
    gap: 23px;
    margin-bottom: 91px;
  }

  #course .list .photo {
    width: 50%;
    max-width: 567px;
  }

  #course .desc {
    width: 340px;
    margin-bottom: 0;
    position: absolute;
    top: 343px;
    right: 40px;
  }

  #course .desc .sub {
    font-size: 24px;
    line-height: 50px;
    margin-bottom: 26px;
    letter-spacing: normal;
  }

  #course .desc dl {
    font-size: 30px;
    line-height: 56px;
    margin-bottom: 21px;
  }

  #course .desc .txt {
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }

  #course .desc .note {
    font-size: 14px;
    letter-spacing: normal;
  }

  #course .bnr-course a {
    display: flex;
    flex-direction: row;
    height: 200px;
  }

  #course .bnr-course a .img {
    width: calc(100% - 488px);
    height: 100%;
  }

  #course .bnr-course a .img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  #course .bnr-course a .desc-bnr {
    width: 488px;
    flex-shrink: 0;
    padding: 45px 65px 45px 30px;
  }

  #course .bnr-course a .tit {
    font-size: 30px;
    line-height: 44px;
    letter-spacing: normal;
  }

  #course .bnr-course a .btn-fk {
    width: 56px;
    height: 56px;
    bottom: 16px;
    right: 16px;
  }
}

#reserv {
  padding: 10vw 0 10vw;
}

@media only screen and (min-width: 768px) {
  #reserv {
    padding: 119px 0 117px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1260px) {
  #course .wrap-slider {
    margin-right: calc(50% - 100px);
  }
}

@media screen and (min-width: 768px) and (max-height: 800px) {
  #scene .js-scene .desc .group-ttl {
    gap: 15px;
  }

  #scene .js-scene .desc .group-ttl {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 768px) and (max-height: 700px) {
  #scene .js-scene .desc .group-ttl .ttl .tit {
    font-size: 22px;
    line-height: 38px;
  }

  #scene .js-scene .desc .group-ttl .ttl.active .tit {
    margin-top: 0;
    font-size: 25px;
    line-height: 42px;
  }

  #scene .js-scene .desc .group-ttl .ttl .num {
    font-size: 32px;
  }

  #scene .js-scene .desc .group-ttl .ttl.active .num {
    font-size: 56px;
  }

  #scene .js-scene .desc {
    padding-bottom: 10px;
  }
}