@charset "UTF-8";

/*----------------------------------------------------
  .about
----------------------------------------------------*/
.about-blk {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-blk:not(:last-of-type) {
  margin-bottom: 80px;
}

.about-blk__img {
  width: 45%;
  position: relative;
}

.about-blk2 .about-blk__img {
  order: 1;
}

.about-blk__img::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.about-blk__img>img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.about-blk__inner {
  width: 45%;
}

.about-blk2 .about-blk__inner {
  order: 2;
}

.about-blk__lead {
  display: block;
  line-height: 1.6;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.about-blk__lead-sub {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
}

.about-blk__lead-sub::after {
  display: block;
  content: '';
  flex: 1;
  border-top: 1px solid #ccc;
  margin-left: 10px;
}

.about-blk__lead-main {
  font-size: 3.4rem;
  font-weight: 700;
}

.about-blk__txt>p {
  font-size: 1.8rem;
}

/*----------------------------------------------------
  .menu
----------------------------------------------------*/
/*----
.menu-body {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}
----*/
.menu {
  background: #F6F5F5;
}

.coupon {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 50px auto;
  padding: 20px 60px;
  box-sizing: border-box;
  background: #E6E5E3;
  border: 2px solid #AA9883;
}

.coupon-txt-sub {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.coupon-box>dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-size: 2.4rem;
}

.coupon-box>dl>dt {
  width: calc(100% - 200px);
  padding: 10px;
  box-sizing: border-box;
}

.coupon-box>dl>dd {
  width: 200px;
  text-align: right;
  padding: 10px;
  box-sizing: border-box;
}

.coupon-box>dl>dd>span {
  color: #b92e34;
  font-family: var(--font-family-serif);
  font-weight: 700;
  font-size: 2.6rem;
}

.coupon-box br {
  display: none;
}

.menu-col {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.menu-blk {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, .8);
  filter: drop-shadow(0 8px 40px rgba(83, 73, 63, 0.15));
}

.menu-blk:nth-of-type(n+2) {
  margin-top: 60px;
}

.menu-blk__img {
  width: 50%;
}

.menu-blk__img>img {
  height: 100%;
  object-fit: cover;
}

.menu-blk__inner {
  width: 45%;
  display: flex;
  flex-direction: column;
}

.menu-blk__inner-box {
  width: 100%;
}

.menu-blk__inner-box:not(:last-of-type) {
  margin-bottom: 30px;
}

.menu-blk__ttl {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.menu-blk__ttl>h3 {
  font-size: 2rem;
  font-weight: 700;
}

#eyebrow .menu-blk__ttl>h3 br {
  display: none;
}

.menu-blk__txt {
  width: 100%;
  margin-bottom: 20px;
}

.price {
  width: 100%;
}

.price>dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.price>dl>dt {
  width: calc(100% - 140px);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  background: #eee;
  padding: 5px 14px;
  box-sizing: border-box;
}

.price>dl>dd {
  width: 140px;
  text-align: right;
  padding: 5px 14px;
  box-sizing: border-box;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
}

.price>dl>dd>span {
  font-family: var(--font-family-serif);
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 3px;
}

@media screen and (max-width:1280px) {

  /*---about---*/
  .about-blk__lead-sub {
    font-size: 1.6rem;
  }

  .about-blk__lead-main {
    font-size: 3rem;
  }

  .about-blk__txt>p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width:1024px) {

  /*---about---*/
  .about-blk {
    flex-direction: column;
  }

  .about-blk__img {
    width: 100%;
    margin: 30px auto;
    order: 1;
  }

  .about-blk__inner {
    width: 100%;
    order: 2;
  }

  /*---menu---*/
  .coupon {
    padding: 20px;
  }

  .coupon-box>dl>dt {
    width: calc(100% - 180px);
  }

  .coupon-box>dl>dd {
    width: 180px;
  }

  .menu-blk {
    width: 100%;
    flex-direction: column;
  }

  .menu-blk:nth-of-type(n+2) {
    margin-top: 30px;
  }

  .menu-blk__img {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
  }

  .menu-blk__img::after {
    display: block;
    content: '';
    width: 100%;
    height: 0;
    padding-top: 75%;
  }

  .menu-blk__img>img {
    position: absolute;
    top: 0;
    left: 0;
  }

  .menu-blk__inner {
    width: 100%;
  }
}

@media screen and (max-width:896px) {
  .coupon {
    padding: 20px;
  }

  .coupon-txt-sub {
    font-size: 2rem;
  }

  .coupon-box>dl>dt {
    width: calc(100% - 180px);
  }

  .coupon-box>dl>dd {
    width: 180px;
  }
}

@media screen and (max-width:786px) {
  .coupon-box {
    padding: 20px;
  }

  .coupon-box>dl>dt {
    line-height: 1.6;
  }

  .coupon-box>dl>dd {
    line-height: 1.6;
  }
}

@media screen and (max-width:680px) {
  .coupon-box br {
    display: block;
  }
}

@media screen and (max-width:600px) {
  .coupon-box {
    padding: 0;
  }

  .coupon-box br {
    display: none;
  }

  .coupon-box>dl {
    font-size: 1.6rem;
  }

  .coupon-box>dl>dt {
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #61564A;
    color: #fff;
  }

  .coupon-box>dl>dd {
    width: 100%;
    text-align: center;
    padding: 0 0 10px 0;
    background: #fff;
  }
}

@media screen and (max-width:480px) {
  .about-blk:not(:last-of-type) {
    margin-bottom: 50px;
  }

  .about-blk__img {
    margin: 0 auto 20px auto;
  }

  .about-blk__lead-sub {
    font-size: 1.2rem;
    margin-bottom: 10px !important;
  }

  .about-blk__lead-main {
    font-size: 2rem;
  }

  /*---menu---*/
  .coupon {
    padding: 20px;
  }

  .coupon-txt-sub {
    font-size: 1.4rem;
    white-space: nowrap;
    transform-origin: center;
    letter-spacing: 0;
  }

  .menu-blk {
    padding: 30px 20px 40px 20px;
  }

  .menu-blk__ttl {
    padding-bottom: 8px;
  }

  .menu-blk__ttl>h3 {
    font-size: 1.6rem;
    text-align: center;
  }

  .price>dl>dt {
    width: 100%;
    font-size: 1.4rem;
    justify-content: center;
    text-align: center;
  }

  .price>dl>dd {
    width: 100%;
  }

  .price>dl>dd>span {
    font-size: 1.8rem;
  }
}