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

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

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

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

.ptSight__points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
}

.ptSight__points li {
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--ptp-acc);
    background: var(--ptp-acc-soft);
    border: 1px solid #ece1cc;
    border-radius: 999px;
    padding: 7px 16px;
    line-height: 1;
}

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

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

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

/* ---- スポットカード ---------------------------------------------------- */
.ptSight__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin: 38px 0 0;
    padding: 0;
}

.ptSight__card {
    display: flex;
}

.ptSight__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid var(--ptp-line);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(34, 31, 29, .06);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.ptSight__link:hover,
.ptSight__link:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(34, 31, 29, .12);
    border-color: #ddd4c4;
    color: inherit;
}

.ptSight__link:focus-visible {
    outline: 2px solid var(--ptp-acc);
    outline-offset: 3px;
}

.ptSight__fig {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    background: var(--ptp-soft);
    overflow: hidden;
}

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

.ptSight__link:hover .ptSight__fig img {
    transform: scale(1.06);
}

/* カテゴリのバッジ（写真の左上） */
.ptSight__cat {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1;
    color: #fff;
    background: rgba(34, 31, 29, .78);
    border-radius: 999px;
    padding: 7px 12px;
    backdrop-filter: blur(2px);
}

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

.ptSight__name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.5;
    margin: 0;
    flex: 1 1 auto;
}

.ptSight__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--ptp-line);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--ptp-acc);
}

.ptSight__more::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .3s;
}

.ptSight__link:hover .ptSight__more::after {
    transform: rotate(45deg) translate(2px, -2px);
}

/* ---- ボタン・CTA ------------------------------------------------------- */
.ptSight__btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}

.ptSight__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    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;
}

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

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

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

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

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

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

.ptSight__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;
}

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

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

/* =========================================================================
   レスポンシブ
   ========================================================================= */
@media only screen and (max-width: 1000px) {
    .ptSight__inner { padding: 44px 5% 72px; }
    .ptSight__list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

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

    .ptSight__lead { font-size: 14px; line-height: 1.95; text-align: left; }
    .ptSight__points { justify-content: flex-start; gap: 8px; margin-top: 20px; }
    .ptSight__points li { font-size: 12px; padding: 6px 12px; }

    .ptSight__section { margin-top: 46px; scroll-margin-top: 70px; }
    .ptSight__h2 { font-size: 20px; }
    .ptSight__h2 span { font-size: 10px; margin-top: 8px; }

    .ptSight__list { grid-template-columns: 1fr; gap: 18px; margin-top: 26px; }
    .ptSight__body { padding: 16px 18px 18px; }
    .ptSight__name { font-size: 16px; }
    .ptSight__more { font-size: 12px; margin-top: 12px; padding-top: 12px; }
    .ptSight__cat { font-size: 10px; padding: 6px 10px; top: 10px; left: 10px; }

    .ptSight__btns { gap: 10px; margin-top: 28px; }
    .ptSight__btn { min-width: 0; width: 100%; padding: 16px 20px; font-size: 14px; }

    .ptSight__cta { margin-top: 46px; padding: 30px 6%; border-radius: 14px; }
    .ptSight__ctaLead { font-size: 14px; }
    .ptSight__tel { font-size: 27px; }
    .ptSight__tel small { font-size: 12px; margin-right: 8px; vertical-align: 4px; }
    .ptSight__telNote { font-size: 12px; }
}

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