@charset "UTF-8";
/* =========================================================================
   HOTEL PATIO 食事ページ専用CSS（page-food.php からのみ読み込む）
   -------------------------------------------------------------------------
   配色トークン（--ptp-ink 等）は common/css/patio.css の :root が正本。
   見出し帯は共通クラス .pt-hero（patio.css）を使う。
   クラスはすべて .ptFood__ 名前空間で、既存CSS・SWELLと衝突しない。
   2026-08-29 作成
   ========================================================================= */

.ptFood {
    color: var(--ptp-ink);
    background: #fff;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.ptFood__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 0 88px;
}

/* ---- リード ------------------------------------------------------------ */
.ptFood__lead {
    font-size: 16px;
    line-height: 2.05;
    color: var(--ptp-sub);
    margin: 0;
    text-align: center;
}

/* ---- 目次（アンカーリンク） -------------------------------------------- */
.ptFood__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.ptFood__nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1;
    color: var(--ptp-ink);
    background: var(--ptp-soft);
    border: 1px solid var(--ptp-line);
    border-radius: 999px;
    padding: 11px 18px;
    text-decoration: none;
    transition: background-color .25s, color .25s, border-color .25s;
}

.ptFood__nav a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: .6;
}

.ptFood__nav a:hover {
    background: var(--ptp-ink);
    border-color: var(--ptp-ink);
    color: #fff;
}

/* ---- セクション -------------------------------------------------------- */
.ptFood__section {
    margin-top: 76px;
    scroll-margin-top: 110px;
}

.ptFood__h2 {
    font-family: 'Playfair Display', "游明朝", YuMincho, "Hiragino Mincho ProN", serif;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.45;
    margin: 0;
    text-align: center;
}

.ptFood__h2 span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    letter-spacing: .24em;
    color: var(--ptp-acc);
    margin-top: 11px;
}

.ptFood__desc {
    font-size: 15px;
    line-height: 2.05;
    color: var(--ptp-sub);
    margin: 22px auto 0;
    max-width: 820px;
    text-align: center;
}

/* ---- 朝食（大きい2枚） -------------------------------------------------- */
.ptFood__duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 38px 0 0;
    list-style: none;
    padding: 0;
}

.ptFood__duoItem {
    background: #fff;
    border: 1px solid var(--ptp-line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(34, 31, 29, .06);
}

.ptFood__duoFig {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--ptp-soft);
}

.ptFood__duoFig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ptFood__duoBody { padding: 26px 28px 30px; }

.ptFood__duoEn {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--ptp-acc);
    margin-bottom: 8px;
}

.ptFood__duoName {
    font-family: 'Playfair Display', "游明朝", YuMincho, "Hiragino Mincho ProN", serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.5;
    margin: 0 0 14px;
}

.ptFood__duoText {
    font-size: 15px;
    line-height: 2;
    color: var(--ptp-sub);
    margin: 0;
}

/* ---- イタリアンの3つの特徴 ---------------------------------------------- */
.ptFood__points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 38px 0 0;
    list-style: none;
    padding: 0;
}

.ptFood__point {
    background: var(--ptp-soft);
    border: 1px solid var(--ptp-line);
    border-radius: 16px;
    padding: 28px 26px 30px;
    text-align: center;
}

.ptFood__pointNo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ptp-acc);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
}

.ptFood__pointName {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.6;
    margin: 0 0 12px;
}

.ptFood__pointText {
    font-size: 14px;
    line-height: 1.95;
    color: var(--ptp-sub);
    margin: 0;
}

/* ---- 引用（イタリアン） ------------------------------------------------- */
.ptFood__quote {
    position: relative;
    margin: 44px 0 0;
    padding: 40px 6% 42px;
    background: var(--ptp-ink);
    border-radius: 18px;
    color: #fff;
    text-align: center;
}

.ptFood__quote p {
    font-family: 'Playfair Display', "游明朝", YuMincho, "Hiragino Mincho ProN", serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 2.05;
    letter-spacing: .04em;
    margin: 0;
}

.ptFood__quoteImgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 28px 0 0;
}

.ptFood__quoteImgs figure {
    margin: 0;
    aspect-ratio: 3 / 2;
    border-radius: 12px;
    overflow: hidden;
    background: var(--ptp-soft);
}

.ptFood__quoteImgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- メニューのグリッド（共通） ----------------------------------------- */
.ptFood__grid {
    display: grid;
    gap: 26px;
    margin: 38px 0 0;
    list-style: none;
    padding: 0;
}

.ptFood__grid.-col2 { grid-template-columns: repeat(2, 1fr); }
.ptFood__grid.-col3 { grid-template-columns: repeat(3, 1fr); }
.ptFood__grid.-col4 { grid-template-columns: repeat(4, 1fr); }

.ptFood__item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ptp-line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(34, 31, 29, .05);
    transition: transform .3s, box-shadow .3s;
}

.ptFood__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(34, 31, 29, .10);
}

.ptFood__fig {
    margin: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--ptp-soft);
}

.ptFood__grid.-col2 .ptFood__fig { aspect-ratio: 16 / 10; }

.ptFood__fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}

.ptFood__item:hover .ptFood__fig img { transform: scale(1.05); }

.ptFood__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.ptFood__en {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 10px;
    letter-spacing: .16em;
    color: var(--ptp-acc);
    margin-bottom: 7px;
    line-height: 1.5;
}

.ptFood__name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.6;
    margin: 0;
}

.ptFood__text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--ptp-sub);
    margin: 10px 0 0;
}

/* ---- 鉄板メニュー（横並びの大きめカード） ------------------------------- */
.ptFood__hero2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 38px 0 0;
    list-style: none;
    padding: 0;
}

.ptFood__hero2 .ptFood__fig { aspect-ratio: 3 / 2; }

/* 写真が無い品は、余白で間を持たせて文字だけで見せる */
.ptFood__item.-noimg {
    justify-content: center;
    background: var(--ptp-soft);
}

.ptFood__item.-noimg .ptFood__body { padding: 34px 28px 36px; }
.ptFood__item.-noimg .ptFood__name { font-size: 19px; }

/* ---- 注記 --------------------------------------------------------------- */
.ptFood__note {
    font-size: 13px;
    line-height: 1.9;
    color: var(--ptp-sub);
    margin: 22px 0 0;
    text-align: center;
}

/* ---- CTA --------------------------------------------------------------- */
.ptFood__cta {
    margin-top: 76px;
    padding: 40px 5%;
    background: var(--ptp-soft);
    border: 1px solid var(--ptp-line);
    border-radius: 18px;
    text-align: center;
}

.ptFood__ctaLead {
    font-size: 16px;
    line-height: 1.9;
    color: var(--ptp-sub);
    margin: 0 0 18px;
}

.ptFood__tel {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.2;
    color: var(--ptp-ink);
    text-decoration: none;
}

.ptFood__tel small {
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: .16em;
    color: var(--ptp-acc);
    margin-right: 10px;
    vertical-align: 5px;
}

.ptFood__telNote {
    font-size: 13px;
    line-height: 1.8;
    color: var(--ptp-sub);
    margin: 12px 0 0;
}

.ptFood__btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.ptFood__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 17px 32px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    text-decoration: none;
    border-radius: 999px;
    transition: background-color .25s, color .25s, border-color .25s;
}

.ptFood__btn.-solid {
    background-color: var(--ptp-ink);
    color: #fff;
    border: 1px solid var(--ptp-ink);
}

.ptFood__btn.-solid:hover { background-color: #453f3a; border-color: #453f3a; color: #fff; }

.ptFood__btn.-ghost {
    background-color: #fff;
    color: var(--ptp-ink);
    border: 1px solid #d8d1c9;
}

.ptFood__btn.-ghost:hover { background-color: #efeae4; color: var(--ptp-ink); }

/* =========================================================================
   レスポンシブ
   ========================================================================= */
@media only screen and (max-width: 1200px) {
    .ptFood__inner { padding: 56px 5% 88px; }
}

@media only screen and (max-width: 1000px) {
    .ptFood__inner { padding: 44px 5% 72px; }
    .ptFood__grid.-col4 { grid-template-columns: repeat(3, 1fr); }
    .ptFood__points { grid-template-columns: 1fr; gap: 16px; }
    .ptFood__point { padding: 22px 20px 24px; }
}

@media only screen and (max-width: 767px) {
    .ptFood__inner { padding: 32px 4% 60px; }

    .ptFood__lead { font-size: 14px; line-height: 1.95; text-align: left; }
    .ptFood__nav { justify-content: flex-start; gap: 8px; margin-top: 22px; }
    .ptFood__nav a { font-size: 12px; padding: 9px 14px; }

    .ptFood__section { margin-top: 52px; scroll-margin-top: 70px; }
    .ptFood__h2 { font-size: 20px; }
    .ptFood__h2 span { font-size: 10px; margin-top: 8px; }
    .ptFood__desc { font-size: 14px; line-height: 1.95; margin-top: 16px; text-align: left; }

    .ptFood__duo,
    .ptFood__hero2 { grid-template-columns: 1fr; gap: 18px; margin-top: 26px; }
    .ptFood__duoBody { padding: 20px 20px 24px; }
    .ptFood__duoName { font-size: 18px; }
    .ptFood__duoText { font-size: 14px; line-height: 1.95; }

    .ptFood__grid { gap: 14px; margin-top: 26px; }
    .ptFood__grid.-col2,
    .ptFood__grid.-col3,
    .ptFood__grid.-col4 { grid-template-columns: repeat(2, 1fr); }

    .ptFood__body { padding: 14px 14px 16px; }
    .ptFood__name { font-size: 14px; }
    .ptFood__text { font-size: 12.5px; line-height: 1.8; margin-top: 8px; }
    .ptFood__en { font-size: 9px; }

    .ptFood__quote { padding: 28px 6% 30px; border-radius: 14px; margin-top: 30px; }
    .ptFood__quote p { font-size: 15px; line-height: 1.95; }
    .ptFood__quoteImgs { gap: 12px; margin-top: 20px; }

    .ptFood__note { font-size: 12px; text-align: left; }

    .ptFood__cta { margin-top: 52px; padding: 30px 6%; border-radius: 14px; }
    .ptFood__ctaLead { font-size: 14px; }
    .ptFood__tel { font-size: 27px; }
    .ptFood__tel small { font-size: 12px; margin-right: 8px; vertical-align: 4px; }
    .ptFood__telNote { font-size: 12px; }
    .ptFood__btns { gap: 10px; margin-top: 22px; }
    .ptFood__btn { min-width: 0; width: 100%; padding: 16px 20px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    .ptFood *,
    .ptFood *::before,
    .ptFood *::after { transition: none !important; }
    .ptFood__item:hover { transform: none; }
    .ptFood__item:hover .ptFood__fig img { transform: none; }
}
