/* =============================================
   page-catering.css
   ============================================= */

/* ページ背景色 */
body#catering,
body#catering #wrap {
    background-color: #FCFAF2;
}

/* ── Hero ── */
.ct-hero {
    width: 100%;
    line-height: 0;
}
.ct-hero img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── Intro ── */
.ct-intro {
    text-align: center;
    padding: 72px 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}
.ct-intro-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 7vw, 96px);
    font-weight: 400;
    color: #3a3028;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 12px;
}
.ct-intro-ja {
    font-size: 13px;
    color: #888;
    letter-spacing: 0.12em;
    margin-bottom: 40px;
    text-align: center;
}
.ct-intro-text {
    text-align: left;
    font-size: 15px;
    line-height: 2.2;
    color: #444;
    letter-spacing: 0.04em;
    margin-bottom: 48px;
}
.ct-intro-text p + p {
    margin-top: 20px;
}
.ct-intro-img {
    line-height: 0;
    margin-bottom: 72px;
}
.ct-intro-img img {
    width: 100%;
    /* max-width: 680px; */
    height: 420px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* ── Provider Cards ── */
.ct-card {
    background: #fff;
    padding: 48px 0;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto 28px;
    border-bottom: 1px solid #ece9e4;
}
.ct-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 48px;
}
.ct-card-text {
    flex: 1;
    min-width: 0;
}
.ct-card-name {
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Noto Serif JP", serif;
    font-size: 22px;
    font-weight: 400;
    color: #2a2018;
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin-bottom: 6px;
        text-align: left;
}
.ct-card-type {
    font-size: 12px;
    color: #888;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    line-height: 1.7;
}
.ct-card-body {
    font-size: 15px;
    line-height: 2.1;
    color: #444;
}
.ct-card-body p + p {
    margin-top: 8px;
}
.ct-card-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.ct-card-list li {
    padding-left: 16px;
    position: relative;
    line-height: 2;
}
.ct-card-list li::before {
    content: '•';
    position: absolute;
    left: 2px;
    color: #999;
}
.ct-note {
    font-size: 12px;
    color: #888;
}
.ct-card-links {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e5e0d8;
    font-size: 12px;
    color: #666;
    line-height: 2;
}
.ct-card-links a {
    color: #4a6640;
    text-decoration: none;
    word-break: break-all;
}
.ct-card-links a:hover {
    text-decoration: underline;
}
.ct-text-link {
    color: #4a6640 !important;
    text-decoration: underline;
}
.ct-card-img {
    flex-shrink: 0;
    width: 340px;
}
.ct-card-img img {
    width: 340px;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* ── Disclaimer ── */
.ct-disclaimer {
    max-width: 1060px;
    margin: 0 auto;
    padding: 40px 48px;
    font-size: 13px;
    line-height: 2.1;
    color: #888;
    letter-spacing: 0.04em;
}

/* ── For Good Gatherings ── */
.ct-gathering {
    padding: 72px 40px 80px;
    overflow: hidden;
}
.ct-gathering-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 9vw, 120px);
    font-weight: 400;
    color: #2a2018;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1;
    margin-bottom: 56px;
}
.ct-gathering-photos {
    display: flex;
    flex-direction: column;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}
.ct-gathering-photo--left {
    width: 66%;
    margin-left: 0;
    margin-right: auto;
}
.ct-gathering-photo--left img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.ct-gathering-photo--right {
    width: 66%;
    margin-left: auto;
    margin-right: 0;
    margin-top: -60px;
}
.ct-gathering-photo--right img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

/* SP用画像はデフォルト非表示 */
.ct-card-img--sp {
    display: none;
}

/* ── 900px以下：カード縦並び ── */
@media (max-width: 900px) {
    .ct-card { width: 90%; }
    .ct-card-inner {
        flex-direction: column;
        gap: 0;
        padding: 0 24px;
    }
    .ct-card-img { display: none; }
    .ct-card-img--sp {
        display: block;
        width: 100%;
        margin: 16px 0 24px;
    }
    .ct-card-img--sp img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
    }
    .ct-name-ja { display: block; }
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .ct-intro-text br { display: none; }
    .ct-hero img { height: 240px; }
    .ct-intro { padding: 48px 20px 0; }
    .ct-intro-img img { height: 240px; }
    .ct-card { padding: 32px 0; width: 95%; }
    .ct-card-inner {
        flex-direction: column;
        gap: 24px;
        padding: 0 20px;
    }
    .ct-card-name { 
    text-align: center;
    font-size: 18px;}
    .ct-card-body { font-size: 13.5px;}
    .ct-card-img { width: 100%; }
    .ct-card-img img { width: 100%; height: 220px; }
    .ct-disclaimer { padding: 24px 20px; }
    .ct-gathering { padding: 48px 0px 56px; }
    .ct-gathering-photos {gap: 67px;}
    .ct-gathering-photo--left { width: 82%; }
    .ct-gathering-photo--left img { height: 240px; }
    .ct-gathering-photo--right { width: 82%; margin-top: -36px; }
    .ct-gathering-photo--right img { height: 220px; }
}
