@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Zen+Maru+Gothic:wght@700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

.header {
  padding-top: 1px;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

/* ブラウザバック復元中は、目的位置に合わせるまでページを隠して
   「一瞬トップが見える」チラつきを防ぐ。
   HTML先頭のインラインスクリプトが復元対象を検知した時だけ .lp-restoring を付け、
   javascript.js が位置を合わせてから外す（保険で数秒後には必ず表示に戻す）。 */
html.lp-restoring {
  visibility: hidden !important;
}

/* safariの背景画像の枠線対応 → 全要素に効かせない */
img {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

/* ヘッダー上部の余白調整。
   以前は margin-top: -20px でページ全体を上へずらしていたが、
   公開環境（shop.uchinoya.com/lp）ではヘッダー上部に余白が無いため、
   マイナス値だとヘッダー（ロゴ・電話番号）が上に見切れる＝めり込む。
   そのため 0 とする。※プレビュー画面だけで余白が出る場合はプレビュー用の
   管理バー等が原因なので、ここをマイナスに戻さないこと。 */
html {
  margin-top: 0;
}
/* タップ時のハイライト色を消す */
a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus,
button:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px #fff, 0 0 0 6px #f36;
          box-shadow: 0 0 0 3px #fff, 0 0 0 6px #f36;
  border-radius: inherit;
}

a:focus,
a:active,
button:focus,
button:active,
[role=button]:focus,
[role=button]:active,
input[type=button]:focus,
input[type=submit]:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #4c3636;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
  font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

/* 背景（PC:左に写真 / 右にロゴ + 全体テクスチャ） */
@media screen {
  .l_body_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/advento/img/texture.webp") repeat left top;
    background-size: 400px 400px;
  }
}

.l_body_bg::before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 195px);
  height: 100%;
  background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/advento/img/pc_photo.webp") no-repeat center;
  background-size: cover;
}

.l_body_bg::after {
  content: "";
  display: none;
  position: absolute;
  top: 171px;
  left: calc(75% + 97.5px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 197px;
  height: 198px;
  background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/advento/img/pc_logo.svg") no-repeat center;
  background-size: contain;
}

@media screen and (min-width: 1280px) {
  .l_body_bg::before,
  .l_body_bg::after {
    display: block;
  }
}

.l_body__wrapper {
  max-width: 390px;
  margin: 0 auto;
  background: #fff;
  position: relative;
  z-index: 1;
}

.l_main {
  background: #fff;
}

@media screen and (max-width: 390px) {
  .hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-tab {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .hidden-pc {
    display: none;
  }
}

/* ボタン */
.c-button {
  width: 250px;
  height: 60px;
  padding: 10px 20px;
  display: grid;
  place-items: center;
  border-radius: 40px;
  background: #f15a24;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.9px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}
.c-button:hover {
  opacity: 0.75;
}

.c-button--primary {
  width: 311px;
  height: 60px;
  border-radius: 30px;
  font-size: 20px;
}

/* 下向き矢印 */
.c-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin-top: 18px;
}
.c-arrow span {
  width: 0;
  height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-top: 26px solid #f15a24;
}

/* ヘッダー */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 20px;
  background: #fff;
}
.header__logo {
  width: 96px;
}
.header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.tel__info {
  width: 210px;
  margin-top: 3px;
}

/* PC固定ボタン */
.fv__button {
  display: none;
}
@media screen and (min-width: 1280px) {
  .fv__button {
    position: absolute;
    bottom: 50px;
    left: calc(75% + 97.5px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 311px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

/* fv（焼き込み画像の積み上げ） */
.fv__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* ラインナップ詳細（DAY 01〜10） */
.p-days {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 60px;
}

.p-days__inner {
  padding-inline: 20px;
}

.p-days__lead {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #f15a24;
  letter-spacing: 1px;
}
.p-days__lead span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(62%, transparent), color-stop(62%, #fcee75));
  background: linear-gradient(transparent 62%, #fcee75 62%);
  padding: 0 4px;
}

.p-day {
  margin-top: 40px;
}

.p-day__chip {
  display: inline-block;
  background: #f15a24;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 9px 8px;
}

.p-day__lead {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.p-day__divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-top: 20px;
  color: #22355e;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.p-day__divider::before,
.p-day__divider::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 4px;
  background-image: radial-gradient(circle, #22355e 2px, transparent 2.2px);
  background-size: 9px 4px;
  background-position: center;
  background-repeat: repeat-x;
}

.p-day__dish {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 26px;
}

.p-day__photo {
  width: 168px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-day__photo img {
  display: block;
  width: 168px;
  height: auto;
}

.p-day__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-left: 10px;
}

.p-day__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.p-day__desc {
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.4;
}

.p-day__cal {
  margin-top: 20px;
  font-size: 8px;
  line-height: 1.4;
}

.p-days__button {
  width: 250px;
  margin: 50px auto 0;
  text-align: center;
}

/* 5日間→10日間ブリッジ */
.p-break__image {
  margin: 60px -20px 0;
}
.p-break__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-break__text {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.p-upsell {
  position: relative;
  margin-top: 46px;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
  padding: 40px 20px 28px;
}
.p-upsell__chip {
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #f15a24;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 9px 16px;
  white-space: nowrap;
}
.p-upsell__text {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

/* うちのやのこだわり */
.p-kodawari {
  background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/advento/img/texture.webp") repeat left top;
  background-size: 400px 400px;
  padding-bottom: 60px;
}

.p-kodawari__noren img {
  display: block;
  width: 100%;
  height: auto;
}

.p-kodawari__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding-inline: 20px;
}

.p-kodawari__subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #22355e;
  letter-spacing: -1px;
  line-height: 1.6;
}

.p-kodawari__text {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: -0.7px;
}

.p-kodawari__image {
  margin-top: 0;
}
.p-kodawari__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* お召し上がり方 */
.p-howto {
  background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/advento/img/texture.webp") repeat left top;
  background-size: 400px 400px;
  padding-top: 60px;
  padding-inline: 20px;
  padding-bottom: 1px;
}

.p-howto__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-howto__head {
  text-align: center;
}
.p-howto__title {
  width: 310px;
  margin: 0 auto;
}
.p-howto__lead {
  text-align: center;
  font-size: 14px;
  letter-spacing: -0.7px;
  margin-top: 18px;
}

.p-howto__card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  padding: 30px;
}

.p-howto__subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
}

.p-howto__time {
  background: #22355e;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.6px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.p-howto__time span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
}

.p-howto__text {
  font-size: 14px;
  letter-spacing: -0.7px;
}

/* CTA */
.p-cta {
  background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/advento/img/texture.webp") repeat left top;
  background-size: 400px 400px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* フッター */
.footer {
  background: #4c3636;
  height: 156px;
  padding-top: 30px;
  padding-bottom: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
}
.footer__logo {
  width: 146px;
  height: 36px;
}
.footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.footer__copyright {
  font-size: 12px;
}
