.container-1200 { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-1100 { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
#service-new .head img{
    object-fit: cover;
    height: 700px;
    width: 100%;
}
.ph-visual-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, rgb(255 255 255 / 90%) 0%, rgb(255 255 255 / 25%) 60%);
}
/* --- 事業ナビゲーションセクション --- */
.ph-service-nav {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
    font-family: "Zen Maru Gothic", sans-serif;
}
.page-id-2384 p{ font-size: 16px; line-height: 2.2; font-family: "Zen Maru Gothic", sans-serif;}
.ph-service-intro { margin-bottom: 80px; }
.ph-service-intro p { font-size: 18px; line-height: 2.2; margin-bottom: 30px; font-family: "Zen Maru Gothic", sans-serif;}
.ph-intro-highlight { font-weight: 700; }

/* 円形メニュー */
.ph-circle-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}
.more-btn a{
    margin: 80px auto 0;
    min-width: 400px;
}

.nav-item {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 上寄せにしてpaddingで重心調整 */
    align-items: center;
    padding-top: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-sizing: content-box;
}

.nav-item:hover { transform: translateY(-5px); }

.nav-item .num { 
    font-size: 38px; 
    font-weight: 400; 
    font-family: serif; 
    opacity: 0.8; 
    color: #fff; /* 数字は白 */
    margin-bottom: 5px;
}

.nav-item .txt { 
    font-size: 14px; 
    font-weight: 700; 
    color: #333; /* 文字は黒 */
    letter-spacing: 0.05em;
}

/* --- 矢印アイコン：丸み・下寄り・棒付き --- */
/* --- 矢印（棒付きの型抜きデザイン・下寄り配置） --- */
.nav-item .arrow {
    width: 34px;
    height: 34px;
    background-color: #fff;
    border-radius: 50%;
    margin-top: 18px; /* 下寄りに配置 */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: inherit; /* 親のcolor（背景色）を引き継ぐ */
}

/* 矢印の「棒」部分：先端を丸める */
.nav-item .arrow::before {
    content: "";
    width: 16px;
    height: 5px; /* 線の太さ */
    background-color: currentColor;
    border-radius: 2px; /* これで線の両端が丸くなる */
    position: absolute;
    left: -1px; /* 位置を左側に寄せる */
}

/* 矢印の「先端（くの字）」部分：2本の棒で作成して先端を丸める */
.nav-item .arrow::after {
    content: "";
    width: 9px;
    height: 9px;
    /* borderを使わず、box-shadowで2方向の棒を表現し、先端を丸く見せる */
    border-top: 4px solid currentColor;
    border-right: 4px solid currentColor;
    border-top-right-radius: 3px; /* 外側の角を丸める */
    /* 線の先端（切り口）を丸めるための代替策：line-capのように見せるため少し調整 */
    border-top-left-radius: 5px;
    border-bottom-right-radius: 2px;
    transform: rotate(45deg);
    position: absolute;
    right: 15px; /* 位置を右側に寄せる */
}

/* 線の端をより厳密に丸めるための最終手段（疑似要素での実装） */
/* ※もし上記afterで端が角ばって見える場合は、こちらの方が綺麗です */
.nav-item .arrow::after {
    border: none; /* borderをリセット */
    background: none;
    width: 15px;
    height: 15px;
    border-top: 5px solid currentColor;
    border-right: 5px solid currentColor;
    /* border-radius: 3px 2px 0 2px; */ /* 先端の角を丸める */
    transform: rotate(45deg);
    line-cap: round; /* CSSでは効かないので、見た目調整 */
    stroke-linecap: round;
}

/* 各カラー設定：colorも同時に指定して矢印に継承させる */
.color-pink   { background-color: #e2d2d2; color: #e2d2d2; }
.color-yellow { background-color: #f5e6c4; color: #f5e6c4; }
.color-green  { background-color: #cbdad9; color: #cbdad9; }
.color-purple { background-color: #dad2e2; color: #dad2e2; }

/* CTAボタン */
.cta-button {
    display: inline-block;
    background-color: #d2c2c2;
    color: #333;
    padding: 16px 70px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}
.cta-button::after { content: " →"; }

.cta-text {
    margin-top: 50px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    font-family: sans-serif;
}

/* --- 01 詳細ビジュアルエリア（背景100%） --- */
.ph-service-detail { width: 100%; }

.ph-service-visual {
    width: 100%;
    height: 900px;
    background-size: cover;
    background-position: center 30%; /* 家族の顔が見える位置 */
    position: relative;
}

.ph-visual-content {
    padding-top: 120px;
    font-family: "Zen Maru Gothic", sans-serif;
}

.visual-num {
    font-size: 180px;
    font-weight: 400;
    color: #dbc6c9;
    line-height: 1.0;
    display: block;
    letter-spacing: 1px;
    filter: drop-shadow(15px 15px 8px #4372ad55);
    padding-bottom: 30px;
}

.visual-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: -25px; /* 数字と重ねる */
    letter-spacing: 0.15em;
    position: relative;
    z-index: 2;
}

.visual-copy {
    font-size: 17px;
    font-weight: 700;
    margin-top: 25px;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    #service-new .head img{
        height: auto;
    }
    .ph-visual-content {
        padding-top: 100px;
        filter: drop-shadow(3px 2px 1px #eee);
    }
    .ph-circle-nav { gap: 15px; }
    .nav-item { width: 145px; height: 145px; padding-top: 10px; }
    .nav-item .num { font-size: 28px; }
    .ph-service-visual { height: 450px; }
    .visual-num { font-size: 100px; margin-bottom: -15px; }
    .visual-title { font-size: 22px; }
    .more-btn a{
        min-width: 300px;
    }
}

/* --- 矢印の修正：先端を完璧に丸める --- */
.nav-item .arrow {
    width: 34px;
    height: 34px;
    background-color: #fff;
    border-radius: 50%;
    margin-top: 18px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 棒の部分 */
.nav-item .arrow::before {
    content: "";
    width: 14px;
    height: 4px; /* 線の太さ */
    background-color: currentColor;
    border-radius: 4px; /* 完全に丸める */
    position: absolute;
}

/* 先端（くの字）：2本の棒を組み合わせて角を丸める */
.nav-item .arrow::after {
    content: "";
    width: 10px;
    height: 10px;
    /* 線の先端を丸めるため border は使わず、疑似要素の角を調整 */
    border-top: 4px solid currentColor;
    border-right: 4px solid currentColor;
    border-top-right-radius: 4px; /* 外角の丸み */
    border-top-left-radius: 2px;  /* 線の切り口（上）の丸み */
    border-bottom-right-radius: 2px; /* 線の切り口（右）の丸み */
    
    transform: rotate(45deg);
    position: absolute;
    left: 6px;
}

/* --- 対応サービス一覧セクション --- */
.ph-service-list {
    padding: 100px 0;
    text-align: center;
    font-family: "Zen Maru Gothic", sans-serif;
}

.ph-scene-text {
    line-height: 2.2;
    font-size: 16px;
    max-width: 520px;
    text-align: left;
    margin: 0 auto 50px;
    letter-spacing: 2px;
}
.ph-scene-text .mt-large { margin-top: 40px; font-weight: 700; }

.ph-scene-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 100px;
}
.img-item { width: 30%; }
.img-item img {
    width: 100%;
    border-radius: 15px; /* 写真の角丸 */
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* サービスグリッド */
.ph-grid-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.ph-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.grid-circle {
    aspect-ratio: 1/1;
    background-color: #dbc6c9; /* 画像の淡いピンクグレー */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    transition: opacity 0.3s;
}

/* 背景色の交互バリエーション（必要に応じて） */
.grid-circle:nth-child(2),
.grid-circle:nth-child(4),
.grid-circle:nth-child(5),
.grid-circle:nth-child(7) { background-color: #e8dee0; }

@media (max-width: 768px) {
    .container-1200 { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .ph-service-list{
        padding: 60px 0;
    }
    .ph-scene-images { flex-direction: column; align-items: center; }
    .img-item { width: 90%; }
    .ph-grid-container { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
}

.ph-service-work {
    padding: 100px 0;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #333;
}

.ph-section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 80px;
}

/* 仕分け作業：横並び */
.ph-work-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 120px;
    gap: 60px;
}

.ph-work-photo {
    flex: 1;
    margin-left: calc(50% - 50vw);
    margin-right: 4%;
}
.ph-work-photo img {
    width: 100%;
    border-radius: 0px 20px 20px 0px;
    object-fit: cover;
}

.ph-work-text { width: 45%; }
.work-title {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 30px;
    border-bottom: solid 1px;
}
.ph-work-text p {
    font-size: 18px;
    line-height: 2.2;
    margin-bottom: 30px;
}

/* お買取エリア：中央揃え */
.ph-purchase-area {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}
.purchase-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
}
.purchase-text p {
    font-size: 18px;
    line-height: 2.2;
    margin-bottom: 35px;
}

/* --- 買取ボタン & 先端の丸い矢印 --- */
.ph-purchase-cta {
    margin-top: 60px;
}

.purchase-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f2e1bd; /* アセットの薄いイエロー */
    padding: 18px 60px;
    border-radius: 40px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 700;
    gap: 20px;
    transition: opacity 0.3s;
}

.round-arrow {
    width: 32px;
    height: 2px;
    background-color: #333;
    position: relative;
    border-radius: 2px; /* 棒の端を丸める */
}

/* 矢印の「くの字」部分：先端を丸めるためにborderは不使用 */
.round-arrow::before,
.round-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    width: 10px;
    height: 2px;
    background-color: #333;
    border-radius: 2px; /* 先端を丸める */
}

.round-arrow::before {
    transform: rotate(45deg);
    transform-origin: right center;
    top: -4px; /* 角度に合わせて位置調整 */
}

.round-arrow::after {
    transform: rotate(-45deg);
    transform-origin: right center;
    bottom: -4px;
}

@media (max-width: 960px) {
    .ph-work-row { flex-direction: column; }
    .ph-work-photo, .ph-work-text { width: 100%; }
    .purchase-button { width: 100%; padding: 18px 20px; }
}

.ph-service-flow {
    padding: 100px 0;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #333;
}

.container-1100 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 交互に並べる基本レイアウト */
.ph-flow-row {
    display: flex;
    justify-content: space-between;
    align-items: center; /* 垂直方向中央 */
    margin-bottom: 120px; /* セクション間の余白 */
    gap: 60px;
}

/* クラス is-reverse がある時は左右反転 */
.ph-flow-row.is-reverse {
    flex-direction: row-reverse;
}

.ph-flow-photo {
    width: 48%;
}

.ph-flow-photo img {
    width: 100%;
    height: auto;
    border-radius: 20px; /* 画像通りの角丸 */
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ph-flow-text {
    width: 48%;
}

.flow-title {
font-size: 27px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    border-bottom: solid 1px;
}

.ph-flow-text p {
    font-size: 18px;
    line-height: 2.2; /* 画像通りのゆったりした行間 */
    margin-bottom: 25px;
}

.ph-flow-text p:last-child {
    margin-bottom: 0;
}

/* 注釈テキスト */
.flow-note {
    font-size: 13px !important;
    color: #666;
    margin-top: 10px;
}

/* レスポンシブ：スマホでは縦並び */
@media (max-width: 768px) {
    .ph-service-flow{
        padding: 60px 0;
    }
    .ph-flow-row, .ph-flow-row.is-reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 80px;
    }
    .ph-flow-photo, .ph-flow-text {
        width: 100%;
    }
    .ph-flow-text {
        padding: 0 10px;
    }
}

.ph-support-features {
    padding: 100px 0;
    background-color: #f8f4f4;
    font-family: "Zen Maru Gothic", sans-serif;
}
.ph-support-features .ph-section-header{
    display: block;
}


.container-1100 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.ph-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ph-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.ph-sub-lead {
    font-size: 15px;
    color: #333;
}

/* 3カラムグリッド */
.ph-feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    flex: 1;
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02); /* 控えめな影 */
}

/* アイコンエリア */
.feature-icon {
    height: 80px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.feature-icon img {
    height: 100%;
    width: auto;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #333;
    text-align: left;
}

.feature-desc {
    font-size: 15px;
    line-height: 2.0;
    color: #333;
    text-align: left; /* 説明文は左寄せ */
}

/* スマホ対応 */
@media (max-width: 768px) {
    .ph-feature-grid {
        flex-direction: column;
    }
    .feature-card {
        padding: 40px 20px;
    }
    .ph-main-title {
        font-size: 20px;
    }
}
.ph-professional-support {
    padding: 100px 0;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #333;
    background-color: #fff;
}

.container-1000 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.ph-pro-main-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 80px;
}

.ph-pro-block {
    margin-bottom: 60px;
}

.ph-pro-header {
    margin-bottom: 30px;
}

.ph-pro-icon {
    width: 60px;
    margin-bottom: 15px;
}

.ph-pro-icon img {
    width: 100%;
    height: auto;
}

.ph-pro-h3 {
    font-size: 20px;
    font-weight: 700;
}

.ph-pro-content-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.ph-pro-content-flex.align-top {
    align-items: flex-start;
}

.ph-pro-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.8;
}

/* 2x2画像グリッド */
.ph-pro-gallery {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.ph-pro-gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
}

/* 司法書士セクション用リスト */
.ph-pro-feature-list {
    flex: 1;
    list-style: none;
    padding: 0;
}

.ph-pro-feature-list li {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
}

.ph-pro-detail-text {
    flex: 1.5;
    font-size: 14px;
    line-height: 1.8;
}

.ph-check-list {
    list-style: none;
    padding: 15px 0 0 0;
}

.ph-check-list li {
    margin-bottom: 10px;
    font-weight: 700;
}

.mt-20 { margin-top: 20px; }

.ph-pro-separator {
    height: 1px;
    margin: 80px 0;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .ph-pro-content-flex {
        flex-direction: column;
        gap: 30px;
    }
    .ph-pro-gallery {
        width: 100%;
    }
}

/* --- オプションサービスセクション --- */
.ph-option-service {
    padding: 120px 0;
    background-color: #f8f4f4;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #333;
}

.container-1000 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.ph-option-service .ph-section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 80px;
    letter-spacing: 0.1em;
}

/* 2カラムグリッド */
.ph-option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 100px; /* 縦の余白80px / 横の余白100px */
}

.ph-option-item {
    text-align: left;
}

/* アイコンエリア */
.option-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-end; /* アイコンを下に接地させる */
}

.option-icon img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.option-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.option-desc {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.02em;
    text-align: justify; /* テキストの端を揃える */
}

/* レスポンシブ：スマホでは1カラム */
@media (max-width: 768px) {
    .ph-option-service {
        padding: 80px 0;
    }
    .ph-option-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .option-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .option-name {
        font-size: 18px;
    }
}

.ph-flow-section {
    padding: 120px 0;
    font-family: "Zen Maru Gothic", sans-serif;
    background-color: #fff;
    color: #333;
}

.ph-section-header {
    text-align: center;
    margin-bottom: 100px;
}

.ph-section-main-title {
    font-size: 36px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.05em;
}

.ph-section-sub-title {
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.ph-flow-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* ステップ間を繋ぐ縦線 */
.ph-flow-container::before {
    content: "";
    position: absolute;
    left: 42px;
    top: 40px;
    bottom: 70px;
    width: 2px;
    background-color: #d6c6c6;
    z-index: 1;
}

.ph-flow-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.ph-flow-item:last-child {
    margin-bottom: 0;
}

/* ステップサークル */
.flow-step-col {
    flex-shrink: 0;
}

.step-circle {
    width: 85px;
    height: 85px;
    background-color: #d6c6c6; 
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.step-label {
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.step-num {
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
}

/* テキストエリア */
.flow-content-col {
    flex-grow: 1;
    padding-top: 5px;
}

.flow-item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.flow-item-text {
    font-size: 14px;
    line-height: 1.8;
}

/* 写真エリア */
.flow-photo-col {
    width: 220px;
    flex-shrink: 0;
}

.flow-photo-col img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
}

/* 作業事例を見るボタン（以前の矢印デザインを流用） */
.ph-flow-cta {
    margin-top: 100px;
    text-align: center;
}

.flow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #d6c6c6;
    padding: 16px 60px;
    border-radius: 40px;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 700;
    gap: 20px;
}

/* レスポンシブ：スマホでは縦並びに切り替え */
@media (max-width: 850px) {
    .ph-flow-container::before {
        display: none; /* スマホでは線を消すか位置調整 */
    }
    .ph-flow-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .flow-photo-col {
        width: 100%;
    }
}


/* FAQ全体のスタイル調整 */
#faq,#faq2 {
    background-color: #f8f4f4;
    padding: 100px 0;
    font-family: "Zen Maru Gothic", sans-serif;
}
#faq2{
    background-color: #fcf8ef;
}

#faq h2,
#faq2 h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

/* アコーディオンの外枠 */
.swell-block-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.swell-block-accordion__item {
    background: #fff;
    border-radius: 15px; /* カード全体の丸み */
    margin-bottom: 25px !important;
    border: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); /* 軽い影 */
    overflow: hidden;
}

/* --- 質問エリア (Q) --- */

.swell-block-accordion__title {
    padding: 30px 40px !important;
    display: flex !important;
    align-items: center !important;
    background-color: #fff;
}

/* Qアイコンの作成 (画像を使わずCSSで再現) */
.swell-block-accordion__title .swell-block-accordion__label {
    display: flex !important;
    align-items: center;
    gap: 25px;
}

.swell-block-accordion__title .swell-block-accordion__label::before {
    content: "Q";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border: 2px solid #d6c6c6; /* ピンクグレーの枠線 */
    color: #d6c6c6;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 500;
    font-family: "Zen Maru Gothic", sans-serif;
}
#faq2 .swell-block-accordion__title .swell-block-accordion__label::before {
    border: 2px solid #eeddb0;
    color: #eeddb0;
}

/* 元のSVG画像を非表示にする（CSSでQを出すため） */
.swell-block-accordion__title .wp-image-2042 {
    display: none !important;
}

.swell-block-accordion__title strong {
    font-size: 17px;
    color: #333;
    line-height: 1.5;
}

/* --- 回答エリア (A) --- */
.swell-block-accordion__body {
    padding: 0 40px 40px !important;
    border: none !important;
}

/* 回答のカラム構造の調整 */
.swell-block-accordion__body .wp-block-columns {
    display: flex;
    gap: 25px;
    align-items: center !important;
}

/* Aアイコンの作成 */
.swell-block-accordion__body .wp-block-column:first-child {
    flex-basis: 50px !important;
    min-width: 50px;
}

.swell-block-accordion__body .wp-block-column:first-child p::before {
    content: "A";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #d6c6c6; /* 塗りつぶしの背景 */
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 500;
    font-family: "Zen Maru Gothic", sans-serif;
}
#faq2 .swell-block-accordion__body .wp-block-column:first-child p::before {
    background-color: #eeddb0;
    color: #fff;
}

/* 回答内の元の画像を非表示 */
.swell-block-accordion__body .wp-image-2044 {
    display: none !important;
}

/* 回答テキスト */
.swell-block-accordion__body p {
    font-size: 15px;
    line-height: 2;
    color: #444;
    margin-bottom: 0.5em;
}

/* 右側の開閉アイコンの調整 */
.swell-block-accordion__icon {
    font-size: 12px;
    color: #aaa;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .swell-block-accordion__title {
        padding: 20px !important;
    }
    .swell-block-accordion__body {
        padding: 0 20px 30px !important;
    }
    .swell-block-accordion__title .swell-block-accordion__label::before,
    .swell-block-accordion__body .wp-block-column:first-child p::before {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
    }
    .swell-block-accordion__title strong {
        font-size: 15px;
    }
}

.ph-service02-photo{
    max-width: 900px;
    margin: 80px auto;
}

.ph-reuse-intro {
    padding: 100px 0;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #333;
}

/* 寄付グリッド */
.ph-donation-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 150px;
}

.ph-donation-item {
    width: 32%;
    text-align: center;
}

.donation-photo img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 15px; /* 写真の角丸 */
    margin-bottom: 20px;
}

.donation-caption {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
}

/* 買取事例導入エリア */
.ph-reuse-case-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.ph-case-photo {
        flex: 1;
    margin-left: calc(50% - 50vw);
    margin-right: 4%;
}

.ph-case-photo img {
    width: 100%;
    border-radius: 0px 20px 20px 0px;
    object-fit: cover;
}

.ph-case-text {
    width: 45%;
    text-align: left;
}

.ph-case-text p {
    font-size: 18px;
    line-height: 2.2; /* 画像通りのゆったりした行間 */
    margin-bottom: 30px;
    font-weight: 500;
}

/* 以前作成したボタンのデザインを適用 */
.ph-reuse-cta {
    text-align: center;
    margin-top: 60px;
}

/* レスポンシブ調整 */
@media (max-width: 850px) {
    .ph-reuse-intro {
    padding: 60px 0;
    }
    .ph-donation-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .ph-donation-item { width: 90%; }
    
    .ph-reuse-case-intro {
        flex-direction: column;
        gap: 40px;
    }
    .ph-case-photo, .ph-case-text { width: 100%; margin: auto;}
    .ph-case-text { text-align: center; }
    .ph-case-photo img {border-radius: 20px;}

}

#service03{
    padding-bottom: 100px;
}
#service03 .ph-visual-content{
    width: fit-content;
    margin-left: auto;
}
#service03 .ph-visual-content img{
    max-width: 150px;
    margin-top: 20px;
}

/* --- セクション全体の背景と余白 --- */
.ph-voice-section {
    padding: 100px 0;
    background-color: #f0f2f2;
    font-family: "Zen Maru Gothic", sans-serif;
}
/* --- セクションヘッダー全体の調整 --- */
.ph-section-header {
    text-align: center; /* 中央揃え */
    margin-bottom: 80px; /* カード一覧との距離 */
    display: flex;
    flex-direction: row; /* 横並び */
    justify-content: center;
    align-items: baseline; /* ベースラインで揃えて高さを合わせる */
    gap: 15px; /* 英語と日本語の間の距離 */
}

/* --- メインタイトル：Voice --- */
.ph-section-main-title {
    font-size: 48px; /* 画像通りの大きく存在感のあるサイズ */
    font-weight: 500;
    font-family: "Zen Maru Gothic", sans-serif; /* または英字用フォントがあれば指定 */
    letter-spacing: 0.05em;
    margin: 0;
    color: #333;
}

/* --- サブタイトル：お客様の声 --- */
.ph-section-sub-title {
    font-size: 14px; /* 小さめに配置 */
    font-weight: 700;
    color: #333;
    letter-spacing: 0.1em;
    white-space: nowrap; /* 改行防止 */
}

/* --- レスポンシブ：スマホ対応 --- */
@media (max-width: 768px) {
    #service03 .ph-visual-content img{
        max-width: 80px;
    }
    .ph-section-header {
        margin-bottom: 50px;
        gap: 10px;
    }
    .ph-section-main-title {
        font-size: 36px;
    }
    .ph-section-sub-title {
        font-size: 12px;
    }
}
.ph-voice-cta {
    margin-top: 80px;
    text-align: center;
}
/* --- Voiceセクション全体の背景設定 --- */
.ph-voice-section {
    padding: 100px 0;
    background-color: #f0f2f2;
    font-family: "Zen Maru Gothic", sans-serif;
}

/* --- カードの配置（3列グリッド） --- */
.ph-voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* カード同士の間隔 */
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- カード単体のデザイン --- */
.ph-voice-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); /* ごく薄い影 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 660px;
}

/* --- 本文テキスト --- */
.voice-content p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 25px;
    color: #333;
    text-align: justify;
}

.voice-content p:last-child {
    margin-bottom: 0;
}

/* --- 属性（50代・女性など） --- */
.voice-info {
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    margin-top: 40px;
    color: #333;
}

/* --- レスポンシブ：タブレット・スマホ --- */
@media (max-width: 1024px) {
    .ph-voice-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .ph-voice-grid {
        grid-template-columns: 1fr; /* スマホでは縦1列 */
        padding: 0;
    }
    .ph-voice-card {
        padding: 40px 30px;
        border-radius: 25px;
    }
}
/* --- FOLLOW US ボタン本体 --- */
.follow-button {
    display: inline-flex;
    align-items: center;
    background-color: #bbc4c4; /* ボタン本体の色 */
    height: 64px; /* 高さを固定して真円を維持 */
    padding: 0 10px 0 50px;
    border-radius: 32px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.follow-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* テキスト：FOLLOW US */
.follow-text {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-right: 20px; /* 矢印との間隔 */
}

/* 先端が丸い矢印（棒付き） */
.follow-arrow {
    width: 45px;
    height: 2px;
    background-color: #fff;
    position: relative;
    border-radius: 2px;
    margin-right: 20px; /* 右側の白い円との間隔 */
}

/* 矢印の先端パーツ（丸みのある45度棒） */
.follow-arrow::before,
.follow-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    width: 10px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
}

.follow-arrow::before {
    transform: rotate(45deg);
    transform-origin: right center;
    top: 0px;
}

.follow-arrow::after {
    transform: rotate(-45deg);
    transform-origin: right center;
    bottom: 0px;
}

/* 右端の白い正円 */
.follow-circle {
    width: 44px;
    height: 44px;
    background-color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .follow-button {
        padding: 0 8px 0 30px;
        height: 54px;
    }
    .follow-text { font-size: 15px; margin-right: 15px; }
    .follow-arrow { width: 30px; margin-right: 15px; }
    .follow-circle { width: 38px; height: 38px; }
}

.instagram{
    text-align: center;
    margin-top: 150px;
}
.instagram h2 {
    margin-bottom: 10px;
}