@charset "utf-8";

/* common styles */
p {
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1em;
}

.center {
    text-align: center;
}

.column-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
}

.block-title {
    border-bottom: 5px solid var(--main-theme-color);
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 50px;
    padding: 0 0 10px;
    letter-spacing: 0.1em;
}

.page .under-dot-bottom {
    border-bottom: 2px dotted var(--main-theme-color);
    font-size: 21px;
    font-weight: 700;
    padding: 0 0 5px;
    margin-bottom: 25px;
}

.content-inner {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

.list-dot li {
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1em;
    padding-left: 1em;
    text-indent: -1em;
}

.features-text ul.list-dot li {
    padding-left: 0;
    text-indent: 0;
}

.pflow-content ul.list-dot li {
    display: inline;
}

.list-dot li::before {
    content: "・";
    font-size: 18px;
}

.list-dot li.not-dot::before {
    content: none;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px !important;
}

.mt70 {
    margin-top: 70px;
}

.mt100 {
    margin-top: 100px !important;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb100 {
    margin-bottom: 100px;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media screen and (max-width: 968px) {


    .column-two {
        gap: 30px;
    }

}

@media screen and (max-width: 768px) {
    p {
        font-size: 16px;
        line-height: 1.67;
    }

    .column-two {
        gap: 20px;
        grid-template-columns: repeat(1, 1fr);
    }

    .column-reverse {
        display: flex;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }

    .block-title {
        font-size: 21px;
        margin: 0 0 25px;
        padding: 0 0 5px;
    }

    .page .under-dot-bottom {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .list-dot li {
        font-size: 16px;
        line-height: 1.67;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

}

/* fv */
.fv-text h1 span {
    color: #fff;
    display: block;
    font-size: 36px;
    font-weight: 700;
}

.fv-sliders.certification::after {
    background: url(../images/certification.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 188px;
    margin: auto;
    position: absolute;
    right: 5%;
    top: 0;
    bottom: 0;
    width: 188px;
    z-index: 98;
}

@media screen and (max-width: 968px) {
    .fv-text h1 span {
        font-size: 24px;
    }

    .fv-sliders.certification::after {
        height: 160px;
        top: inherit;
        bottom: 3%;
        width: 160px;
    }
}

@media screen and (max-width: 768px) {
    .fv-text h1 span {
        font-size: 18px;
    }

    .fv-sliders.certification::after {
        height: 70px;
        right: 3%;
        bottom: 3%;
        width: 70px;
    }
}

/* ptoc */
.ptoc-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1000px;
}

.ptoc-items {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 50px;
}

.ptoc-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc((100% - (50px * 1)) / 2);
}

.ptoc-blocks {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.ptoc-list,
.ptoc-inner__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ptoc-inner__list {
    margin: 10px 0 0;
}

.ptoc-list__item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 21px;
    font-weight: 700;
    position: relative;
}

.ptoc-ttl__item {
    border-bottom: 1px dashed #22b573;
    margin: 0 0 20px;
    padding: 0 0 5px;
}

.b .ptoc-ttl__item {
    border-color: #009bc0;
}

.ptoc-list__item a::after {
    background: url(../images/page/icon-triangel-g-r.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 16px;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 14px;
}

.b .ptoc-list__item a::after {
    background-image: url(../images/page/icon-triangel-b-r.png);
}

.ptoc-inner__item a {
    justify-content: flex-start;
    font-size: 18px;
    font-weight: 400;
    width: 100%;
}

.ptoc-inner__item .box {
    width: 100%;
}

.ptoc-inner__item a::after,
.b .ptoc-inner__item a::after {
    background-image: url(../images/page/icon-arrow-r-b.png);
    height: 8px;
}

.ptoc-inner__item a span {
    font-size: 0.78em;
}

ol.ptoc-inner__list,
ul.ptoc-inner__list {
    counter-reset: number 0;
}

ol.ptoc-inner__list li,
ul.ptoc-inner__list li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start
}

ol.ptoc-inner__list li::before,
ul.ptoc-inner__list li::before {
    font-size: 18px;
}

ol.ptoc-inner__list li::before {
    counter-increment: number 1;
    content: counter(number)".";
    margin-right: 5px;
}

ul.ptoc-inner__list li::before {
    content: "・";
}

ol.ptoc-inner__list li.step::before {
    counter-increment: number 1;
    content: "ステップ"counter(number)":";
    white-space: nowrap;
}

ol.ptoc-inner__list li .inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0 0;
}

ol.ptoc-inner__list li .inner li::before {
    content: "-";
}

@media screen and (max-width: 768px) {
    .ptoc-items {
        gap: 20px;
    }

    .ptoc-item {
        gap: 20px;
        width: 100%;
    }

    .ptoc-blocks {
        gap: 20px;
    }

    .ptoc-list__item a {
        font-size: 18px;
    }

    .ptoc-ttl__item {
        margin: 0 0 15px;
    }

    .ptoc-inner__item a {
        font-size: 16px;
    }
}

/* concept */
.concept-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1000px;
}

.concept-body p {
    font-size: 18px;
    font-weight: 400;
    line-height: 2em;
}

.concept-body p strong {
    font-size: 21px;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .concept-body p {
        font-size: 16px;
    }

    .concept-body p strong {
        font-size: 18px;
    }
}

/* features */
.features {}

.features-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}

.features-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.features-card h3 {
    border-bottom: 5px solid #22b573;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 50px;
    padding: 0 0 10px;
}

.b .features-card h3 {
    border-color: #009bc0;
}

.features-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

.features-text,
.features-image {
    width: 50%;
}

.features-card.w100 .features-text {
    width: 100%;
}

.features-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 35px 0 0;
}

.direction .features-text {
    padding: 0 0 0 35px;
}

.features-text h4 {
    border-bottom: 2px dotted #009bc0;
    font-size: 21px;
    font-weight: 700;
    padding: 0 0 5px;
}

.features-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
}

.features-text ul li {
    display: flex;
    justify-content: flex-start;
}

.features-text ul li::before {
    content: "・";
    font-size: 18px;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .features-cards {
        gap: 25px;
    }

    .features-card h3 {
        font-size: 21px;
        margin: 0 0 25px;
        padding: 0 0 5px;
    }

    .features-flex {
        flex-direction: column-reverse;
    }

    .features-flex.direction {
        flex-direction: column;
    }

    .features-text,
    .features-image {
        width: 100%;
    }

    .features-text {
        padding: 25px 0 0;
    }

    .direction .features-text {
        padding: 25px 0 0 0;
    }

    .features-text h4 {
        font-size: 18px;
    }

    .features-text p {
        font-size: 16px;
    }

    .features-text ul li::before {
        font-size: 16px;
    }
}

/* pflow */
.pflow {
    padding-bottom: 180px;
}

.pflow-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1000px;
}

.pflow-items {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.pflow-item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
}

.pflow-item::before {
    background: #22b573;
    content: "";
    height: calc(100% + 50px);
    position: absolute;
    left: 12px;
    top: 15px;
    width: 3px;
}

.b .pflow-item::before {
    background: #009bc0;
}

.pflow-item:last-child::after {
    background: url(../images/page/icon-triangel-g-r.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 16px;
    position: absolute;
    left: 7px;
    bottom: -75px;
    transform: rotate(90deg);
    width: 14px;
}

.b .pflow-item:last-child::after {
    background-image: url(../images/page/icon-triangel-b-r.png);
}

.pflow-num {
    background: #22b573;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    position: relative;
    top: 8px;
    width: 30px;
}

.b .pflow-num {
    background: #009bc0;
}

.pflow-num p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.pflow-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(100% - 45px);
}

.pflow-content h3 {
    color: #22b573;
    font-size: 30px;
    font-weight: 700;
}

.b .pflow-content h3 {
    color: #009bc0;
}

.pflow-content p {
    font-size: 18px;
    font-weight: 400;
}

.pflow-content ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pflow-content ul li {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
}

.pflow-content ul li::before {
    content: "・";
    font-size: 18px;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .pflow {
        padding-bottom: 120px;
    }

    .pflow-items {
        gap: 35px;
    }

    .pflow-item::before {
        height: calc(100% + 35px);
    }

    .pflow-item:last-child::after {
        bottom: -60px;
    }

    .pflow-num p {
        font-size: 16px;
    }

    .pflow-content h3 {
        font-size: 23px;
        margin: 0 0 12px;
    }

    .pflow-content p {
        font-size: 16px;
    }

    .pflow-content ul {
        gap: 12px;
        margin: 0;
    }

    .pflow-content ul li::before {
        font-size: 16px;
    }
}

/* pdisease */
.pdisease {}

.pdisease-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}

.pdisease-items {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.pdisease-ttl {
    border-bottom: 5px solid #22b573;
    padding: 0 0 10px;
    margin: 0 0 35px;
}

.pdisease-ttl h2 {
    font-size: 30px;
    font-weight: 700;
}

.pdisease-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

.pdisease-text,
.pdisease-image {
    width: 50%;
}

.pdisease-text {
    padding-right: 25px;
}

.pdisease-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 2em;
}

.pdisease-ex {
    margin: 35px 0 0;
}

.pdisease-ex h4 {
    border-bottom: 1px dashed #22b573;
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 15px;
    padding: 0 0 5px;
}

.pdisease-ex ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0 25px;
}

.pdisease-ex ul li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.pdisease-ex ul li::before {
    content: "・";
    font-size: 18px;
    line-height: 2em;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .pdisease-items {
        gap: 35px;
    }

    .pdisease-ttl {
        margin: 0 0 25px;
    }

    .pdisease-ttl h2 {
        font-size: 24px;
    }

    .pdisease-flex {
        flex-direction: column-reverse;
    }

    .pdisease-text,
    .pdisease-image {
        width: 100%;
    }

    .pdisease-text {
        padding: 25px 0 0;
    }

    .pdisease-text p {
        font-size: 16px;
    }

    .pdisease-ex {
        margin: 25px 0 0;
    }

    .pdisease-ex h4 {
        font-size: 18px;
    }

    .pdisease-ex ul {
        gap: 8px;
        margin: 8px 0 15px;
    }

    .pdisease-ex ul li::before {
        font-size: 16px;
    }
}

/* pprice */
.pprice {}

.pprice-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}

.pprice-blocks,
.pprice-under p {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

.pprice-blocks {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.pprice-block {
    border: 1px solid #22b573;
}

.b .pprice-block {
    border-color: #009bc0;
}

.pprice-ttl {
    background: #22b573;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 15px;
    text-align: center;
    width: 100%;
}

.b .pprice-ttl {
    background: #009bc0;
}

.pprice-ttl h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.pprice-under {
    margin: 45px 0;
}

.pprice-under h3 {
    border-bottom: 5px solid #22b573;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 45px;
    padding: 0 0 10px;
}

.b .pprice-under h3 {
    border-bottom: 5px solid #009bc0;
}

.pprice-item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 10px 25px;
}

.pprice-item:not(:last-child) {
    border-bottom: 1px dashed #22b573;
}

.b .pprice-item:not(:last-child) {
    border-bottom: 1px dashed #009bc0;
}

.pprice-item dt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 200px);
}

.b .pprice-item dt {
    width: calc(100% - 460px);
}

.pprice-item dd {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    width: 200px;
}

.b .pprice-item dd {
    width: 460px;
}

.pprice-item dt .tag {
    background: #22b573;
    border-radius: 5px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-size: 16px;
    font-weight: 700;
    height: 34px;
    padding: 0 5px;
    width: 235px;
}

.b .pprice-item dt .tag {
    background: #009bc0;
    width: 260px;
}

.b .pprice-item dt .tag.ft14 {
    font-size: 14px;
}

.pprice-item dt .tag span {
    color: #fff;
    font-size: 0.78em;
}

.pprice-item dt .txt {
    font-size: 18px;
    font-weight: 400;
    width: calc(100% - 245px);
}

.pprice-item dd p {
    font-size: 21px;
    font-weight: 700;
}

.pprice-item dd p span {
    font-size: 18px;
}

.pprice .notice {
    font-size: 18px;
    line-height: 1.8em;
    margin: 50px 0 0;
}

@media screen and (max-width: 968px) {
    .pprice-ttl {
        padding: 12px;
    }

    .pprice-ttl h3 {
        font-size: 26px;
    }

    .pprice-under {
        margin: 35px 0;
    }

    .pprice-under h3 {
        font-size: 26px;
        margin: 0 0 35px;
    }

    .pprice-item {
        padding: 10px 20px;
    }

    .pprice-item dt {
        width: calc(100% - 175px);
    }

    .pprice-item dd {
        width: 175px;
    }

    .pprice-item dt .tag {
        font-size: 14px;
        height: 30px;
        width: 220px;
    }

    .b .pprice-item dt {
        width: 100%;
    }

    .b .pprice-item dd {
        width: 100%;
    }

    .b .pprice-item dt .tag {
        width: 260px;
    }

    .pprice-item dt .txt {
        font-size: 16px;
        width: calc(100% - 235px);
    }

    .pprice-item dd p {
        font-size: 18px;
    }

    .pprice-item dd p span {
        font-size: 14px;
    }

    .pprice .notice {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .pprice-blocks {
        gap: 25px;
    }

    .pprice-ttl h3 {
        font-size: 24px;
    }

    .pprice-under {
        margin: 25px 0;
    }

    .pprice-under h3 {
        font-size: 24px;
        margin: 0 0 25px;
    }

    .pprice-item dt {
        width: 100%;
    }

    .pprice-item dd {
        margin: 10px 0 0;
        width: 100%;
    }

    .pprice .notice {
        font-size: 14px;
        margin: 35px 0 0;
    }
}

@media screen and (max-width: 568px) {
    .pprice-item dt {
        flex-direction: column;
        align-items: flex-start;
    }

    .pprice-item dt .txt {
        font-size: 14px;
        margin: 5px 0 0;
        width: 100%;
    }
}

/* bloglist */
.bloglist-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}

.bloglist-filter {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 50px;
}

.bloglist-filter__item {
    background: #ffeae6;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    text-align: center;
    width: 150px;
}

.bloglist-filter__item.is-active {
    background: #ff440e;
    color: #fff;
}

.bloglist-filter__item a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    height: 100%;
    width: 100%;
}

.bloglist-filter__item.is-active a {
    color: #fff;
}

.bloglist-cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 25px;
}

.sidebar-widget__cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bloglist-cards::before {
    content: "";
    display: block;
    order: 1;
    width: calc((100% - (25px * 2)) / 3);
}

.bloglist-card {
    background: #fff;
    border: 2px solid #ff440e;
    border-radius: 10px;
    box-shadow: 5px 5px 3px rgb(109 109 109 / 25%);
    width: calc((100% - (25px * 2)) / 3);
}

.sidebar-widget__cards .bloglist-card {
    border: 0;
    box-shadow: none;
    width: 100%;
}

.bloglist-card a {
    display: block;
    padding: 12px;
}

.sidebar-widget__cards .bloglist-card a {
    padding: 0;
}

.bloglist-card__image {
    aspect-ratio: 16 / 9;
    background: #ccc;
    border-radius: 8px;
    line-height: 0;
    overflow: hidden;
}

.bloglist-card__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.bloglist-card__text {
    margin: 15px 0 0;
    padding-bottom: 50px;
    position: relative;
}

.bloglist-card__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 10px;
}

.sidebar-widget__cards .bloglist-card__flex {
    justify-content: flex-start;
    gap: 8px;
}

.bloglist-card__cat {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.bloglist-card__cat .cat {
    background: #ffeae6;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    height: 21px;
    padding: 0 15px;
    width: 100%;
    max-width: max-content;
}

.bloglist-card__date {
    font-size: 14px;
    font-weight: 400;
}

.bloglist-card__ttl {
    font-size: 18px;
    font-weight: 700;
}

.bloglist-card__more {
    background: url(../images/page/icon-solid-arrow-r-r.png) no-repeat;
    background-position: right 15px center;
    background-size: 3px;
    border: 2px solid #ff440e;
    border-radius: 50px;
    color: #ff440e;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    height: 26px;
    padding: 0 35px;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: max-content;
}

.paginations {
    margin: 50px 0 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.page-numbers {
    background: #fff;
    border: 2px solid #ff440e;
    border-radius: 50%;
    color: #ff440e;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    height: 40px;
    width: 40px;
}

.page-numbers.current {
    background: #ff440e;
    color: #fff;
}

@media screen and (max-width: 968px) {
    .bloglist-cards {
        gap: 15px;
    }

    .sidebar-widget__cards {
        flex-direction: row;
    }

    .bloglist-cards::before {
        display: none;
    }

    .bloglist-card {
        width: calc((100% - (15px * 1)) / 2);
    }
}

@media screen and (max-width: 768px) {
    .bloglist-filter {
        margin: 0 0 25px;
    }

    .bloglist-filter__item {
        height: 25px;
        width: 100px;
    }

    .bloglist-filter__item a {
        font-size: 14px;
    }

    .sidebar-widget__cards {
        flex-direction: column;
    }

    .bloglist-card a {
        padding: 10px;
    }

    .bloglist-card__text {
        margin: 12px 0 0;
        padding-bottom: 35px;
    }

    .bloglist-card__cat .cat {
        font-size: 10px;
        height: 20px;
        padding: 0 12px;
    }

    .bloglist-card__date {
        font-size: 12px;
    }

    .bloglist-card__ttl {
        font-size: 16px;
    }

    .bloglist-card__more {
        height: 24px;
        padding: 0 25px;
    }

    .paginations {
        margin: 35px 0 0;
    }

    .nav-links {
        gap: 12px;
    }

    .page-numbers {
        font-size: 13px;
        height: 35px;
        width: 35px;
    }
}

/* detail */
.detail {
    width: calc(100% - 300px);
}

.detail-head {
    margin: 0 0 35px;
}

.detail-head__flex {
    border-top: 2px solid #ff440e;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0 0;
    padding: 15px 0 0;
}

.detail-head__cat {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.detail-head__cat .cat {
    background: #ffeae6;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    height: 21px;
    padding: 0 15px;
    width: 100%;
    max-width: max-content;
}

.detail-head__date {
    font-size: 21px;
    font-weight: 400;
}

.detail-head h1 {
    font-size: 36px;
    font-weight: 700;
}

.detail-eyecatch {
    aspect-ratio: 16 / 9;
    background: #ccc;
    border-radius: 20px;
    margin: 0 0 35px;
    overflow: hidden;
    width: 100%;
}

.detail-eyecatch img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.detail-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
    margin: 0 0 20px;
}

.detail-content h2 {
    background: #ffeae6;
    border-left: 10px solid #ff440e;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 20px;
    padding: 5px 0 5px 10px;
}

.detail-content h3 {
    background: #ffeae6;
    border-bottom: 2px solid #ff440e;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
    padding: 5px 0 5px 10px;
}

.detail-content h4 {
    border-bottom: 2px solid #ff440e;
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 20px;
    padding: 5px 0 5px 10px;
}

.detail-content h5 {
    border-bottom: 2px dashed #ff440e;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
    padding: 5px 0 5px 10px;
}

@media screen and (max-width: 968px) {
    .detail {
        width: 100%;
    }

    .detail-head {
        margin: 0 0 25px;
    }

    .detail-head h1 {
        font-size: 28px;
    }

    .detail-content h2 {
        font-size: 24px;
    }

    .detail-content h3 {
        font-size: 21px;
    }

    .detail-content h4 {
        font-size: 18px;
    }

    .detail-content h5 {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .detail-head__flex {
        gap: 12px;
        margin: 20px 0 0;
        padding: 12px 0 0;
    }

    .detail-head__date {
        font-size: 14px;
    }

    .detail-head h1 {
        font-size: 21px;
    }

    .detail-eyecatch {
        margin: 0 0 25px;
    }

    .detail-content p {
        font-size: 16px;
    }

    .detail-content h2 {
        border-left: 8px solid #ff440e;
        font-size: 21px;
        padding: 3px 0 3px 8px;
    }

    .detail-content h3 {
        padding: 3px 0 3px 8px;
    }

    .detail-content h4 {
        padding: 3px 0 3px 8px;
    }

    .detail-content h5 {
        padding: 3px 0 3px 8px;
    }
}

/* detailmain */
.detailmain {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 50px 0;
    width: 92%;
    max-width: 1100px;
}

.sidebar {
    width: 250px;
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.sidebar-widget__ttl {
    border-bottom: 2px solid #333;
    margin: 0 0 8px;
    padding: 0 0 8px;
}

.sidebar-widget__ttl p {
    font-size: 21px;
    font-weight: 700;
}

.sidebar-filter__items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 50px;
}

.sidebar-filter__item {
    background: #ffeae6;
    border-radius: 2px;
    height: 21px;
    text-align: center;
    width: 81px;
}

.sidebar-filter__item.is-active {
    background: #ff440e;
    color: #fff;
}

.sidebar-filter__item a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    height: 100%;
    width: 100%;
}

.sidebar-widget__more {
    margin: 25px 0 0;
}

.sidebar-widget__more a {
    background: url(../images/icon-arrow-r.png) no-repeat;
    background-color: #ff440e;
    background-position: right 10px center;
    background-size: 8px;
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    height: 54px;
    width: 100%;
}

@media screen and (max-width: 968px) {
    .sidebar {
        width: 100%;
    }
}

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

/* contact */
.contact-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}

.contact-txt {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.8em;
    margin: 0 0 20px;
    text-align: center;
}

.contact-txt2 {
    font-size: 14px;
    font-weight: 400;
    line-height: 2.5em;
    margin: 0 0 75px;
    text-align: center;
}

.contact-txt2 span {
    background: #ff440e;
    border-radius: 8px;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0 8px;
    padding: 5px 15px;
    width: 100%;
    max-width: max-content;
}

.contact-txt2 span::before {
    background: url(../images/icon-line-w.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 29px;
    margin-right: 5px;
    vertical-align: top;
    width: 26px;
}

.contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 65px;
}

.contact-block__ttl {
    margin: 0 0 50px;
    text-align: center;
}

.contact-block__ttl h3 {
    font-size: 30px;
    font-weight: 700;
}

.contact-block__ttl h3::after {
    border-bottom: 1px dashed #ff440e;
    content: "";
    display: block;
    height: 1px;
    margin: 10px auto 35px;
    width: 190px;
}

.contact-block__ttl p {
    font-size: 18px;
    font-weight: 500;
}

.contact-block__form {
    background: #ffeae6;
    border-radius: 13px;
    padding: 50px 20px;
}

.contact-form__list,
.contact-form__policy {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

.contact-note {
    margin: 50px auto;
    width: 100%;
    max-width: 875px;
}

.contact-note h4 {
    font-size: 21px;
    font-weight: 500;
    margin: 0 0 20px;
}

.contact-note ul li {
    display: flex;
    justify-content: flex-start;
}

.contact-note ul li::before {
    content: "・";
    font-size: 18px;
}

.contact-note ul li p {
    font-size: 18px;
    font-weight: 500;
}

.contact-form__list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-list__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.form-list__item dt {
    position: relative;
    width: 350px;
}

.form-list__item dd {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: calc(100% - 350px);
}

.form-list__item.required dt::after {
    background: #ff440e;
    content: "必須";
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    height: 21px;
    position: absolute;
    right: 20px;
    top: 10px;
    width: 73px;
}

.wpcf7-not-valid-tip {
    font-size: 14px;
    position: absolute;
    left: 0;
    bottom: -22px;
}

.form-list__item dt label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    min-height: 46px;
}

.form-list__item dt p {
    font-size: 13px;
    font-weight: 500;
}

.wpcf7-form-control-wrap {
    width: 100%;
}

.wpcf7-form-control-wrap[data-name="formitem20"],
.wpcf7-form-control-wrap[data-name="formitem21"],
.wpcf7-form-control-wrap[data-name="formitem22"] {
    max-width: max-content;
}

.form-list__item input[type="text"],
.form-list__item input[type="email"],
.form-list__item input[type="tel"],
.form-list__item input[type="number"],
.contact-submit input[type="submit"],
.form-list__item textarea,
.form-list__item select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border-radius: 7px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    outline: none;
    padding: 0 15px;
    width: 100%;
}

.form-list__item input[type="text"],
.form-list__item input[type="email"],
.form-list__item input[type="tel"],
.form-list__item input[type="number"],
.form-list__item select {
    height: 46px;
}

.form-list__item textarea {
    align-items: flex-start;
    padding: 15px;
}

.wpcf7-form-control-wrap[data-name="formitem25"] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.form-list__item input[type="file"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border-radius: 0;
    border: 0;
    color: #333;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    height: auto;
    outline: none;
    padding: 10px 0 0 87px;
    text-align: center;
    min-width: 385px;
    width: auto;
}

.form-list__item .wpcf7-form-control-wrap[data-name="formitem25"]::before {
    background: #ff440e;
    border-radius: 0;
    border: 0;
    content: "ファイルを選択";
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    height: 46px;
    left: 0;
    position: absolute;
    top: 0;
    text-align: center;
    width: 200px;
}

.form-list__item .wpcf7-form-control-wrap[data-name="formitem25"] input[type=file]::-webkit-file-upload-button {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
    background-color: transparent;
    border: 0;
    margin: 0 20px 0 0;
}

.form-list__txt {
    font-size: 14px;
    font-weight: 500;
}

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

.form-list__txt.mb {
    margin-bottom: 20px;
}

.form-list__item .birthflex,
.form-list__item .birth,
.form-list__item .weight {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.form-list__item .birthflex {
    gap: 15px;
}

.form-list__item .birth select,
.form-list__item .weight input {
    width: 83px;
}

.form-list__item .when {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

.form-list__item .when input {
    margin: 0 5px 0 3px;
    width: 83px;
}

.wpcf7-list-item {
    margin: 0;
}

.wpcf7-radio .wpcf7-list-item label input {
    display: none;
}

.wpcf7-form-control.wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    gap: 8px;
    position: relative;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ccc;
    content: "";
    display: block;
    height: 40px;
    width: 40px;
}

.wpcf7-radio .wpcf7-list-item label input:checked+.wpcf7-list-item-label::before {
    border-color: #ff440e;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
    display: none;
}

.wpcf7-radio .wpcf7-list-item label input:checked+.wpcf7-list-item-label::after {
    background: #ff440e;
    border-radius: 50%;
    content: "";
    display: block;
    height: 24px;
    position: absolute;
    left: 9px;
    top: 9px;
    width: 24px;
}

.contact-form__policy {
    margin-top: 65px;
}

.contact-form__policy .wpcf7-form-control-wrap,
.contact-form__policy .wpcf7-acceptance,
.contact-form__policy .wpcf7-acceptance .wpcf7-list-item {
    width: 100%;
}

.wpcf7-acceptance .wpcf7-list-item label,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form__policy .wpcf7-acceptance .wpcf7-list-item label input {
    display: none;
}

.contact-form__policy .wpcf7-acceptance .wpcf7-list-item-label {
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    gap: 8px;
    position: relative;
}

.contact-form__policy .wpcf7-acceptance .wpcf7-list-item-label::before {
    background: #fff;
    border: 1px solid #ccc;
    content: "";
    display: block;
    height: 30px;
    width: 30px;
}

.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label span {
    width: calc(100% - 38px);
}

.contact-form__policy .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label::after {
    display: none;
}

.contact-form__policy .wpcf7-acceptance .wpcf7-list-item label input:checked+.wpcf7-list-item-label::before {
    background-image: url(../images/icon-check-r.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 23px;
    border-color: #ff440e;
}

.contact-submit input[type="submit"] {
    background: #ff440e;
    background-image: url(../images/icon-circle-arrow-r-w.png);
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 10px;
    border: 0;
    border-radius: 50px;
    box-shadow: 3px 3px 2px rgb(119 119 119 / 35%);
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    justify-content: center;
    height: 50px;
    margin: 0 auto;
    text-align: center;
    max-width: 300px;
}

@media screen and (max-width: 968px) {
    .form-list__item dt {
        margin: 0 0 8px;
        width: 100%;
    }

    .form-list__item dd {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .contact-txt {
        font-size: 18px;
        margin: 0 0 15px;
        text-align: left;
    }

    .contact-txt2 {
        font-size: 14px;
        margin: 0 0 75px;
        text-align: left;
    }

    .contact-txt2 span {
        font-size: 18px;
        margin: 0 8px;
        padding: 5px 15px;
    }

    .contact-txt2 span::before {
        height: 29px;
        width: 26px;
    }

    .contact-blocks {
        gap: 45px;
    }

    .contact-block__ttl {
        margin: 0 0 35px;
    }

    .contact-block__ttl h3 {
        font-size: 26px;
    }

    .contact-block__ttl h3::after {
        margin: 10px auto 25px;
        width: 150px;
    }

    .contact-block__ttl p {
        font-size: 16px;
    }

    .contact-block__form {
        padding: 25px 15px;
    }

    .contact-form__list {
        gap: 20px;
    }

    .contact-note {
        margin: 35px auto;
    }

    .contact-note h4 {
        font-size: 18px;
    }

    .contact-note ul li::before {
        font-size: 16px;
    }

    .contact-note ul li p {
        font-size: 16px;
    }

    .form-list__item.required dt::after {
        font-size: 12px;
        height: 21px;
        right: 20px;
        top: 10px;
        width: 73px;
    }

    .wpcf7-not-valid-tip {
        font-size: 12px;
        bottom: -22px;
    }

    .form-list__item dt label {
        font-size: 16px;
        min-height: 46px;
    }

    .form-list__item dt p {
        font-size: 12px;
    }

    .form-list__item input[type="text"],
    .form-list__item input[type="email"],
    .form-list__item input[type="tel"],
    .form-list__item input[type="number"],
    .contact-submit input[type="submit"],
    .form-list__item textarea,
    .form-list__item select {
        font-size: 16px;
    }

    .form-list__item input[type="text"],
    .form-list__item input[type="email"],
    .form-list__item input[type="tel"],
    .form-list__item input[type="number"],
    .form-list__item select {
        height: 41px;
    }

    .form-list__item textarea {
        padding: 12px;
    }

    .form-list__item input[type="file"] {
        font-size: 14px;
        padding: 10px 0 0;
        min-width: 0;
    }

    .form-list__item .wpcf7-form-control-wrap[data-name="formitem25"]::before {
        font-size: 12px;
        height: 41px;
        width: 125px;
    }

    .form-list__txt {
        font-size: 14px;
    }

    .form-list__txt.mt {
        margin-top: 15px;
    }

    .form-list__txt.mb {
        margin-bottom: 15px;
    }

    .form-list__item .birth select,
    .form-list__item .weight input {
        padding: 0 5px;
        width: 50px;
    }

    .form-list__item .when {
        font-size: 14px;
    }

    .form-list__item .when input {
        padding: 0 2px;
        width: 50px;
    }

    .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
        font-size: 16px;
    }

    .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
        height: 20px;
        width: 20px;
    }

    .wpcf7-radio .wpcf7-list-item label input:checked+.wpcf7-list-item-label::after {
        height: 12px;
        left: 5px;
        top: 5px;
        width: 12px;
    }

    .contact-form__policy {
        margin-top: 50px;
    }

    .contact-submit input[type="submit"] {
        font-size: 18px;
        height: 45px;
        max-width: 250px;
    }
}

/* phabit */
.phabit-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}

.dental-sliders {
    position: relative;
    overflow: hidden;
}

.dental-slider {
    margin: 0 auto;
    width: calc(100% - 100px);
}

.dental-slide {
    background: #fff;
    border-radius: 10px;
    width: calc((100% - (25px * 2)) / 3);
}

.dental-slide a {
    display: block;
}

.dental-slide__image {
    aspect-ratio: 16 / 9;
    background: #ccc;
    border-radius: 8px;
    line-height: 0;
    overflow: hidden;
}

.dental-slide__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.dental-slide__text {
    margin: 15px 0 0;
    padding-bottom: 50px;
    position: relative;
}

.dental-slide__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 10px;
}

.dental-slide__cat {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.dental-slide__cat .cat {
    background: #333;
    border-radius: 3px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    height: 25px;
    padding: 0 15px;
    width: 100%;
    max-width: max-content;
}

.dental-slide__date {
    font-size: 14px;
    font-weight: 400;
}

.dental-slide__ttl {
    font-size: 14px;
    font-weight: 400;
}

.dental-slide__more {
    background-color: #009bc0;
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    height: 30px;
    padding: 0 35px;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: max-content;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 0;
    left: auto;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 0;
    right: auto;
}

.swiper-button-next,
.swiper-button-prev {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
    height: 25px;
    width: 25px;
}

.swiper-button-next {
    background-image: url(../images/page/slider-arrow-r.png);
}

.swiper-button-prev {
    background-image: url(../images/page/slider-arrow-l.png);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

@media screen and (max-width: 968px) {}

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

/* pcorrespondence */
.pcorrespondence-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}

.pcorrespondence-txt {
    font-size: 18px;
    font-weight: 400;
    line-height: 2em;
    margin: 0 auto 65px;
    width: 100%;
    max-width: 1000px;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .pcorrespondence-txt {
        font-size: 16px;
        margin: 0 auto 45px;
    }
}

/* pcase */
.pcase {}

.pcase-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}

.pcase-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.pcase-card h3 {
    border-bottom: 5px solid #009bc0;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 50px;
    padding: 0 0 10px;
}

.pcase-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

.pcase-text,
.pcase-image {
    width: 50%;
}

.pcase-text.w100 {
    width: 100%;
}

.pcase-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 35px 0 0;
}

.pcase-blocks {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.pcase-text h4 {
    border-bottom: 2px dotted #009bc0;
    font-size: 21px;
    font-weight: 700;
    padding: 0 0 5px;
}

.pcase-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
}

.pcase-text ul li {
    display: flex;
    justify-content: flex-start;
}

.pcase-text ul li::before {
    content: "・";
    font-size: 18px;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .pcase-cards {
        gap: 25px;
    }

    .pcase-card h3 {
        font-size: 21px;
        margin: 0 0 25px;
        padding: 0 0 5px;
    }

    .pcase-flex {
        flex-direction: column-reverse;
    }

    .pcase-text,
    .pcase-image {
        width: 100%;
    }

    .pcase-text {
        padding: 25px 0 0;
    }

    .pcase-blocks {
        gap: 25px;
    }

    .pcase-text h4 {
        font-size: 18px;
    }

    .pcase-text p {
        font-size: 16px;
    }

    .pcase-text ul li::before {
        font-size: 16px;
    }
}

/* pmsg */
.pmsg-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1000px;
}

.pmsg-body p {
    font-size: 18px;
    font-weight: 400;
    line-height: 2em;
}

@media screen and (max-width: 768px) {
    .pmsg-body p {
        font-size: 16px;
    }
}

/* features */
.pmedicine {}

.pmedicine-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}

.pmedicine-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.pmedicine-card {
    position: relative;
}

.pmedicine-card h3 {
    border-bottom: 5px solid #ff440e;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 50px;
    padding: 0 0 10px;
}

.pmedicine-card.symbol::after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    position: absolute;
    right: 0;
}

.pmedicine-card.symbol[data-animal="dog"]::after {
    background-image: url(../images/page/dog2.png);
    height: 88px;
    top: -45px;
    width: 162px;
}

.pmedicine-card.symbol[data-animal="cat"]::after {
    background-image: url(../images/page/cat2.png);
    height: 61px;
    top: -20px;
    width: 141px;
}

.pmedicine-blocks {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.pmedicine-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

.pmedicine-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: calc((100% - (40px * 1)) / 2);
}

.pmedicine-column.w100 {
    width: 100%;
}

.pmedicine-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pmedicine-row h4 {
    border-bottom: 2px dotted #ff440e;
    font-size: 21px;
    font-weight: 700;
    padding: 0 0 5px;
}

.pmedicine-row strong,
.pmedicine-row p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
}

.pmedicine-row strong {
    font-weight: 700;
}

.pmedicine-row ul li {
    display: flex;
    justify-content: flex-start;
}

.pmedicine-row ul li::before {
    content: "・";
    font-size: 18px;
}

.pmedicine-row p .triangel::before {
    content: "▶︎ ";
    display: inline;
    font-size: 18px;
    font-weight: 700;
}

.pmedicine-row .red,
.pmedicine-row p .red {
    color: #ff440e;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .pmedicine-cards {
        gap: 25px;
    }

    .pmedicine-card h3 {
        font-size: 21px;
        margin: 0 0 25px;
        padding: 0 0 5px;
    }

    .pmedicine-card.symbol[data-animal="dog"]::after {
        height: 44px;
        top: -15px;
        width: 80px;
    }

    .pmedicine-card.symbol[data-animal="cat"]::after {
        height: 38px;
        top: -10px;
        width: 85px;
    }

    .pmedicine-blocks {
        gap: 35px;
    }

    .pmedicine-flex {
        gap: 20px;
    }

    .pmedicine-column {
        gap: 20px;
        width: 100%;
    }

    .pmedicine-row h4 {
        font-size: 18px;
    }

    .pmedicine-row strong,
    .pmedicine-row p {
        font-size: 16px;
    }

    .pmedicine-row ul li::before {
        font-size: 16px;
    }

    .pmedicine-row p .triangel::before {
        font-size: 16px;
    }
}

/* textcontent */
.textcontent-inner {
    margin: 0 auto;
    text-align: center;
    width: 92%;
    max-width: 1000px;
}

.textcontent-inner p {
    font-size: 18px;
    font-weight: 400;
    line-height: 2em;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .textcontent-inner p {
        font-size: 16px;
    }
}

/* pcontent */
.pcontent-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}

.pmedicine-txt,
.pcontent-txt {
    font-size: 18px;
    font-weight: 400;
    line-height: 2em;
    margin: 0 auto 65px;
    text-align: center;
    width: 100%;
    max-width: 1000px;
}

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

    .pmedicine-txt,
    .pcontent-txt {
        font-size: 16px;
        margin: 0 auto 45px;
    }
}

/* pmedicine */
.pmedicine-notelist {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 40px;
    margin: 45px auto 0;
    width: 100%;
    max-width: 1000px;
}

.pmedicine-note {
    background: #fff;
    border: 3px solid #ff440e;
    border-radius: 17px;
    padding: 20px;
    position: relative;
    width: calc((100% - (40px * 1)) / 2);
}

.pmedicine-note.w100 {
    margin-top: 20px;
    padding-top: 40px;
    width: 100%;
}

.pmedicine-note.important::after {
    background: url(../images/page/important.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 69px;
    position: absolute;
    right: calc((69px / 2) * -1);
    top: -15px;
    width: 69px;
}

.pmedicine-note h4 {
    border-bottom: 1px dashed #ff440e;
    color: #ff440e;
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 25px;
    padding: 0 0 10px;
    text-align: center;
}

.pmedicine-note h4.tag {
    background: #ff440e;
    border-radius: 8px;
    border: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    margin: auto;
    padding: 0 35px;
    position: absolute;
    left: 0;
    right: 0;
    top: calc((48px / 2) * -1);
    width: 100%;
    max-width: max-content;
}

.pmedicine-note ol {
    counter-reset: number 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pmedicine-note ol li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.pmedicine-note ol li::before {
    border-radius: 50%;
    background: #ff440e;
    counter-increment: number 1;
    content: counter(number);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    height: 42px;
    width: 42px;
}

.pmedicine-note ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pmedicine-note ul li {
    display: flex;
    justify-content: flex-start;
    line-height: 2em;
}

.pmedicine-note ul li::before {
    content: "・";
    font-size: 18px;
}

.pmedicine-note__list {
    margin: 20px 0 0;
}

.pmedicine-note__list,
.pmedicine-list__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pmedicine-note dt {
    border: 2px solid #ff440e;
    color: #ff440e;
    font-size: 17px;
    padding: 2px 10px;
    width: 100%;
    max-width: max-content;
}

.pmedicine-note dd {
    padding: 0 0 0 10px;
}

.pmedicine-note dd,
.pmedicine-note p,
.pmedicine-note ol li p,
.pmedicine-note ul li p {
    font-size: 18px;
    font-weight: 400;
}

@media screen and (max-width: 968px) {}

@media screen and (max-width: 768px) {
    .pmedicine-notelist {
        gap: 20px;
        margin: 35px auto 0;
    }

    .pmedicine-note {
        padding: 12px;
        width: 100%;
    }

    .pmedicine-note.w100 {
        padding-top: 40px;
    }

    .pmedicine-note.important::after {
        height: 50px;
        right: calc((50px / 2) * -1);
        top: -10px;
        width: 50px;
    }

    .pmedicine-note h4 {
        font-size: 18px;
        margin: 0 0 20px;
        padding: 0 0 5px;
    }

    .pmedicine-note h4.tag {
        height: 40px;
        padding: 0 30px;
        top: calc((40px / 2) * -1);
    }

    .pmedicine-note ol {
        gap: 12px;
    }

    .pmedicine-note ol li {
        gap: 8px;
    }

    .pmedicine-note ol li::before {
        font-size: 21px;
        height: 32px;
        width: 32px;
    }

    .pmedicine-note ul {
        gap: 8px;
    }

    .pmedicine-note ul li::before {
        font-size: 16px;
    }

    .pmedicine-note__list {
        margin: 15px 0 0;
    }

    .pmedicine-note__list,
    .pmedicine-list__item {
        gap: 8px;
    }

    .pmedicine-note dt {
        font-size: 15px;
    }

    .pmedicine-note dd,
    .pmedicine-note p,
    .pmedicine-note ol li p,
    .pmedicine-note ul li p {
        font-size: 16px;
    }
}

/* pschedule */
.pschedule-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1100px;
}

.pschedule-head.block-head {
    margin-bottom: 100px;
}

.pschedule-columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 35px;
}

.pschedule-column {
    width: calc((100% - (35px * 1)) / 2);
}

.pschedule-column__head {
    border-bottom: 5px solid #ff440e;
    margin: 0 0 20px;
    padding: 0 0 15px;
    position: relative;
}

.pschedule-column__head::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
}

.pschedule-column[data-column="dog"] .pschedule-column__head::before {
    background-image: url(../images/page/dog.png);
    height: 82px;
    width: 92px;
}

.pschedule-column[data-column="cat"] .pschedule-column__head::before {
    background-image: url(../images/page/cat.png);
    height: 70px;
    width: 66px;
}

.pschedule-column__head h3 {
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.pschedule-column__list {
    border: 1px solid #ff440e;
}

.pschedule-list__item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.pschedule-list__item:not(:last-child) {
    border-bottom: 1px solid #ff440e;
}

.pschedule-list__item dt,
.pschedule-list__item dd {
    background: #fff;
    padding: 8px;
    text-align: center;
}

.pschedule-list__item dt {
    border-right: 1px solid #ff440e;
    font-size: 18px;
    font-weight: 400;
    width: 200px;
}

.pschedule-list__item dd {
    font-size: 18px;
    font-weight: 400;
    width: calc(100% - 200px);
}

.pschedule-list__item dt span,
.pschedule-list__item dd span {
    font-size: .83em;
}

.pschedule-list__head dt,
.pschedule-list__head dd {
    background: #ff440e;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
}

@media screen and (max-width: 968px) {
    .pschedule-columns {
        gap: 45px;
    }

    .pschedule-column {
        width: 100%;
    }

    .pschedule-column__head h3 {
        font-size: 21px;
    }
}

@media screen and (max-width: 768px) {
    .pschedule-column__head h3 {
        font-size: 18px;
    }

    .pschedule-list__item dt {
        font-size: 14px;
        width: 130px;
    }

    .pschedule-list__item dd {
        font-size: 14px;
        width: calc(100% - 130px);
    }

    .pschedule-list__head dt,
    .pschedule-list__head dd {
        font-size: 18px;
    }

    .pschedule-column[data-column="dog"] .pschedule-column__head::before {
        height: 45px;
        width: 51px;
    }

    .pschedule-column[data-column="cat"] .pschedule-column__head::before {
        height: 42px;
        width: 41px;
    }

    .pschedule-column__head {
        padding: 0 0 5px;
    }
}

/* access */
.pmap .features-flex {
    gap: 56px;
    margin-bottom: 100px;
    max-width: 1100px;
    align-items: center;
}

.pmap .features-flex>div {
    width: calc(50% - 28px);
    padding: 0;
}

.pmap-body .access-list__item {
    align-items: center;
}

.pmap-body .access-list__item dt {
    font-weight: bold;
}

.pmap-points {
    margin-bottom: 60px;
}

.pmap-google {
    position: relative;
    width: 100%;
    padding-top: 40%;
}

.pmap-google iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.paccess-item {
    padding-left: 40px;
    margin-bottom: 50px;
}

.paccess-item h4 {
    color: var(--main-theme-color);
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 40px;
    position: relative;
}

.paccess-item h4::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 15px solid var(--main-theme-color);
}

.paccess-items {
    max-width: 1000px;
    margin: 0 auto;
}

.paccess-item p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.67;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 968px) {
    .pmap .features-flex {
        gap: 32px;
    }

    .pmap .features-flex>div {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .pmap .features-flex {
        flex-direction: column;
    }

    .pmap-point+.pmap-point {
        margin-top: 30px
    }

    .pmap-body .access-list__item dd {
        padding: 0;
    }

    .paccess-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .paccess-item h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .paccess-item h4::before {
        left: -20px;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 10px solid var(--main-theme-color);
    }
}

/* spay-neuter */
.round-label {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 13px;
    border: 1px solid var(--main-theme-color);
    border-radius: 7px;
    display: inline-block;
    color: var(--main-theme-color);
}

.page p+.under-dot-bottom {
    margin-top: 30px;
}

.spaymerit-text-block {
    margin-block: 50px;
}

.spaymerit-text-block h5 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.spaymerit-section02 h4.under-dot-bottom {
    margin-bottom: 0;
}

.spaymerit-section03 h4.under-dot-bottom {
    margin-bottom: 0;
}

.spaydemerit .features-items {
    width: 1000px;
    margin: 80px auto 0;
}

.spaydemerit .item-top {
    align-items: flex-start;
}

.bg .features-item__text {
    background-color: #fff;
}

.spaydemerit .features-item__text {
    flex: 0 0 auto;
    margin-right: -25px;
}

.spaydemerit .item-top .features-item__text {
    bottom: -30px;
}

.spaydemerit .features-item:nth-child(even) .features-item__text {
    margin-right: 0;
    margin-left: -25px;
}

.features-item-ex {
    background-color: #fff;
    border-radius: 25px;
    padding: 60px 20px 30px;
}

.features-item-ex__text {
    position: relative;
}

.features-item-ex .features-item__num {
    position: absolute;
    right: 0;
    top: -45px;
}

.features-item-ex .features-item__ttl {
    margin: 0 0 10px;
    position: relative;
}

.features-item-ex .features-item__txt {
    margin: 15px 0 0;
}

.features-item-ex .features-item__txt>p {
    margin-bottom: 25px;
}


@media screen and (max-width: 968px) {
    .round-label {
        font-size: 18px
    }
}

/* pprice-box (price table in features-item-ex) */
.pprice-flex {
    margin-top: 25px;
}

.pprice-box {
    border: 1px solid var(--main-theme-color);
    overflow: hidden;
    margin-bottom: 30px;
}

.pprice-box__head {
    background: #ff440e;
    padding: 10px 15px;
    text-align: center;
}

.pprice-box__head h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.pprice-box .pprice-list {
    display: flex;
    flex-direction: column;
}

.pprice-box .pprice-item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    padding: 0;
}

.pprice-box .pprice-item:not(:last-child) {
    border-bottom: 1px solid var(--main-theme-color);
}

.pprice-box .pprice-item dt,
.pprice-box .pprice-item dd {
    display: block;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 20px;
}

.pprice-box .pprice-item dt {
    border-right: 1px solid var(--main-theme-color);
    width: 40%;
    text-align: center;
}

.pprice-box .pprice-item dd {
    text-align: center;
    width: 60%;
}

.pprice-box .pprice-item dt p,
.pprice-box .pprice-item dd p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.1em
}

@media screen and (max-width: 968px) {
    .spaydemerit .features-items {
        width: 92%;
        max-width: 1000px;
        margin: 50px auto 0;
    }

    .spaydemerit .features-item__text {
        width: 400px;
    }

    .spaydemerit .features-item__image {
        width: 400px;
    }

    .features-item-ex {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 768px) {
    .spaydemerit .features-items {
        margin: 35px auto 0;
        gap: 35px;
        width: 100%;
    }

    .spaydemerit .features-item {
        flex-wrap: wrap;
    }

    .spaydemerit .features-item__image {
        margin-left: -4%;
        width: 100%;
    }

    .spaydemerit .features-item:nth-child(even) .features-item__image {
        margin-left: 0;
        margin-right: -4%;
    }

    .spaydemerit .features-item__text {
        margin-top: -60px;
        margin-right: 0;
        bottom: 0;
        right: 0;
        width: 85%;
    }

    .spaydemerit .features-item:nth-child(even) .features-item__text {
        margin-left: 0;
        right: 0;
    }

    .spaydemerit .item-top .features-item__text {
        bottom: 0;
    }

    .features-item-ex {
        padding: 35px 20px;
    }

    .features-item-ex .features-item__num {
        top: -15px;
    }

    .pprice-box .pprice-item dt,
    .pprice-box .pprice-item dd {
        font-size: 14px;
        padding: 5px 12px;
        margin: 0;
        border-right: none;
        width: 100%;
    }

    .pprice-box .pprice-item dt p,
    .pprice-box .pprice-item dd p {
        font-size: 14px;
    }

    .pprice-box__head h3 {
        font-size: 18px;
    }
}

.spaytiming .content-inner+h3 {
    margin-top: 100px;
}

.spayflow.block {
    padding-bottom: 185px;
}

.r .pflow-items {
    margin-bottom: 100px;
}

.r .pflow-content h3 {
    color: var(--main-theme-color);
}

.r .pflow-num,
.r .pflow-item::before {
    background-color: var(--main-theme-color);
}

.r .pflow-item:last-child::after {
    background-image: url(../images/page/icon-triangel-r-r.png);
    transform: none;
}

.list-triangle {
    margin-left: -30px;
}

.spayflow .pflow-content .list-triangle li {
    border-bottom: 2px dotted var(--main-theme-color);
    padding-left: 50px;
    position: relative;
    list-style-type: none;
    margin-bottom: 30px;
    line-height: 2;
    font-size: 18px;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
}

.spayflow .pflow-content .list-triangle li span {
    font-weight: 700;
    min-width: 140px;
    margin-right: 15px;
}

.spayflow .pflow-content .list-triangle li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 15px solid var(--main-theme-color);
}

@media screen and (max-width: 968px) {
    .spayflow.block {
        padding-bottom: 150px;
    }

    .list-triangle {
        margin-left: 0;
    }

    .spayflow .pflow-content .list-triangle li {
        padding-left: 42px;
        margin-bottom: 24px;
        font-size: 17px;
        line-height: 1.9;
    }

    .spayflow .pflow-content .list-triangle li span {
        min-width: 120px;
        margin-right: 10px;
    }

    .spayflow .pflow-content .list-triangle li::before {
        left: 12px;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        border-left: 13px solid var(--main-theme-color);
    }
}

@media screen and (max-width: 768px) {
    .spayflow.block {
        padding-bottom: 120px;
    }

    .list-triangle {
        margin-left: 0;
    }

    .spayflow .pflow-content .list-triangle {
        gap: 0;
        margin-top: 12px;
    }

    .spayflow .pflow-content .list-triangle li {
        padding: 0 0 14px 34px;
        margin-bottom: 18px;
        line-height: 1.8;
        font-size: 16px;
        letter-spacing: 0.05em;
        border-bottom-width: 1px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .spayflow .pflow-content .list-triangle li span {
        min-width: auto;
        font-size: 16px;
        margin-right: 30px;
        flex: 0 0 auto;
    }

    .spayflow .pflow-content .list-triangle li::before {
        left: 10px;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 11px solid var(--main-theme-color);
    }
}

@media screen and (max-width: 480px) {
    .spayflow.block {
        padding-bottom: 100px;
    }

    .spayflow .pflow-content .list-triangle li {
        padding-left: 30px;
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 1.7;
    }

    .spayflow .pflow-content .list-triangle li::before {
        left: 8px;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 10px solid var(--main-theme-color);
        top: 14px;
    }
}

.spaypost .column-two p+h4 {
    margin-top: 50px;
}

.alert-title {
    text-align: center;
    padding: 15px 32px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    background: var(--main-theme-color);
    color: #fff;
    border-radius: 10px;
    margin: 70px auto 36px;
    width: 500px;
    max-width: 100%;
    line-height: 1.0;
}

.pbrachycephalic-attention .column-two {
    gap: 100px
}

.column-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}

.column-four .column-item {
    position: relative;
}

.column-four .column-item img {
    width: 100%;
    height: auto;
    display: block;
}

.column-four-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    padding-top: 30px;
}

.column-four .column-item .column-num {
    color: #fff;
    background-color: #333;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-weight: 400;
    font-family: var(--ft-robo);
}

.column-four .column-item .column-body {
    font-weight: 700;
    font-size: 21px;
    color: #000;
    text-align: center;
    margin: 10px 0 0;
    line-height: 1.3;
    letter-spacing: 0.1em;
}

.pbrachycephalic-consultation p {
    font-size: 21px;
    font-weight: 700;
    margin-top: 60px;
}

@media screen and (max-width: 1028px) {
    .column-four .column-item .column-body {
        font-size: 18px;
    }
}

@media screen and (max-width: 968px) {
    .pbrachycephalic-attention .column-two {
        gap: 50px
    }

    .column-four {
        grid-template-columns: repeat(2, 1fr);
    }

    .column-four .column-item .column-num {
        top: 20px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

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

    .column-four {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .column-four .column-item .column-num {
        top: 16px;
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .alert-title {
        line-height: 1.67;
        width: auto;
    }
}

/* trimming */
p.lead-text {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 20px;
}

p.lead-text.lead-text-large {
    font-size: 24px;
}

@media screen and (max-width: 968px) {
    p.lead-text {
        font-size: 21px;
        margin-bottom: 16px;
        line-height: 1.67;
    }

    p.lead-text.lead-text-large {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    p.lead-text {
        font-size: 18px;
        margin-bottom: 16px;
        line-height: 1.67;
    }

    p.lead-text.lead-text-large {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    p.lead-text {
        font-size: 16px;
        text-align: center;
    }

    p.lead-text.lead-text-large {
        font-size: 18px;
    }
}

.slug-trimming .features-items {
    gap: 120px;
}

.slug-trimming .features-item__ttl h3 {
    font-size: 24px;
}

.slug-trimming .features-item__text {
    bottom: -55px;
}

.slug-trimming .features-item__txt p {
    font-size: 15px;
    font-weight: 500;
}

@media screen and (max-width: 968px) {
    .slug-trimming .features-items {
        gap: 80px;
    }

    .slug-trimming .features-item__text {
        bottom: -35px;
    }

    .slug-trimming .features-item__ttl h3 {
        font-size: 22px;
    }

    .slug-trimming .features-item__txt p {
        font-size: 14px;
        line-height: 1.8;
    }
}

@media screen and (max-width: 768px) {
    .slug-trimming .features-items {
        gap: 35px;
    }

    .slug-trimming .features-item__text {
        bottom: 0;
        margin-top: -60px;
        width: 85%;
    }

    .slug-trimming .features-item__ttl h3 {
        font-size: 20px;
        line-height: 1.5;
    }

    .slug-trimming .features-item__txt {
        margin-top: 12px;
    }

    .slug-trimming .features-item__txt p {
        font-size: 13px;
        line-height: 1.8;
    }
}

@media screen and (max-width: 480px) {
    .slug-trimming .features-items {
        gap: 28px;
    }

    .slug-trimming .features-item__text {
        padding: 45px 18px 20px;
        margin-top: -45px;
        width: 92%;
    }

    .slug-trimming .features-item__ttl h3 {
        font-size: 18px;
    }

    .slug-trimming .features-item__txt p {
        font-size: 12px;
        line-height: 1.7;
    }
}

.trimming-support {
    padding-bottom: 130px;
}

.trimming-flow .pflow-body {
    margin-bottom: 100px;
}

.trimming-flow .pflow-body .pflow-item:last-of-type::before {
    height: calc(100% + 20px);
}

.trimming-flow .pflow-body .pflow-item:last-child::after {
    bottom: -45px;
}

.trimming-flow .features-text {
    width: auto;
    max-width: 70%;
    flex: 1;
}

.trimming-flow .features-image {
    max-width: 340px;
}

@media screen and (max-width: 968px) {
    .trimming-flow .pflow-body {
        margin-bottom: 80px;
    }

    .trimming-flow .pflow-body .pflow-item:last-of-type::before {
        height: calc(100% + 15px);
    }

    .trimming-flow .pflow-body .pflow-item:last-child::after {
        bottom: -35px;
    }

    .trimming-flow .features-text {
        max-width: 65%;
    }

    .trimming-flow .features-image {
        max-width: 280px;
    }
}

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

    .trimming-flow .pflow-body .pflow-item:last-of-type::before {
        height: calc(100% + 35px);
    }

    .trimming-flow .pflow-body .pflow-item:last-child::after {
        bottom: -60px;
    }

    .trimming-flow .features-text {
        max-width: 100%;
        width: 100%;
        flex: unset;
    }

    .trimming-flow .features-image {
        max-width: 100%;
        width: 100%;
    }

    .trimming-flow .pflow-content {
        gap: 12px;
    }

    .trimming-flow .pflow-content h3 {
        line-height: 1.5;
    }
}

@media screen and (max-width: 480px) {

    .trimming-support {
        padding-bottom: 85px;
    }

    .trimming-flow .features-image {
        margin-top: 10px;
    }

    .trimming-flow .pflow-content {
        gap: 10px;
    }

    .trimming-flow .pflow-content h3 {
        font-size: 20px;
    }

    .trimming-flow .pflow-content p,
    .trimming-flow .pflow-content ul li {
        font-size: 15px;
        line-height: 1.7;
    }

    .trimming-flow .pflow-content ul li::before {
        font-size: 15px;
    }
}

/* oncology */
.oncology-intro .block-head h2 {
    letter-spacing: 0.2em;
}

.oncology-intro .block-head h2::after {
    display: none;
}

.oncology-parts .pschedule-list__head dt {
    border-right: 1px solid #fff;
}

.oncology-parts .pschedule-list__head dt,
.oncology-parts .pschedule-list__item dt,
.oncology-parts .pschedule-list__head dd,
.oncology-parts .pschedule-list__item dd {
    width: 50%;
}

.ope-image {
    margin-bottom: 100px;
}

.ope-image>div {
    position: relative;
}

.ope-image>div>p {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    padding: 14px 35px;
    background-color: var(--main-theme-color);
    border-radius: 6px;
    line-height: 1;
}

.oncology-parts .features-flex .features-text {
    width: auto;
    flex: 1;
}

.oncology-parts .features-flex .features-image {
    max-width: 250px;
}

.r .pprice-item {
    background-color: #fff;
}

.r .pprice-block {
    border: 1px solid var(--main-theme-color);
}

.r .pprice-ttl,
.r .pprice-item dt .tag {
    background-color: var(--main-theme-color);
    height: auto;
    padding: 5px;
}

.r .pprice-item:not(:last-child) {
    border-bottom: 1px dashed var(--main-theme-color);
}

.oncology-price.r .pprice-item {
    padding-left: 100px;
}

.oncology-price .pprice-item dt {
    width: auto;
}

.oncology-price .pprice-item dd {
    width: auto;
}

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

    .ope-image__after{
        margin-top: 30px;
    }
    .oncology-parts .features-flex {
        flex-direction: column;
    }

    .oncology-parts .features-flex .features-text {
        max-width: 100%;
    }

    .oncology-parts .features-flex .features-image {
        max-width: 100%;
    }

    .r .pprice-item {
        flex-direction: column;
        align-items: center;
    }

    .r .pprice-item dd {
        margin-top: 0;
    }

    .oncology-price.r .pprice-item {
        padding-left: 20px;
    }

}

.staff-main {
    display: flex;
    align-items: center;
}

.staff-main h3 {
    margin-left: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

.staff-label {
    padding: 6px 15px;
    border-radius: 7px;
    color: #fff;
    background-color: var(--main-theme-color);
    display: inline-block;
    line-height: 1.0;
    letter-spacing: 0.2em;
}

.staff-label+.list-dot {
    margin-block: 20px 35px;
}

.staff-profile .list-dot li {
    font-size: 16px;
    line-height: 1.67;
    font-weight: 500;
}

.staff-message-label {
    margin-bottom: 30px;
    width: 280px;
    max-width: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding: 10px 60px;
    font-size: 24px;
    font-family: var(--ft-robo);
    font-weight: 300;
}

.staff-profile-sub h3 {
    font-weight: 500;
    font-size: 36px;
    margin-top: 20px;
    letter-spacing: 0.1em;
}

.staff-profile-sub li {
    font-size: 16px;
    line-height: 1.67;
    font-weight: 500;
}

@media screen and (max-width: 968px) {
    .staff-main h3 {
        margin-left: 16px;
        font-size: 28px;
    }

    .staff-label {
        font-size: 14px;
        padding: 6px 12px;
    }

    .staff-label+.list-dot {
        margin-block: 18px 28px;
    }

    .staff-profile .list-dot li {
        font-size: 14px;
    }

    .staff-message-label {
        margin-bottom: 24px;
        width: 240px;
        padding: 10px 40px;
        font-size: 20px;
    }

    .staff-profile-sub h3 {
        font-size: 28px;
        margin-top: 16px;
    }

    .staff-profile-sub li {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .staff-main {
        /* align-items: flex-start; */
        flex-wrap: wrap;
        gap: 12px;
    }

    .staff-main h3 {
        margin-left: 0;
        font-size: 24px;
        line-height: 1.5;
    }


    .staff-label+.list-dot {
        margin-block: 15px 24px;
    }

    .staff-profile .list-dot li {
        font-size: 13px;
        line-height: 1.8;
    }

    .staff-message-label {
        margin-bottom: 20px;
        width: 100%;
        max-width: 240px;
        padding: 10px 20px;
        font-size: 18px;
        border-radius: 15px;
    }

    .staff-profile-sub h3 {
        font-size: 24px;
        margin-top: 14px;
        line-height: 1.5;
    }

    .staff-profile-sub li {
        font-size: 13px;
        line-height: 1.8;
    }
}

@media screen and (max-width: 480px) {
    .staff-message-label {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* guide */
.column-two.guide-image {
    gap: 72px 15px;
    padding-block: 50px;
}

.column-two.guide-image>*:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 20px);
}

.column-two.guide-image>div {
    text-align: center;
}

.column-two.guide-image h3 {
    text-align: center;
    margin-top: 50px;
    font-size: 21px;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 10px;
}

.column-two.guide-image h3::before {
    content: '';
    width: 220px;
    border-bottom: 1px dashed red;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.column-two.guide-image h3 .small {
    font-size: 18px;
}

@media screen and (max-width: 968px) {
    .column-two.guide-image {
        gap: 35px 15px;
        padding-block: 40px;
    }

    .column-two.guide-image h3 {
        margin-top: 20px;
        font-size: 18px;
        padding-bottom: 8px;
    }

    .column-two.guide-image h3 .small {
        font-size: 16px;
    }

    .column-two.guide-image h3::before {
        width: 180px;
    }

    .column-two.guide-image>*:last-child:nth-child(odd) {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 768px) {
    .column-two.guide-image {
        gap: 30px;
        padding-block: 30px;
    }

    .column-two.guide-image>*:last-child:nth-child(odd) {
        grid-column: auto;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .column-two.guide-image h3 {
        margin-top: 18px;
        font-size: 16px;
        padding-bottom: 6px;
    }

    .column-two.guide-image h3::before {
        width: 120px;
    }

    .column-two.guide-image h3 .small {
        font-size: 14px;
    }
}

/* general */
.general-animal .column-two.guide-image {
    grid-template-columns: repeat(2, minmax(0, 300px));
    gap: 20px;
    justify-content: center;
}

.general-insurance .column-two {
    margin-top: 50px;
    grid-template-columns: repeat(2, minmax(0, 320px));
    gap: 24px;
    justify-content: center;
}

.general-payment .column-two {
    align-items: center;
}

@media screen and (max-width: 768px) {
    .general-animal .column-two.guide-image,
    .general-insurance .column-two {
        grid-template-columns: 1fr;
    }
}