@charset "UTF-8";

/*======================================================
(0) 変数設定
======================================================*/
:root{
    --link-color: #A68915;
    --primary-color:#e70000;
    --secondary-color:#009994;
    --border-color: #ccc;

    /*-- 無彩色 --*/
    --white: #fff;
    --verypale: #f2f2f2;
    --pale: #d8d8d8;
    --light: #b4b4b7;
    --soft: #757578;
    --default: #414143;
    --dark: #080808;
    --black: #000;

    /*-- フォント --*/
    --serif-jp: 'Noto Serif JP', serif;
    --serif-en: 'Cormorant Garamond', Georgia, serif;
}

/*======================================================
(1) 共通設定
======================================================*/
/*-- 全体設定 
---------------------------------------*/
/*-- リセット --*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*-- 各初期設定 --*/
body {
    text-align: center;
    width: 100%;
    font-family: var(--serif-jp);
    font-weight: 400;
    /* font-size: 1.1em; */
}

a {
    text-decoration: none;
}

button {
    font-family: var(--serif-jp);
}

li {
    list-style-type: none;
}

h3 {
    font-size: 1.5em;
}

/*-- ブログ投稿 --*/
.has-main-backgournd-color {
    background-color: var(--link-color);
}

.has-main-color {
    color: var(--link-color);
}

/*======================================================
(2) PC設定
======================================================*/
/*-- 全体設定 
---------------------------------------*/
.pc {
    display: block;
}

.sp {
    display: none;
}

/*-- ヘッダー --*/
header {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between; /* 変更 */
    background-color: var(--white);
    box-shadow: 0 3px 5px rgba(8,8,8,0.55);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

/* ヘッダーロゴ */
.header-logo {
    width: 230px;
    padding: 15px 30px;
}

/* ヘッダーナビ */
.header-nav {
    position: absolute; /* 追加 */
    left: 50%;          /* 追加 */
    transform: translateX(-50%); /* 追加：中央に固定 */
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    align-items: center;

    ul {
        display: flex;
        gap: 30px; /* リスト間の余白 */
        list-style: none;
        padding: 0;
        margin: 0;
    }

    a {
        display: inline-block;
        color: #333;
        text-decoration: none;
        white-space: nowrap; /* 折り返し防止 */
    }
}

/* ヘッダーお問い合わせボタン */
.header-contact-btn {
    color: var(--white);
    background-color: var(--link-color);
    display: flex;         /* 追加 */
    align-items: center;   /* 追加：縦中央 */
    padding: 0 60px;       /* 追加：横の余白 */
    white-space: nowrap;
    text-decoration: none;
    font-size: 1.3em;
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
        transform: skewX(-25deg);
        animation: shine 4s 1s linear infinite;
    }

    /* 「>」矢印はCSSで追加 */
    &::after {
        content: '›';
        margin-left: 20px;
    }
}

/*-- メインコンテンツ --*/
.contents {
    width: 70%;
    margin: 0 auto;
    padding: 100px 0;
}

/* 背景灰色部分 */
.bg-change {
    background-color: var(--verypale);
}

/* ミニ見出し(左側に四角がついてる見出し) */
.mini-title {
  position: relative;
  padding-left: 15px;
  display: flex;
  align-items: center;
}

.mini-title::after {
  position: absolute;
  content: '';
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--link-color);/*四角を作って*/
}

/* 下層ページリンクボタン */
.link-btn {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    color: var(--white);
    background-color: var(--link-color);
    padding: 20px 50px;
    margin: 50px 0;
    border-radius: 5px;
    font-size: 1.2em;

    box-shadow: 0 7px rgba(0, 0, 0, 0.3);
    font-size: 20px;
    position: relative;
    top: 0;
    transition: .2s ease-in-out;
}

.link-btn:hover {
    top: 9px;
    box-shadow: 0 0 rgba(0, 0, 0, 0.3);
}

/* 写真が右側に来るもの */
.even {
    flex-direction: row-reverse;

    .top-product-explain {
        margin-left: 0;
        margin-right: 30px;
    }

    .product-explain {
        margin-left: 0;
        margin-right: 30px;
    }

    .about-explain {
        margin-right: 0;
        margin-left: 120px;
    }
}

/*-- サイドバー(お問い合わせ) --*/
.contact-choice {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden;
}

.contact-other {
    display: flex;
    margin: 0 auto;
}

/* 無料デモ部分 */
.contact-img-machine {
    width: 300px;
    filter: drop-shadow(3px 5px 5px var(--black));
}

.contact-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.contact-demo-explain {
    width: 80%;
    margin: 50px 0 50px 50px;
    max-width: 460px;

    p {
        margin: 10px 0 20px 0;
    }
}

/* お打ち合わせ部分 */
.contact-right {
    margin-left: 30px;
}

.contact-img {
    width: 300px;
    margin: 10px;
}

.contact-btn a {
    text-align: center;
    color: var(--white);
    background-color: var(--link-color);
    padding: 15px 100px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;

    box-shadow: 0 7px rgba(0, 0, 0, 0.3);
    font-size: 20px;
    position: relative;
    top: 0;
    transition: .2s ease-in-out;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
        transform: skewX(-25deg);
        animation: shine 4s 1s linear infinite;
    }

    &::after {
        content: '›';
        margin-left: 20px;
    }
}

.contact-btn a:hover {
    top: 9px;
    box-shadow: 0 0 rgba(0, 0, 0, 0.3);
}

@keyframes shine {
    0%    { left: -75%; }
    17.5% { left: 125%; }
    100%  { left: 125%; }
}

/*-- フッター --*/
footer {
    color: var(--white);
    background-image: linear-gradient(#333333, var(--black));
    padding: 15px;

    a {
        color: var(--white);
    }
}

/* フッターロゴ */
.footer-logo-link {
    flex-shrink: 0;
}

.footer-logo {
    height: 50px;
    display: block;
}

.footer-nav {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    padding: 40px 60px 50px 60px;
}

.footer-nav-center {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 14px 40px;
}

.footer-nav-right {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;

    li {
        margin-bottom: 12px;
    }
}

.copyright {
    font-size: small;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 0;
}

/*-- 見出し関連 --*/
/* TOP、ABOUT共通見出し */
.common-heading h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
    font-size: 2.2em;
    font-weight: 400;
}

.common-heading h2:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 50px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--link-color);
    border-radius: 2px;
}

.common-heading h3 {
    color: var(--link-color);
    font-weight: 600;
}

.common-heading h4 {
    color: var(--link-color);
    font-size: 1.2em;
    font-weight: 600;
    position: relative;
    padding: 10px 0;
    border-bottom: 5px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 10px;
}

.common-heading h4:before {
    position: absolute;
    content: '';
    width: 15%;
    left: 0;
    bottom: -6px;
    border-bottom: 8px solid var(--link-color);
    border-radius: 5px;
}

/* キャッチコピー */
.catchcopy {
    text-align: left;
    filter: drop-shadow(0 0 5px var(--black));
    margin-left: 50px;
}

/* キャッチコピー(太字) */
.cp-top {
    font-weight: 700;
    font-size: 50px;
}

.cp-bottom {
    font-size: 30px;
}

/*-- 下層ページ共通設定 --*/
.subpage {
    margin: 50px 0 100px 0;
}

.subpage h1 {
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
    font-size: 2.2em;
    font-weight: 400;
}

.subpage h1:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 50px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--link-color);
    border-radius: 2px;
}


/*-- TOPページ設定 
---------------------------------------*/

/*-- FV --*/
.first-view {
    background-image: url("../images/fv_bg.webp");
    color: var(--white);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0;
}

/* 機器画像 */
.fv-img-machine {
    filter: drop-shadow(3px 5px 5px var(--black));
    width: 350px;
}

.shadow {
    filter: drop-shadow(0px 0px 50px var(--white));
}

/*-- FV下の帯部分 --*/
.second-view {
    background-image: url("../images/fv_bg-2.webp");
    background-size: 100% auto;
    background-repeat: no-repeat;
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 60px 0 60px 100px;
    font-weight: 600;
    text-align: left;
    font-size: 40px;
}

.sv-medal {
    width: 200px;
    filter: drop-shadow(0 3px 5px var(--dark));
}

.sv-explain {
    margin-left: 30px;
}

.sv-logo {
    width: 350px;
    margin-top: 10px;
}

/*-- ABOUT --*/
.top-about-explain {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}

/* WOLFYとは？説明部分 */
.top-about-detail {
    text-align: left;
    width: fit-content;
    max-width: 600px;

    p {
        width: 100%;
        line-height: 1.5;
    }
    
    h3 {
        margin: 10px 0;
    }

    .mini-title {
        font-size: 1.2em;
    }
}

.space {
    letter-spacing: 1px;
}

/* カメラ機写真 */
.camera-image {
    width: 180px;
    filter: drop-shadow(3px 3px 5px var(--dark));
    margin-right: 50px;
}

/* 円矢印の図 */
.top-about-figure {
    width: 500px;
    margin: 30px 0;
}

/*-- PRODUCT --*/

/* 各セクション */
.top-product-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    margin-top: 30px;
}

.top-product-img {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
}

.top-product-photo {
    width: 450px;
}

.top-product-explain {
    width: 50%;
    margin-left: 30px;
}

.top-product-explain span {
    font-size: 12px;
    color: var(--soft);
}

/*-- 活用事例 --*/
.top-cases-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.top-cases-text {
    width: 40%;
    text-align: left;
    margin-right: 30px;
}

/* 事例の種類 */
.top-cases-type {
    font-weight: 700;
}

.case-type {
    font-size: 1.3em;
}

/*-- 写真ギャラリー --*/
.gallery-outer {
    width: 100%;
    overflow: hidden;
    margin: 50px 0;
}

.gallery-track {
    display: flex;
    gap: 50px;                        /* 画像間の空白 */
    width: max-content;
    animation: scrollLeft 50s linear infinite;
}

/* 
ホバーで一時停止したい場合はコメントを外してください
.gallery-track:hover {
    animation-play-state: paused;
}
*/

.gallery-item {
    flex: 0 0 auto;
    width: 500px;                     /* 画像の横幅 */
    height: 350px;                    /* 画像の縦幅 */
    border-radius: 5px;
    overflow: hidden;
}

/* 画像 */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* スクロールアニメーション */
@keyframes scrollLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-20%); }
}

/*-- FAQ --*/
.top-faq-list {
    text-align: left;
    margin-top: 30px;
}

.top-faq-q, .top-faq-a {
    color: var(--link-color);
    margin-right: 10px;
}

.top-faq-a {
    flex-shrink: 0;
}

.top-faq-item {
    margin-bottom: 15px;
    background-color: var(--white);
    border-radius: 5px;
}

.top-faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 25px 30px;
    cursor: pointer;
}

.top-faq-item summary::-webkit-details-marker {
    display: none;
}

.top-faq-item summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid var(--link-color);
    border-right: 3px solid var(--link-color);
    content: '';
    transition: transform .3s;
}

.top-faq-item[open] summary::after {
    transform: rotate(225deg);
}

.top-faq-item p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    transition: transform .5s, opacity .5s;
    display: flex;
    align-items: flex-start;
}

.top-faq-item[open] p {
    transform: none;
    opacity: 1;
}

/*-- ABOUTページ設定 
---------------------------------------*/
.about {
    .about-fv {
        padding: 100px 0;
        background-image: url(../images/about-fv.webp);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .catchcopy {
        color: var(--white);
        text-align: right;
        margin: 0 50px 0 0;
    }

    .cp-top {
        margin-bottom: 30px;
    }
}

.about-message {
    margin: 150px 0 50px 0;
    font-size: 2em;
}

.about-message-inner {
    font-weight: 400;
    font-size: 1.5em;
    margin: 80px 0 50px 0;
    color: var(--link-color);
}

.about-last-message {
    font-weight: 600;
    font-size: 2.3em;
    color: var(--default);

    em {
        font-style: normal;
        color: var(--link-color);
    }
}

.about-inner {
    margin-bottom: 30px;
}

.about-section {
    padding: 100px;

    ul {
        text-align: left;
        width: 40%;
        margin: 20px auto;
        font-size: 1.2em;
    }

    li {
        list-style-type: disc;
    }
}

.about-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    margin: 150px 0;
    width: 100%;
}

.about-explain {
    margin-right: 120px;
    position: relative;

    span {
        font-family: var(--serif-en);
        font-size: 200px;
        font-weight: 300;
        color: transparent;
        -webkit-text-stroke: 1px rgba(184, 149, 42, 0.25);
        position: absolute;
        top: -120px;
        left: -80px;
    }

    h3 {
        font-size: 3.5em;
        margin-bottom: 100px;
        color: var(--black);
        font-weight: 400;
    }

    .small {
        font-size: 3.2em;
    }

    em {
        color: var(--link-color);
        font-style: normal;
    }

    p {
        font-size: 0.9em;
        color: var(--default);
        line-height: 1.8;
    }
}

.about-photo {
    width: 480px;
}

.about-features {
    margin: 20px;
    display: grid;
    justify-content: center;
    grid-template-columns: 450px 450px;
    gap: 40px;

    p {
        margin-top: 5px;
        line-height: 2.0;
    }

    h3 {
        font-weight: 400;
        letter-spacing: -0.02em;
        line-height: 1.5;
        margin-bottom: 12px;
    }
}

/* ── WOLFYの特徴セクション ── */
.features {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px;
}

/* 2×2グリッド */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 40px;
}

/* 各カード */
.about-features > div {
    background: #fff;
    overflow: hidden;
}

/* 画像エリア */
.about-features-img {
    overflow: hidden;
    aspect-ratio: 4 / 3;

    .icon {
        margin: 30px auto;
        width: 60%;
        height: 80%;
    }
}

.about-features-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-features > div:hover .about-features-img img {
    transform: scale(1.04);
}

/* テキストエリア */
.about-features > div h3 {
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.6;
    padding: 24px 24px 12px;
}

.about-features > div p {
    line-height: 2.0;
    padding: 0 24px 28px;
}

/* スクロールアニメーション初期状態 */
.about-features > div {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-features > div.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-before-after {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    h3 {
        margin-bottom: 10px;
    }

    video {
        height: 300px;
    }
}

/* アニメーション初期状態 */
.about-text .about-explain,
.about-text .top-about-figure {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 図は少し遅らせる */
.about-text .top-about-figure {
    transition-delay: 0.15s;
}

/* 表示状態（JSで付与） */
.about-text.is-visible .about-explain,
.about-text.is-visible .top-about-figure {
    opacity: 1;
    transform: translateY(0);
}

/*-- PRODUCTページ設定 
---------------------------------------*/
.product-price {
    display: flex;
    gap: 20px;

    h3 {
        color: var(--link-color);
    }
}

.features-list {
    list-style-type: none;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0 5px;
    padding: .3em;
}

.features-list li::before {
    display: inline-block;
    width: 10px;
    height: 5px;
    border-bottom: 2px solid var(--link-color);
    border-left: 2px solid var(--link-color);
    transform: rotate(-45deg) translateY(-1.5px);
    content: '';
}

.subpage .link-btn {
    margin: 0;
}


/* ── セクション共通 ── */
.product-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 100px 48px;
    text-align: left;
}

.product-inner h2 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: var(--link-color);
    font-family: var(--serif-jp);
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-inner h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(184,149,42,0.4), transparent);
}

.pd-title {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--black);
}

/* ── product-text: 左右レイアウト ── */
.product-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 1px;
    background: var(--white);
    overflow: hidden;
}
.bg-change .product-text { background: var(--verypale); }

.product-text.even { direction: rtl; }
.product-text.even > * { direction: ltr; }

.product-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.product-text:hover .product-img-wrap img { transform: scale(1.04); }

.product-explain {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 大きな番号装飾 */
.product-explain-num {
  font-family: var(--serif-en);
  font-size: 72px;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,149,42,0.2);
  line-height: 1;
  margin-bottom: -16px;
}

.mini-title {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--black);
}

.patent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--link-color);
  border: 1px solid rgba(184,149,42,0.35);
  padding: 5px 14px;
  margin-bottom: 20px;
  width: fit-content;
  font-family: var(--serif-en);
}
.patent-badge::before {
  content: '';
  width: 12px; height: 12px;
  border: 1px solid var(--link-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-explain p {
  font-size: 13px;
  line-height: 2.1;
  color: var(--gray);
  font-weight: 300;
}

.ver-note {
  font-size: 11px;
  color: rgba(107,107,107,0.7);
  margin-top: 14px;
  letter-spacing: 0.05em;
}

/* ── カード3列（product-text-card） ── */
.product-text-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.07);
  margin-top: 1px;
}

.product-text-card .inner {
  background: var(--verypale);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-text-card .inner .product-img-wrap {
  aspect-ratio: 3/2;
}

.product-text-card .inner h4 {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  padding: 24px 24px 10px;
  color: var(--black);
}

.product-text-card .inner p {
  font-size: 12px;
  line-height: 1.95;
  color: var(--gray);
  font-weight: 300;
  padding: 0 24px 28px;
}

/* ── 区切り線 ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,149,42,0.25), transparent);
}

/* ── アニメーション ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.vis { opacity: 1; transform: none; }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }


/* ── フローリスト ── */
.flow-list {
  display: flex;
  gap: 0;
  align-items: flex-start;
  margin-bottom: 80px;
}

.flow-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* 矢印（最後以外） */
.flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 44px; /* アイコン中央 */
  right: -1px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid rgba(184,149,42,0.35);
  transform: translateY(-50%);
  z-index: 1;
}

/* アイコンエリア */
.flow-icon {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(184,149,42,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  /* 画像が入ったらこの中の.flow-icon-numを消してimgで置き換え */
}

/* ↓ 画像未定の間のプレースホルダー数字。画像確定後に削除 */
.flow-icon-num {
  font-family: var(--serif-en);
  font-size: 32px;
  font-weight: 300;
  color: var(--link-color);
  line-height: 1;
  /* 画像が入ったらこの要素ごと削除してOK */
}

/* 画像が入る場合はこのスタイルが当たる */
.flow-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

/* ステップラベル */
.flow-step-label {
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(184,149,42,0.6);
  margin-bottom: 10px;
  text-align: center;
}

/* テキスト */
.flow-text {
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
  color: var(--black);
  padding: 0 8px;
}

.flow-text small {
  display: block;
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  margin-top: 5px;
  line-height: 1.7;
}

/* ── 下の横長画像 ── */
.flow-img-wrap {
  width: 100%;
  aspect-ratio: 16/5;
  overflow: hidden;
}
.flow-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}

/* ── 共通 ── */
.product-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 48px;
}
.section-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-family: var(--serif-en);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(184,149,42,0.35), transparent);
}

/* ── リード文 ── */
.price-lead {
  line-height: 2.1;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 56px;
}

/* ── カード共通 ── */
.product-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  padding: 44px 40px 40px;
  position: relative;
  border: 1px solid transparent;
}

/* ver.3 強調 */
.price-card.is-recommended {
  border: 1px solid rgba(184,149,42,0.5);
}

.price-card.is-recommended::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
}

/* バッジ */
.price-card-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--link-color);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  font-family: var(--serif-en);
}

/* バージョンラベル */
.price-card > span {
  display: block;
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--link-color);
  margin-bottom: 14px;
}

/* カード見出し */
.price-card h3 {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--black);
}
/* ver.3の見出し：ゴールド */
.price-card.is-recommended h3 {
  color: var(--black);
}

/* 区切り線 */
.price-card-rule {
  width: 100%;
  height: 1px;
  background: rgba(184,149,42,0.2);
  margin-bottom: 24px;
}

/* 機能リスト */
.product-feature-list {
    margin-bottom: 32px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
  padding-left: 18px;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--link-color);
}
.price-card.is-recommended .feature-list li {
  color: #444;
}
.addon-feature {
    margin: 15px 0 5px;
    font-size: 15px;
}

/* 価格 */
.price-info {
  border-top: 1px solid rgba(184,149,42,0.2);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-info p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}
.price-info p strong {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
}
.price-info p strong span {
    font-size: 25px;
}

/* ver.3の価格：ゴールド強調 */
.price-card.is-recommended .price-info p strong {
  color: var(--link-color);
}

/* ── オプション ── */
.option-list {
  background: var(--white);
  padding: 28px 35px;
  margin-bottom: 48px;
  border-top: 1px solid rgba(184,149,42,0.15);
}
.option-list-label {
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--link-color);
  margin-bottom: 16px;
}
.option-list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.option-list ul li {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  padding-left: 14px;
  position: relative;
}
.option-list ul li::before {
  content: '';
  position: absolute;
  left: 0; 
  top: 9px;
  width: 5px; 
  height: 1px;
  background: var(--link-color);
}

/* CTA */
.price-cta {
  text-align: center;
  padding: 0 0 8px;
}
.price-cta p {
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 28px;
}


/* ════════════════════════════
   仕様・スペック
════════════════════════════ */
.spec-section {
  background: var(--white);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.spec-table tr:nth-child(even) {
  background: var(--verypale);
}

.spec-table td {
  padding: 18px 24px;
  font-weight: 300;
  line-height: 1.7;
  vertical-align: top;
}
.spec-table td:first-child {
  width: 220px;
  color: var(--gray);
  font-weight: 400;
  border-right: 1px solid rgba(184,149,42,0.15);
  white-space: nowrap;
}
.spec-table td:last-child {
  color: var(--black);
}
.spec-note {
  font-size: 11px;
  color: var(--gray);
  display: block;
  margin-top: 4px;
}


/*-- FAQページ設定 
---------------------------------------*/
.faq {
    width: 80%;
    margin: 50px auto 200px auto;

    .mini-title {
        font-weight: 400;
    }
}

.faq-contents {
    margin: 50px 0;
}

.faq-list {
    text-align: left;
    margin: 10px 0 30px 0;
}

.faq-link {
    color: var(--link-color);
    text-decoration: underline solid var(--link-color);
}

/* Q、Aの文字のみ色変更 */
.faq-q, .faq-a {
    color: var(--link-color);
    margin-right: 10px;
}

.faq-a {
    flex-shrink: 0;
}

.faq-item {
    margin-bottom: 15px;
    background-color: var(--verypale);
    border-radius: 5px;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 25px 30px;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid var(--link-color);
    border-right: 3px solid var(--link-color);
    content: '';
    transition: transform .3s;
}

.faq-item[open] summary::after {
    transform: rotate(225deg);
}

.faq-item p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    transition: transform .5s, opacity .5s;
    display: flex;
    align-items: flex-start;
}

.faq-item[open] p {
    transform: none;
    opacity: 1;
}

/*-- CONTACTページ設定 
---------------------------------------*/
.contact {
    margin: 50px 0 100px 0;
}

.contact-contents {
    max-width: 500px;
    text-align: left;
    margin: 0 auto;

    p {
        margin: 10px 0;
    }
}

.contact-input {
    background-color: var(--verypale);
    border: none;
    width: 500px;
    border-radius: 3px;
    padding: 15px;
    margin: 5px 0;
}

.submit-check {
    text-align: center;
    margin-top: 10px;
}

/* 送信ボタン */
.submit-check input[type="submit"] {
    font-family: var(--serif-jp);
    color: var(--white);
    border: none;
    border-radius: 3px;
    background-color: var(--link-color);
    padding: 15px 100px;
    margin: 10px 0;
    cursor: pointer;
}

/* スピナーの場所をずらす(ボタン真ん中揃え対策) */
.wpcf7-spinner {
    display: block;
    margin: 5px auto 0;
}


/*-- 送信完了画面 --*/
.contact-thanks {
    h2 {
        color: var(--link-color);
        font-size: 1.5em;
        font-weight: 600;
    }

    p {
        margin: 20px 0;
    }

    .link-btn {
        margin-top: 10px;
    }
}

.contact-caution {
    font-size: small;
    color: var(--soft);
}

/*-- NEWSページ設定 
---------------------------------------*/
/*-- ニュース一覧 --*/
.news-list {
    width: 80%;
    margin: 50px auto;
}

.news-link {
    display: flex;
    align-items: center;
    padding: 20px;
    color: var(--dark);

    h2 {
        padding-left: 20px;
        text-align: left;
        font-weight: normal;
    }
}

/*-- ニュース一覧（アーカイブ） --*/
.news-archive .top-news-list {
    width: 80%;
    margin: 50px auto 20px;
}

/*-- ニュース単体 --*/
.news-page {
    margin-bottom: 100px;
}

.news-page .category-news {
    width: 80%;
    margin: 50px auto 0 auto;

    hr {
        border: 0;
        border-bottom: solid 1px var(--pale);
    }
}

.news-details{
    text-align: left;
    padding: 0 10px 5px;
}

.news-content {
    text-align: left;
    margin: 20px 0 100px 0;
    padding: 0 10px;
}

.news-content p {
    margin-bottom: 1.5em;
}

.news-single {
    text-align: center;
}

.news-single-inner {
    width: 80%;
    max-width: 900px;
    margin: 50px auto;
    text-align: left;
}

.news-single .news-details {
    padding: 0 0 8px;
}

.news-single .news-details time {
    display: block;
    font-size: 0.85em;
    margin-bottom: 6px;
}

.news-single .news-details h2 {
    font-weight: 600;
    line-height: 1.6;
}

.news-single hr {
    border: 0;
    border-bottom: solid 1px var(--pale);
    margin: 10px 0;
}

.news-single .news-content {
    padding: 0;
    margin: 25px 0 80px 0;
}

/*-- ブログ中身 --*/
.news-single .news-content h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.news-single .news-content hr {
    border-bottom: solid 1px var(--link-color);
    margin: 20px auto;
}

.news-content ol li {
    list-style-type: decimal;
    margin-left: 20px;
}

.news-content ul li {
    list-style-type: circle;
    margin-left: 20px;
}

.wp-block-video {
    margin: 0 50px 1em;
}

.wp-block-image {
    margin: 0 50px 1em;
}

.news-content a {
    color: var(--link-color);
}

.news-back-btn {
    text-align: center;
    margin-bottom: 60px;
}

/*-- ページネーション --*/
.nav-links {
    margin-bottom: 100px;
    color: var(--link-color);

    a {
        color: var(--link-color);
    }

    .page-numbers {
        margin: 0 10px;
    }

    .current {
        background: var(--link-color);
        color: var(--white);
        padding: 10px 15px;
        border-radius: 5px;
    }
}

/*-- BLOGページ設定
---------------------------------------*/
/*-- ブログページ単体 --*/
.blog-hero {
    display: flex;
    align-items: stretch;
    width: 80%;
    margin: 30px auto 80px;
    background: var(--white);
}

.blog-title {
    width: 60%;
    color: var(--link-color);
    text-align: left;
    padding: 36px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-title h2 {
    /* font-size: 1.3em; */
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9em;
}

.blog-cat-label {
    background: var(--link-color);
    color: var(--white);
    padding: 2px 12px;
    font-size: 0.85em;
}

.blog-hero-img {
    width: 40%;
    aspect-ratio: 16 / 9;
    background: var(--white);
    overflow: hidden;
}

.blog-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.blog-content {
    width: 80%;
    margin: 0 auto;

    hr {
        border: 0;
        border-bottom: solid 1px var(--pale);
        margin: 50px 0 30px;
    }

    p {
        text-align: left;
        line-height: 1.8;
        margin-bottom: 1.5em;
    }

    a {
        color: var(--link-color);
        text-decoration: underline solid var(--link-color);
    }
}

.blog-content .wp-block-button__link {
    background-color: var(--link-color);
    color: var(--white);
}

.blog-link {
    color: var(--link-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 80px;
}

.blog-link a {
    color: var(--link-color);
}

.blog-link-prev {
    flex: 1;
    text-align: left;
}

.blog-link-list {
    flex: 1;
    text-align: center;
}

.blog-link-next {
    flex: 1;
    text-align: right;
}

/*-- BLOGアーカイブページ設定
---------------------------------------*/

/* カテゴリフィルタータブ */
.blog-cat-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 50px;
    flex-wrap: wrap;
}

.blog-cat-tab {
    display: inline-block;
    padding: 8px 24px;
    border: 2px solid var(--link-color);
    border-radius: 50px;
    color: var(--link-color);
    font-size: 0.9em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-cat-tab.active,
.blog-cat-tab:hover {
    background-color: var(--link-color);
    color: var(--white);
}

/* ブログ一覧グリッド */
.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 70%;
    margin: 0 auto 50px;
    text-align: left;
}

.blog-archive-card a {
    display: block;
    color: var(--default);
}

.blog-archive-card a:hover .blog-archive-thumb img {
    transform: scale(1.05);
}

.blog-archive-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.blog-archive-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-archive-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 8px;
    font-size: 0.85em;
}

.blog-archive-meta time {
    color: var(--soft);
}

.blog-archive-cat {
    background-color: var(--link-color);
    color: var(--white);
    padding: 2px 10px;
    font-size: 0.8em;
    border-radius: 2px;
    white-space: nowrap;
}

.blog-archive-title {
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*-- ERRORページ設定
---------------------------------------*/
.error {
    margin: 100px 0;
}

.error p {
    margin-bottom: 30px;
}

/*-- COMMERCE/COOKIEページ設定 
---------------------------------------*/
.policies {
    width: 60%;
    margin: 50px auto 100px auto;

    h2 {
        color: var(--link-color);
        font-size: 1.5em;
        font-weight: 600;
    }
}

.policies-text {
    margin: 30px 0;
    
    p {
        margin-top: 10px;
        line-height: 1.8;
    }

    a {
        color: var(--link-color);
        text-decoration: underline solid var(--link-color);
    }
}


/*-- TOP 新着情報
---------------------------------------*/
.top-news-list {
    width: 80%;
    margin: 40px auto 0;
    text-align: left;
}

.top-news-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid var(--pale);
    color: var(--dark);
    transition: color 0.2s;
}

.top-news-item:first-child {
    border-top: 1px solid var(--pale);
}

.top-news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.top-news-meta time {
    width: 110px;
    font-size: 0.85em;
    color: var(--soft);
    white-space: nowrap;
}

.top-news-cat {
    background-color: var(--link-color);
    color: var(--white);
    padding: 2px 10px;
    font-size: 0.8em;
    border-radius: 2px;
    white-space: nowrap;
}

.top-news-item .top-news-title {
    flex: 1;
    font-size: 1em;
    line-height: 1.6;
}

.top-news-item:hover .top-news-title {
    color: var(--link-color);
}

/*-- TOP ブログ
---------------------------------------*/
.top-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0 0;
    text-align: left;
}

.top-blog-card a {
    display: block;
    color: var(--default);
}

.top-blog-card a:hover .top-blog-thumb img {
    transform: scale(1.05);
}

.top-blog-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.top-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.top-blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 8px;
    font-size: 0.85em;
}

.top-blog-meta time {
    color: var(--soft);
}

.top-blog-cat {
    background-color: var(--link-color);
    color: var(--white);
    padding: 2px 10px;
    font-size: 0.8em;
    border-radius: 2px;
    white-space: nowrap;
}

.top-blog-title {
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/*======================================================
(3) スマホ・タブレット共通設定 (〜1024px)
======================================================*/
@media screen and (max-width: 1024px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .common-heading h2 {
        font-size: 2em;
    }

    /*-- ヘッダー --*/
    .menu-btn {
        position: fixed;
        top: 10px;
        right: 10px;
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 90;
        background-color: var(--link-color);
    }
    .menu-btn span,
    .menu-btn span:before,
    .menu-btn span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background-color: var(--white);
        position: absolute;
    }
    .menu-btn span:before {
        bottom: 8px;
    }
    .menu-btn span:after {
        top: 8px;
    }

    #menu-btn-check:checked ~ .menu-btn span {
        background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    }
    #menu-btn-check:checked ~ .menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    #menu-btn-check:checked ~ .menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    #menu-btn-check {
        display: none;
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 80;
        background-color: #3584bb;
    }
    .menu-content ul {
        padding: 70px 10px 0;
    }
    .menu-content ul li {
        border-bottom: solid 1px #ffffff;
        list-style: none;
    }
    .menu-content ul li a {
        display: block;
        width: 100%;
        font-size: 1.8em;
        box-sizing: border-box;
        color:#ffffff;
        text-decoration: none;
        padding: 9px 15px 10px 0;
        position: relative;
    }
    .menu-content ul li a::before {
        content: "";
        width: 10px;
        height: 10px;
        border-top: solid 2px var(--white);
        border-right: solid 2px var(--white);
        transform: rotate(45deg);
        position: absolute;
        right: 11px;
        top: 25px;
    }
    .menu-content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;/*leftの値を変更してメニューを画面外へ*/
        z-index: 80;
        background-color: rgba(0, 0, 0, 0.8);
        transition: all 0.5s;/*アニメーション設定*/
    }
    #menu-btn-check:checked ~ .menu-content {
        left: 0;/*メニューを画面内へ*/
    }

    .hamburger-menu {
        .contact-btn a {
            margin: 30px 0;
            padding: 15px 100px;
        }
    }

    /*-- TOPページ --*/

    /*-- FV --*/

    .catchcopy {
        margin: 0 auto;
        text-align: center;

        .cp-top {
            font-size: 2em;
        }

        .cp-bottom {
            margin-top: 10px;
            font-size: 1.3em;
        }
    }

    .second-view {
        padding: 20px;
        font-size: 1.2em;
        background-image: url(../images/sv-spbg.webp);

        .sv-medal {
            width: 25%;
        }

        .sv-explain {
            margin-left: 10px;
        }

        .sv-logo {
            width: 80%;
        }
    }

    .contents {
        width: 80%;
    }

    .camera-image {
        width: 150px;
    }

    .top-about-figure {
        width: 100%;
        margin: 10px 0;
    }

    .top-product-sec {
        display: block;
    }

    .top-product-photo {
        width: 100%;
    }

    .top-product-explain {
        width: 100%;
        margin-left: 0;
    }

    .top-cases-inner {
        flex-direction: column-reverse;
    }

    .youtube-player {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .top-cases-text {
        width: 100%;
        margin-right: 0;
        margin-top: 20px;
        text-align: center;
    }

    /*-- FAQ --*/
    .top-faq-item {
        div {
            width: 100%;
        }
    }

    .contact-img-machine {
        width: 100%;
    }

    .contact-demo-explain {
        width: 100%;
        margin: 0 0 0 50px;
        /* text-align: center; */
    }

    .contact-btn a {
        padding: 15px 25px;
    }

    .contact-other {
        /* flex-wrap: wrap; */
        gap: 30px;
    }

    .contact-img {
        width: 100%;
        margin: 10px 0;
    }

    .contact-right {
        margin-left: 0;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 50px;
        padding: 30px 30px 40px 30px;
    }

    .footer-logo-link {
        flex-basis: 100%;
        text-align: center;
    }

    .footer-logo {
        height: 60px;
        margin: 0 auto;
    }

    .footer-nav-center {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 14px 30px;
    }

    .footer-nav-right {
        text-align: center;
        li {
            margin-bottom: 14px;
        }
    }

    /*-- PRODUCTページ設定 
    ---------------------------------------*/
    .product-inner {
        padding: 50px 30px;

        h2 {
            margin-bottom: 30px;
        }
    }

    .product-text {
        display: flex;
        flex-direction: column;
    }

    .product-explain {
        padding: 0;
        margin: 10px 0 20px 0;
    }

    .flow-step-label {
        text-align: left;
    }

    /* 3列カード: 縦積み、各カードは左写真・右テキスト */
    .product-text-card {
        display: flex;
        flex-direction: column;
    }

    .product-text-card .inner {
        flex-direction: column;
    }

    .product-text-card .inner .product-img-wrap {
        width: 100%;
        flex-shrink: unset;
        aspect-ratio: unset;
    }

    .product-text-card .inner .product-img-wrap img {
        height: auto;
        object-fit: unset;
    }

    .product-text-card .inner h4 {
        padding: 16px 16px 6px;
        font-size: 13px;
    }

    .product-text-card .inner p {
        padding: 0 16px 16px;
        font-size: 11px;
    }

    /* フロー: 縦積み、アイコン左・テキスト右 */
    .flow-list {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 40px;
    }

    .flow-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 36px;
        flex: none;
    }

    .flow-icon {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .flow-icon img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .flow-icon-num {
        font-size: 22px;
    }

    .flow-content {
        display: flex;
        flex-direction: column;
        text-align: left;
        padding-top: 10px;
    }

    .flow-text {
        text-align: left;
    }

    /* 下向き矢印 */
    .flow-item:not(:last-child)::after {
        top: auto;
        bottom: 25px;
        left: 25px;
        right: auto;
        border-top: 12px solid rgba(184,149,42,0.35);
        border-bottom: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        transform: translateX(-50%);
    }

    /* PRODUCTページ追加
    ---------------------------------------*/
    .product-text.even {
        direction: ltr;
    }

    .product-explain {
        padding: 20px 0;
        margin: 0 0 20px 0;
    }

    .product-price {
        grid-template-columns: 1fr;
    }

    .price-card {
        order: 2;
    }

    .price-card.is-recommended {
        order: 1;
    }

    /*-- ABOUTページ設定
    ---------------------------------------*/
    /* FV */
    .about .about-fv {
        padding: 60px 20px;
    }

    .about .catchcopy {
        text-align: center;
        margin: 0 20px;
    }

    /* テキストセクション */
    .about-section {
        padding: 50px 20px;
    }

    .about-section ul {
        width: 90%;
    }

    .about-text {
        flex-direction: column;
        margin: 60px 0;
    }

    .about-text.even {
        flex-direction: column;
    }

    .about-explain {
        margin-right: 0;
        width: 100%;

        p {
            margin-bottom: 20px;
        }
    }

    .even .about-explain {
        margin-left: 0;
    }

    .about-explain span {
        font-size: 80px;
        top: -60px;
        left: 0;
    }

    .about-explain h3 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .about-explain .small {
        font-size: 1.8em;
    }

    .about-photo {
        width: 100%;
    }

    /* WOLFYの特徴 */
    .features {
        padding: 50px 20px;
    }

    .about-features {
        grid-template-columns: 1fr;

        h3 {
            font-size: 1.25em;
            margin-bottom: 0;
        }
    }

    /* before/after動画 */
    .about-before-after {
        flex-direction: column;
    }

    .about-before-after video {
        width: 100%;
        height: auto;
    }

    /* メッセージ */
    .about-message {
        margin: 60px 0 30px 0;
        font-size: 1.3em;
    }

    .about-message-inner {
        font-size: 1.1em;
        margin: 40px 0 30px 0;
    }

    .about-last-message {
        font-size: 1.4em;
    }

    /*-- BLOGページ設定
    ---------------------------------------*/
    .blog-hero {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .blog-title {
        width: 100%;
        padding: 24px;
    }

    .blog-hero-img {
        width: 100%;
    }

    /* BLOGアーカイブ */
    .blog-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 90%;
        gap: 20px;
    }

    /*-- FAQページ設定
    ---------------------------------------*/
    .faq-item {
        div {
            width: 100%;
        }
    }

    /*-- CONTACTページ設定
    ---------------------------------------*/
    .contact {
        margin: 50px 0 100px 0;
        padding: 0 20px;
        width: 100%;
    }

    .contact-input {
        width: 100%;
    }

    /*-- COMMERCE/COOKIEページ設定
    ---------------------------------------*/
    .policies {
        width: 92%;
        margin: 50px auto 100px auto;
    }

    /*-- FAQページ設定 (幅調整)
    ---------------------------------------*/
    .faq {
        width: 92%;
        margin: 50px auto 100px auto;
    }

    /*-- TOP 新着情報 --*/
    .top-news-list {
        width: 100%;
    }

    .top-news-item {
        flex-direction: column;
        gap: 5px;
        padding: 15px 0;
    }

    .top-news-meta time {
        width: auto;
        font-size: 0.8em;
    }

    /*-- TOP ブログ --*/
    .top-blog-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /*-- ニュース単体ページ --*/
    .news-single-inner {
        width: 90%;
    }
}


/*======================================================
(4) タブレット上書き設定 (786px - 1024px)
  スマホ共通スタイルを基本に、タブレット向けに調整
======================================================*/
@media screen and (min-width: 786px) and (max-width: 1024px) {

    /*-- レイアウト --*/
    .contents {
        width: 85%;
        padding: 80px 0;
    }

    /*-- FV --*/
    .first-view {
        background-image: url("../images/fv_bg.webp");
        padding: 80px 30px;
    }

    .fv-img-machine {
        max-width: 300px;
    }

    .catchcopy .cp-top {
        font-size: 2.3em;
    }

    .catchcopy .cp-bottom {
        font-size: 1.5em;
    }

    /*-- FV下帯 --*/
    .second-view {
        font-size: 1.8em;
        padding: 35px 50px;
    }

    .sv-medal {
        width: 18%;
    }

    .sv-logo {
        width: 60%;
    }

    /*-- ギャラリー --*/
    .gallery-item {
        width: 380px;
        height: 270px;
    }

    /*-- TOPページ ABOUT --*/
    .top-about-figure {
        width: 80%;
    }

    /*-- TOPページ 活用事例 --*/
    .youtube-player {
        max-width: 520px;
    }

    /*-- ABOUTページ --*/
    .about .about-fv {
        padding: 80px 40px;
    }

    .about .catchcopy {
        margin: 0 40px;
    }

    .about-section {
        padding: 70px 50px;
    }

    .about-section ul {
        width: 70%;
    }

    .about-explain span {
        font-size: 100px;
        top: -70px;
        left: 0;
    }

    .about-explain h3 {
        font-size: 2.2em;
        margin-bottom: 30px;
    }

    .about-explain .small {
        font-size: 2em;
    }

    /* WOLFYの特徴: タブレットでは2列に */
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features > div h3 {
        font-size: 1.1em;
    }

    .about-message {
        font-size: 1.5em;
        margin: 80px 0 35px 0;
    }

    .about-message-inner {
        font-size: 1.2em;
        margin: 50px 0 25px 0;
    }

    .about-last-message {
        font-size: 1.7em;
    }

    /*-- PRODUCTページ --*/
    .product-inner {
        padding: 65px 40px;
    }

    /* 3列カード → タブレットでは2列に */
    .product-text-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        flex-direction: unset;
    }

    .product-text-card .inner {
        flex-direction: column;
    }

    .product-text-card .inner .product-img-wrap {
        width: 100%;
        flex-shrink: unset;
        aspect-ratio: unset;
    }

    .product-text-card .inner h4 {
        padding: 20px 20px 8px;
        font-size: 14px;
    }

    .product-text-card .inner p {
        padding: 0 20px 20px;
    }

    /* フロー */
    .flow-icon {
        width: 62px;
        height: 62px;
    }

    .flow-icon-num {
        font-size: 26px;
    }

    /*-- サイドバー お問い合わせ --*/
    .contact-img-machine {
        width: 55%;
        max-width: 280px;
    }

    /*-- フッター --*/
    .footer-logo {
        height: 60px;
    }

    /*-- ポリシーページ --*/
    .policies {
        width: 85%;
    }

    /*-- TOP 新着情報 --*/
    .top-news-item {
        flex-direction: row;
        align-items: center;
        gap: 30px;
        padding: 20px 0;
    }

    .top-news-meta time {
        width: 110px;
        font-size: 0.85em;
    }

    /*-- TOP ブログ --*/
    .top-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}


/*======================================================
(5) 小型デスクトップ設定 (1025px - 1199px)
======================================================*/
@media screen and (min-width: 1025px) and (max-width: 1199px) {

    /*-- ヘッダー --*/
    .header-logo {
        width: 190px;
        padding: 12px 20px;
    }

    .header-nav ul {
        gap: 18px;
    }

    .header-nav a {
        font-size: 0.9em;
        white-space: nowrap;
    }

    .header-contact-btn {
        padding: 0 35px;
        font-size: 1.1em;
    }

    /*-- レイアウト --*/
    .contents {
        width: 80%;
        padding: 80px 0;
    }

    /*-- FV --*/
    .first-view {
        padding: 120px 20px;
    }

    .fv-img-machine {
        width: 300px;
    }

    .cp-top {
        font-size: 40px;
    }

    .cp-bottom {
        font-size: 25px;
    }

    .catchcopy {
        margin-left: 30px;
    }

    /*-- FV下帯 --*/
    .second-view {
        font-size: 30px;
        padding: 50px 70px;
    }

    .sv-medal {
        width: 165px;
    }

    .sv-logo {
        width: 270px;
    }

    /*-- TOPページ PRODUCT --*/
    .top-product-photo {
        width: 370px;
    }

    /*-- TOPページ 活用事例 --*/
    .youtube-player {
        width: 480px;
        height: 270px;
    }

    /*-- ABOUTページ --*/
    .about .about-fv {
        padding: 80px 40px;
    }

    .about-section {
        padding: 80px 70px;
    }

    .about-text {
        margin: 100px 0;
    }

    .about-explain {
        margin-right: 80px;
    }

    .even .about-explain {
        margin-right: 0;
        margin-left: 80px;
    }

    .about-explain span {
        font-size: 150px;
        top: -100px;
    }

    .about-explain h3 {
        font-size: 2.8em;
        margin-bottom: 70px;
    }

    .about-explain .small {
        font-size: 2.5em;
    }

    .about-photo {
        width: 400px;
    }

    .about-message {
        font-size: 1.8em;
        margin: 100px 0 40px 0;
    }

    .about-message-inner {
        font-size: 1.3em;
        margin: 60px 0 30px 0;
    }

    .about-last-message {
        font-size: 2em;
    }

    .about-section ul {
        width: 55%;
    }

    /*-- PRODUCTページ --*/
    .product-inner {
        padding: 80px 48px;
    }

    /* 3列カード → 小型デスクトップでは2列に */
    .product-text-card {
        grid-template-columns: repeat(2, 1fr);
    }

    /*-- フッター --*/
    .footer-nav {
        gap: 40px;
        padding: 40px 40px 50px 40px;
    }

    .footer-nav-center {
        gap: 12px 30px;
    }

    /*-- ポリシーページ --*/
    .policies {
        width: 75%;
    }
}

/*======================================================
(6) スマホ設定 (785px以下)
======================================================*/
@media screen and (max-width: 785px) {
    /*-- FV --*/
    .first-view {
        background-image: url("../images/fv_spbg.webp");
        display: block;
        width: 100%;
        padding: 50px 20px 40px 20px;
        text-align: center;
    }

    .fv-img-machine {
        width: 50%;
    }

    .camera-image {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .top-about-explain {
        display: block;

        .top-about-detail {
            text-align: center;
        }

        .mini-title {
            margin: 0 auto;
            width: fit-content;
        }
    }

    .contact-demo {
        display: block;
        text-align: center;
    }

    .contact-demo-explain {
        margin: 30px auto;
    }

    .contact-other {
        flex-wrap: wrap;
        gap: 0;
    }

    .blog-title {
        padding: 18px 0;
    }

    .blog-title h2 {
        margin-bottom: 10px;
    }

    /* BLOGアーカイブ */
    .blog-archive-grid {
        grid-template-columns: 1fr;
        width: 92%;
        gap: 24px;
    }

    .blog-cat-tabs {
        gap: 8px;
    }

    .blog-cat-tab {
        padding: 6px 18px;
        font-size: 0.85em;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 40px 20px;
    }

    .footer-logo-link {
        flex-basis: auto;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-logo {
        height: 70px;
        margin: 0 auto;
    }

    .footer-nav-center {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
        text-align: center;
        width: 100%;
    }

    .footer-nav-right {
        text-align: center;
        width: 100%;

        li {
            margin-bottom: 20px;
        }
    }

    /*-- TOP 新着情報 --*/
    .top-news-list {
        width: 100%;
    }

    .top-news-item {
        flex-direction: column;
        gap: 4px;
        padding: 14px 0;
    }

    .top-news-meta time {
        width: auto;
        font-size: 0.78em;
    }

    .top-news-item .top-news-title {
        font-size: 0.95em;
    }

    /*-- TOP ブログ --*/
    .top-blog-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}
