/* Theme Name: ふじまさ行政書士事務所テーマ */
/* Theme URI: https://fujimasa-gyosei.com/ */
/* Author: ふじまさ行政書士事務所 */
/* Author URI: https://fujimasa-gyosei.com/ */
/* Description: ふじまさ行政書士事務所向けのオリジナルWordPressテーマ */
/* Version: 1.0.0 */
/* Text Domain: fujimasa-theme */

/* -----CSS変数----- */
:root {
    --content-padding-h: max(1.5rem, calc((100% - 1100px) / 2));
    --footer-padding-h: max(1rem, calc((100% - 800px) / 2));
    --header-text-color: #f5ede7;
}

/* 料金フロー: スマホ用 電話ボタン最終上書き */
@media screen and (max-width: 768px) {
    .price-content .online-charge-booking-link--sp-tel {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 0.5rem;
        min-height: 52px;
        width: 100%;
        padding: 0.82rem 1rem;
        border-radius: 14px;
        border: 1px solid #cf9f9a;
        background: linear-gradient(135deg, #e6c2bf 0%, #dbb1ac 100%);
        color: #4b3a37 !important;
        box-shadow: 0 8px 20px rgba(119, 85, 80, 0.2);
    }

    .price-content .online-charge-booking-link--sp-tel::before {
        content: "\260E";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.35rem;
        height: 1.35rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.55);
        color: #4b3a37;
        font-size: 0.82rem;
        font-weight: 700;
        flex-shrink: 0;
    }

    .price-content .online-charge-booking-link--sp-tel span {
        margin-left: 0.1rem;
        font-size: 1rem;
        font-weight: 800;
        color: #4b3a37;
    }

    .price-content .online-charge-booking-phone-text {
        display: none !important;
    }

    .price-content .online-charge-booking-link--pc {
        display: none !important;
    }

    .price-content .online-charge-booking-link--sp {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-height: 52px;
        width: 100%;
        padding: 0.82rem 1rem;
        border-radius: 14px;
        border: 1px solid #cf9f9a;
        background: linear-gradient(135deg, #e6c2bf 0%, #dbb1ac 100%);
        color: #4b3a37 !important;
        box-shadow: 0 8px 20px rgba(119, 85, 80, 0.2);
        text-decoration: none;
    }

    .price-content .online-charge-booking-link--sp-online::before,
    .price-content .online-charge-booking-link--sp-contact::before {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.35rem;
        height: 1.35rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.55);
        color: #4b3a37;
        font-size: 0.82rem;
        font-weight: 700;
        flex-shrink: 0;
    }

    .price-content .online-charge-booking-link--sp-online::before {
        content: "\1F4BB";
    }

    .price-content .online-charge-booking-link--sp-contact::before {
        content: "\2709";
    }
}

/* -----共通スタイル----- */

body {
    font-family: Arial, sans-serif;
    color: #333;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

section {
    padding: 0 var(--content-padding-h);
}


h2 {
    text-align: center;
}

.page_title {
    margin: 2.4rem auto 0.9rem;
    width: fit-content;
    max-width: calc(100% - 2rem);
    padding: 0 0 1rem;
    color: #3a302f;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
    position: relative;
}

.page_title::after {
    content: "";
    display: block;
    width: 100%;
    min-width: 88px;
    height: 10px;
    margin: 0.7rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #e6c2bf 0%, #f1dad8 55%, #fbf1ef 100%);
}

.topic-path {
    width: fit-content;
    max-width: calc(100% - 2rem);
    margin: 0.55rem auto 1.9rem;
    padding: 0.55rem 1rem;
    text-align: center;
    line-height: 1.45;
    color: #7e6e6b;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(230, 194, 191, 0.32) 0%, rgba(241, 218, 216, 0.4) 55%, rgba(251, 241, 239, 0.72) 100%);
    border: 1px solid rgba(230, 194, 191, 0.55);
    box-shadow: 0 10px 24px rgba(110, 84, 79, 0.05);
}

.topic-path a,
.topic-path span {
    color: inherit;
}

.topic-path a {
    text-decoration: none;
    font-weight: 700;
}

.topic-path a:hover {
    opacity: 0.8;
}

@media screen and (max-width:768px) {
    .page_title {
        margin-top: 1.6rem;
        padding: 0 0 0.8rem;
        max-width: calc(100% - 1.25rem);
        font-size: 1.45rem;
    }

    .page_title::after {
        min-width: 64px;
        height: 8px;
        margin-top: 0.55rem;
    }

    .topic-path {
        max-width: calc(100% - 1.25rem);
        padding: 0.48rem 0.8rem;
        font-size: 0.8rem;
        margin: 0.45rem auto 1.2rem;
    }
}


/* -----header.php----- */
header {
    /* position: sticky; */
    top: 0;
    width: 100%;
    /* z-index: 20; */
}

.header__inner {
    position: relative;
    z-index: 50;
}

.menu-sub {
	font-size: clamp(0.69rem, 0.76vw, 0.82rem);
    color: var(--header-text-color);
}

.sp_nav {
    display: none;
}

.pc_nav {
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
    justify-content: space-between;
    width: 100%;
    gap: clamp(0.35rem, 1vw, 1rem);
}

.pc_nav .logo {
    flex: 0 0 auto;
}

.nav-links li{
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
    padding: 0 0.04rem;
}

.nav-fixed li{
    text-align: center;
    flex: 1 1 0;
    min-width: 0;
    padding: 0 0.04rem;
}

.pc_header {
    padding: 0 clamp(0.6rem, 2vw, 1.6rem);
}

.header-content {
    background-color: #E6C2BF;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    min-width: 0;
    margin-left: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    box-sizing: border-box;
    padding-left: clamp(0.25rem, 0.8vw, 0.7rem);
    gap: 0.05rem;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    display: block;
    width: 100%;
    font-size: clamp(0.78rem, 0.92vw, 0.98rem);
    line-height: 1.15;
    text-decoration: none;
    color: var(--header-text-color);
    font-weight: bold;
    overflow-wrap: anywhere;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a:link,
.nav-links a:visited,
.nav-links a:hover,
.nav-links a:active {
    color: var(--header-text-color);
}

.nav-links a:hover {
    opacity: 0.95;
}

.fixed-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    visibility: hidden;
    pointer-events: none;
    
  }
  
.nav-fixed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    width: min(96%, 1200px);
    max-width: 96%;
    min-width: 0;
    margin: 0 0 0 auto;
    padding: 0;
    padding-left: clamp(0.25rem, 0.8vw, 0.7rem);
    box-sizing: border-box;
    gap: 0.05rem;
}



.nav-fixed a {
    display: block;
    width: 100%;
    font-size: clamp(0.78rem, 0.92vw, 0.98rem);
    line-height: 1.15;
    text-decoration: none;
    color: var(--header-text-color);
    font-weight: bold;
    overflow-wrap: anywhere;
    transition: color 0.2s ease, opacity 0.2s ease;
}

@media screen and (max-width: 1260px) {
    .pc_header {
        padding: 0 0.5rem;
    }

    .nav-links li,
    .nav-fixed li {
        padding: 0 0.01rem;
    }

    .nav-links a,
    .nav-fixed a {
        font-size: clamp(0.74rem, 0.84vw, 0.92rem);
    }

    .menu-sub {
        font-size: clamp(0.64rem, 0.68vw, 0.76rem);
    }
}

.nav-fixed a:link,
.nav-fixed a:visited,
.nav-fixed a:hover,
.nav-fixed a:active {
    color: var(--header-text-color);
}

.nav-fixed a:hover {
    opacity: 0.95;
}

.fixed-header.is-show {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

body.admin-bar .fixed-header {
    top: 32px;
}

body.is-menu-open {
    overflow: hidden;
}

@media screen and (max-width: 782px) {
    body.admin-bar .fixed-header {
        top: 46px;
    }
}
  

/* ハンバーガーメニュー */
.header_logo {
    width: 100%;
}

.header {
    background-color: #E6C2BF;
    display: flex;
    align-items: center;
    /* top: 1rem;
    right: 2rem; */
    z-index: 50;
}

.header.sp_nav {
    display: none;
}


a {
    font-family: sans-serif;
    text-decoration: none;
}

a:link,
a:visited,
a:hover,
a:active {
    color: inherit;
}
.hamburger {
    display: block;
    height: 52px;
    position: relative;
    z-index: 52;
    width: 52px;
    border: none;
    border-radius: 999px;
    background-color: rgba(245, 237, 231, 0.98);
    box-shadow: 0 8px 18px rgba(99, 77, 74, 0.22);
    cursor: pointer;
}

.global-navigation__list li{
    list-style: none;
}

.hamburger.-active .hamburger__line {
    background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
}
.hamburger.-active .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
}
.hamburger__line {
    display: block;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    background-color: #7a5c58;
    transition: 0.4s;
    z-index: 60;
    border-radius: 999px;
}
.hamburger__line:before,.hamburger__line:after {
     content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #7a5c58;
    transition: inherit;
    z-index: 60;
    border-radius: 999px;
}
.hamburger__line:before {
    top: -8px;
    z-index: 60;
}
.hamburger__line:after {
    top: 8px;
    z-index: 60;
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(31, 23, 21, 0.22);
    backdrop-filter: blur(1px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 47;
}

.menu-backdrop.-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header__nav-area {
    position: fixed;
    top: 10px;
    right: 10px;
    left: auto;
    z-index: 49;
    height: calc(100vh - 20px);
    width: min(33.333vw, 320px);
    max-width: 33.333vw;
    visibility: hidden;
    padding-top: 86px;
    background-color: rgba(230,194,191,0.98);
    box-shadow: -12px 0 30px rgba(68, 48, 44, 0.2);
    box-sizing: border-box;
    overflow-x: hidden;
    border-radius: 18px;
    transform: translateX(calc(100% + 20px));
    transition: transform 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}
.header__nav-area.-active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}
.global-navigation {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 120px;
    padding-left: 24px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    text-align: center;
}
.global-navigation__list > li {
    padding-bottom: 12px;
}
.global-navigation__list > li + li {
  margin-top: 10px;
}
.global-navigation__link {
  display: block;
    color: #f5ede7;
    font-weight: 900;
    transition: color 0.4s;
    font-size: 1rem;
    line-height: 1.45;
    text-align: center;
    padding: 0.45rem 0.75rem;
    min-height: 44px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.global-navigation__link:link,
.global-navigation__link:visited,
.global-navigation__link:hover,
.global-navigation__link:active {
    color: #f5ede7;
}

.global-navigation__link .menu-sub {
    display: block;
    margin-top: 0.22rem;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    opacity: 0.86;
    font-weight: 700;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.global-navigation__link:hover {
    color: #f5ede7;
}


/* ハンバーガーメニューここまで */


/* sp対応 */
@media screen and (max-width:768px) {
    .header.sp_nav,
    .sp_nav {
        display: flex;
    }

    .header.sp_nav {
        position: relative;
        justify-content: flex-start;
        padding: 0.8rem 1rem;
        min-height: 68px;
    }

    .header_logo {
        width: auto;
        max-width: calc(100% - 1rem);
        z-index: 51;
    }

    .header_logo img {
        width: 158px !important;
        height: auto;
        display: block;
    }

    .header__inner {
        position: absolute;
        right: 1rem;
        left: auto;
        top: calc(50% - 24px);
        transform: none;
        display: block;
    }

    .pc_nav,
    .fixed-header {
        display: none;
    }

    nav {
        display: block;
        text-align: center;
    }

    .nav-links {
        /* width: 100%;
        font-size: 0.6rem;
        padding: 0; */
        display: none;
    }

    .logo{
        width: 100%;
    }

    .menu_title a {
        display: none;
    }

    .header__nav-area {
        width: min(86vw, 360px);
        max-width: 86vw;
        top: calc(env(safe-area-inset-top, 0px) + 8px);
        right: calc(env(safe-area-inset-right, 0px) + 8px);
        height: calc(100vh - env(safe-area-inset-top, 0px) - 16px);
        transform: translateX(calc(100% + 20px));
        background-color: rgba(230,194,191,0.98);
        border-radius: 16px;
        padding-top: 96px;
    }

    .header__nav-area.-active {
        transform: translateX(0);
    }

    .global-navigation {
        padding-top: 0;
        padding-right: 22px;
        padding-left: 22px;
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 20px);
    }

    .global-navigation__link {
        font-size: 1.08rem;
        min-height: 46px;
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .global-navigation__link .menu-sub {
        font-size: 0.78rem;
    }
}



/* -----footer.php----- */

footer {
    background-color: #E6C2BF;
}

.footer-content {
    padding: 10px 0;
} 

footer ul {
    list-style: none;
    display: flex;
    padding-inline-start: 0;
    justify-content: space-around;
    margin: 2rem var(--footer-padding-h);
}

footer ul li a {
    text-decoration: none;
    color: var(--header-text-color);
    font-weight: bold;
}

footer ul li a:link,
footer ul li a:visited,
footer ul li a:hover,
footer ul li a:active {
    color: var(--header-text-color);
}

footer .menu-sub {
    color: var(--header-text-color);
}

.copyrights {
    text-align: center;
    color: var(--header-text-color);
}

/* sp対応 */
@media screen and (max-width:768px) {
    .footer-content {
        flex-direction: column; /* モバイルでは縦並びに変更 */
        gap: 10px;
    }

    footer ul {
        flex-direction: column;
        align-items: center;
        margin: 1rem auto;
        padding: 0 1rem;
    }

    footer ul li {
        flex: none; /* モバイルでは自動幅に変更 */
        margin: 0.3rem 0;
        text-align: center;
    }
}



/* -----index.php-----*/
.news {
    text-align: center;
    padding: 20px 0;
}

.news ul {
    list-style: none;
    padding: 0;
}

.news ul li {
    margin-bottom: 10px;
}

.home-services {
    text-align: center;
    padding: 40px 0;
    background-color: #F5F5F5;
}

.service-categories {
    display: flex;
    justify-content: space-around;
}

.service-category h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #D9367B;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* TOPページ限定：背景・ヘッダー色に馴染むナチュラルボタン */
.home-columns .more-button,
.home-services .more-button {
    padding: 0.66rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(164, 127, 122, 0.42);
    background: linear-gradient(180deg, #edd4d2 0%, #e6c2bf 100%);
    color: #4e3b38;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(122, 94, 89, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.home-columns .more-button:hover,
.home-services .more-button:hover {
    background: linear-gradient(180deg, #f1dddb 0%, #e9c9c5 100%);
    color: #463431;
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(122, 94, 89, 0.16);
}

.profile {
    background-color: #E6C2BF;
    text-align: center;
    padding: 4rem 6% 4.5rem;
}

.profile h2 {
    padding: 20px;
    text-align: center;
    font-size: 2rem;
    margin: 0;
}

.profile-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.profile-image {
    flex: 0 1 360px;
    display: flex;
    justify-content: center;
}

.profile-image img {
    width: min(100%, 340px);
    display: block;
    border-radius: 28px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 18px 40px rgba(122, 89, 84, 0.12);
}

.profile-description {
    flex: 1 1 520px;
    max-width: 620px;
    text-align: left;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.42);
    border-radius: 24px;
}

.profile-description p{
    margin-bottom: 0;
}

.contact-options {
    display: flex;
    justify-content: space-around;
    background-color: #F5F5F5;
    padding: 2rem 6% 2.4rem;
    gap: 1rem;
}

.contact-option {
    margin: 0 1rem;
    flex: 0 0 auto;
    max-width: 280px;
}

.contact-option a {
    display: block;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 32px rgba(99, 77, 74, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.contact-option a:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(99, 77, 74, 0.22);
    opacity: 0.98;
}

.contact-option a:active {
    transform: translateY(-1px);
}

.contact-option img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width:768px) {
    .service-categories {
        display: block;
        text-align: center;
    }

    .contact-options {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 1.4rem 1rem 1.8rem;
    }

    .contact-option {
        flex: 0 0 44%;
        max-width: 180px;
        margin: 0;
    }

    .profile-content {
        display: block;
        text-align: center;
        padding: 0;
    }

    .profile-description {
        margin-bottom: 0;
        margin-top: 1.5rem;
        padding: 1.25rem;
    }

    .profile {
        padding: 3rem 5% 3.5rem;
    }

    .profile-image img {
        width: min(100%, 280px);
    }
}

/* -----料金一覧ページ----- */
/* -----料金一覧ページ----- */
.price-banner {
    width: 100%;
    max-height: 320px;
    overflow: hidden;
    line-height: 0;
}

.price-banner img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.price {
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.9), transparent 30%),
        linear-gradient(180deg, #f8f2ee 0%, #fffdfa 45%, #f6ede8 100%);
    padding: 2.5rem 0 3.5rem;
}

.price-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 max(1.5rem, calc((100% - 1060px) / 2));
}

.price-description {
    font-weight: bold;
    text-align: center;
}


/* -----オンライン相談ページ----- */
.consultation-examples {
    text-align: center;
}

.consultation-examples img {
    width: 50%;
}

.consultation-flow {
    margin: 10% 0;
    padding: 5% 0;
    text-align: center;
    background-color: #E6C2BF;
}

.consultation-flow img {
    width: 50%;
}

.contact-info {
    text-align: center;
    margin: 5%;
}

.contact-link {
    border: solid;
    border-radius: 8%;
    margin: 3rem;
}




@media screen and (max-width:768px) {
    .consultation-flow img{
        width: 100%;
    }

    .consultation-examples img {
        width: 100%;
    }

    .contact-link {
        margin: 0;
    }

    .wpcf7-email {
        width: 80vw;
    }
    .wpcf7-text {
        width: 80vw;
    }
    .wpcf7-textarea {
        width: 80vw;
    }
}

/* -----single.php（投稿ページ）----- */
.main-single {
    padding: 0 var(--content-padding-h);
}


/* -----事務所概要ページ----- */
.about {
    padding: 3.2rem 10% 4rem;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.92), transparent 30%),
        linear-gradient(180deg, #f8f2ee 0%, #fffdfa 45%, #f6ede8 100%);
}

.about-card,
.about-map-card {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(230, 194, 191, 0.5);
    border-radius: 28px;
    box-shadow: 0 20px 44px rgba(104, 81, 78, 0.08);
}

.about-card {
    padding: 2rem 2.2rem;
}

.about-content {
    margin: 0;
    padding: 1rem 0;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    align-items: start;
    border-bottom: 1px solid rgba(230, 194, 191, 0.35);
}

.about-content:first-child {
    padding-top: 0;
}

.about-content:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.about-label {
    color: #8a6c69;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.about-con {
    font-weight: bold;
    color: #3b3332;
    line-height: 1.8;
}

.link-none {
   pointer-events: none;
}

@media screen and (max-width:768px) {
    .map {
        width: auto;
    }

    .about {
        padding: 2rem 4% 2.6rem;
    }

    .about-card {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .about-map-card {
        padding: 0.85rem;
        border-radius: 20px;
    }

    .about-map-card iframe {
        min-height: 300px;
        border-radius: 16px;
    }

    .online-charge-flow,
    .online-cta,
    .online-fee-flow,
    .online-form-section {
        padding: 0 4% 1.8rem;
    }

    .online-charge-flow__card,
    .online-cta__inner,
    .online-fee-flow__card,
    .online-form-card {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .online-charge-step {
        border-width: 3px;
        border-radius: 18px;
        padding: 0.9rem 0.75rem 1rem;
    }

    .online-charge-step__title {
        font-size: 1.3rem;
    }

    .online-charge-step--booking .online-charge-step__title {
        font-size: 1rem;
    }

    .online-charge-step__number {
        font-size: 1.55rem;
    }

    .online-charge-step__note {
        font-size: 0.9rem;
    }

    .online-charge-step__icon {
        width: 1.55em;
        height: 1.55em;
    }

    .price-content .online-charge-booking-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .price-content .online-charge-booking-link {
        min-height: 48px;
        padding: 0.65rem 0.85rem;
        border-radius: 12px;
        border: 1px solid #a45d55;
        border-bottom: 1px solid #a45d55;
        background: linear-gradient(135deg, #c77b71 0%, #b05c53 100%);
        color: #fff;
        line-height: 1.35;
        box-shadow: 0 8px 18px rgba(109, 69, 63, 0.22);
    }

    .price-content .online-charge-booking-link:link,
    .price-content .online-charge-booking-link:visited,
    .price-content .online-charge-booking-link:hover,
    .price-content .online-charge-booking-link:active {
        color: #fff;
    }

    .price-content .online-charge-booking-link--sp-tel {
        display: inline-flex;
        flex-direction: column;
        gap: 0.15rem;
    }

    .price-content .online-charge-booking-link--sp-tel span {
        font-size: 1.02rem;
    }

    .price-content .online-charge-booking-phone-text {
        display: none;
    }

    .online-charge-timing {
        max-width: min(320px, 94%);
        padding: 0.38rem 0.62rem;
    }

    .online-charge-timing__text {
        font-size: 0.8rem;
    }

    .online-charge-arrow {
        max-width: min(280px, 94%);
        font-size: 0.88rem;
        padding: 0.5rem 0.85rem;
        white-space: normal;
    }

    .online-charge-badge {
        position: static;
        margin: 0 0 0.65rem;
        font-size: 0.82rem;
        border-radius: 999px;
        padding: 0.46rem 0.66rem;
        box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.08);
    }

    .online-cta__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .online-cta__text {
        font-size: 1.05rem;
    }

    .online-cta__phone {
        min-width: 0;
        width: 100%;
    }

    .online-cta__phone.online-cta__phone--sp {
        display: inline-flex;
        width: auto;
        min-width: 0;
        align-self: stretch;
        margin: 0 0.55rem;
        padding: 0.95rem 1.5rem;
    }

    .online-cta__phone-pc {
        display: none;
    }

    .online-form__schedule {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .online-form__field--date,
    .online-form__field--time {
        grid-column: auto;
    }

    .online-form__schedule-gap {
        display: none;
    }

    .online-form__submit {
        width: min(100%, 320px);
        justify-self: center;
    }
}

/* ===== レスポンシブデザイン全般修正（スマホ） ===== */
@media screen and (max-width:768px) {

    /* フォントサイズ・余白縮小 */
    body {
        font-size: 14px;
        word-break: break-all;
        overflow-wrap: break-word;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.05rem;
    }

    /* セクション横幅を広げて改行を減らす */
    section {
        padding: 0 1rem;
    }

    /* -----single.php（投稿ページ）モバイル対応----- */
    .main-single {
        padding: 0 4%;
    }

    /* ③提供サービスページ モバイル対応 */
    .service {
        padding: 2rem 4% 2.6rem;
    }

    .service-feature-grid {
        grid-template-columns: 1fr;
    }

    .service-content-card {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .service img {
        width: 100%;
    }
    .service .wp-block-media-text {
        grid-template-columns: 1fr;
    }
    .service .wp-block-columns {
        flex-direction: column;
    }

    /* ①SNSロゴ モバイルでも適切なサイズ */
    .profile-description a img {
        max-width: 40px;
    }
}





/* 提供サービスページ */


/* -----オンライン相談ページ----- */
.about h2{
    text-align: center
}

.about img {
    margin: 0;
}

.map {
    text-align: center;
    margin-top: 2rem;
}

.about-map-card {
    padding: 1.25rem;
}

.about-map-card iframe {
    width: 100%;
    min-height: 420px;
    border-radius: 22px;
    box-shadow: inset 0 0 0 1px rgba(230, 194, 191, 0.4);
}

.online{
    text-align:center;
    margin: auto;
    padding-bottom: 2rem;
}

.online-page-banner {
    display: block;
    margin: 0 auto 1.6rem;
}

.online-charge-flow,
.online-cta,
.online-fee-flow,
.online-form-section {
    padding: 0 10% 2.5rem;
}

/* 料金ページ内のフロー説明は price-content が余白を管理 */
.price-content .online-charge-flow {
    padding: 0 0 2rem;
}

.price-content .online-charge-flow__card {
    text-align: center;
}

.online-charge-flow__card,
.online-cta__inner,
.online-fee-flow__card,
.online-form-card {
    max-width: 960px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(113, 86, 80, 0.1);
    padding: 2rem;
}

.online-charge-flow__title {
    margin: 0 0 1.35rem;
    color: #3f3433;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    line-height: 1.45;
}

.online-charge-step {
    max-width: 760px;
    margin: 0 auto;
    border: 4px solid #3a3a3f;
    border-radius: 24px;
    background: #fff;
    padding: 1.2rem 1rem 1.25rem;
}

.online-charge-step__title {
    margin: 0;
    color: #34333a;
    font-size: clamp(1.3rem, 2.4vw, 2.2rem);
    line-height: 1.35;
    font-weight: 800;
}

.online-charge-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6em;
    height: 1.6em;
    margin-right: 0.35rem;
    border-radius: 50%;
    font-size: 0.58em;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #b06d66 0%, #96584f 100%);
    vertical-align: middle;
}

.online-charge-step__icon--consult {
    background: linear-gradient(135deg, #c8856f 0%, #b05c53 100%);
}

.online-charge-step__icon--confirm {
    background: linear-gradient(135deg, #9a7f7b 0%, #7c6663 100%);
}

.online-charge-step__icon--start {
    background: linear-gradient(135deg, #8d5c56 0%, #6d4641 100%);
}

.online-charge-step--booking .online-charge-step__title {
    font-size: clamp(1.05rem, 1.9vw, 1.55rem);
}

.online-charge-step__number {
    margin: 0.15rem 0 0;
    color: #34333a;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 900;
}

.online-charge-step__note {
    margin: 0.5rem 0 0;
    color: #34333a;
    font-size: clamp(0.9rem, 1.5vw, 1.18rem);
    line-height: 1.45;
    font-weight: 700;
}

.price-content .online-charge-flow__card {
    text-align: center;
}

.price-content .online-charge-booking-links {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1rem;
}

.price-content .online-charge-booking-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(90, 71, 68, 0.45);
    background: transparent;
    color: #5a4744;
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.price-content .online-charge-booking-link:link,
.price-content .online-charge-booking-link:visited,
.price-content .online-charge-booking-link:hover,
.price-content .online-charge-booking-link:active {
    color: #5a4744;
    text-decoration: none;
}

.price-content .online-charge-booking-link--sp-tel {
    display: none;
}

.price-content .online-charge-booking-link--sp {
    display: none;
}

.price-content .online-charge-booking-phone-text {
    margin: 0;
    color: #5a4744;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.5;
}

.online-charge-timing {
    margin: 0.6rem auto 0.9rem;
    width: fit-content;
    max-width: min(520px, 96%);
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(176, 92, 83, 0.34);
    background: rgba(176, 92, 83, 0.09);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.online-charge-timing__icon {
    width: 1.28rem;
    height: 1.28rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #b05c53;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 900;
    flex-shrink: 0;
}

.online-charge-timing__text {
    color: #6a4c48;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.35;
}

.online-charge-step .online-charge-timing {
    margin: 0.75rem auto 0;
}

.online-charge-arrow {
    position: relative;
    margin: 0.9rem auto 1.05rem;
    width: fit-content;
    max-width: min(420px, 88%);
    padding: 0.6rem 1.4rem;
    background: #34333a;
    color: #fff;
    border-radius: 999px;
    font-size: clamp(0.92rem, 1.5vw, 1.25rem);
    font-weight: 800;
    line-height: 1.25;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.online-charge-arrow::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #34333a;
}

.online-charge-badge {
    position: static;
    display: inline-block;
    margin: 0 0 0.8rem;
    max-width: 100%;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 2px solid #313135;
    background: #ffe600;
    color: #34333a;
    font-size: clamp(0.85rem, 1.25vw, 1rem);
    font-weight: 800;
    line-height: 1.4;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.online-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.online-cta__text {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 700;
    color: #443a39;
    margin: 0;
    text-align: center;
}

.online-cta__phone--sp {
    display: none;
}

.online-cta__phone-pc {
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.online-cta__phone-pc-label {
    margin: 0;
    font-size: 0.9rem;
    color: #5a4d4b;
    font-weight: 700;
}

.online-cta__phone-pc-number {
    margin: 0.35rem 0 0;
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    line-height: 1.2;
    letter-spacing: 0.03em;
    font-weight: 800;
    color: #3a3130;
}

.online-cta__phone-pc-note {
    margin: 0.45rem 0 0;
    font-size: 0.82rem;
    color: #7a6967;
}

.online-cta__phone {
    min-width: 260px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1.05rem 1.6rem 1.1rem;
    border-radius: 20px;
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.32), transparent 40%),
        linear-gradient(135deg, #d9367b 0%, #e07862 54%, #e6a06f 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(217, 54, 123, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.28);
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.online-cta__phone:link,
.online-cta__phone:visited,
.online-cta__phone:hover,
.online-cta__phone:active {
    color: #fff;
}

.online-cta__phone-label {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    opacity: 0.95;
}

.online-cta__phone-number {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-shadow: 0 3px 10px rgba(88, 31, 25, 0.3);
}

.online-cta__phone::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.35) 48%, transparent 64%);
    transform: translateX(-160%);
    transition: transform 0.45s ease;
}

.online-cta__phone:hover,
.online-cta__phone:focus-visible {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 34px rgba(217, 54, 123, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    filter: saturate(1.08);
}

.online-cta__phone:hover::after,
.online-cta__phone:focus-visible::after {
    transform: translateX(160%);
}

.online-cta__phone:active {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(217, 54, 123, 0.24), inset 0 2px 4px rgba(88, 31, 25, 0.16);
}

@media screen and (min-width: 769px) {
    .online-cta__phone.online-cta__phone--sp {
        display: none !important;
    }
}

.online-form-title {
    margin: 0 0 1.2rem;
    font-size: 1.3rem;
    color: #333;
}

.online-fee-flow__title {
    margin: 0 0 1rem;
    font-size: 1.18rem;
    color: #3f3433;
}

.online-fee-flow__list {
    margin: 0;
    padding-left: 1.2rem;
    color: #4f4544;
}

.online-fee-flow__list li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.online-fee-flow__list li:last-child {
    margin-bottom: 0.35rem;
}

.online-fee-flow__note {
    margin: 0.85rem 0 0;
    padding: 0.8rem 0.95rem;
    border-radius: 12px;
    background: rgba(230, 194, 191, 0.22);
    color: #5b4f4e;
    line-height: 1.7;
}

.online-form-message {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-weight: 700;
}

.online-form-message--success {
    background: #eef8f1;
    color: #23613a;
}

.online-form-message--error {
    background: #fff0f0;
    color: #a13636;
}

.online-form {
    display: grid;
    gap: 1rem;
}

.online-form__wish {
    display: grid;
    gap: 0.65rem;
}

.online-form__wish-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #524847;
}

.online-form__schedule {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.4rem minmax(0, 1fr);
    row-gap: 0.9rem;
    align-items: end;
}

.online-form__field--date {
    grid-column: 1;
}

.online-form__field--time {
    grid-column: 3;
}

.online-form__schedule-gap {
    grid-column: 2;
    width: 100%;
    min-height: 1px;
}

.online-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    text-align: left;
}

.online-form__field label {
    font-weight: 700;
    color: #524847;
}

.required-mark {
    margin-left: 0.3em;
    color: #d63638;
    font-weight: 700;
}

.online-form__field input,
.online-form__field select,
.online-form__field textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: block;
    box-sizing: border-box;
    border: 1px solid rgba(160, 133, 129, 0.35);
    border-radius: 12px;
    padding: 0.85rem 0.95rem;
    background: #fff;
    font-size: 1rem;
}

.online-form__field textarea {
    resize: vertical;
}

.online-form__consent {
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: rgba(230, 194, 191, 0.2);
    color: #4f4544;
    font-size: 0.94rem;
    line-height: 1.7;
}

.online-form__consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.online-form__consent input[type="checkbox"] {
    margin-top: 0.2rem;
}

.online-form__submit {
    justify-self: center;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #d9367b, #e6a06f);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(217, 54, 123, 0.18);
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .online-form__schedule {
        grid-template-columns: 1fr;
        row-gap: 0.8rem;
    }

    .online-form__field--date,
    .online-form__field--time {
        grid-column: auto;
    }
}

/* -----お問い合わせページ----- */

/* ----- SNSリンクボタン（管理画面設定から出力） ----- */
.profile-sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.1rem;
    flex-wrap: nowrap;
}

.profile-image .profile-sns {
    justify-content: center;
}

.sns-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    text-decoration: none;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 4px 14px rgba(52, 36, 33, 0.14);
}

.sns-btn:link,
.sns-btn:visited,
.sns-btn:hover,
.sns-btn:active {
    text-decoration: none;
}

.sns-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    box-shadow: 0 8px 18px rgba(52, 36, 33, 0.2);
}

.sns-btn--line {
    color: #06c755;
}

.sns-btn--facebook {
    color: #1877f2;
}

.sns-btn--instagram {
    color: #e4405f;
}

.sns-btn--twitter {
    color: #111111;
}

.sns-btn__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sns-btn__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* SNSリンクアイコンを横並びにするラッパー */
.profile-description .sns-icons,
.profile-description .wp-block-social-links {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

/* ③提供サービスページ レイアウト */
.service {
    padding: 3.2rem 10% 4rem;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.92), transparent 30%),
        linear-gradient(180deg, #f8f2ee 0%, #fffdfa 45%, #f6ede8 100%);
}

.service-showcase,
.service-content-card {
    max-width: 1080px;
    margin: 0 auto;
}

.service-showcase {
    margin-bottom: 2.25rem;
}

.service-showcase__lead {
    text-align: center;
    margin-bottom: 1.8rem;
}

.service-showcase__eyebrow {
    display: inline-block;
    margin: 0 0 0.7rem;
    padding: 0.38rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(217, 54, 123, 0.16);
    color: #b05c53;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-showcase__title {
    margin: 0 0 0.9rem;
    color: #2f2a29;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.45;
}

.service-showcase__text {
    max-width: 760px;
    margin: 0 auto;
    color: #6c6362;
    line-height: 1.9;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

@media screen and (max-width: 960px) {
    .service-feature-grid {
        grid-template-columns: 1fr;
    }
}

.service-feature-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(230, 194, 191, 0.46);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(106, 80, 77, 0.08);
}

.service-feature-card__image-wrap {
    background: linear-gradient(180deg, rgba(245, 237, 231, 0.75), rgba(255, 255, 255, 0.9));
    padding: 1.25rem 1.25rem 0;
}

.service-feature-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    display: block;
}

.service-feature-card__body {
    padding: 1.2rem 1.2rem 1.35rem;
}

.service-feature-card__title {
    margin: 0 0 0.55rem;
    font-size: 1.08rem;
    color: #35302f;
}

.service-feature-card__text {
    margin: 0;
    color: #655d5c;
    line-height: 1.8;
    font-size: 0.92rem;
}

.service-content-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(230, 194, 191, 0.5);
    border-radius: 28px;
    box-shadow: 0 20px 44px rgba(104, 81, 78, 0.08);
    padding: 2rem 2.2rem;
}

.service img {
    max-width: 100%;
    height: auto;
}
.service .wp-block-image {
    margin: 1rem auto;
}
.service .wp-block-columns {
    flex-wrap: wrap;
}
.service .wp-block-media-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    margin: 2rem 0;
}

/* ④料金一覧テーブルスタイル */

/* イントロ文 */
.price-intro {
    margin-bottom: 2.2rem;
    padding: 1.2rem 1.6rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(230, 194, 191, 0.45);
    box-shadow: 0 6px 20px rgba(106, 80, 77, 0.05);
}

.price-intro p {
    margin: 0;
    line-height: 1.85;
    color: #5a4a48;
}

/* 料金テーブルブロック */
.price-tables {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-table-block {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(230, 194, 191, 0.45);
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(106, 80, 77, 0.07);
    padding: 1.6rem 1.8rem 1.8rem;
    overflow: hidden;
}

.price-table-title {
    margin: 0 0 1.2rem;
    padding: 0 0 0.85rem 1rem;
    border-left: 5px solid #E6C2BF;
    border-bottom: 1px solid rgba(230, 194, 191, 0.35);
    font-size: 1.15rem;
    font-weight: 700;
    color: #3a302f;
    text-align: left;
    line-height: 1.5;
}

/* テーブルラッパー（横スクロール用） */
.price-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

/* カスタムテーブル */
.price-table-custom {
    width: 100%;
    min-width: 400px;
    border-collapse: collapse;
}

.price-table-custom thead tr {
    background: linear-gradient(135deg, #E6C2BF 0%, #f1dad8 100%);
}

.price-table-custom th {
    padding: 0.7rem 1rem;
    font-weight: 700;
    color: #3a302f;
    text-align: left;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    border-bottom: 2px solid rgba(164, 127, 122, 0.28);
    white-space: nowrap;
}

.price-table-custom td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(230, 194, 191, 0.28);
    vertical-align: middle;
    font-size: 0.94rem;
    color: #3a3130;
    line-height: 1.7;
}

.price-table-custom tbody tr:last-child td {
    border-bottom: none;
}

.price-table-custom tbody tr:nth-child(even) td {
    background-color: rgba(230, 194, 191, 0.07);
}

.price-table-custom tbody tr:hover td {
    background-color: rgba(230, 194, 191, 0.14);
    transition: background 0.15s;
}

/* 項目列（1列目）は太字・左揃え */
.price-table-custom td:first-child {
    font-weight: 700;
    color: #3a302f;
    min-width: 120px;
}

/* 金額・手数料列（2列目以降）は右揃え */
.price-table-custom th:not(:first-child),
.price-table-custom td:not(:first-child) {
    text-align: right;
}

/* WPブロックテーブルの上書き */
.price .wp-block-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.price .wp-block-table table {
    width: 100%;
    min-width: 300px;
}

/* ===== 相続プランカード ===== */
.price-plan-cards {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

@media screen and (min-width: 900px) {
    .price-plan-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.price-plan-card {
    background: #fff;
    border: 1px solid rgba(230, 194, 191, 0.55);
    border-radius: 16px;
    padding: 1.2rem 1.3rem;
    box-shadow: 0 8px 20px rgba(111, 84, 80, 0.07);
}

.price-plan-card__title {
    margin: 0 0 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.08rem;
    line-height: 1.45;
    color: #3e3433;
}

.price-plan-card__amount {
    margin: 0 0 0.85rem;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    background: rgba(230, 194, 191, 0.2);
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.price-plan-card__amount-label {
    font-size: 0.78rem;
    color: #7a6866;
    font-weight: 700;
}

.price-plan-card__amount-value {
    font-size: 1.02rem;
    color: #3c3332;
    font-weight: 800;
}

.price-plan-card__badge {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #d1a39f 0%, #b67c76 100%);
    flex-shrink: 0;
}

.price-plan-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.price-plan-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    line-height: 1.75;
    color: #4a3c3a;
}

.price-plan-card__icon {
    margin-top: 0.02rem;
    width: 1.15em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.04rem;
    font-weight: 700;
    color: #b05c53;
    flex-shrink: 0;
    line-height: 1.2;
}

.price-plan-card__icon--muted {
    color: #bcb7b6;
}

.price-plan-card__list li.is-unavailable {
    color: #a7a1a0;
}

.price-table-block--inheritance-plan.is-support-css-toggle .price-plan-card__list li.is-unavailable {
    color: #8f8887;
    opacity: 0.92;
}

.price-table-block--inheritance-plan.is-support-css-toggle .price-plan-card__icon--muted {
    color: #9f9897;
    font-weight: 800;
}

.price-table-block--inheritance-plan.is-support-css-toggle .price-plan-card__text {
    text-decoration: none;
}

/* ===== 料金ページ スマホ対応 ===== */
@media screen and (max-width: 768px) {
    .price-banner img {
        height: 180px;
    }

    .price {
        padding: 1.5rem 0 2.2rem;
    }

    .price-content {
        padding: 0 0.85rem;
    }

    .price-intro {
        padding: 1rem 1.1rem;
        margin-bottom: 1.5rem;
        border-radius: 14px;
    }

    .price-tables {
        gap: 1.1rem;
    }

    .price-table-block {
        padding: 1.1rem 1rem 1.2rem;
        border-radius: 16px;
    }

    .price-table-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.7rem;
    }

    /* ===== スマホ：テーブルをカード形式に変換 ===== */
    .price-table-wrap {
        overflow-x: visible;
    }

    .price-table-custom {
        min-width: 0;
    }

    /* ヘッダー行を非表示にしてdata-labelで代替 */
    .price-table-custom thead {
        display: none;
    }

    /* 各行をカード表示 */
    .price-table-custom tbody tr {
        display: block;
        border: 1px solid rgba(230, 194, 191, 0.5);
        border-radius: 12px;
        margin-bottom: 0.7rem;
        padding: 0.75rem 0.9rem;
        background: #fff;
        box-shadow: 0 3px 10px rgba(106, 80, 77, 0.06);
    }

    .price-table-custom tbody tr:last-child {
        margin-bottom: 0;
    }

    /* 各セルを行で表示 */
    .price-table-custom td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.35rem 0;
        border-bottom: 1px solid rgba(230, 194, 191, 0.22);
        font-size: 0.88rem;
        background: transparent !important;
        text-align: left;
    }

    .price-table-custom td:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* 最初のセル（項目名）は単独でブロック表示 */
    .price-table-custom td:first-child {
        display: block;
        font-weight: 700;
        font-size: 0.95rem;
        color: #3a302f;
        border-bottom: 1px solid rgba(230, 194, 191, 0.4);
        padding-bottom: 0.55rem;
        margin-bottom: 0.2rem;
    }

    /* data-labelをラベルとして表示 */
    .price-table-custom td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: 700;
        color: #8a6c69;
        font-size: 0.78rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* 金額・手数料列の右揃えを解除 */
    .price-table-custom td:not(:first-child) {
        text-align: right;
    }

    .price-plan-card {
        padding: 1rem 1.1rem;
        border-radius: 14px;
    }
}

/* テキストボックス 内側余白・外側下余白 */

/* 各ページの段落テキスト：行間・内側余白 */
.service p,
.price p,
.contact p,
.profile-description p,
.main-single p,
.wysiwyg-editor p {
    line-height: 1.9;
    padding: 0.2rem 0.4rem;
    margin-bottom: 1.2rem;
}

/* コンテンツブロック（Gutenbergグループ）外側下余白 */
.service .wp-block-group,
.price .wp-block-group,
.contact .wp-block-group,
.main-single .wp-block-group {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

/* セクション自体の下余白 */
.service,
.price,
.contact,
.profile {
    padding-bottom: 2rem;
}

/* ⑤お問い合わせページ 電話予約画像のセンタリング */
.contact {
    text-align: center;
}
.contact img {
    display: block;
    margin: 1rem auto;
    max-width: 100%;
    height: auto;
}
.contact .alignleft,
.contact .alignright {
    float: none;
    display: block;
    margin: 1rem auto;
}
.contact .wp-block-image {
    text-align: center;
}
.contact .wp-block-image img {
    margin: 0 auto;
}


/* =====================================================
   コラム一覧ページ (index.php)
   ===================================================== */

.column-archive-page {
    padding-bottom: 3rem;
}

.column-archive-hero {
    background: linear-gradient(135deg, #f5ede7 0%, #E6C2BF 100%);
    text-align: center;
    padding: 2.5rem var(--content-padding-h);
}

.column-archive-hero .page_title {
    margin: 0 auto 0.5rem;
    font-size: 1.8rem;
    color: #333;
}

.column-archive-lead {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.column-list-section {
    padding: 2rem var(--content-padding-h);
}

/* コラムカードグリッド */
.column-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.column-cards--home {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

/* 個別カード */
.column-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(230, 194, 191, 0.4);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
    box-shadow: 0 18px 42px rgba(106, 80, 77, 0.08);
    backdrop-filter: blur(6px);
}

.column-card:hover {
    box-shadow: 0 24px 52px rgba(106, 80, 77, 0.16);
    transform: translateY(-8px);
    border-color: rgba(217, 54, 123, 0.28);
}

.column-card__thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.column-card__thumb-link {
    display: block;
    overflow: hidden;
}

.column-card__thumb-link img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.column-card:hover .column-card__thumb-link img {
    transform: scale(1.04);
}

.column-card__thumb-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #f5ede7, #E6C2BF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.85rem;
}

.column-card__body {
    padding: 1.35rem 1.35rem 1.45rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.column-card__meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.column-card__label {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #d9367b, #e6a06f);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.column-card__date {
    font-size: 0.78rem;
    color: #8c7a78;
}

.column-cat-badge {
    display: inline-block;
    background: #E6C2BF;
    color: #444;
    font-size: 0.72rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 3px;
    text-decoration: none;
    white-space: nowrap;
}

a.column-cat-badge:hover {
    background: #d4a8a4;
    color: #222;
}

.column-card__title {
    font-size: 1.08rem;
    line-height: 1.6;
    margin: 0 0 0.75rem;
}

.column-card__title a {
    color: #222;
    text-decoration: none;
}

.column-card__title a:hover {
    color: #D9367B;
}

.column-card__excerpt {
    font-size: 0.9rem;
    color: #655d5c;
    line-height: 1.8;
    margin-bottom: 1rem;
    flex: 1;
}

.column-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.83rem;
    color: #D9367B;
    font-weight: bold;
    text-decoration: none;
    margin-top: auto;
}

.column-card__readmore:hover {
    text-decoration: underline;
}

/* ページネーション */
.column-pagination {
    text-align: center;
    margin: 2rem 0;
}

.column-pagination .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.column-pagination .nav-links a,
.column-pagination .nav-links span.current {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.88rem;
    text-decoration: none;
    color: #333;
}

.column-pagination .nav-links a:hover {
    background: #f5ede7;
    border-color: #E6C2BF;
}

.column-pagination .nav-links span.current {
    background: #E6C2BF;
    border-color: #E6C2BF;
    font-weight: bold;
    color: #333;
}

.column-empty {
    text-align: center;
    color: #999;
    padding: 4rem 0;
    font-size: 0.95rem;
}


/* =====================================================
   ホームページ コラムセクション
   ===================================================== */

.home-columns {
    position: relative;
    padding: 2.8rem 6% 3.1rem;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.84), transparent 28%),
        linear-gradient(180deg, #fbf6f2 0%, #fffdfa 56%, #faf4ef 100%);
    overflow: hidden;
}

.home-columns::before {
    content: '';
    position: absolute;
    inset: 1rem 3%;
    border: 1px solid rgba(230, 194, 191, 0.38);
    border-radius: 28px;
    pointer-events: none;
}

.home-columns::after {
    content: '';
    position: absolute;
    top: -72px;
    right: -46px;
    width: 210px;
    height: 210px;
    background: radial-gradient(circle, rgba(230, 194, 191, 0.34) 0%, rgba(230, 194, 191, 0) 72%);
    pointer-events: none;
}

.home-section-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 1.45rem;
}

.home-section-kicker {
    display: block;
    width: fit-content;
    margin: 0 0 0.8rem;
    padding: 0.38rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(217, 54, 123, 0.18);
    color: #b05c53;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-section-title {
    font-size: clamp(1.5rem, 2.3vw, 2rem);
    color: #2f2a29;
    margin-bottom: 0.6rem;
    position: relative;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0.15rem;
}

.home-section-title::after {
    content: '';
    display: block;
    width: 100%;
    max-width: 200px;
    min-width: 92px;
    height: 6px;
    background: linear-gradient(90deg, #E6C2BF 0%, #f4dfd5 52%, #fffdfa 100%);
    margin: 0.55rem auto 0;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(230, 194, 191, 0.3);
}

.home-section-lead {
    max-width: 560px;
    color: #6f6665;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0 auto;
}

.home-columns-more {
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.home-columns .column-cards {
    position: relative;
    z-index: 1;
}

/* TOPページのコラムカードは横長1行レイアウト */
.column-cards--home {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.column-cards--home .column-card {
    flex-direction: row;
    align-items: stretch;
    border-radius: 14px;
}

.column-cards--home .column-card__thumb-link,
.column-cards--home .column-card__thumb-placeholder {
    width: 190px;
    min-width: 190px;
}

.column-cards--home .column-card__thumb-link img,
.column-cards--home .column-card__thumb {
    height: 100%;
    min-height: 116px;
}

.column-cards--home .column-card__body {
    padding: 0.82rem 1rem;
    justify-content: center;
}

.column-cards--home .column-card__excerpt {
    display: none;
}

.column-cards--home .column-card__title {
    margin-bottom: 0.35rem;
}

.column-cards--home .column-card__title a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.column-cards--home .column-card__readmore {
    margin-top: 0.25rem;
}


/* =====================================================
   コラム記事詳細ページ (single.php)
   ===================================================== */

.single-column-wrap {
    padding: 0 var(--content-padding-h) 3rem;
}

.single-column {
    background: #fff;
    margin-top: 1.5rem;
}

/* ヘッダー */
.single-column__header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #E6C2BF;
}

.single-column__cats {
    margin-bottom: 0.8rem;
}

.single-column__title {
    font-size: 1.7rem;
    line-height: 1.5;
    color: #222;
    margin: 0.5rem 0 0.8rem;
}

.single-column__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.82rem;
    color: #999;
}

.single-column__updated {
    color: #bbb;
}

.single-column__eyecatch {
    margin-top: 1.5rem;
}

.single-column__eyecatch-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

/* 本文エリア */
.single-column__content {
    line-height: 1.9;
    color: #333;
    margin-bottom: 2.5rem;
}

.single-column__content h2 {
    font-size: 1.25rem;
    text-align: left;
    background: #f5ede7;
    border-left: 4px solid #E6C2BF;
    padding: 0.6rem 1rem;
    margin: 2.5rem 0 1rem;
}

.single-column__content h3 {
    font-size: 1.05rem;
    text-align: left;
    border-bottom: 2px solid #E6C2BF;
    padding-bottom: 0.3rem;
    margin: 2rem 0 0.8rem;
}

.single-column__content p {
    margin-bottom: 1.2rem;
    padding: 0;
}

.single-column__content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* タグ */
.single-column__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid #eee;
}

.single-column__tags-label {
    font-size: 0.82rem;
    color: #999;
}

.column-tag {
    display: inline-block;
    background: #f5f5f5;
    color: #555;
    font-size: 0.78rem;
    padding: 3px 10px;
    border-radius: 3px;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: background 0.15s;
}

.column-tag:hover {
    background: #e8e8e8;
    color: #333;
}

/* 前後記事ナビ */
.single-column__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.8rem;
}

.single-column__nav-prev,
.single-column__nav-next {
    min-width: 0;
}

.single-column__nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 4px;
}

.single-column__nav a {
    font-size: 0.88rem;
    color: #333;
    text-decoration: none;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.single-column__nav a:hover {
    color: #D9367B;
}

/* 一覧へ戻るボタン */
.single-column__back {
    margin-bottom: 2rem;
}

.back-to-column-list {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    border: 2px solid #E6C2BF;
    border-radius: 4px;
    color: #333;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
}

.back-to-column-list:hover {
    background: #f5ede7;
    color: #333;
}


/* =====================================================
   コラム モバイル対応
   ===================================================== */

@media screen and (max-width: 768px) {
    .home-columns {
        padding: 2.2rem 4% 2.5rem;
    }

    .home-columns::before {
        inset: 0.8rem 2.5%;
        border-radius: 18px;
    }

    .home-section-kicker {
        letter-spacing: 0.1em;
    }

    .home-section-title {
        font-size: 1.5rem;
    }

    .home-section-lead {
        font-size: 0.86rem;
    }

    .column-archive-hero {
        padding: 2rem 4%;
    }

    .column-archive-hero .page_title {
        font-size: 1.4rem;
    }

    .column-list-section {
        padding: 1.5rem 4%;
    }

    .column-cards {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .column-cards--home {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .column-card__thumb-link img,
    .column-card__thumb {
        height: 200px;
    }

    .column-card {
        border-radius: 20px;
    }

    .column-card__body {
        padding: 1.15rem 1.1rem 1.25rem;
    }

    .column-cards--home .column-card {
        flex-direction: row;
        border-radius: 16px;
    }

    .column-cards--home .column-card__thumb-link,
    .column-cards--home .column-card__thumb-placeholder {
        width: 120px;
        min-width: 120px;
    }

    .column-cards--home .column-card__thumb-link img,
    .column-cards--home .column-card__thumb {
        height: 100%;
        min-height: 96px;
    }

    .column-cards--home .column-card__body {
        padding: 0.8rem 0.9rem;
    }

    .column-cards--home .column-card__meta {
        gap: 0.45rem;
        margin-bottom: 0.45rem;
    }

    .column-cards--home .column-card__label {
        font-size: 0.62rem;
    }

    .column-cards--home .column-card__title {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }

    .single-column-wrap {
        padding: 0 4% 2rem;
    }

    .single-column__title {
        font-size: 1.25rem;
    }

    .single-column__nav {
        grid-template-columns: 1fr;
    }

    .single-column__nav-next {
        text-align: left;
    }

    .single-column__content h2 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .price-content .online-charge-booking-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .price-content .online-charge-booking-link--pc,
    .price-content .online-charge-booking-phone-text {
        display: none !important;
    }

    .price-content .online-charge-booking-link--sp,
    .price-content .online-charge-booking-link--sp-tel {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex-direction: row !important;
        gap: 0.65rem !important;
        min-height: 56px !important;
        width: 100% !important;
        padding: 0.9rem 1rem !important;
        border-radius: 14px !important;
        border: 1px solid #cfa39f !important;
        background: linear-gradient(135deg, #e6c2bf 0%, #d8aba6 100%) !important;
        color: #4b3a37 !important;
        box-shadow: 0 8px 18px rgba(119, 85, 80, 0.18) !important;
        text-decoration: none !important;
        box-sizing: border-box;
    }

    .price-content .online-charge-booking-link--sp:link,
    .price-content .online-charge-booking-link--sp:visited,
    .price-content .online-charge-booking-link--sp:hover,
    .price-content .online-charge-booking-link--sp:active,
    .price-content .online-charge-booking-link--sp-tel:link,
    .price-content .online-charge-booking-link--sp-tel:visited,
    .price-content .online-charge-booking-link--sp-tel:hover,
    .price-content .online-charge-booking-link--sp-tel:active {
        color: #4b3a37 !important;
    }

    .price-content .online-charge-booking-link--sp-online::before,
    .price-content .online-charge-booking-link--sp-contact::before,
    .price-content .online-charge-booking-link--sp-tel::before {
        content: none !important;
        display: none !important;
    }

    .price-content .online-charge-booking-link__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.9rem;
        height: 1.9rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        color: #4b3a37;
        flex: 0 0 1.9rem;
    }

    .price-content .online-charge-booking-link__icon svg {
        width: 1.05rem;
        height: 1.05rem;
        display: block;
    }

    .price-content .online-charge-booking-link__label {
        font-size: 1rem;
        font-weight: 800;
        line-height: 1.35;
        flex-shrink: 0;
    }
}

@media screen and (min-width: 769px) {
    .price-content .online-charge-booking-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.55rem 1.25rem;
    }

    .price-content .online-charge-booking-link--pc {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 0;
        width: auto;
        padding: 0.15rem 0.22rem 0.2rem;
        border: 0;
        color: #4b3a37;
        font-size: 1.02rem;
        font-weight: 800;
        line-height: 1.35;
        letter-spacing: 0.02em;
        text-decoration: none;
        background: linear-gradient(transparent 58%, rgba(216, 171, 166, 0.78) 58%);
        box-shadow: none;
        box-sizing: border-box;
    }

    .price-content .online-charge-booking-link--pc:link,
    .price-content .online-charge-booking-link--pc:visited,
    .price-content .online-charge-booking-link--pc:hover,
    .price-content .online-charge-booking-link--pc:active {
        color: #4b3a37;
        text-decoration: none;
    }

    .price-content .online-charge-booking-phone-text {
        order: 2;
        flex-basis: 100%;
        margin: 0.15rem 0 0;
        padding: 0;
        border: 0;
        background: transparent;
        color: #5d4a47;
        font-size: 1.02rem;
        font-weight: 900;
        letter-spacing: 0.02em;
        line-height: 1.35;
        text-align: center;
    }

    .price-content .online-charge-booking-link--pc:hover {
        opacity: 0.86;
    }
}
