* {
    margin: 0;
    padding: 0;
}
ul {
    list-style-type: none;
}
a {
    text-decoration: none;
}
img {
    display: block;
}
/* ↑リセットCSS */


/* ===========================
   共通変数
=========================== */
:root {
    --color-text:     #282828;
    --color-paw:      #A67C52;
    --color-bg:       #FAFAF8;
    --color-bg-can:   #FAFAF8;
    --color-bg-about: #F5EFE8;
    --color-tag-bg:   #9BBFC8;
    --font-main:      'Zen Kaku Gothic New', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    font-weight: 400;
}


/* ===========================
   ヘッダー
=========================== */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 300;
    background: rgba(250, 250, 248, 0.45);
    backdrop-filter: blur(4px);
    transition: padding 0.3s ease, background 0.3s ease;
}

.header-logo img {
    height: 28px;
    width: auto;
}

.header-logo a {
    display: block;
}

.main-nav .nav-list {
    display: flex;
    gap: 40px;
}

.main-nav .nav-list a {
    font-size: 15px;
    color: var(--color-text);
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

/* 下線：左から右へ伸びるアニメーション */
.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-paw);
    transition: width 0.3s ease;
}

.main-nav .nav-list a:hover {
    color: var(--color-paw);
}

.main-nav .nav-list a:hover::after {
    width: 100%;
}

/* ハンバーガー（PCでは非表示） */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--color-text);
    font-family: var(--font-main);
    letter-spacing: 0.05em;
    padding: 0;
}

.hamburger-open {
    display: inline;
}

.hamburger-close {
    display: none;
}

.hamburger.is-open .hamburger-open {
    display: none;
}

.hamburger.is-open .hamburger-close {
    display: inline;
}

/* ハンバーガーのbar関連は削除 */

/* ドロワーメニュー */
.drawer-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    background: rgba(245, 239, 232, 0.55);
    backdrop-filter: blur(8px);
    z-index: 200;
    padding: 64px 40px 40px;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    box-sizing: border-box;
}

.drawer-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.drawer-list li {
    margin-bottom: 28px;
}

.drawer-list a {
    font-size: 22px;
    color: var(--color-text);
    letter-spacing: 0.05em;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.drawer-list a:hover {
    color: var(--color-paw);
    transform: translateX(8px);
}

.drawer-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    visibility: hidden;
}

.drawer-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}


/* ===========================
   ヒーロー
=========================== */
.hero {
    width: 100%;
    height: 100vh;
    max-height: 700px;
    background-image: url('../images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
}

.hero-text {
    position: relative;
    padding-left: 10%;
    padding-top: 6%;
    z-index: 1;
}

.hero-catch {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.hero-sub {
    margin-top: 16px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hero-btn:hover {
    opacity: 0.75;
}

.hero-btn--primary {
    background: #A67C52;
    color: #fff;
}

.hero-btn--outline {
    background: transparent;
    color: #282828;
    border: 1px solid #282828;
}


/* ===========================
   共通：セクションラベル・タイトル
=========================== */
.section-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.section-title {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 48px;
}


/* ===========================
   Work
=========================== */
.section-work {
    width: 88%;
    max-width: 960px;
    margin: 80px auto 0;
    position: relative;
    padding-bottom: 40px;
}

.paw-deco {
    position: absolute;
    top: -10px;
    right: -60px;
    width: 200px;
}

.work-block {
    margin-bottom: 40px;
}

.work-subtitle {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    font-weight: 400;
}

.work-label {
    font-size: 16px;
}

.work-category {
    font-size: 15px;
}

.work-item-genre {
    font-size: 13px;
    margin-top: 40px;
    margin-bottom: 6px;
}

.work-item-catch {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.work-item {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    margin-bottom: 48px;
}

.work-item img {
    width: 360px;
    height: 230px;
    object-fit: cover;
    flex-shrink: 0;
}

.work-item-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
    line-height: 1.9;
}

.work-item-tag {
    font-size: 13px;
}

.work-item-title {
    font-size: 17px;
    font-weight: 500;
}

.work-item-meta {
    font-size: 14px;
    line-height: 1.7;
}

.work-item-meta.bold {
    font-weight: 500;
    font-size: 16px;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.tag {
    background: var(--color-tag-bg);
    color: #fff;
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 20px;
}

/* もっと見るボタン */
.btn-more {
    display: block;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 64px;
    font-size: 15px;
    color: var(--color-text);
    letter-spacing: 0.05em;
    transition: letter-spacing 0.3s ease, color 0.3s ease;
}

.btn-more:hover {
    color: var(--color-paw);
    letter-spacing: 0.12em;
}

/* Writing側のみ下に余裕を持たせる */
.btn-more--writing {
    margin-top: 64px;
}


/* ===========================
   What I can do
=========================== */
.section-can {
    margin-top: 0;
}

/* 表示切り替え用ユーティリティ */
.pc-only { display: block; }
.sp-only { display: none; }
.tablet-only { display: none; }

/* PC: 背景画像の上に全要素を重ねる */
.can-bg-image {
    position: relative;
    background-image: url('../images/can_bg.png');
    background-size: cover;
    background-position: 70% center;
    padding: 80px 0 100px;
}

.can-bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.can-bg-image .can-inner {
    position: relative;
    z-index: 1;
}

.can-bg-image .section-label,
.can-bg-image .section-title {
    max-width: 52%;
}

/* SP用リストエリア: PCでは非表示 */
.can-body {
    display: none;
}

.can-inner {
    width: 88%;
    max-width: 960px;
    margin: 0 auto;
}

.can-lead {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
    margin-bottom: 48px;
    max-width: 48%;
}

.can-items {
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 48%;
}

.can-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.can-item-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    width: 80px;
}

.can-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.can-cat-label {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.can-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 6px;
}

.can-item-list li {
    font-size: 20px;
    line-height: 1.7;
}

.can-consult-sub {
    font-size: 13px;
    line-height: 1.9;
    margin-left: calc(80px + 28px);
    margin-top: -20px;
    color: #555;
}

.can-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.can-item-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    width: 80px;
}

.can-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.can-cat-label {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.can-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 6px;
}

.can-item-list li {
    font-size: 20px;
    line-height: 1.7;
}

.can-consult-sub {
    font-size: 13px;
    line-height: 1.9;
    margin-left: calc(80px + 28px);
    margin-top: -20px;
    color: #555;
}

/* SP用：非表示（PCでは不要） */
.can-sp {
    display: none;
}


/* ===========================
   About me
=========================== */
.section-about {
    background: var(--color-bg-about);
    padding: 80px 0 60px;
    text-align: left;
}

.about-header {
    width: 88%;
    max-width: 960px;
    margin: 0 auto;
}

.about-inner {
    width: 88%;
    max-width: 960px;
    margin: 40px auto 0;
    text-align: right;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.about-inner > * {
    max-width: 680px;
    width: 100%;
}

.about-lead {
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 12px;
}

.about-sub {
    font-size: 14px;
    margin-bottom: 24px;
    color: #555;
}

.cat-icon {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 0 32px auto;
    align-self: flex-end;
    max-width: 120px;
}

.about-tagline {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.about-body {
    font-size: 15px;
    line-height: 2;
    text-align: right;
    display: inline-block;
    max-width: 480px;
}

/* 特別な一文：左ボーダー引用スタイル */
.about-quote-wrap {
    text-align: right;
    margin: 32px 0 4px;
}

.about-quote {
    display: inline-block;
    font-size: 15px;
    line-height: 2;
    text-align: right;
    padding: 4px 0 4px 12px;
    border-left: 2px solid var(--color-paw);
    color: var(--color-text);
    font-weight: 400;
    letter-spacing: 0.03em;
}


.about-body--starbucks {
    margin-top: 40px;
}


/* ===========================
   CTA
=========================== */
.section-cta {
    padding: 60px 0 0;
    text-align: left;
    width: 88%;
    max-width: 960px;
    margin: 0 auto;
}

.cta-text {
    font-size: 18px;
    line-height: 2.2;
}


/* ===========================
   Contact
=========================== */
.section-contact {
    padding: 80px 0 0;
    text-align: center;
    width: 88%;
    max-width: 720px;
    margin: 0 auto;
}

.contact-title {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    color: var(--color-text);
}

.contact-sub {
    font-size: 15px;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 40px;
}

.contact-form-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-form-card iframe {
    display: block;
    width: 100%;
    min-height: 600px;
}

.paw-deco-contact {
    width: 160px;
    margin: 32px auto 0;
    display: block;
}


/* ===========================
   フッター
=========================== */
.site-footer {
    background: var(--color-bg);
    padding: 48px 0 20px;
}

.footer-inner {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-cat {
    width: 120px;
    height: auto;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 13px;
    color: var(--color-text);
    letter-spacing: 0.05em;
}

.footer-nav a:hover {
    opacity: 0.6;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 32px;
    letter-spacing: 0.05em;
    padding-bottom: 16px;
}


/* ===========================
   レスポンシブ（768px以下）
=========================== */
/* ===========================
   タブレット対応（769px〜1200px）
   画像上・テキスト下の縦積みレイアウト
=========================== */
@media (min-width: 769px) and (max-width: 1200px) {
    .tablet-only { display: block; }

    .can-bg-image {
        background-image: url('../images/can_bg.png');
        background-size: cover;
        background-position: center top;
        height: 360px;
        padding: 0;
    }

    .can-bg-image .can-inner {
        display: none;
    }

    .can-body {
        display: block;
        background: #F9F5F0;
        padding: 48px 8% 64px;
    }

    .can-body .can-inner {
        width: 100%;
        max-width: 720px;
    }

    .can-body .section-label,
    .can-body .section-title,
    .can-body .can-lead {
        display: block;
    }

    .can-body .can-lead {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.9;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .can-items {
        max-width: 100%;
        gap: 32px;
    }

    .can-item-list li {
        font-size: 18px;
    }

    .can-consult-sub {
        margin-left: calc(80px + 28px);
        margin-top: 8px;
    }
}

@media (max-width: 768px) {

    /* ヘッダー */
    .site-header {
        padding: 16px 20px;
        background: rgba(250, 250, 248, 0.45);
        backdrop-filter: blur(4px);
    }

    .site-header.is-scrolled {
        background: rgba(250, 250, 248, 0.88);
        backdrop-filter: blur(4px);
        padding: 10px 20px;
    }

    .site-header.is-scrolled .header-logo img {
        height: 20px;
    }

    .main-nav {
        display: none;
    }

    .hamburger {
        display: block;
        position: relative;
        z-index: 300;
    }

    .drawer-nav {
        display: block;
    }

    .drawer-overlay {
        display: block;
    }

    /* ヒーロー */
    .hero {
        background-image: url('../images/sp_hero_bg.jpg');
        max-height: none;
        height: auto;
        align-items: flex-start;
        padding-top: 80px;
        padding-bottom: 48px;
    }

    .hero-catch {
        font-size: 21px;
        gap: 4px;
    }

    .hero-sub {
        font-size: 11px;
    }

    .hero-cta {
        margin-top: 40px;
        gap: 12px;
    }

    .hero-btn {
        font-size: 13px;
        padding: 10px 24px;
    }

    /* Work */
    .section-work {
        width: 90%;
        margin-top: 48px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .paw-deco {
        width: 130px;
        top: -10px;
        right: -10px;
    }

    .work-block {
        margin-bottom: 24px;
    }

    .work-item {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;
    }

    .work-item img {
        width: 100%;
        height: auto;
        max-height: 240px;
    }

    .work-item-catch {
        font-size: 17px;
    }

    .work-item-genre {
        margin-top: 32px;
    }

    .work-item-meta.bold {
        font-size: 15px;
    }

    .work-tags {
        margin-bottom: 40px;
    }

    /* What I can do */
    .pc-only { display: none; }
    .sp-only { display: block; }

    /* SP: 背景画像エリアはタイトル・リードのみ */
    .can-bg-image {
        background-image: url('../images/can_sp_bg.png');
        background-position: center 60%;
        height: 100vw;
        max-height: 480px;
        padding: 0;
        display: flex;
        align-items: stretch;
    }

    .can-bg-image .can-inner {
        padding: 40px 6% 32px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }

    .can-bg-image .section-label {
        font-size: 11px;
        margin-bottom: 4px;
        max-width: 100%;
    }

    .can-bg-image .section-title {
        font-size: 36px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .can-lead {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.9;
        margin-bottom: 0;
        max-width: 100%;
    }

    /* SP: リストは背景画像の下に別エリアで表示 */
    .can-body {
        display: block;
        background: #F9F5F0;
        padding: 40px 6% 60px;
    }

    .can-body .can-inner {
        width: 100%;
        max-width: none;
    }

    .can-items {
        max-width: 100%;
        gap: 0;
    }

    .can-item {
        padding-bottom: 32px;
        padding-top: 32px;
        border-bottom: 1px solid #E0D9D0;
        gap: 20px;
    }

    .can-item:first-child {
        padding-top: 0;
    }

    .can-item:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .can-item-left {
        width: 60px;
    }

    .can-icon {
        width: 36px;
        height: 36px;
    }

    .can-cat-label {
        font-size: 13px;
    }

    .can-item-list li {
        font-size: 15px;
    }

    .can-consult-sub {
        margin-left: 0;
        margin-top: 8px;
        padding-left: calc(60px + 20px);
        font-size: 12px;
    }

    /* About me */
    .section-about .section-label,
    .section-about .section-title {
        padding-left: 0;
    }

    .about-inner {
        text-align: center;
        padding: 0 5%;
        align-items: center;
    }

    .about-inner > * {
        max-width: 100%;
    }

    .cat-icon {
        margin: 0 auto 32px;
        align-self: center;
    }

    .about-lead {
        font-size: 17px;
        text-align: center;
    }

    .about-tagline {
        font-size: 18px;
        text-align: center;
    }

    .about-body {
        font-size: 14px;
        text-align: center;
    }

    /* CTA */
    .section-cta {
        text-align: center;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .cta-text {
        font-size: 16px;
        padding: 0 20px;
    }

    .section-contact {
        text-align: center;
        width: 92%;
        max-width: none;
        margin: 0 auto;
        padding: 60px 0 0;
    }

    .contact-form-card {
        padding: 16px;
    }

    .contact-form-card iframe {
        min-height: 680px;
    }

    .paw-deco-contact {
        margin: 32px auto 0;
    }

    /* フッター */
    .footer-inner {
        flex-direction: column;
        gap: 24px;
    }

    .footer-nav {
        gap: 12px;
    }
}
/* Privacy Policy リンク */
.copyright-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.copyright-link:hover {
    opacity: 0.7;
}

/* ===========================
   スクロールアニメーション
=========================== */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.is-visible {
    opacity: 1;
}
