@charset "utf-8";

.section {
    padding-top: 0;
}

.service-detail-content {
    margin-top: 48px
}

.service-detail__intro-content p {
    font-size: var(--font-md);
}

.service-detail__intro-content p:not(:first-of-type) {
    margin-top: var(--space-md);
}

/* サービスリスト */
.services-list__item {
    display: flex;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid #eee;
    font-size: var(--font-md);
}

.services-list__item:first-of-type {
    padding-top: 0;
}

.services-list__icon {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    background-color: var(--primary-green);
    border-radius: 50%;
    margin-right: var(--space-md);
    flex-shrink: 0;
    /* 疑似要素の基準点を設定 */
    position: relative;
}

.services-list__icon::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    line-height: 1;
}

/* FAQリスト */

.services-faq-list__text {
    font-size: var(--font-md);
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: var(--space-xl) 0;
    font-size: var(--font-md);
}

.faq-list__item {
    display: flex;
    align-items: flex-start;
    padding: var(--space-md) 0;
    border-bottom: 1px solid #eee;
}

.faq-list__item:first-of-type {
    padding-top: 0;
}

.faq-list__icon {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    background-color: var(--primary-green);
    border-radius: 50%;
    margin-right: var(--space-md);
    flex-shrink: 0;
    /* 疑似要素の基準点を設定 */
    position: relative;
}

/* Font Awesome疑問符アイコンを疑似要素で追加 */
.faq-list__icon::before {
    content: '\f128';
    /* fa-question のUnicode */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-46%, -46%);
    line-height: 1;
}


/* タブレット: 768px〜1439px */
@media screen and (min-width: 768px) {
    .service-detail__intro-content {
        word-break: auto-phrase;
    }

    .services-faq-list__text {
        text-align: center;
    }
}

/* PC: 1440px以上 */
@media screen and (min-width: 1440px) {
    .services-list__icon::before {
        transform: translate(-47%, -46%);
    }

    .faq-list__icon::before {
        transform: translate(-42%, -46%);
    }
}

/* ========================
   FAQ（よくあるご質問）
======================== */
.faq-content {
    margin-top: 48px;
}

.faq-content__text {
    font-size: var(--font-md);
}

.faq-content__no-items {
    text-align: center;
    font-size: var(--font-md);
    color: var(--text-light);
    margin: var(--space-xl) 0;
}

.faq-accordion {
    margin-top: var(--space-xl);
}

.faq-accordion__item {
    border-bottom: 1px solid var(--border-color);
}

/* .faq-accordion__item:last-child {
    border-bottom: none;
} */

.faq-accordion__question {
    width: 100%;
    padding: var(--space-lg) 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.faq-accordion__question:hover {
    color: var(--primary-green);
}

.faq-accordion__question-text {
    flex: 1;
    padding-right: var(--space-md);
    line-height: 1.5;
    position: relative;
    padding-left: 40px;
    /* Q装飾のスペースを確保 */
}

/* Q装飾 */
.faq-accordion__question-text::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(24px, 3vw, 28px);
    height: clamp(24px, 3vw, 28px);
    background-color: var(--primary-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(12px, 1.5vw, 14px);
    line-height: 1;
    font-family: 'Arial', sans-serif;
    flex-shrink: 0;
    text-align: center;
}

.faq-accordion__icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* プラスアイコン（デフォルト：閉じている状態） */
.faq-accordion__icon::before,
.faq-accordion__icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-accordion__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-accordion__icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

/* マイナスアイコン（開いている状態） */
.faq-accordion__question[aria-expanded="true"] .faq-accordion__icon::after {
    transform: translateX(-50%) rotate(90deg) scale(0);
}

.faq-accordion__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion__answer[aria-hidden="false"] {
    max-height: 1000px;
    /* 十分に大きな値を設定 */
}

.faq-accordion__answer-content {
    padding: 0 0 var(--space-lg) 0;
    font-size: var(--font-md);
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    padding-left: 40px;
    /* A装飾のスペースを確保 */
}

/* A装飾 */
.faq-accordion__answer-content::before {
    content: 'A';
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    color: var(--secondary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-md);
    font-family: 'Arial', sans-serif;
    flex-shrink: 0;
}

.faq-accordion__answer-content p {
    margin-bottom: var(--space-md);
}

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

/* タブレット以上 */
@media screen and (min-width: 768px) {

    .faq-content__text {
        text-align: center;
        word-break: auto-phrase;
    }

    .faq-accordion__question {
        padding: var(--space-xl) 0;
    }

    .faq-accordion__answer-content {
        padding: 0 0 var(--space-xl) 40px;
    }
}

/* PC: 1440px以上 */
@media screen and (min-width: 1440px) {}

/* ========================
   固定ページ：WordPressブロック対応
======================== */

/* === 基本コンテンツエリア === */
.page-content {
    margin-top: 48px;
    font-size: var(--font-md);
    line-height: 1.7;
}

/* === 見出しスタイル === */
.page-content .wp-block-heading {
    margin: var(--space-xl) 0 var(--space-lg) 0;
    line-height: 1.4;
}

.page-content h1.wp-block-heading {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--text-color);
    border-bottom: 3px solid var(--primary-green);
    padding-bottom: var(--space-sm);
}

/* h2見出し：シンプルな下線スタイル */
.page-content h2.wp-block-heading {
    font-size: var(--font-xl);
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: var(--space-xs);
    margin-bottom: var(--space-xl);
}

.page-content h3.wp-block-heading {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-color);
    padding-left: var(--space-sm);
    border-left: 3px solid var(--secondary-orange);
}

.page-content h4.wp-block-heading,
.page-content h5.wp-block-heading,
.page-content h6.wp-block-heading {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--text-color);
}

/* === 段落 === */

.section__content--subpage p {
    margin-bottom: var(--space-md);
}

.page-content .wp-block-paragraph {
    margin-bottom: var(--space-md);
}

/* === リストスタイル === */
.page-content .wp-block-list {
    margin: var(--space-md) 0;
}

.page-content .wp-block-list li {
    margin-bottom: var(--space-sm);
    list-style-position: inside;
    padding-left: 1em;
    text-indent: -1em;
}

.page-content ol.wp-block-list {
    list-style: decimal;
}

.page-content ul.wp-block-list {
    list-style: disc;
}

/* === Flexible Table Block：テーマ統合のみ === */
.page-content .wp-block-flexible-table-block-table {
    margin: var(--space-lg) 0;
    font-family: inherit;
}

/* 強調テキスト（緑色）をサイトカラーに統合 */
.page-content .wp-block-flexible-table-block-table strong {
    color: var(--primary-green);
    font-weight: 600;
}

/* === 引用 === */
.page-content .wp-block-quote {
    margin: var(--space-lg) 0;
    padding: var(--space-md);
    border-left: 4px solid var(--primary-green);
    background-color: rgba(0, 152, 79, 0.05);
    font-style: italic;
}

/* === 区切り線 === */
.page-content .wp-block-separator {
    margin: var(--space-xl) 0;
    border: none;
    border-top: 2px solid var(--border-color);
    width: 100%;
}

.page-content .wp-block-separator.is-style-wide {
    border-top: 3px solid var(--primary-green);
}

/* === レスポンシブ対応 === */
@media screen and (min-width: 768px) {
    .page-content h1.wp-block-heading {
        font-size: var(--font-2xl);
    }

    .page-content h2.wp-block-heading {
        font-size: var(--font-xl);
    }

    .page-content .wp-block-list {
        padding-left: var(--space-lg);
    }
}

/* ========================
   フローページ専用スタイル
======================== */

/* === フローステップリスト === */
.flow-steps {
    counter-reset: step-counter;
    margin: calc(var(--space-xl) * 2) 0;
    padding: 0;
    list-style: none;
}

.flow-steps__item {
    counter-increment: step-counter;
    display: flex;
    margin-bottom: var(--space-xl);
    position: relative;
    padding-left: calc(40px + var(--space-md));
}

.flow-steps__item:last-child::after {
    display: none;
}

/* === 数字の円（モバイル） === */
.flow-steps__item::before {
    content: counter(step-counter);
    position: absolute;
    left: 5px;
    top: 6px;
    width: 28px;
    height: 28px;
    background-color: var(--primary-green);
    font-family: "Arial Black", "Helvetica Bold", sans-serif;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-md);
    z-index: 3;
    box-shadow: 0 0 0 5px rgba(0, 152, 79, 0.15);
}

/* === 縦のライン（モバイル） === */
.flow-steps__item::after {
    content: '';
    position: absolute;
    left: 18px;
    /* 20px + 45px ÷ 2 - 1px */
    top: 34px;
    width: 2px;
    height: calc(100% + var(--space-lg));
    background-color: var(--primary-green);
    z-index: 1;
}

/* === コンテンツエリア === */
.flow-steps__content {
    flex: 1;
    padding-top: var(--space-xs);
}

.flow-steps__title {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
    word-break: auto-phrase;
}

.flow-steps__text {
    font-size: var(--font-md);
    color: var(--text-color);
    word-break: auto-phrase;
}

/* === フローステップ画像スタイル === */
.flow-steps__image {
    margin-top: var(--space-md);
    text-align: center;
}

.flow-steps__image img {
    max-width: 375px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

/* === タブレット: 768px以上 === */
@media screen and (min-width: 768px) {

    .flow-content__text {
        text-align: center;
        word-break: auto-phrase;
    }

    .flow-steps__item {
        padding-left: calc(60px + var(--space-lg));
    }

    .flow-steps__item::before {
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: var(--font-lg);
        box-shadow: 0 0 0 8px rgba(0, 152, 79, 0.15);
    }

    .flow-steps__item::after {
        left: 30px;
        top: 46px;
    }

    .flow-steps__title {
        font-size: var(--font-lg);
    }

    .flow-steps__text {
        font-size: var(--font-md);
    }

    .flow-steps__image {
        max-width: 400px;
        margin-top: var(--space-lg);
    }
}

/* === PC: 1440px以上 === */
@media screen and (min-width: 1440px) {
    .flow-steps__item {
        margin-bottom: calc(var(--space-xl) * 1.5);
    }

    .flow-steps__image img {
        max-width: 500px;
    }
}

/* ========================
   汎用：コンテンツボックス
======================== */

.content-box {
    background-color: rgba(0, 152, 79, 0.05);
    border-left: 4px solid var(--primary-green);
    padding: var(--space-md);
    margin: var(--space-xl) 0;
    border-radius: 6px;
}

/* === メインタイトル === */
.content-box__title {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--space-md);
}

/* === セクション（繰り返し可能） === */
.content-box__section {
    margin-bottom: var(--space-lg);
}

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

/* === サブタイトル === */
.content-box__subtitle {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: var(--space-xs);
}

/* === テキストコンテンツ === */
.content-box__text {
    font-size: var(--font-sm);
    margin-bottom: var(--space-sm);
}

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

/* === 強調テキスト === */
.content-box__strong {
    font-size: var(--font-md);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--space-sm);
    text-align: center;
}

/* === 注記 === */
.content-box__note {
    font-size: var(--font-xs);
    color: var(--text-light);
}

/* === タブレット: 768px以上 === */
@media screen and (min-width: 768px) {
    .content-box {
        padding: var(--space-lg);
    }

    .content-box__title {
        font-size: var(--font-lg);
    }

    .content-box__subtitle {
        font-size: var(--font-md);
    }

    .content-box__text {
        font-size: var(--font-md);
    }

    .content-box__strong {
        font-size: var(--font-lg);
    }

    .content-box__note {
        font-size: var(--font-sm);
    }
}

/* ========================
   事務所案内
======================== */
.about-intro {
    margin-top: 48px;
}

.about-profile__card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: var(--space-lg);
}

.about-profile__header {
    display: grid;
    grid-template-columns: 96px 1fr;
    grid-gap: var(--space-md);
    align-items: center;
}

.about-profile__image img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
}

.about-profile__name {
    font-size: var(--font-lg);
    font-weight: 700;
}

.about-profile__role {
    color: var(--primary-green);
    margin-top: 2px;
}

.about-profile__desc {
    margin-top: var(--space-sm);
}

.about-section-title {
    font-size: var(--font-md);
    font-weight: 600;
    margin: var(--space-xl) 0 0;
}

/* タイムライン */
.about-timeline {}

.about-timeline__item {
    padding: var(--space-sm) 0 var(--space-sm) 0;
}

.about-timeline__year {
    font-weight: 600;
    color: var(--primary-green);
}

.about-timeline__text {
    margin-top: 2px;
}

/* 資格リスト */
.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    padding-left: 1.1em;
    text-indent: -1.1em;
}

.about-list li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-green);
    margin-right: .5em;
}

/* 基本情報テーブル */
.about-info__table-wrap {
    width: 100%;
    overflow-x: auto;
}

.about-info__table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-md);
}

.about-info__table th,
.about-info__table td {
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-md) var(--space-sm);
    vertical-align: top;
}

.about-info__table th {
    width: 34%;
    color: var(--text-light);
    font-weight: 600;
}

/* アクセス */
.about-access__points {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.about-access__points li {
    margin-top: var(--space-xs);
    padding-left: 1.2em;
    text-indent: -1.2em;
}

.about-access__points li::before {
    content: '\f3c5';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-green);
    margin-right: .5em;
}

.about-access__photo-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    margin-bottom: var(--space-lg);
}

.about-access__map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: 8px;
}

/* 768px以上 */
@media screen and (min-width: 768px) {

    .about-intro__text {
        text-align: center;
        word-break: auto-phrase;
    }

    .about-profile__header {
        grid-template-columns: 200px 1fr;
    }

    .about-profile__image img {
        width: 140px;
        height: 140px;
    }

    .about-info__table-wrap {
        flex-basis: 60%;
    }

    .about-info__table th,
    .about-info__table td {
        padding: var(--space-md);
    }

    .about-access__photo-wrap {
        flex-direction: row;
        align-items: flex-start;
    }

    .about-access__photo {
        flex-basis: 40%;
    }

    .about-access__photo-caption {
        flex-basis: 60%;
        word-break: auto-phrase;
    }

    .about-access__map iframe {
        height: 360px;
    }
}

/* 1440px以上 */
@media screen and (min-width: 1440px) {
    .about-profile__card {
        padding: calc(var(--space-xl) * 1.2);
    }

    .about-access__map iframe {
        height: 420px;
    }
}

/* ========================
   代表者ご挨拶
======================== */
.about-message {
    margin-top: 48px;
}

.about-message__body {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: var(--space-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

.about-message__body::before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -12px;
    left: -12px;
    font-size: 28px;
    color: rgba(0, 152, 79, 0.15);
    line-height: 1;
}

.about-message__title {
    font-size: var(--font-lg);
    font-weight: 700;
    line-height: 1.4;
    padding-left: var(--space-sm);
    border-left: 4px solid var(--primary-green);
    margin-bottom: var(--space-sm);
}

.about-message__title:not(:first-of-type) {
    margin-top: var(--space-xl);
}

.about-message__body p {
    font-size: var(--font-md);
    line-height: 1.8;
    /* word-break: auto-phrase; */
}

@media screen and (min-width: 768px) {
    .about-message__body {
        padding: calc(var(--space-xl) * 1);
    }

    .about-message__body::before {
        font-size: 40px;
        top: -16px;
        left: -16px;
    }

    .about-message__title {
        font-size: var(--font-xl);
    }

    .about-message__body p {
        word-break: auto-phrase;
    }
}

@media screen and (min-width: 1440px) {
    .about-message__body {
        padding: calc(var(--space-xl) * 1.2);
    }
}

/* ========================
   価格表ブロック用スタイル
======================== */

/* === 価格ボックス（左緑線スタイル） === */
.price-box {
    background-color: #fff;
    border-left: 4px solid var(--primary-green);
    padding: var(--space-md);
    margin: var(--space-xl) 0;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-box__content {
    line-height: 1.6;
}

/* === ボックス内テキストのスタイル === */
.price-box__content p {
    margin-bottom: var(--space-sm);
    font-size: var(--font-md);
    color: var(--text-color);
}

.price-box__content p:last-child {
    margin-bottom: 0;
}

.price-box__content h3 {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--space-sm);
}

.price-box__content h4 {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--space-xs);
}

/* === 管理画面用スタイル === */
.price-box--editor {
    background: #f9f9f9 !important;
    border: 2px dashed #ccc !important;
    border-left: 4px solid var(--primary-green) !important;
}

/* === レスポンシブ対応 === */
@media screen and (min-width: 768px) {
    .price-box {
        padding: calc(var(--space-xl) * 1.2);
        text-align: center;
        word-break: auto-phrase;
    }

    .price-box__content h3 {
        font-size: var(--font-xl);
    }
}

/* ========================
   料金ページ専用見出しスタイル
======================== */

/* === price-content内のh2見出し（section__content--subpageスタイル継承） === */
.price-content .section__content--subpage h2 {
    position: relative;
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
    padding-bottom: var(--space-sm);
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    border-bottom: 2px solid var(--primary-green);
    /* テキストサイズに応じたボーダー長さを維持 */
    display: inline-block;
    /* 中央配置のための設定 */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: calc(var(--space-xl) * 1.2);
}

.price-content .section__content--subpage h2::before,
.price-content .section__content--subpage h2::after {
    position: absolute;
    top: 100%;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}

.price-content .section__content--subpage h2::before {
    border: 12px solid;
    border-color: transparent;
    border-top-color: var(--primary-green);
    margin-left: -12px;
}

.price-content .section__content--subpage h2::after {
    border: 9px solid;
    border-color: transparent;
    border-top-color: white;
    margin-left: -9px;
}

/* === price-content内のh3見出し（独自スタイル） === */
.price-content .section__content--subpage h3 {
    font-size: var(--font-lg);
    font-weight: 600;
    color: var(--text-color);
    margin: var(--space-xl) 0 var(--space-md) 0;
    text-align: center;
    padding-left: 0;
    border-left: none;
}

@media screen and (min-width: 768px) {
    .price-content .section__content--subpage h2 {
        font-size: var(--font-xl);
        text-align: center;
    }

    .price-content .section__content--subpage h3 {
        font-size: var(--font-lg);
    }
}

/* === 計算式ボックス === */
.formula-box {
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    border-radius: 8px;
    text-align: center;
}

.formula-box__content {
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.5;
}

/* === レスポンシブ対応 === */
@media screen and (min-width: 768px) {
    .price-box {
        padding: calc(var(--space-xl) * 1.2);
    }

    .formula-box {
        padding: calc(var(--space-xl) * 1.2);
    }

    .formula-box__content {
        font-size: var(--font-lg);
    }
}

/* === 管理画面用スタイル === */
.price-box--editor,
.formula-box--editor {
    background: #f9f9f9 !important;
    border: 2px dashed #ccc !important;
}

/* === 料金表テーブル === */
/* モバイル：デフォルトで横スクロール対応 */
.price-content__main figure.wp-block-flexible-table-block-table.is-scroll-on-mobile {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.price-content__main figure.wp-block-flexible-table-block-table.is-scroll-on-mobile table {
    min-width: 600px;
    /* テーブルの最小幅 */
    margin: 0;
}

@media screen and (min-width:768px) {

    .price-content__maint figure.wp-block-flexible-table-block-table th,
    .price-content__main figure.wp-block-flexible-table-block-table td {
        padding: var(--space-sm);
        /* タブレット以上でパディング拡大 */
    }

    .price-content__main figure.wp-block-flexible-table-block-table.is-scroll-on-mobile {
        overflow-x: visible;
        /* タブレット以上ではスクロール不要 */
    }

    .price-content__main figure.wp-block-flexible-table-block-table.is-scroll-on-mobile table {
        min-width: auto;
        /* 最小幅制限解除 */
    }
}