@charset "UTF-8";
/* CSS Document */

/*
20.取扱業務
30.料金表
40.事務所概要
50.提携事業所
60.お問い合わせ
*/

.page-main {
    background: #fff;
}

/* 取扱業務 */
.service-card-list--page {
    flex-wrap: wrap;
    justify-content: center;
    width: min(1000px, 100%);
    margin: 0 auto;
}

.business-details {
    padding: 80px 0 95px;
}

.business-detail {
    padding: 0 0 70px;
    margin-bottom: 70px;
    border-bottom: 2px solid var(--line);
    scroll-margin-top: 100px;
}

.business-detail:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.business-detail > h2,
.price-table-section > h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    font-size: 27px;
}

.business-detail > h2 span,
.price-table-section > h3 span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: var(--orange);
}

.business-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 55px;
    align-items: center;
}

.business-detail-grid > img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
}

.business-detail-copy h3 {
    margin-bottom: 24px;
    font-size: 21px;
}

.business-detail-copy p + p {
    margin-top: 14px;
}

.business-detail-copy .button {
    margin-top: 28px;
}

/* 料金表 */
.price-page-section {
    padding: 85px 0 30px;
}

.price-content {
    width: min(930px, calc(100% - 48px));
}

.price-note {
    width: min(820px, 100%);
    margin: -20px auto 55px;
}

.price-table-section {
    margin-bottom: 62px;
    scroll-margin-top: 100px;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.price-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    border: 1px solid #ead7bc;
}

.price-table th,
.price-table td {
    padding: 13px 16px;
    border-right: 1px solid #ead7bc;
    border-bottom: 1px solid #ead7bc;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    vertical-align: top;
}

.price-table thead th {
    color: #fff;
    background: var(--orange);
    text-align: center;
}

.price-table tbody tr:nth-child(even) {
    background: #fff8ef;
}

.price-table tbody th {
    width: 38%;
    font-weight: 500;
}

.price-table tbody td:nth-child(2) {
    width: 20%;
    color: var(--orange-dark);
    font-weight: 700;
    white-space: nowrap;
}

.request-flow {
    padding: 60px 0 95px;
}

.flow-item + .flow-item {
    margin-top: 30px;
}

.flow-label {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 8px 18px;
    color: var(--orange-dark);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.flow-label strong {
    font-size: 18px;
}

.flow-box {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 26px;
    align-items: center;
    min-height: 130px;
    padding: 18px 34px;
    border: 2px solid var(--text);
    border-radius: 28px;
    background: #fffdf8;
}

.flow-box img {
    width: 88px;
}

/* 事務所概要 */
.greeting-section {
    padding: 80px 0 95px;
}

.profile-image {
    width: 190px;
    margin: 0 auto 45px;
}

.greeting-copy p + p {
    margin-top: 18px;
}

.signature {
    margin-top: 42px !important;
    text-align: right;
}

.office-detail-section {
    padding: 40px 0 100px;
}

.office-detail-section h3 {
    margin-bottom: 20px;
    font-size: 23px;
}

.office-detail-table {
    margin-bottom: 70px;
}

.map-heading {
    margin-top: 10px;
}

.map-box--large {
    min-height: 430px;
}

.map-box--large iframe {
    min-height: 430px;
}

/* 提携事業所 */
.partnership-section {
    padding: 90px 0 105px;
}

.partner-row {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 55px;
    align-items: center;
    padding: 48px 40px;
    border-bottom: 2px solid var(--line);
}

.partner-row:last-child {
    border-bottom: 0;
}

.partner-copy h3 {
    margin-bottom: 28px;
    font-size: 25px;
}

.partner-copy p {
    font-size: 18px;
    line-height: 1.9;
}

.partner-row img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.partner-row:first-of-type img {
    width: 170px;
    justify-self: center;
}

/* お問い合わせ */
.contact-page-section {
    padding: 80px 0 110px;
}

.contact-intro {
    margin-bottom: 45px;
}

.contact-intro p {
    text-align: center;
}

.contact-form-wrap {
    padding: 48px;
    border-radius: 28px;
    background: #fffaf0;
    box-shadow: 0 4px 18px rgba(38, 54, 56, 0.08);
}

.form-message {
    margin-bottom: 32px;
    padding: 22px 25px;
    border-radius: 14px;
}

.form-message--success {
    border: 1px solid #69b87a;
    background: #edf8ef;
}

.form-message--error {
    border: 1px solid #d66565;
    background: #fff0f0;
}

.form-message h2 {
    margin-bottom: 8px;
    font-size: 21px;
}

.form-message ul {
    margin-top: 8px;
    padding-left: 1.2em;
    list-style: disc;
}

.contact-form {
    display: grid;
    gap: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 25px;
    align-items: start;
}

.form-row > label {
    padding-top: 12px;
    font-weight: 700;
}

.required,
.optional {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    line-height: 1.2;
}

.required {
    background: var(--coral);
}

.optional {
    background: #9aa2a2;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #d8c9ac;
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(243, 152, 0, 0.16);
}

.contact-form textarea {
    resize: vertical;
}

.form-privacy {
    text-align: center;
}

.form-privacy input {
    width: 18px;
    height: 18px;
    margin-right: 7px;
    vertical-align: -3px;
}

.form-privacy a {
    color: var(--orange-dark);
    text-decoration: underline;
}

.button--submit {
    margin: 5px auto 0;
    color: #fff;
    border: 0;
    background: var(--orange);
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-extra-content {
    margin-top: 50px;
}

/* SMP */
@media only screen and (max-width: 1024px) {
    .service-card-list--page {
        align-items: stretch;
    }

    .business-details {
        padding: 60px 0 75px;
    }

    .business-detail {
        padding-bottom: 48px;
        margin-bottom: 48px;
    }

    .business-detail > h2,
    .price-table-section > h3 {
        gap: 10px;
        margin-bottom: 24px;
        font-size: 21px;
    }

    .business-detail > h2 span,
    .price-table-section > h3 span {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .business-detail-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .business-detail-copy h3 {
        font-size: 19px;
    }

    .business-detail-copy .button {
        display: flex;
        width: min(280px, 100%);
        margin: 24px auto 0;
    }

    .price-page-section {
        padding-top: 62px;
    }

    .price-content {
        width: min(100% - 30px, 680px);
    }

    .price-note {
        margin-top: -10px;
        margin-bottom: 40px;
    }

    .price-table-section {
        margin-bottom: 48px;
    }

    .price-table {
        min-width: 680px;
    }

    .price-table th,
    .price-table td {
        padding: 11px 12px;
        font-size: 12px;
    }

    .request-flow {
        padding: 42px 0 75px;
    }

    .flow-label {
        flex-wrap: wrap;
        gap: 8px 14px;
        margin-left: 8px;
    }

    .flow-box {
        grid-template-columns: 68px 1fr;
        gap: 16px;
        min-height: 110px;
        padding: 15px 18px;
        border-radius: 20px;
    }

    .flow-box img {
        width: 62px;
    }

    .greeting-section,
    .office-detail-section,
    .partnership-section,
    .contact-page-section {
        padding: 62px 0 75px;
    }

    .profile-image {
        width: 150px;
        margin-bottom: 32px;
    }

    .signature {
        margin-top: 30px !important;
    }

    .office-detail-section h3 {
        font-size: 20px;
    }

    .office-detail-table {
        margin-bottom: 50px;
    }

    .map-box--large,
    .map-box--large iframe {
        min-height: 290px;
    }

    .partner-row {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 10px;
    }

    .partner-copy h3 {
        margin-bottom: 20px;
        font-size: 21px;
    }

    .partner-copy p {
        font-size: 15px;
    }

    .partner-row img,
    .partner-row:first-of-type img {
        width: min(300px, 85%);
        justify-self: center;
    }

    .contact-intro p {
        text-align: left;
    }

    .contact-form-wrap {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .form-row > label {
        padding-top: 0;
    }
}

/* =========================
   v1.0.1 PC typography adjustment
========================= */
@media only screen and (min-width: 1025px) {
    .business-detail > h2 {
        font-size: 36px;
    }

    .price-table-section > h3,
    .business-detail-copy h3,
    .office-detail-section h3,
    .partner-copy h3 {
        font-size: 30px;
    }

    .partner-copy p,
    .contact-intro p,
    .greeting-copy p,
    .business-detail-copy p,
    .flow-box p {
        font-size: 16px;
    }
}

/* =========================
   v1.0.3 Price page / office map corrections
========================= */
.price-page-section {
    padding: 88px 0 42px;
}

.price-content {
    width: min(930px, calc(100% - 48px));
}

.price-page-section > .price-content > .section-title {
    margin-bottom: 70px;
}

.price-table-section {
    margin-bottom: 68px;
}

.price-table-section > h3 {
    gap: 15px;
    margin-bottom: 28px;
    font-size: 25px;
    line-height: 1.45;
}

.price-table-section > h3 span {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
}

.table-scroll {
    border-radius: 7px;
    overflow-x: auto;
    overflow-y: hidden;
    box-shadow: 0 6px 18px rgba(80, 58, 16, 0.05);
}

.price-table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #eee2cf;
    border-radius: 7px;
    overflow: hidden;
    table-layout: fixed;
}

.price-col-menu {
    width: 43%;
}

.price-col-fee {
    width: 21%;
}

.price-col-detail {
    width: 36%;
}

.price-table th,
.price-table td {
    padding: 8px 14px;
    border-right: 1px solid #eee2cf;
    border-bottom: 1px solid #eee2cf;
    font-size: 13px;
    line-height: 1.5;
    vertical-align: middle;
    overflow-wrap: normal;
    word-break: normal;
}

.price-table tr > *:last-child {
    border-right: 0;
}

.price-table tbody tr:last-child > * {
    border-bottom: 0;
}

.price-table thead th {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    background: #f58200;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.price-table tbody tr:nth-child(odd) {
    background: #fff;
}

.price-table tbody tr:nth-child(even) {
    background: #fcf4e8;
}

.price-table tbody th {
    width: auto;
    font-weight: 700;
}

.price-table tbody td:nth-child(2) {
    width: auto;
    color: #ed8c00;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.price-table tbody td:nth-child(3) {
    font-size: 12.5px;
}

.request-flow {
    padding: 70px 0 105px;
}

.request-flow .narrow-content {
    width: min(900px, calc(100% - 48px));
}

.request-flow .section-title {
    margin-bottom: 75px;
}

.flow-item + .flow-item {
    margin-top: 31px;
}

.flow-label {
    gap: 20px;
    margin: 0 0 10px 22px;
    color: #ed8c00;
    font-size: 16px;
}

.flow-label strong {
    font-size: 19px;
}

.flow-box {
    grid-template-columns: 104px 1fr;
    gap: 30px;
    min-height: 132px;
    padding: 20px 35px;
    border: 2px solid #3a3835;
    border-radius: 29px;
    background: #fffdf8;
}

.flow-box img {
    width: 84px;
}

.flow-box p {
    font-size: 15px;
    line-height: 1.75;
}

.map-box--large,
.map-box--large iframe {
    min-height: 450px;
}

@media only screen and (max-width: 1024px) {
    .price-page-section {
        padding: 60px 0 24px;
    }

    .price-content {
        width: min(calc(100% - 30px), 680px);
    }

    .price-page-section > .price-content > .section-title {
        margin-bottom: 48px;
    }

    .price-table-section {
        margin-bottom: 50px;
    }

    .price-table-section > h3 {
        margin-bottom: 22px;
        font-size: 21px;
    }

    .price-table-section > h3 span {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .price-scroll-note {
        margin: 0 0 10px;
        font-size: 13px;
        line-height: 1.6;
        letter-spacing: 0.5px;
        color: #555;
    }

    .table-scroll {
        border-radius: 6px;
    }

    .price-table {
        min-width: 880px;
    }

    .price-table th,
    .price-table td {
        padding: 8px 10px;
        font-size: 12px;
    }

    .price-table thead th {
        font-size: 13px;
    }

    .price-table tbody td:nth-child(2) {
        font-size: 13px;
    }

    .price-table tbody td:nth-child(3) {
        font-size: 11.5px;
    }

    .request-flow {
        padding: 45px 0 75px;
    }

    .request-flow .narrow-content {
        width: min(calc(100% - 30px), 680px);
    }

    .request-flow .section-title {
        margin-bottom: 48px;
    }

    .flow-label {
        margin-left: 8px;
        font-size: 14px;
    }

    .flow-label strong {
        font-size: 17px;
    }

    .flow-box {
        grid-template-columns: 68px 1fr;
        gap: 15px;
        min-height: 112px;
        padding: 16px 17px;
        border-radius: 21px;
    }

    .flow-box img {
        width: 62px;
    }

    .flow-box p {
        font-size: 13px;
        line-height: 1.65;
    }

    .map-box--large,
    .map-box--large iframe {
        min-height: 320px;
    }
}


/* =========================
   v1.0.7 Contact Form 7
========================= */
#contact .wpcf7 {
    width: 100%;
}

#contact .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

#contact .wpcf7-not-valid-tip {
    margin-top: 7px;
    color: #c84444;
    font-size: 14px;
}

#contact .wpcf7 form .wpcf7-response-output {
    margin: 24px 0 0;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 15px;
}

#contact .wpcf7-spinner {
    display: block;
    margin: 14px auto 0;
}

#contact .form-privacy .wpcf7-list-item {
    margin: 0;
}

#contact .button--submit {
    display: block;
    min-width: 230px;
    min-height: 58px;
    padding: 14px 34px;
    cursor: pointer;
}

/* =========================
   v1.0.8 Contact Form 7 layout correction
   CF7の自動整形で挿入されるbrを除外し、PCではラベルと入力欄を横並びに固定
========================= */
#contact .narrow-content {
    width: min(980px, calc(100% - 48px));
}

#contact .contact-form-wrap {
    width: 100%;
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
}

#contact .wpcf7 form,
#contact .contact-form {
    width: 100%;
}

#contact .form-row > br {
    display: none !important;
}

@media only screen and (min-width: 1025px) {
    #contact .contact-form-wrap {
        padding: 56px 64px;
    }

    #contact .contact-form {
        display: flex !important;
        flex-direction: column;
        gap: 30px;
    }

    #contact .form-row {
        display: flex !important;
        align-items: flex-start;
        gap: 34px;
        width: 100%;
    }

    #contact .form-row > label {
        width: 220px;
        flex: 0 0 220px;
        padding-top: 15px;
        font-size: 18px;
        line-height: 1.6;
    }

    #contact .form-row > .wpcf7-form-control-wrap {
        width: auto !important;
        min-width: 0;
        flex: 1 1 auto;
    }

    #contact .contact-form input[type="text"],
    #contact .contact-form input[type="email"],
    #contact .contact-form input[type="tel"],
    #contact .contact-form select,
    #contact .contact-form textarea {
        display: block;
        width: 100% !important;
        min-width: 0;
        max-width: none !important;
        min-height: 58px;
        box-sizing: border-box;
        padding: 14px 18px;
        font-size: 16px;
    }

    #contact .contact-form textarea {
        min-height: 230px;
    }

    #contact .form-privacy,
    #contact .form-submit {
        width: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    #contact .narrow-content {
        width: min(100% - 30px, 620px);
    }

    #contact .contact-form-wrap {
        padding: 30px 20px;
    }

    #contact .contact-form {
        display: flex !important;
        flex-direction: column;
        gap: 24px;
    }

    #contact .form-row {
        display: flex !important;
        flex-direction: column;
        gap: 9px;
        width: 100%;
    }

    #contact .form-row > label {
        width: 100%;
        padding-top: 0;
        font-size: 16px;
    }

    #contact .form-row > .wpcf7-form-control-wrap {
        width: 100% !important;
    }

    #contact .contact-form input[type="text"],
    #contact .contact-form input[type="email"],
    #contact .contact-form input[type="tel"],
    #contact .contact-form select,
    #contact .contact-form textarea {
        display: block;
        width: 100% !important;
        max-width: none !important;
        min-height: 52px;
        box-sizing: border-box;
        padding: 13px 14px;
        font-size: 16px;
    }

    #contact .contact-form textarea {
        min-height: 190px;
    }
}

/* =========================
   70. 個人情報保護方針
========================= */
.privacy-policy-section {
    padding: 85px 0 110px;
}

.privacy-policy-content {
    width: min(920px, calc(100% - 48px));
}

.privacy-policy-lead {
    margin-bottom: 55px;
    padding: 30px 34px;
    border-radius: 18px;
    background: #fffaf0;
    line-height: 2;
}

.privacy-policy-block + .privacy-policy-block {
    margin-top: 48px;
}

.privacy-policy-block h2 {
    margin-bottom: 20px;
    padding: 0 0 12px 18px;
    border-bottom: 2px solid #f3d6a2;
    border-left: 7px solid var(--orange);
    font-size: 28px;
    line-height: 1.5;
}

.privacy-policy-block p,
.privacy-policy-block li {
    font-size: 16px;
    line-height: 2;
}

.privacy-policy-block ul {
    margin-top: 16px;
    padding-left: 1.5em;
    list-style: disc;
}

.privacy-policy-block li + li {
    margin-top: 7px;
}

.privacy-policy-contact {
    padding: 30px 34px;
    border: 1px solid #ead7bc;
    border-radius: 18px;
    background: #fffdf8;
}

.privacy-policy-contact h2 {
    padding-left: 0;
    border-left: 0;
}

.privacy-policy-contact a {
    color: var(--orange-dark);
    font-weight: 700;
}

@media only screen and (max-width: 1024px) {
    .privacy-policy-section {
        padding: 55px 0 75px;
    }

    .privacy-policy-content {
        width: min(680px, calc(100% - 40px));
    }

    .privacy-policy-lead {
        margin-bottom: 38px;
        padding: 22px 20px;
        border-radius: 14px;
        line-height: 1.85;
    }

    .privacy-policy-block + .privacy-policy-block {
        margin-top: 38px;
    }

    .privacy-policy-block h2 {
        margin-bottom: 16px;
        padding: 0 0 10px 12px;
        border-left-width: 5px;
        font-size: 21px;
        line-height: 1.55;
    }

    .privacy-policy-block p,
    .privacy-policy-block li {
        font-size: 15px;
        line-height: 1.85;
    }

    .privacy-policy-contact {
        padding: 24px 20px;
    }

    .privacy-policy-contact h2 {
        padding-left: 0;
    }
}

/* =========================
   v1.0.10 Privacy spacing / CF7 full-width controls
========================= */

/* 個人情報保護方針：メインビジュアル直下に十分な読み始めの余白を確保 */
.privacy-policy-page .privacy-policy-section {
    padding-top: 110px;
    padding-bottom: 120px;
}

.privacy-policy-page .privacy-policy-content {
    margin-right: auto;
    margin-left: auto;
}

/* CF7：ラベルの下に入力欄を置き、枠内いっぱいまで広げる */
#contact .contact-form-wrap,
#contact .wpcf7,
#contact .wpcf7-form,
#contact .contact-form,
#contact .form-row,
#contact .form-row > p,
#contact .form-row .wpcf7-form-control-wrap {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
}

#contact .contact-form {
    display: flex !important;
    flex-direction: column;
    gap: 30px;
}

#contact .form-row {
    display: block !important;
}

#contact .form-row > p {
    margin: 0 !important;
}

#contact .form-row label,
#contact .form-row > label {
    display: block !important;
    width: 100% !important;
    margin: 0 0 12px;
    padding: 0 !important;
    font-size: 18px;
    line-height: 1.6;
}

#contact .form-row .wpcf7-form-control-wrap {
    display: block !important;
}

#contact .contact-form input[type="text"],
#contact .contact-form input[type="email"],
#contact .contact-form input[type="tel"],
#contact .contact-form select,
#contact .contact-form textarea,
#contact .wpcf7-form-control.wpcf7-text,
#contact .wpcf7-form-control.wpcf7-email,
#contact .wpcf7-form-control.wpcf7-tel,
#contact .wpcf7-form-control.wpcf7-select,
#contact .wpcf7-form-control.wpcf7-textarea {
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

#contact .contact-form input[type="text"],
#contact .contact-form input[type="email"],
#contact .contact-form input[type="tel"],
#contact .contact-form select {
    min-height: 58px;
}

#contact .contact-form textarea {
    min-height: 240px;
}

@media only screen and (max-width: 1024px) {
    .privacy-policy-page .privacy-policy-section {
        padding-top: 65px;
        padding-bottom: 85px;
    }

    #contact .contact-form {
        gap: 24px;
    }

    #contact .form-row label,
    #contact .form-row > label {
        margin-bottom: 9px;
        font-size: 16px;
    }

    #contact .contact-form input[type="text"],
    #contact .contact-form input[type="email"],
    #contact .contact-form input[type="tel"],
    #contact .contact-form select {
        min-height: 52px;
    }

    #contact .contact-form textarea {
        min-height: 190px;
    }
}


/* =========================
   v1.0.15 New services / tax note
========================= */
.service-card-text-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 165px;
    height: 165px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #fff4df;
    color: #e99000;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
}

.service-card-text-icon--nursery {
    background: #eef7e8;
    color: #6fab69;
}

.business-detail-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1.35 / 1;
    border-radius: 34px;
    background: linear-gradient(145deg, #fff4de, #fde3b3);
    color: #d98700;
    box-shadow: inset 0 0 0 2px rgba(239, 145, 0, 0.14);
}

.business-detail-visual--nursery {
    background: linear-gradient(145deg, #f2f8eb, #dfeecd);
    color: #5f9860;
    box-shadow: inset 0 0 0 2px rgba(95, 152, 96, 0.14);
}

.business-detail-visual span {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.08em;
    text-align: center;
}

.price-tax-note {
    margin: -48px 0 55px;
    font-size: 16px;
    text-align: right;
}

@media only screen and (max-width: 1024px) {
    .service-card-text-icon {
        width: 130px;
        height: 130px;
        font-size: 24px;
    }

    .business-detail-visual span {
        font-size: 30px;
    }

    .price-tax-note {
        margin: -28px 0 35px;
        font-size: 14px;
        text-align: left;
    }
}
