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

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

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

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

/* 要点バッジ（諏訪IC 約1分 など） */
.ptAccess__points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
}

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

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

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

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

/* ---- 交通手段カード ----------------------------------------------------
   2カラム（3枚なので 上段2枚＋下段1枚）。周辺情報カードは3カラムのまま。 */
.ptAccess__routes {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 34px 0 0;
    padding: 0;
}

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

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

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

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

.ptAccess__routeBody {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.ptAccess__routeHead {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ptAccess__routeIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--ptp-ink);
    color: #fff;
    font-size: 17px;
    line-height: 1;
}

.ptAccess__routeName {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.3;
    margin: 0;
}

.ptAccess__routeTime {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 18px 0 0;
    color: var(--ptp-acc);
}

.ptAccess__routeTime b {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .02em;
}

.ptAccess__routeTime span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
}

.ptAccess__routeFrom {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ptp-ink);
    margin: 10px 0 0;
    font-weight: 700;
}

.ptAccess__routeNote {
    font-size: 14px;
    line-height: 1.85;
    color: var(--ptp-sub);
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--ptp-line);
}

/* ---- 図版（高速バス路線図・あずさ路線図）2カラム ----------------------- */
.ptAccess__figures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0 0;
}

.ptAccess__figure {
    border: 1px solid var(--ptp-line);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(34, 31, 29, .06);
}

.ptAccess__figureHead {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 14px 20px;
    background: var(--ptp-ink);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.4;
}

.ptAccess__figure figure {
    margin: 0;
    padding: 20px;
    background: #fff;
}

.ptAccess__figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.ptAccess__figure figcaption {
    font-size: 13px;
    line-height: 1.8;
    color: var(--ptp-sub);
    margin-top: 12px;
    text-align: center;
}

.ptAccess__figure figcaption a { color: var(--ptp-acc); }
/* ---- 地図・所在地 ------------------------------------------------------ */
.ptAccess__mapWrap {
    margin: 34px 0 0;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.ptAccess__map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--ptp-line);
    box-shadow: 0 10px 30px rgba(34, 31, 29, .06);
    min-height: 380px;
}

.ptAccess__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.ptAccess__info {
    background: var(--ptp-soft);
    border: 1px solid var(--ptp-line);
    border-radius: 16px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
}

.ptAccess__infoList {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
}

.ptAccess__infoList li + li {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--ptp-line);
}

.ptAccess__infoLabel {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    color: var(--ptp-acc);
    margin-bottom: 7px;
}

.ptAccess__infoValue {
    display: block;
    font-size: 16px;
    line-height: 1.75;
    color: var(--ptp-ink);
    font-weight: 700;
}

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

.ptAccess__infoValue small {
    display: block;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--ptp-sub);
    margin-top: 6px;
}

/* ---- 周辺情報カード ---------------------------------------------------- */
.ptAccess__nearby {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 34px 0 0;
    padding: 0;
}

.ptAccess__spot {
    background: #fff;
    border: 1px solid var(--ptp-line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(34, 31, 29, .06);
    transition: transform .3s, box-shadow .3s;
}

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

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

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

.ptAccess__spotBody {
    padding: 18px 20px 22px;
}

.ptAccess__spotName {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}

.ptAccess__spotTime {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--ptp-acc);
    background: var(--ptp-acc-soft);
    border: 1px solid #ece1cc;
    border-radius: 999px;
    padding: 6px 14px;
    line-height: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ptAccess__routes,
    .ptAccess__nearby { grid-template-columns: 1fr; gap: 18px; margin-top: 26px; }

    .ptAccess__routeBody { padding: 18px 18px 22px; }
    .ptAccess__routeIcon { width: 36px; height: 36px; font-size: 15px; }
    .ptAccess__routeName { font-size: 16px; }
    .ptAccess__routeTime b { font-size: 30px; }
    .ptAccess__routeFrom,
    .ptAccess__routeNote { font-size: 14px; }

    .ptAccess__figures { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
    .ptAccess__figure figure { padding: 14px; }
    .ptAccess__figureHead { padding: 12px 16px; font-size: 13px; }

    .ptAccess__mapWrap { margin-top: 26px; gap: 18px; }
    .ptAccess__map { min-height: 260px; border-radius: 12px; }
    .ptAccess__info { padding: 22px 20px; border-radius: 12px; }
    .ptAccess__infoValue { font-size: 15px; }

    .ptAccess__spotBody { padding: 16px 16px 20px; }

    .ptAccess__btns { gap: 10px; margin-top: 24px; }
    .ptAccess__btn { min-width: 0; width: 100%; padding: 16px 20px; font-size: 14px; }

    .ptAccess__cta { margin-top: 46px; padding: 30px 6%; border-radius: 14px; }
    .ptAccess__ctaLead { font-size: 14px; }
    .ptAccess__tel { font-size: 27px; }
    .ptAccess__tel small { font-size: 12px; margin-right: 8px; vertical-align: 4px; }
    .ptAccess__telNote { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .ptAccess *,
    .ptAccess *::before,
    .ptAccess *::after { transition: none !important; }
}
