/* style-pc.css */
@charset "UTF-8";
/* ====================================
   PC用スタイル (769px以上で適用)
==================================== */

/* --- 共通コンテナ --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- ヘッダー（2段構成） --- */
.site-header {
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.site-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}
.header-right {
    display: flex;
    align-items: center;
}
.header-partner-btn {
    background-color: var(--gold-accent);
    color: var(--white);
    padding: 12px 24px;
    margin: 10px 20px 10px 0;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(201, 162, 39, 0.25);
}
.header-partner-btn:hover {
    background-color: #b38f1f;
    color: var(--white);
    transform: translateY(-2px);
}
.hamburger {
    display: none;
}
.header-bottom {
    background-color: var(--primary-color);
}
.global-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.global-nav a {
    display: block;
    color: var(--white);
    font-weight: bold;
    font-size: 0.95rem;
    padding: 15px 25px;
}
.global-nav a:hover {
    background-color: rgba(255,255,255,0.1);
}

/* --- ヒーローセクション --- */
.hero {
    padding: 80px 20px;
    border-radius: 0 0 40px 40px;
    margin-bottom: 40px;
}
.hero-title {
    font-size: 2.5rem;
    margin: 0 0 20px;
    font-weight: bold;
}
.hero-subtitle {
    font-size: 1.1rem;
    margin: 0 0 30px;
}
.btn-hero {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 18px 40px;
    border-radius: 40px;
}

/* --- トップページ：サービス一覧（2カラムグリッド） --- */
.front-page-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}
.service-list-vertical {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.service-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 12px;
    height: 150px;
    overflow: hidden;
}
.service-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.12);
}
.service-img {
    width: 180px;
    height: 100%;
    flex-shrink: 0;
    font-size: 0.9rem;
    text-align: center;
}
.service-text {
    width: auto;
    flex: 1;
    min-width: 0;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.service-title {
    font-size: 1.15rem;
    margin: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.service-desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.btn-service-detail {
    margin-top: 4px;
    align-self: flex-start;
    font-size: 0.9rem;
}

/* --- 新着情報 --- */
.section-title {
    font-size: 1.8rem;
    margin: 0 0 30px 0;
    border-bottom: 3px solid var(--primary-color);
}
.tab-item {
    padding: 12px 24px;
    border-radius: 8px 8px 0 0;
}
.tab-item:hover {
    background-color: #ffe3ec;
}

.news-list {
    padding: 20px;
    border-radius: 12px;
    border-top-left-radius: 0;
}
.news-item {
    border-bottom: 1px dashed var(--border-color);
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.news-item:last-child {
    border-bottom: none;
}
.news-date {
    color: #666;
}

/* リッチな記事一覧レイアウト */
.news-item-rich {
    border-bottom: 1px dashed var(--border-color);
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.news-item-rich:last-child {
    border-bottom: none;
}
.news-title-rich {
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.4;
}
.news-body-rich {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}
.news-text-area {
    flex: 1;
}
.news-date {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: inline-block;
}
.news-excerpt {
    font-size: 0.95rem;
    margin: 0;
    color: #555;
    line-height: 1.6;
}
.news-thumb-area {
    width: 200px;
    flex-shrink: 0;
}
.news-thumb-area img, 
.news-thumb-area .no-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}
.news-tag {
    font-size: 0.8rem;
    padding: 4px 16px;
    border-radius: 20px;
}

/* --- 下層ページ用 2カラムレイアウト --- */
.site-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
}
.primary-content {
    flex: 1;
    min-width: 0;
}
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* --- スマホ用フローティングボタン（PCでは非表示） --- */
.floating-contact {
    display: none;
}

/* ====================================
   フッター
==================================== */
.site-footer {
    padding: 50px 0 30px; 
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}
.footer-col { 
    flex: 1; 
    min-width: 250px; 
}
.footer-left h2 { 
    font-size: 1.8rem; 
}

/* --- ヘッダー追従の調整（PC専用） --- */
/* ヘッダー全体の追従を解除 */
.site-header {
    position: static;
    box-shadow: none;
}
/* グローバルナビ（下段）だけを追従させる */
.header-bottom {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* ====================================
   アーカイブ／検索結果ページ（PC用サイズ調整）
==================================== */
.container, .l-container {
    padding: 0 20px;
}
.p-page-header {
    padding: 60px 20px;
}
.p-page-header__title {
    font-size: 2rem;
}
.c-card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.c-card__body {
    padding: 20px;
}
.p-archive__body {
    padding-top: 50px;
    margin-bottom: 80px;
}
.p-pagination {
    margin-top: 20px;
}
.c-price-table {
    margin-bottom: 50px;
}
.c-price-table__title {
    font-size: 1.3rem;
    padding: 18px 24px;
}
.c-price-table__table th,
.c-price-table__table td {
    padding: 16px 24px;
    font-size: 1rem;
}
.c-price-table__note {
    padding: 16px 24px;
    font-size: 0.85rem;
}

/* --- 新着情報セクションの下余白 --- */
.top-news {
    margin-bottom: 80px;
}

/* ====================================
   記事詳細ページ（PC用サイズ調整）
==================================== */
.p-single__inner {
    padding: 60px 20px 100px;
}
.p-single__category-list {
    margin-bottom: 16px;
}
.p-single__title {
    font-size: 2rem;
    margin: 0 0 16px;
}
.p-single__date {
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.p-single__meta {
    margin-bottom: 30px;
}
.p-single__thumbnail {
    margin-bottom: 40px;
}
.p-single__content {
    font-size: 1.05rem;
}
.p-single__content h2 {
    font-size: 1.5rem;
    margin: 2em 0 1em;
}
.p-single__content h3 {
    font-size: 1.2rem;
    margin: 1.8em 0 0.8em;
}
.p-single__content blockquote {
    padding: 20px 24px;
    margin: 1.5em 0;
}
.p-single__nav {
    margin-top: 60px;
}

/* --- 前後の記事カード（PC用サイズ） --- */
.p-single__adjacent {
    gap: 20px;
    margin-top: 60px;
}
.p-adjacent-card__img {
    width: 120px;
    height: 90px;
}
.p-adjacent-card__body {
    padding: 16px;
    gap: 6px;
}
.p-adjacent-card__label {
    font-size: 0.8rem;
}
.p-adjacent-card__title {
    font-size: 0.95rem;
}

/* --- 関連記事セクション（PC用余白） --- */
.p-single__related {
    margin-top: 60px;
}
.p-single__related .section-title {
    margin-bottom: 24px;
}

/* --- パンくずリスト（PC用サイズ） --- */
.c-breadcrumbs {
    padding: 16px 0;
    font-size: 0.85rem;
}
.c-breadcrumbs__sep {
    margin: 0 10px;
}
.p-single__inner .c-breadcrumbs {
    padding: 0 0 20px;
}