@charset "utf-8"; /*
Theme Name: theme
Author: now
*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap'); html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    margin-bottom: 0px;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W6", "メイリオ", Meiryo, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    text-align: justify;
    letter-spacing: 0.05em;
    box-sizing: border-box;
    color: #222;
    text-decoration: none;
    -webkit-font-smoothing: subpixel-antialiased;
}

html.js-ready body {
    opacity: 0;
    padding-top: 100px;
}

html.js-ready body.fade-in {
    opacity: 1;
    transition: opacity .2s cubic-bezier(.22,.61,.36,1);
}

body.fade-out {
    opacity: 0 !important;
    transition: opacity .1s ease-in;
}

a:hover {
    text-decoration: none;
}

:root {
    --main: #32A9DC;
    --text: #717071;
    --sep: #98D0EF;
    --radius: 12px;
    --ease: cubic-bezier(.2,.7,.2,1);
    --af-blue-weak: #cfeefc;
    --af-bg: #ffffff;
    --brand: var(--main);
    --panel-bg: #f4fafd;
    --border: #e1edf3;
    --muted: #6b8792;
    --btn-hover: #2c9ecf;
}

#header {
    top: 0;
    z-index: 1000;
    background: #fff;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    padding: 0;
    position: fixed;
    width: 100%;
}

#header_logo {
    margin: 27px 0 0;
    max-width: 183px;
}

#header_logo a {
    display: block;
}

#header_logo img {
    width: 100%;
}

#header_nav {
    margin-left: auto;
    margin-top: 50px;
    padding-bottom: 5px;
}

#header_nav > ul {
    display: flex;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#header_nav > ul > li {
    position: relative;
}

#header_nav a {
    font-weight: 700;
}

#header_nav > ul > li > a {
    display: flex;
    align-items: center;
    padding: 18px 0;
    font-size: 16px;
}

#header_nav > ul > li > a[aria-haspopup="true"]::after {
    content: "";
    margin-left: 6px;
    border: 7px solid transparent;
    border-top-color: #7BB9D3;
    transform: translateY(5px);
}

#header_nav > ul > li > a[aria-expanded="true"]::after {
    transform: rotate(180deg) translateY(-2px);
}

#header_nav li > ul {
    position: absolute;
    left: -13px;
    top: 100%;
    min-width: 150px;
    background: #fff;
    list-style: none;
    margin: 0;
    /*! padding: 1px 0; */
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
    pointer-events: none;
}

#header_nav li > ul a {
    display: block;
    padding: 18px 14px;
    white-space: nowrap;
    font-weight: 700;
    color: #000000;
    font-size: 15px;
}

#header_nav li > ul a:hover, #header_nav li > ul a:focus {
    background: #169dd7;
    color: #fff;
}

#header_nav li:hover > ul, #header_nav li:focus-within > ul, #header_nav > ul > li > a[aria-expanded="true"] + ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.header_recruit_btn {
    position: absolute;
    top: 0;
    right: 0;
}

.header_recruit_btn a {
    font-size: 16px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 10px 24px 14px;
    background: #169dd7;
    color: #fff;
    border-radius: 0 0 10px 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.header_recruit_btn img {
    width: 16px;
    height: 16px;
}

.header_recruit_btn a span {
    width: 16px;
    margin-left: 5px;
}

img {
    width: 100%;
}

/* slider */
.kv {
    position: relative;
    width: 92%;
    margin: 50px auto 90px;
    border-radius: 20px;
    overflow: hidden;
    background: #e6f0fb;
    max-width: 1400px;
}

.kv_images {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #cfe5ff;
}

.kv_images img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 800ms ease-in-out;
    will-change: opacity;
}

.kv_images img.is-active {
    opacity: 1;
}

.kv_text {
    position: absolute;
    left: 6%;
    top: 20%;
}

.kv_text p {
    margin: 0;
    font-weight: 700;
    line-height: 1.9;
    font-size: clamp(16px, 2.2vw, 22px);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 6px;
    text-shadow: 0 0 10px #169dd7,0 0 10px #169dd7,0 0 10px #169dd7,0 0 10px #169dd7,0 0 10px #169dd7,0 0 10px #169dd7;
    font-size: 33px;
}

.kv {
    box-shadow: 0 0 0 6px #fff inset;
}

/* recruit */
.home-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto 150px;
    align-items: stretch;
}

.panel {
}

.panel__hd {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.panel__icon {
    width: unset;
    margin-right: 5px;
}

.panel__ttl h2 {
    font-size: 28px;
    color: var(--main);
    margin: 0;
    font-weight: 700;
    position: relative;
}

.panel__ttl small {
    font-weight: 700;
    color: var(--main);
    margin-left: 8px;
    font-size: 18px;
}

.panel__body {
    background: #eff5fa;
    border: 1px solid #e6f1fb;
    border-radius: 12px;
    padding: 38px 40px 0px;
}

.panel--recruit .lead {
    background: #fff;
    font-weight: 700;
    color: var(--main);
    padding: 10px 0px;
    border-top: 2px solid #a5cae4;
    border-bottom: 2px solid #a5cae4;
    margin: 0 0 22px;
    text-align: center;
    font-size: 19px;
}

.panel--recruit .desc {
    margin: 0 0 21px;
    line-height: 1.9;
    color: #374151;
}

.panel__photo img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.panel__cta {
    margin: 32px 0 0;
    display: flex;
    justify-content: center;
}

.panel__cta--right {
    text-align: right;
}

/* ボタン */
.btn-outer,.btn-ghost {
    background: var(--main);
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.15em;
    color: #fff;
    width: 220px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    padding: 15px 20px;
}

.panel.panel--news {
    width: 660px;
}

header#header > * {
    color: #000;
}

.header-in {
    max-width: 1400px;
    width: 95%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
}

.btn-outer img {
    width: 16px;
    margin-left: 10px;
}

/* information */
.news-list {
    list-style: none;
    margin: 0 0 43px;
    padding: 0;
}

.news-item a {
    display: flex;
    grid-template-columns: 110px auto 1fr 20px;
    align-items: center;
    gap: 12px;
    color: #0f172a;
    border-bottom: 1px solid rgb(198 195 194 / 50%);
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 11px;
    margin-top: 20px;
}

.news-item:first-child a {
    margin-top: 0;
}

.news-date,.news-cat {
    color: var(--main);
    background: #fff;
    border: 1px solid var(--main);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    border-radius: 5px;
    font-size: 13px;
    width: 88px;
}

.news-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

@property --tx {
    syntax: "<length>";
    inherits: false;
    initial-value: 0px;
}

.arrow {
    display: inline-block;
    transform: translateX(var(--tx));
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
}

a:hover .arrow {
    animation: twitch-5 3s ease-in-out 1;
}

@keyframes twitch-5 {
    0% {
        --tx: 0px;
    }

    10% {
        --tx: 8px;
    }

    20% {
        --tx: 0px;
    }

    30% {
        --tx: 8px;
    }

    40% {
        --tx: 0px;
    }

    50% {
        --tx: 8px;
    }

    60% {
        --tx: 0px;
    }

    70% {
        --tx: 8px;
    }

    80% {
        --tx: 0px;
    }

    90% {
        --tx: 0px;
    }

    100% {
        --tx: 0px;
    }
}

.news-item a:hover .news-title {
    text-decoration: underline;
}

span.news-arrow {
    position: absolute;
    right: 0;
    bottom: 10px;
}

.grad-pulse {
    --c: 32 152 255;
    --s: 20px;
    --dur: 3s;
    --k: 1.2;
    position: relative;
    display: inline-block;
    width: var(--s);
    height: var(--s);
    border-radius: 50%;
    animation: p var(--dur) ease-in-out infinite;
    right: -30px;
}

.grad-pulse.panel_recruit {
    background: radial-gradient(closest-side, rgb(244 247 206), rgba(235, 249, 200, 0));
}

.grad-pulse::before {
    content: "";
    position: absolute;
    inset: -130%;
    border-radius: 50%;
    background: #d3e03d;
    filter: blur(28px);
    opacity: .34;
    -webkit-mask: radial-gradient(#fff 35%, #0000 85%);
    mask: radial-gradient(#fff 16%, #0000 75%);
}

.grad-pulse.panel_recruit::before {
    --c: 211 224 61;
}

span.news-cat {
    width: 120px;
}

@keyframes p {
    0%,100% {
        transform: scale(1)
    }

    50% {
        transform: scale(var(--k))
    }
}

/* topics */
.topics {
    --ring: #a7c8db;
    margin-bottom: 130px;
    border-bottom: 1px solid rgb(165 202 228 / 60%);
    padding-bottom: 50px;
}

.topics__wrap {
    position: relative;
    max-width: 800px;
    margin-inline: auto; text-align: center;
    isolation: isolate;
}

.topics__plus {
    width: clamp(40px,4.5vw,56px);
    display: block;
    margin: 0 auto 12px;
    filter: drop-shadow(0 8px 24px rgba(116,183,214,.35));
    width: 26px;
}

.topics__circle {
    position: absolute;
    z-index: -1;
    width: clamp(26px,4.2vw,46px);
    height: auto;
    opacity: .95;
}

.topics__circle--l {
    left: 120px;
    top: 40px;
}

.topics__circle--r {
    right: 120px;
    top: 40px;
}

.topics__ttl {
    margin: 10px 0 14px;
    font-weight: 700;
    color: var(--ink);
    font-size: 30px;
    letter-spacing: .06em;
    line-height: 1.4;
    text-align: center;
}

.topics__label {
    display: inline-flex;
    gap: 10px;
    margin-bottom: 50px;
    align-items: center;
}

.topics__label span {
    font-weight: 700;
    color: #6ea7c6;
    font-size: 24px;
}

.topics__label .line {
    display: inline-block;
    width: 10px;
    height: 1px;
    background: #6ea7c6;
}

.topics__body {
    position: relative;
    max-width: 670px;
    margin: 0 auto;
    padding: 10px;
}

.topics__body p {
    font-weight: 700;
    font-size: 17px;
    line-height: 2;
    margin: 0;
    text-align: center;
    color: #666666;
}

.topics__body::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 33px;
    background: linear-gradient(var(--ring) 0 0) left 16px top / 2px 30px no-repeat, linear-gradient(var(--ring) 0 0) left 16px top / 24px 2px no-repeat;
    pointer-events: none;
}

.topics__body::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 33px;
    background: linear-gradient(var(--ring) 0 0) right 16px bottom / 2px 30px no-repeat, linear-gradient(var(--ring) 0 0) right 16px bottom / 24px 2px no-repeat;
    pointer-events: none;
}

/* topics list*/
.top-cards {
    display: flex;
    gap: 28px;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    margin-bottom: 36px;
    width: 890px;
    justify-content: center;
    margin: 0 auto 70px;
}

.card {
    position: relative;
    display: block;
    color: inherit;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    width: 260px;
    /* transition: box-shadow .25s var(--ease), transform .25s var(--ease); */
    border: 2px solid var(--main);
    border-radius: 14px 14px;
}

.card__title {
    background: var(--main);
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 15px 0;
    font-size: 22px;
    /*! border-radius: 0px 18px 0 0; */
}

.card__body {
    padding: 12px 17px 22px;
    border-radius: 0px 0px 20px 20px;
    display: flex;
    flex-direction: column;
    background: #fff;
    align-items: center;
}

.card__icon {
    display: block;
    margin-bottom: 12px;
    width: unset;
}

.card__text {
    line-height: 1.7;
    text-align: left;
    letter-spacing: 0.04em;
}

.card__arrow {
    position: absolute;
    right: 16px;
    bottom: 22px;
    color: var(--main);
    font-size: 20px;
    /* transition: transform .18s var(--ease); */
}

.card:focus-visible {
    outline: 3px solid var(--brand-dark);
    outline-offset: 2px;
    border-radius: var(--radius);
}

.pill-grid {
    display: grid;
    gap: 30px 25px;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
}

.pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #6ea7c6;
    border-radius: 10px;
    padding: 2px 20px 2px 2px;
    color: inherit;
    box-shadow: var(--shadow);
    /* transition: transform .18s var(--ease), box-shadow .18s var(--ease); */
    position: relative;
}

.pill__icon {
    width: unset;
}

.pill__label {
    font-weight: 700;
    color: #fff;
    text-align: left;
    font-size: 17px;
    letter-spacing: 0;
}

.pill .arrow {
    font-size: 20px;
    transition: transform .18s var(--ease);
    color: #fff;
    position: absolute;
    right: 20px;
    top: 25px;
}

.pill:focus-visible {
    outline: 3px solid var(--brand-dark);
    outline-offset: 3px;
    border-radius: 999px;
}

.topics__wrap span.grad-pulse.panel_recruit {
    position: absolute;
    left: 220px;
    top: 20px;
}

.hospital-nav {
    width: 1150px;
    margin: 0 auto 150px;
    position: relative;
}

@media (prefers-reduced-motion: reduce) {
    .card,.pill,.card__arrow,.pill .arrow {
        transition: none
    }
}

span.grad-pulse.hos-pulse1 {
    width: 60px;
    height: 60px;
    bottom: 0px;
    position: absolute;
    left: -50px;
    --c: 100 200 255;
    top: unset;
}

span.grad-pulse.hos-pulse2 {
    width: 80px;
    height: 80px;
    top: 40px;
    position: absolute;
    right: 100px;
    --c: 100 200 255;
}

/* schedule */
.schedule-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    position: relative;
}

.schedule-icon {
    width: unset;
}

.grad-pulse {
    z-index: -1;
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    background: radial-gradient(closest-side, rgb(246 249 216), rgba(235, 249, 200, 0));
    filter: blur(1px);
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%,100% {
        opacity: .6;
        transform: translateY(-50%) scale(.9);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.05);
    }
}

.schedule-body {
    background: #f3f7fb;
    border-radius: 14px;
    padding: 50px 50px 40px;
    margin-top: 40px;
    margin-bottom: 120px;
}

.schedule-grid {
    display: flex;
    grid-template-columns: 1.05fr .95fr;
    gap: 4%;
    align-items: start;
    justify-content: space-between;
}

.schedule-table {
    width: 78%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,.02);
    color: var(--text);
}

.schedule-table thead th {
    background: #e1edf3;
    font-weight: 700;
    border-bottom: 1px solid #e1edf3;
    padding: 26px 16px;
    text-align: center;
    border-right: #fbfcfe 1px solid;
}

.schedule-table thead th:first-child {
    text-align: left;
}

.schedule-table tbody th.timeband {
    width: 28%;
    font-weight: 700;
    background: #fcfeff;
    border-right: 1px solid var(--border);
    font-size: 16px;
    line-height: 1.4;
}

.schedule-table td, .schedule-table tbody th {
    vertical-align: middle;
    padding: 26px 18px;
    border-bottom: #e1edf3 1px solid;
    text-align: center;
    border-right: #e1edf3 1px solid;
    font-size: 22px;
    font-weight: 700;
}

.schedule-table tbody tr:last-child td, .schedule-table tbody tr:last-child th {
}

.schedule-table td {
    font-feature-settings: "palt" 1;
}

.schedule-side .notes {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    font-size: 15px;
}

.schedule-side .notes li {
    margin: 0 0 13px;
}

.schedule-side .notes li::before {
    content: "※";
    margin-right: .25em;
}

.btn.schedule-cta {
    display: inline-flex;
    align-items: center;
    gap: .4em;
    background: var(--brand);
    color: #fff;
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: 700;
    /* transition: background .2s ease, transform .05s ease; */
    box-shadow: 0 2px 0 rgba(0,0,0,.06);
    font-size: 18px;
}

.btn .arrow {
    font-weight: 700;
    color: #fff;
    margin-left: 10px;
}

.contact {
    margin-top: 30px;
}

.contact-row {
    display: flex;
    gap: 7px;
    align-items: baseline;
    margin: 0px 0 16px;
}

.contact-row dt {
    width: 8.5em;
}

.tel-link {
    color: var(--brand);
    font-weight: 700;
    font-size: 34px;
}
.tel-link-2 {
    color: var(--brand);
    font-weight: 700;
    font-size: 32px;
}

.contact-note {
    color: var(--main);
    position: relative;
    bottom: 5px;
}

.blue-grad-pulse {
    background: radial-gradient(closest-side, rgb(216 238 249), rgba(235, 249, 200, 0));
}

.blue-grad-pulse:before {
    background: #6DD0FF;
}

section.schedule-panel {
    width: 1200px;
    margin: 0 auto;
}

aside.schedule-side {
    width: 100%;
}

.tel-link:before {
    content: "tel.";
    font-size: 20px;
    margin-right: 6px;
}

/* slide */
.marquee-gallery {
    padding: 20px 0;
    overflow: hidden;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    will-change: transform;
}

.marquee__content {
    display: flex;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.marquee__content li {
    flex: 0 0 auto;
}

.marquee__content img {
    display: block;
    height: 160px;
    width: auto;
    object-fit: cover;
}

@media (max-width: 767px) {
    .marquee__content img {
        height: 120px;
    }
}

@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee__track {
        animation: none;
        transform: none;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
    will-change: opacity, transform;
}

.reveal.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.reveal.is-inview {
    transition-delay: var(--reveal-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.is-inview {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* group */
.grf {
    padding: 0px 0 40px;
    margin-top: 170px;
}

.grf__inner {
    margin: 0 auto;
    position: relative;
}

.grf__title {
    color: var(--main);
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 20px;
    max-width: 1200px;
}

.grf__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 0;
    padding: 0px 0 6px;
    max-width: 1200px;
    margin: 0 auto;
}

.grf__grid::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(var(--sep),var(--sep)) 0 50%/100% 1px no-repeat;
}

.facility {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: inherit;
    padding: 32px 16px 26px;
    min-height: 108px;
}

.facility__meta {
    color: var(--text);
    font-size: 12px;
    line-height: 1.7;
    text-align: center;
}

.facility__name,.facility__name * {
    margin-top: 10px;
    color: var(--main);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    border-bottom: 1px solid transparent;
    transition: border-color .18s var(--ease);
}
span.facility__small {
    font-size: 77%;
}
.facility__org {
    font-size: 12px;
    color: var(--main);
    font-weight: 500;
    position: relative;
    bottom: 2px;
}

.facility:where(:hover,:focus-visible) .facility__name {
    border-color: var(--main);
}

.facility:focus-visible {
    outline: 3px solid color-mix(in oklab, var(--main) 70%, white);
    outline-offset: 2px;
    border-radius: 6px;
}

span.news-arrow .arrow {
    color: var(--main);
}

a.btn-ghost .arrow {
    color: #fff;
    float: right;
}

.grf__cta {
    grid-column: 4 / span 2;
    align-self: center;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    border: 1px solid var(--sep);
    border-radius: 10px;
    transition: box-shadow .2s var(--ease), transform .2s var(--ease), background-color .2s var(--ease);
    margin-left: 50px;
    width: 440px;
}

.grf__cta-sub {
    font-size: 16px;
}

.grf__cta-main {
    font-size: 20px;
}

.grf__cta-arrow {
    font-size: 18px;
    transition: transform .18s var(--ease);
}

.grf__cta:where(:hover,:focus-visible) .grf__cta-arrow {
    transform: translateX(4px);
}

.grf__cta:focus-visible {
    outline: 4px solid color-mix(in oklab, var(--main) 65%, white);
    outline-offset: 3px;
}

.grf__grid a:nth-child(8):after {
    display: none;
}

.facility__name small {
    font-size: 17px;
}

a.grf__cta * {
    color: var(--main);
    font-weight: 700;
}

h2.grf__title:after {
    background: var(--sep);
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    top: 37px;
}

a.facility:after {
    content: "";
    width: 1px;
    height: 80px;
    background: var(--sep);
    position: absolute;
    right: 0;
}

section.marquee-gallery {
    margin-bottom: 130px;
}

/* footer */
.meisei-footer {
    background: var(--main);
}

.meisei-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0px 24px;
    display: flex;
    gap: 136px;
    justify-content: space-between;
}

.footer-left {
    width: 250px;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 710px;
}

.brand {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 20px;
}

.brand-logo {
    width: unset;
    height: auto;
}

.brand-sub {
    font-size: 14px;
    opacity: .9;
    letter-spacing: .03em;
}

.brand-name {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.1;
}

.address {
    margin: 12px 0 55px;
    font-size: 16px;
    line-height: 1.7;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgb(255 255 255 / 60%);
    padding: 15px 16px;
    font-weight: 700;
    transition: background .2s,color .2s;
    width: 230px;
    justify-content: space-around;
    margin-bottom: 15px;
}

.btn-outline:hover {
}

.tel-box {
    margin-top: 20px;
    border-bottom: 1px solid rgb(255 255 255 / 60%);
    padding-bottom: 25px;
}

.tel-title {
    font-size: 14px;
    margin-bottom: 8px;
    text-align: left;
}

.tel-line {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.60);
}

.tel-label {
    font-size: 18px;
}

.tel-number {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.footer-nav.pc {
    display: flex;
    gap: 18px 28px;
    justify-content: space-between;
}

.nav-title {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.nav-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-links {
    list-style: none;
    margin: 6px 0 10px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 38px;
    border-top: 1px solid rgba(255,255,255,.60);
    border-bottom: 1px solid rgba(255,255,255,.60);
    padding: 25px 0;
}

.footer-links li {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-links li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    margin-right: 8px;
}

.footer-links a {
    font-size: 14px;
}

.footer-links a:hover {
}

.footer-copy {
    text-align: center;
    font-size: 13px;
    padding: 70px 20px 50px;
}

section.meisei-footer * {
    color: #fff;
}

section.meisei-footer a.btn-outline:hover, section.meisei-footer a.btn-ghost:hover {
    background: #ffe8e814;
    transition: background 0.3s cubic-bezier(.22,.61,.36,1);
}

a.btn-outline span {
    font-size: 15px;
    font-weight: 700;
}

a.btn-outline img {
    width: 18px;
}

.tel-box:last-child {
    border: none;
}

.nav-block ul * {
    font-size: 14px;
}

.nav-block ul li {
    line-height: 2;
}

a.btn-ghost img {
    width: 15px;
}

.nav-block.navs:before {
    content: "▼";
    margin-left: -29px;
    font-size: 13px;
    margin-right: 10px;
}

.nav-block.navs {
    padding-left: 30px;
}

section.meisei-footer a.btn-ghost {
    border: 1px solid rgb(255 255 255 / 60%);
    border-radius: 0;
}

/* page common */
p.page-icon img {
    width: unset;
}

header.page-header {
    margin-top: 90px;
    padding-bottom: 37px;
    border-bottom: 1px solid rgb(110 167 198 / 60%);
    margin-bottom: 0px;
}

header.page-header h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

p.page-icon {
    margin-bottom: 25px;
    text-align: center;
}

header.page-header h1 img {
    width: unset;
    margin: 0 20px;
}

/* philosophy */
.philosophy-content {
    width: 780px;
    margin: 0 auto;
    position: relative;
}

.headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 120px;
}

.philosophy-content p.headline-thumbail {
    width: 423px;
    margin-bottom: 50px;
}

h2.headline-title {
    color: var(--main);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.philosophy-content p.headline-txt {
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
}

.philosophy-content h3 {
    font-size: 23px;
    color: var(--main);
    font-weight: 700;
    border-bottom: 1px solid var(--sep);
    padding-bottom: 13px;
    margin-bottom: 25px;
    margin-top: 90px;
}

.philosophy-content p {
    margin-bottom: 12px;
    line-height: 2;
    font-size: 15px;
}

.philosophy-content h3:before {
    content: "";
    width: 26px;
    height: 6px;
    background: var(--main);
    display: block;
    position: relative;
    top: -20px;
}

.philosophy-content .grad-pulse.blue-grad-pulse {
    right: unset;
    left: 20%;
    top: 30px;
    z-index: -1;
    width: 50px;
    height: 50px;
}

.philosophy-content .grad-pulse {
    right: 40px;
    top: 230px;
}

/* greeting */
.greeting-content {
    width: 610px;
    margin: 0 auto;
    position: relative;
}

.greeting-content p {
    line-height: 2;
    margin-bottom: 15px;
}

.greeting-content .headline span {
    animation: unset;
    width: 30px;
    height: 30px;
}

.greeting-content span.grad-pulse {
    left: 0;
    top: 0;
}

.greeting-content span.grad-pulse.blue-grad-pulse {
    right: 0;
    top: 0;
    left: unset;
}

/* doctor */
.doctor-content {
    width: 900px;
    margin: 48px auto 0;
    padding: 0 20px
}

section.department:last-child {
    margin-bottom: 0;
}

section.department:last-child .doctor-card {
    margin: 0 auto;
}

.department > h2 {
    font-size: 28px;
    margin: 0 0 8px;
    padding-left: 40px;
    position: relative;
    background: url(https://sembei1.xsrv.jp/now/meisei/wp-content/uploads/ju-ji-icon.svg) no-repeat left top 8px;
    color: var(--main);
    font-weight: bold;
    border-bottom: 1px solid var(--sep);
    padding-bottom: 20px;
    margin-bottom: 60px;
}

.doctor-card h3 {
    margin: 0 0 30px;
    font-size: 20px;
    line-height: 1.4;
    background: var(--main);
    border-left: 10px solid #85c575;
    color: #fff;
    padding: 9px 9px 9px 20px;
}

.doctor-card .role,.doctor-card .kana {
}

.profile {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 4px 50px;
    margin: 0;
}

.doctor-card h3 * {
    color: #fff;
}

span.role {
    /*! margin-left: 15px; */
    margin-right: 10px;
}

.doctor-card {
    width: 620px;
    margin: 0 auto 70px;
}

.profile dd,.profile dt {
    margin: 0;
    word-break: break-word;
    line-height: 2;
}

section.department {
    margin-bottom: 140px;
}

/* about */
.about-table {
    width: 1000px;
    margin: 0 auto 160px;
}

.about-table th, .about-table td {
    padding: 22px 0px;
    vertical-align: top;
}

.about-table th {
    width: 110px;
    color: var(--main);
    font-weight: 700;
    text-align: left;
    white-space: nowrap;
    font-size: 16px;
    border-top: 3px solid var(--main);
}

.about-table td {
    font-size: 15px;
    border-top: 1px solid rgb(136 136 136 / 30%);
    padding-left: 20px;
    line-height: 1.25;
}

.about-table strong {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    margin-top: 0px;
}

.about-table strong:before {
    content: "";
    width: 12px;
    height: 12px;
    background: #222;
    display: inline-block;
    margin-right: 4px;
}

ul.br-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 25px;
}

ul.br-list li:before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    background: #222;
    border-radius: 50%;
    margin-right: 6px;
}

.about-table td p {
    margin-bottom: 20px;
}

.about-content span.grad-pulse.blue-grad-pulse {
    right: unset;
    left: 278px;
    top: 9px;
}

.about-content {
    width: 1000px;
    position: relative;
}

section.page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    padding-top: 100px;
    overflow-y: clip;
}

.about-content span.grad-pulse {
    right: 270px;
    top: 190px;
}

.about-table td p:last-child {
    margin-bottom: 0;
}

.about-table tr:last-child th {
    border-bottom: 3px solid var(--main);
}

table.about-table tr:last-child td {
    border-bottom: 1px solid rgb(136 136 136 / 30%);
}

/*  about-facility */
.about-facility {
    margin-bottom: 90px;
}

.about-facility__inner {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-facility__title {
    margin: 0 0 40px;
    text-align: center;
    position: relative;
    padding-bottom: 18px;
    font-size: 26px;
    color: var(--main);
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
}

.about-facility__lead {
    margin: 0 auto 62px;
    width: 780px;
    line-height: 2;
    color: var(--af-muted);
}

.about-facility__badge {
    margin: 0 0 40px;
    text-align: center;
}

.about-facility__badge > span {
    display: inline-block;
    background: var(--main);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 999px;
}

.about-facility__table-wrap {
    background: var(--af-bg);
    border: 1px solid var(--af-blue-weak);
}

.about-facility__table {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
}

.about-facility__table thead th {
    background: #e9f6fe;
    color: var(--main);
    font-weight: 700;
    padding: 12px 14px;
    border-bottom: 1px solid var(--af-blue-weak);
    border-right: 1px solid var(--af-blue-weak);
    text-align: center;
}

.about-facility__table th:first-child, .about-facility__table td:first-child {
}

.about-facility__table th:nth-child(2), .about-facility__table td:nth-child(2) {
    width: 20%;
}

.about-facility__table th:last-child, .about-facility__table td:last-child {
    white-space: nowrap;
}

.about-facility__table tbody td {
    padding: 14px;
    vertical-align: middle;
    border-bottom: 1px solid var(--af-blue-weak);
    border-right: 1px solid var(--af-blue-weak);
    color: var(--af-ink);
    line-height: 1.25;
}

.about-facility__table tbody td:last-child {
    border-right: none;
}

.about-facility__table tbody tr:last-child td {
    border-bottom: none;
}

.about-facility__table tbody td.row2:last-child {
    border-right: 1px solid var(--af-blue-weak);
}

.info-section {
    text-align: center;
    margin: 60px auto 0;
    padding: 0 20px;
    color: #333;
}

.info-section__subtitle {
    color: var(--main);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: clamp(15px,2vw,17px);
}

.info-section__text {
    font-size: clamp(14px,1.6vw,15px);
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.info-section__pdf {
    margin: 10px 0 24px;
    width: 37px;
}

.info-section__pdf-link img {
    width: 50px;
    height: auto;
}

.info-section__pdf-link:hover {
    opacity: .7;
}

.info-section__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.info-section__btn {
    display: inline-flex;
    padding: 11px 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-decoration: none;
    width: fit-content;
    transition: all .2s ease;
    align-items: center;
    margin-bottom: 10px;
}

.info-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

a.info-section__btn:before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--main);
    display: inline-block;
    border-radius: 50%;
    margin-right: 8px;
}

/* gairai */
.about-department__inner, .about-hours__inner {
    margin: 0 auto;
    text-align: center;
}

.about-department__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px;
    margin: 0px 0 40px;
    padding: 0;
    width: 700px;
}

.about-department__list li {
    position: relative;
    padding-left: 23px;
    font-size: 18px;
}

.about-department__list li::before {
    content: "";
    position: absolute;
    color: var(--main);
    font-size: 0.9em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--main);
    left: 6px;
    top: 6px;
}

.about-hours__table-wrap {
    background: #f3f7fb;
    border-radius: 12px;
    padding: 50px;
    overflow-x: auto;
    width: 1100px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    box-sizing: border-box;
}

.about-hours__table {
    width: 50%;
    border-collapse: collapse;
    border: 1px solid #d6e9f5;
}

.about-hours__table th, .about-hours__table td {
    border: 1px dashed #d6e9f5;
    padding: 20px 0px;
    text-align: center;
    vertical-align: middle;
    background: #fff;
    font-size: 20px;
    border-bottom-style: solid;
    font-weight: 700;
}

.about-hours__table th {
    font-weight: 700;
    width: 33%;
    background: #ffffff;
    font-size: 16px;
    line-height: 1.4;
}

.about-hours__table th span {
    font-weight: 700;
    display: block;
    text-align: center;
}

.about-hours__notes li {
    list-style: none;
    margin-bottom: 15px;
}

.about-hours__tel {
    text-align: right;
    line-height: 1.6;
}

.about-hours__tel .tel-main {
    font-size: 20px;
    font-weight: 700;
    color: var(--main);
    margin-top: 10px;
    margin-bottom: 12px;
}

.about-hours__tel .tel-sub {
    color: var(--main);
}

.gairai-table-txt {
    width: 45%;
}

.about-hours__table thead th {
    background: #e1edf3;
    border-right: #fbfcfe 1px solid;
}

ul.about-hours__notes {
    margin-bottom: 30px;
}

p.tel-main span {
    font-size: 32px;
    color: var(--main);
    font-weight: 700;
}

.about-schedule {
    width: 100%;
    margin-bottom: 120px;
}

.about-schedule__inner {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.about-schedule__wrap {
    background: #f3f7fb;
    overflow-x: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 90px 0;
}

.about-schedule__table {
    width: 1100px;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    margin-bottom: 40px;
    border-bottom: 1px solid rgb(166 202 217 / 60%);
}

.about-schedule__table th, .about-schedule__table td {
    border: 1px solid rgb(166 202 217 / 60%);
    padding: 10px 10px;
    text-align: center;
    vertical-align: middle;
    background: #fff;
}

.about-schedule__table thead th.group {
    color: #0f7ec1;
    font-weight: 800;
}

.about-schedule__table thead th {
    background: #f4fbff;
    color: var(--main);
    font-weight: 700;
}

.about-schedule__table .daycol {
    width: 56px
}

.about-schedule__table .ampmcol {
    width: 70px
}

.about-schedule__table .day {
    background: #eaf3ea;
    font-weight: 700;
    letter-spacing: .1em;
}

.about-schedule__table .ampm {
    font-weight: 700;
    color: #4b5563
}

.about-schedule__table td {
    height: 70px;
    line-height: 1.3;
    font-size: 14px;
    font-weight: 700;
}

.about-schedule__table td strong {
    font-size: 12px;
}

.about-schedule__table .note-row {
    background: #f9fcff;
    color: #999
}

.about-schedule__table .is-sticky {
    position: sticky;
    top: 0;
    z-index: 2;
}

.about-schedule__table .day {
    position: sticky;
    left: 0;
    z-index: 1
}

.about-schedule__table .ampm {
    position: sticky;
    left: 56px;
    z-index: 1
}

.about-schedule__notes {
    list-style: none;
    padding: 0;
    width: 1100px;
}

.about-schedule__notes li {
    margin: 0px 0 20px;
    line-height: 1.8;
}

.about-schedule__notes strong {
    color: #0f7ec1
}

.about-schedule__cta {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.about-schedule__btn {
    display: inline-block;
    padding: 16px 22px;
    border-radius: 7px;
    background: var(--main);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 2px 0 rgba(0,0,0,.05);
    transition: transform .06s ease, opacity .2s ease;
}

.about-schedule__btn:hover {
    opacity: .9
}

.about-schedule__btn:active {
    transform: translateY(1px)
}

table.about-schedule__table thead th {
    background: #fff;
    height: 50px;
}

.about-schedule__table tr:nth-child(2n-1) td {
    background: #f3f7fb;
}

.about-schedule__table tbody tr:nth-child(2n-1) th:first-child {
    background: #eff5ed;
    font-weight: 900;
}

.about-schedule__table tbody tr:nth-child(2n) th:first-child {
    background: #ffffff;
    font-weight: 700;
}

.about-schedule__table tbody tr:nth-child(2n-1) th:nth-child(2) {
    background: #f3f7fb;
    font-weight: 700;
}

table.about-schedule__table thead tr:first-child th:first-child {
    width: 110px;
}

ul.about-schedule__notes li:before {
    margin-right: 10px;
    content: "";
    width: 10px;
    height: 10px;
    background: var(--main);
    border-radius: 50%;
    display: inline-block;
}

.about-department__inner {
    margin-bottom: 0;
}

section.about-department {
    margin-bottom: 120px;
}

section.about-hours {
    margin-bottom: 120px;
}

/* facility */
.about-features {
    margin: 0 auto 150px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

.about-features__grid {
    display: grid;
    grid-template-columns: 1fr 0.67fr;
    gap: 28px 56px;
}

.about-features__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 28px;
}

.about-features__list li {
    position: relative;
    padding-left: 20px;
}

.about-features__list .dot {
    position: absolute;
    left: 0;
    top: .45em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--main);
}

.about-features__list strong {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
}

.about-features__list .desc {
    padding-left: 2px;
    line-height: 1.75;
}

.about-features__note {
    margin: 64px auto 0;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 22px;
    font-size: 13px;
}

.about-features__note::before, .about-features__note::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1px;
    height: 18px;
    background: rgb(113 112 113 / 50%);
    transform: translateY(-50%);
}

.about-features__note::before {
    left: 0;
}

.about-features__note::after {
    right: 0;
}

.about-facilities {
    text-align: center;
    width: 100%;
}

.about-facilities__lead {
    margin: 0 0 70px;
    text-align: center;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 700;
}

.about-facilities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 32px 49px;
    justify-items: center;
    width: 1150px;
}

.about-facilities__grid figure {
    background: #fff;
    overflow: hidden;
    text-align: center;
    margin-bottom: 13px;
}

.about-facilities__grid img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 18px;
    transition: transform .25s ease;
}

.about-facilities__grid img:hover {
    /* transform:scale(1.02); */
}

.about-facilities__grid figcaption {
    float: left;
}

.btn-more {
    display: inline-block;
    padding: 6px 11px;
    font-size: 13px;
    color: #fff;
    background: var(--main);
    text-decoration: none;
    transition: opacity .2s ease;
    float: right;
    margin-top: -4px;
}

.btn-more:hover {
    opacity: .8;
}

.about-facilities__inner {
    display: flex;
    align-items: center;
    width: unset;
    flex-direction: column;
}

/* toseki */
.dialysis {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.normal__hero {
    width: 1100px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
}

.normal__lead {
    margin: 0px 0 60px;
    text-align: center;
    color: var(--main);
    font-weight: 700;
    font-size: 26px;
}

.normal__header {
    width: 41%;
}

.intro p {
    margin: 60px auto 40px;
    text-align: center;
    line-height: 2.2;
    font-size: 16px;
}

.normal__title {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 700;
    color: var(--main);
    margin: 0px 0 38px;
    font-size: 26px;
    border-left: 6px solid;
    padding-left: 20px;
}

.normal__text {
    width: 49%;
}

@property --len {
    syntax: '<length>';
    inherits: false;
    initial-value: 0px;
}

@property --top {
    syntax: '<length>';
    inherits: false;
    initial-value: 0px;
}

.normal__title-marker {
    position: relative;
    display: block;
    margin: 0 auto 70px;
    width: 1px;
    height: 70px;
    background-image: linear-gradient(var(--main), var(--main));
    background-repeat: no-repeat;
    background-size: 1px var(--len);
    background-position: 0 var(--top);
    translate: 0 2px;
    opacity: .5;
    animation: flowSmooth 1.7s ease-in-out infinite;
}

@keyframes flowSmooth {
    0% {
        --len: 0px;
        --top: 0px;
    }

    10% {
        --len: 8px;
        --top: 0px;
    }

    20% {
        --len: 16px;
        --top: 0px;
    }

    30% {
        --len: 24px;
        --top: 0px;
    }

    40% {
        --len: 32px;
        --top: 0px;
    }

    50% {
        --len: 40px;
        --top: 0px;
    }

    60% {
        --len: 38px;
        --top: 2px;
    }

    70% {
        --len: 32px;
        --top: 8px;
    }

    80% {
        --len: 22px;
        --top: 18px;
    }

    90% {
        --len: 12px;
        --top: 28px;
    }

    100% {
        --len: 0px;
        --top: 40px;
    }
}

.normal__grid {
    display: flex;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 120px;
    width: 1100px;
    margin: 0 auto 130px;
    flex-wrap: wrap;
    flex-direction: row;
}

.normal__fig img {
    width: 100%;
    height: auto;
    display: block;
}

.normal__text p {
    line-height: 2;
    text-align: left;
    border-bottom: 1px solid hsl(0deg 0% 82% / 50%);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.reha__grid .normal__text p {
    margin-bottom: 20px;
}

.dialysis__notes {
    margin: 14px 0 0;
    padding: 0 0 0 1.2em;
    display: grid;
    gap: 8px
}

.dialysis__notes li {
    list-style: disc;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
}

.normal__grid.cv__grid figure.normal__fig {
    width: 45%;
}

.normal__text.cv__text {
    width: 100%;
}

.reha__grid .normal__text {
    width: 50%;
}

section.dialysis.rehabilitation-content .normal__lead {
    font-size: 23px;
}

.consult__inner {
    text-align: center;
    margin: 0 auto 120px;
}

.consult__plus {
    margin: 0 auto 30px;
    width: 26px;
}

.consult__list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    width: 570px;
}

.consult__list li {
    position: relative;
    padding: 7px 1px 7px 30px;
    text-align: left;
    background: url(https://sembei1.xsrv.jp/now/meisei/wp-content/uploads/li.png) no-repeat left center/18px;
    font-size: 16px;
}

.feature5 {
    text-align: center;
    margin: 0 auto;
    width: 1100px;
}

.feature5__title {
    display: inline-flex;
    color: #fff;
    background: linear-gradient(to right, var(--main), #84C576);
    font-weight: 700;
    padding: 8px 25px;
    border-radius: 7px;
    font-size: 24px;
    margin-bottom: 30px;
    align-items: center;
}

.feature5__num {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    position: relative;
    top: -4px;
}

.feature5__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(360px,1fr));
    gap: 80px 80px;
    margin-top: 30px;
}

.feature5__grid figure {
    text-align: center;
    position: relative;
}

.feature5__grid img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.feature5__grid figcaption {
    text-align: center;
}

.feature5__grid .num {
    display: inline-flex;
    background: var(--main);
    color: #fff;
    font-weight: 700;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature5__grid .num--big {
    font-size: 1.4em;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

@media(max-width: 700px) {
    .feature5__grid {
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width: 480px) {
    .feature5__grid {
        grid-template-columns:1fr;
    }
}

section.dialysis-consult {
    width: 100%;
    margin-bottom: 150px;
}

section.dialysis .normal__lead {
    font-size: 23px;
}

h2.about-facility__title:after {
    width: 100%;
    content: "";
    background: var(--main);
    height: 4px;
    display: block;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

h2.about-facility__title span {
    color: var(--main);
    font-size: 26px;
    font-weight: 700;
    background: #fff;
    padding: 0 20px;
    display: inline-block;
    text-align: center;
}

section.pickup {
    display: flex;
    justify-content: center;
    width: 100%;
    border-bottom: 1px solid rgb(50 169 220 / 60%);
    margin-bottom: 70px;
    padding-bottom: 60px;
}

.pickup__grid {
    width: 1100px;
    margin: 0 auto;
}

.pickup__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 32px 64px;
    align-items: start;
}

.pickup__text {
    color: #263238
}

.pickup__label {
    display: flex;
    gap: 20px;
    color: #85c575;
    font-weight: 700;
    margin: 0 0 20px;
    align-items: flex-end;
}

.pickup__label img {
    width: 34px;
    height: auto;
    object-fit: contain;
    opacity: .9;
}

.pickup__title {
    position: relative;
    margin: 0 0 30px;
    font-weight: 700;
    font-size: 26px;
    padding-left: 26px;
    color: var(--main);
}

.pickup__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 30px;
    background: var(--main);
}

.pickup__lead {
    line-height: 2;
    margin: 0px 0 16px;
}

.pickup__note {
    font-size: 13px;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
}

.pickup__fig {
    margin: 0;
}

.pickup__fig img {
    width: 100%;
    height: auto;
    display: block;
}

p.pickup__note:before {
    content: "※";
    position: absolute;
    left: 0;
}

.meal-offer {
    width: 1100px;
    margin: 0 auto;
}

.meal-offer__grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 24px 84px;
    align-items: center;
}

.meal-offer__box {
    border: 1px solid rgb(110 167 198 / 60%);
    border-radius: 6px;
    padding: 14px 24px 17px;
}

.meal-offer__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.meal-offer__bar {
    width: 8px;
    height: 1.2em;
    background: var(--main);
    border-radius: 4px;
    translate: 0 .1em;
}

.meal-offer__title {
    color: var(--main);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    white-space: nowrap;
}

.meal-offer__icon {
    margin-left: auto;
    width: 38px;
    height: auto;
    object-fit: contain;
    opacity: .9;
}

.meal-offer__text {
    margin: 0;
    line-height: 2;
}

span.meal-offer__title:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 27px;
    background: var(--main);
    top: 4px;
    position: relative;
    margin-right: 15px;
}

.dialysis span.grad-pulse.blue-grad-pulse {
    left: -20px;
    right: unset;
    top: 7px;
    width: 40px;
    height: 40px;
}

.dialysis span.grad-pulse {
    top: -5px;
    width: 40px;
    height: 40px;
    right: -30px;
}

/* rehabilitation */
section.dialysis.rehabilitation-content .dialysis__text p {
    border-bottom: none;
    margin-bottom: 0;
    line-height: 2;
    padding-bottom: 11px;
}

section.dialysis.rehabilitation-content h2.about-facility__title span {
    line-height: 1.6;
}

.rehabilitation-content h2.about-facility__title:after {
    top: 40px;
}

p.rehabilitation-icon1 {
    width: 320px;
    margin: 0 auto 20px;
}

.rehabilitation {
    max-width: 1260px;
    margin: 0 auto 90px;
    padding: 20px;
}

.rehabilitation__grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px 85px;
    align-items: start;
    margin-top: 40px;
}

.rehab-item__title {
    color: var(--main);
    font-weight: 700;
    font-size: 24px;
    margin: 0 0 28px;
    position: relative;
    border-left: 6px solid;
    padding-left: 20px;
}

.rehab-item figure {
    margin: 0 0 27px;
}

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

.rehab-item p {
    line-height: 2;
}

@media(max-width: 960px) {
    .rehabilitation__grid {
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width: 640px) {
    .rehabilitation__grid {
        grid-template-columns:1fr;
    }
}

.therapist-stats {
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.ts-hero h2 {
    background: #74bed1;
    color: #fff;
    padding: 18px 10px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}

.ts-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px 28px;
    justify-items: center;
    padding: 34px 0 6px;
    width: 700px;
    margin: 0 auto;
}

.ts-card {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.ts-chip {
    background: #ecf0f2;
    padding: 12px 10px 12px 20px;
    border-radius: 4px;
    font-size: 17px;
    text-align: center;
}

.ts-num {
    font-weight: 700;
    font-size: 17px;
}

.ts-note {
    position: relative;
    display: inline-block;
    font-size: 13px;
    margin: 30px auto 100px;
    padding: 0 22px;
}

.ts-note::before, .ts-note::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1px;
    height: 18px;
    background: rgb(113 112 113 / 50%);
    transform: translateY(-50%);
}

.ts-note::before {
    left: 0
}

.ts-note::after {
    right: 0
}

.ts-subtitle {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    color: var(--main);
    margin: 0px 0 60px;
}

.ts-subtitle::after {
    content: "";
    height: 1px;
    width: 100%;
    background: #a8deee;
    border-radius: 999px;
    position: absolute;
    z-index: -1;
}

.ts-body {
    width: 600px;
    margin: 0 auto;
    line-height: 2;
    font-size: 15px;
    text-align: left;
}

section.dialysis.rehabilitation-content {
    max-width: unset;
    width: 100%;
}

.ts-hero {
    width: 100%;
}

h3.ts-subtitle span {
    background: #fff;
    color: var(--main);
    font-weight: 700;
    font-size: 24px;
    padding: 0 20px;
}

p.ts-img {
    width: 550px;
    margin: 80px auto 0;
}

/* cv */
section.intro.cv__intro p {
    margin-top: 0;
}

.normal__text.cv__text p, .reha__grid .normal__text p {
    border: none;
    line-height: 2;
    padding: 0;
    text-align: justify;
}

p.cv__text_li:before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--main);
    display: inline-block;
    border-radius: 50px;
    margin-right: 10px;
    position: relative;
    top: -1px;
}

.normal__text.cv__text p.cv__text_li {
    line-height: 2;
    margin-bottom: 5px;
    font-size: 17px;
    font-weight: 700;
}

.normal__grid.cv__grid .normal__header {
    width: 45%;
}

.normal__grid.cv__grid .dialysis__text p {
    border: none;
    margin-bottom: 0;
    padding: 0;
    line-height: 2;
    position: relative;
}

.normal__grid.cv__grid .dialysis__text p.cv__text_li:before {
    margin-right: 10px;
    content: "";
    width: 9px;
    height: 9px;
    background: var(--main);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 11px;
}

.normal__grid.cv__grid .dialysis__text p.cv__text_li {
    padding-left: 20px;
}

.achieve {
    margin: 0 auto;
    padding: 0 20px 48px;
    text-align: center;
}

.achieve__box {
    border: rgb(50 169 220 / 60%) 1px solid;
    border-radius: 14px;
    padding: 58px 0px 30px;
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    width: 1100px;
}

.achieve__badge {
    display: inline-block;
    padding: 15px 48px;
    background: var(--main);
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    font-size: 20px;
    position: absolute;
    top: -30px;
}

.achieve__grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px 20px;
}

.achv {
}

.achv__no {
    color: #7cc6de;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.achv__title {
    margin: 0;
    color: var(--main);
    font-size: 20px;
    text-align: center;
    font-weight: 700;
}

.achv__sep {
    width: 100%;
    height: 2px;
    background: #e0f3fb;
    border-radius: 999px;
    margin: 14px auto;
}

.achv__desc {
    margin: 0;
    line-height: 1.8;
    text-align: center;
    color: #111;
}

.achieve__note {
    display: inline-block;
    position: relative;
    margin: 16px auto 70px;
    padding: 0 22px;
    font-size: 13px;
}

.achieve__note::before, .achieve__note::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 1px;
    height: 18px;
    background: hsl(0deg 0% 44% / 50%);
    transform: translateY(-50%);
}

.achieve__note::before {
    left: 0
}

.achieve__note::after {
    right: 0
}

/* CTA */
.achieve__cta {
    margin-top: 0px;
    display: flex;
    justify-content: center;
}

.achieve__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 22px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #a8deee;
}

.achieve__btn:hover {
    opacity: .9
}

.achieve__btn img {
    width: 16px;
    height: 16px;
    object-fit: contain
}

.achieve__url {
    margin: 10px 0 0;
    font-size: clamp(12px,1.4vw,14px);
}

.achieve__btn span {
    color: var(--main);
    font-size: 17px;
    font-weight: 700;
}

/* nyuin */
.admission {
    width: 900px;
    margin: 0 auto;
    padding: 0;
    color: #222;
}

.admission__title {
    background: var(--main);
    color: #fff;
    font-weight: 700;
    padding: 12px 20px;
    font-size: 24px;
    margin: 0 0 40px;
    position: relative;
    line-height: 1.3;
}

.admission__sub {
    color: var(--main);
    font-weight: 700;
    border-top: 1px solid rgb(50 169 220 / 60%);
    border-bottom: 1px solid rgb(50 169 220 / 60%);
    padding: 8px 0;
    margin: 50px 0 35px;
    font-size: 20px;
    display: inline-block;
    position: relative;
    line-height: 1.5;
}

.admission ul {
    margin: 0 0 0px;
    padding: 0;
    list-style: none;
}

.admission ul li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 20px;
    line-height: 1.6;
}

.admission ul li::before {
    content: "●";
    color: var(--main);
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 10px;
}

.admission p {
    margin: 0 0 20px;
    line-height: 2;
    letter-spacing: 0;
}

.admission__table {
    border-collapse: collapse;
    margin: 6px 0 20px;
    width: 100%;
}

.admission__table th, .admission__table td {
    border: 1px solid #ccc;
    padding: 20px 16px;
    width: 20%;
    line-height: 1.6;
    vertical-align: middle;
}

.admission__table th {
    width: 40%;
    font-weight: 700;
    line-height: 1.6;
}

.nyuin-content .intro p {
    margin-top: 0;
    margin-bottom: 50px;
}

ul.nyuin__nav_btn {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /*justify-content: center;*/
    gap: 30px 2.5%;
    width: 1100px;
    margin-bottom: 130px;
}

ul.nyuin__nav_btn li {
    width: 23%;
}

ul.nyuin__nav_btn li a {
    border: 1px solid rgb(50 169 220 / 60%);
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
    color: var(--main);
    font-size: 16px;
    position: relative;
}

ul.nyuin__nav_btn li a .arrow {
    color: var(--main);
    position: absolute;
    right: 15px;
}

.admission__li2 {
    margin-left: 20px;
}

.admission__li2 p:nth-child(n+2):before {
    content: "※";
    position: absolute;
    left: -20px;
}
.admission__li2 p:last-child:before {
    display:none;
}
.admission__li2 p {
    position: relative;
    margin-bottom: 20px;
    line-height: 1.8;
}

h4.admission__sub2 {
    font-size: 17px;
    font-weight: 700;
    margin: 40px 0 30px;
    color: var(--main);
    line-height: 1.4;
}

.admission-in {
    margin-top: 100px;
}

h2.admission__title + .admission__sub {
    margin-top: 0;
}

h5.admission__sub2 {
    margin-bottom: 10px;
}

table.admission__table thead tr:first-child th {
    background: #edf7fd;
}

table.admission__table {
    width: unset;
}

table.admission__table.admission__table--head thead tr:nth-child(2) th {
    background: #edf7fd;
}

table.admission__table.admission__table--head tr:first-child th {
    background: #edf7fd;
}

table.admission__table.admission__table--head tr:nth-child(2) th {
    background: #edf7fd;
    width: 30%;
}

table.admission__table.admission__table--head tr th.bgw {
    background: #fff;
}

.tac {
    text-align: center;
}

ul.admission__list li:before {
    display: none;
}

ul.admission__list li {
    padding: 0;
}

section.admission-in ol {
    margin-left: 20px;
}

section.admission-in ol li {
    line-height: 1.8;
    margin-bottom: 20px;
}

p.pdf-link a {
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    border-top: 1px solid rgb(34 34 34 / 60%);
    border-bottom: 1px solid rgb(34 34 34 / 60%);
    padding: 7px;
}

p.pdf-link a img {
    position: absolute;
    right: -103px;
    height: 38px;
    top: 0px;
}

.admission__about_box {
    background: #edf7fd;
    display: inline-block;
    padding: 25px 20px 10px;
    margin-top: 30px;
}

.admission__about_box h4 {
    margin: 0px 0 10px;
}

.admission__about_box p {
    margin-bottom: 10px;
}

p.pdf-link a br {
    display: none;
}

p.pdf-link {
    margin-top: 40px;
}

ul.admission__list.dot-list li:before {
    width: 10px;
    height: 10px;
    content: "";
    position: absolute;
    background: var(--main);
    display: block;
    border-radius: 50%;
    top: 6px;
}

ul.admission__list.dot-list li {
    padding-left: 20px;
    line-height: 1.3;
}

.line__title span {
    color: var(--main);
    font-size: 26px;
    font-weight: 700;
    background: #fff;
    padding: 0 20px;
    display: inline-block;
    text-align: center;
    line-height: 1.8;
}

.line__title:after {
    width: 100%;
    content: "";
    background: var(--main);
    opacity: .5;
    height: 1px;
    display: block;
    position: absolute;
    top: 53%;
    z-index: -1;
}

h2.line__title {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

/* access */
.access-section {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #222;
    background: #fff;
}

.access-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 1100px;
    margin: 0 auto;
    justify-content: space-between;
}

.access-image {
    width: 27%;
}

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

.access-info {
    width: 60%;
}

.access-title {
    font-weight: 700;
    color: var(--main);
    margin-bottom: 15px;
    font-size: 16px;
    display: inline-block;
    border-bottom: 1px solid rgb(50 169 220 / 60%);
    padding-bottom: 10px;
}

span.access-title-about {
    width: 136px;
    display: inline-block;
}

.access-address {
    line-height: 1.7;
    margin-bottom: 40px;
}

.access-transport {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.access-transport li {
    font-size: 0.95rem;
    line-height: 1.7;
}

.access-contact p {
    line-height: 2;
    margin: 10px 0;
    text-align: left;
}

.access-contact .tel {
    font-size: 20px;
    font-weight: 700;
}

.access-contact strong {
    font-size: 32px;
    font-weight: 700;
}

.access-contact .note {
    font-size: 14px;
}

section.access-map {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 70px 0;
    padding-bottom: 80px;
    width: 100%;
    border-bottom: 1px solid rgb(110 164 195 / 60%);
    margin-bottom: 90px;
}

section.access-map a {
    border: 1px solid var(--main);
    color: var(--main);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 30px;
}

section.access-map a:hover {
    background: var(--main);
    color: #fff;
    transition: background 0.3s cubic-bezier(.22, .61, .36, 1);
}

/* ct */
.normal__text.cv__text +h3.normal__title.cv__title {
    margin-top: 60px;
}

.ct-gallery-sec {
    margin-bottom: 150px;
}

.ct-gallery {
    display: flex;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px 32px;
    width: 1100px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.ct-gallery figure {
    margin: 0;
    text-align: center;
}

.ct-gallery img {
    width: auto;
}

.ct-gallery img:hover {
}

.ct-gallery figcaption {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 10px;
    text-align: center;
}

ul.ct-gallery li {
    width: 14.22%;
}

.ct-heart {
    width: 100%;
    margin-bottom: 130px;
}

.ct-heart__head {
}

.ct-heart__title {
    text-align: center;
    color: var(--main);
    font-size: 26px;
    font-weight: 700;
    border-bottom: 1px solid rgb(93 149 184 / 60%);
    padding-bottom: 40px;
}

.ct-heart__top {
    max-width: var(--w);
    margin: 70px auto 80px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 1100px;
}

.ct-heart__lead p {
    line-height: 2;
    margin: 0 0 0;
}

.ct-heart__shots {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    width: 700px;
}

.ct-heart__shots figure {
    margin: 0;
}

.ct-heart__shots img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    background: #f6f6f6;
}

.ct-heart__shots figcaption {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
}

.ct-heart__bottom {
    max-width: var(--w);
    margin: 0 auto;
    display: flex;
    grid-template-columns: 1fr 1.6fr;
    align-items: start;
    justify-content: center;
    gap: 0 100px;
}

.ct-heart__chip {
    font-weight: 700;
    color: var(--main);
    font-size: 18px;
    text-align: center;
    margin: 0 0 15px;
}

.ct-heart__badge {
    display: inline-block;
    background: var(--main);
    color: #fff;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 14px 16px;
    border-radius: 8px;
    margin: 0 auto 28px;
    text-align: center;
    font-size: 18px;
    width: 180px;
}

.ct-heart__check-left {
    text-align: center;
}

.ct-heart__desc {
    text-align: center;
    font-size: 14px;
    line-height: 2;
}

.ct-heart__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px 20px;
}

.ct-heart__list li {
    position: relative;
    padding-left: 28px;
    line-height: 1.85;
    font-weight: 700;
}

.ct-heart__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58em;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: url(https://sembei1.xsrv.jp/now/meisei/wp-content/uploads/ty.png) no-repeat left center / 15px;
}

.ct-heart__lead {
    width: 340px;
}

.ct-flow {
    --card-bg: #fff;
    --card-bd: #2b97d2;
    width: 100%;
    margin-bottom: 150px;
}

.ct-flow__head {
    background: var(--main);
    color: #fff;
    padding: 18px 12px;
    text-align: center;
}

.ct-flow__head h2 {
    font-size: 23px;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

.ct-flow__body {
    background: #eff4f9;
    width: 100%;
}

.ct-flow__grid {
    width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 32px 44px;
}

.flow__item {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-bd);
    border-radius: 7px;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 16px;
    box-shadow: 0 1px 0 rgba(0,0,0,.02);
    width: 100%;
}

.flow__item span {
    color: var(--card-bd);
    line-height: 1.8;
    font-weight: 700;
    text-align: center;
}

.flow__item::after {
    content: "";
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-right: 1px solid var(--card-bd);
    border-top: 1px solid var(--card-bd);
    transform-origin: center;
    rotate: 45deg;
}

.ct-flow__grid > .flow__item:nth-child(8)::after {
    display: none;
}

.ct-promo__wrap {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.ct-promo__badge {
    background: var(--main);
    color: #fff;
    border-radius: 12px;
    padding: 15px 0px;
    text-align: center;
    width: 420px;
}

.ct-promo__badge p {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    line-height: 1.8;
    color: #fff;
}

.ct-promo__text p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.9;
}

.ct-promo__text p strong {
    color: var(--main);
}

.ct-promo__icon {
    display: flex;
    justify-content: flex-end;
    width: 100px;
}

.ct-promo__icon img {
    width: min(150px, 100%);
    height: auto;
    display: block;
}

.ct-promo__text {
    width: 670px;
}

/* ncd */
.page-id-310 .page-header {
    display: none;
}

.page-id-310 .page-content .page-header {
    display: block;
    width: 100%;
    margin: 0 0 100px;
}

.page-id-310 .page-content .page-header h1 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: var(--main);
    line-height: 1.6;
}

.page-id-310 .page-content .page-header h1 span {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

.ncd .admission p {
    margin-bottom: 100px;
}

.ncd .admission__title {
    margin-bottom: 50px;
    padding-left: 50px;
    position: relative;
}

.ncd .admission p:last-child {
    margin-bottom: 0;
}

.ncd .admission__title span {
    position: absolute;
    font-size: 25px;
    color: #fff;
    padding-left: 5px;
    left: 15px;
}

h2.admission__title span {
    position: absolute;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    left: 15px;
    line-height: 1.3;
}

section.guidelines.admission .admission__title {
    padding-left: 40px;
    margin-bottom: 50px;
    margin-top: 100px;
}

p.sensor span {
    margin-right: 20px;
}

section.guidelines.admission p {
    margin-bottom: 20px;
}

h3.admission__sub span {
    position: absolute;
    color: var(--main);
    font-size: 20px;
    left: 5px;
    line-height: 1.5;
}

section.guidelines.admission .admission__sub {
    padding-left: 40px;
    margin-top: 10px;
}

section.guidelines.admission p + .admission__sub,section.guidelines.admission ul + .admission__sub {
    margin-top: 40px;
}

p.guidelines__num {
    position: relative;
    padding-left: 30px;
}

p.guidelines__num span {
    position: absolute;
    left: 0;
    top: 7px;
}

section.guidelines.admission p + .admission__title {
    margin-top: 100px;
}

ul.guidelines__li li:before {
    display: none;
}

ul.guidelines__li li span {
    color: var(--main);
    font-weight: 700;
    width: 120px;
    display: inline-block;
}

ul.guidelines__li {
    margin-bottom: 30px;
}

ul.guidelines__li li {
    margin-bottom: 20px;
}

.admission ul li::before {
}

ul.guidelines__li2 {
    margin-left: 20px;
}

.admission ul.guidelines__li2 li:before {
    color: #222;
}

ul.guidelines__li2 + p {
    margin-left: 17px;
}

ul.guidelines__li3 li:before {
    display: none;
}

ul.guidelines__li3 li {
    padding-left: 0;
}

ul.guidelines__li3 li {
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
    clear: both;
    margin-bottom: 15px;
}

ul.guidelines__li3 li span {
    position: absolute;
    left: 0;
    top: 4px;
}

ul.guidelines__li4 li:before {
    display: none;
}

ul.guidelines__li4 li {
    padding-left: 30px;
}

ul.guidelines__li3 ul.guidelines__li4 li {
    padding-left: 25px;
    margin-bottom: 10px;
}

ul.guidelines__li4 {
    margin-top: 20px;
    padding-left: 0px;
}

section.guidelines.admission .admission__title:first-child {
    margin-top: 0;
}

ul.guidelines__li4 li span {
    position: absolute;
    left: 0;
    top: 4px;
}

p.last-p {
    font-size: 14px;
}

.guidelines__setsumei {
    display: flex;
    align-items: flex-start;
}

.guidelines__setsumei ul.guidelines__li4 {
    margin-top: 23px;
    margin-left: 20px;
}

.guidelines__setsumei ul.guidelines__li4 li {
    margin-bottom: 12px;
}

p.guidelines__setsumei {
    margin-top: 20px;
    color: var(--main);
    font-weight: 700;
}

/* contact */
.contact-phone {
    width: 800px;
    margin: 0 auto 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-phone__lead {
    text-align: center;
    font-weight: 700;
    font-size: 17px;
    position: absolute;
    top: -9px;
    background: #fff;
    display: inline-block;
    padding: 0 30px;
	z-index: 6;
}

.contact-phone__box {
    border: 1px solid rgb(0 0 0 / 60%);
    padding: 40px 20px 20px;
    border-radius: 4px;
    text-align: center;
    width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px;
}

.contact-phone__dept {
    color: var(--main);
    font-weight: 700;
    font-size: 20px;
    margin: 0px 0 16px;
}

.contact-phone__tel {
    margin: 0 0 6px;
    color: var(--main);
    font-weight: 900;
    font-size: 42px;
    letter-spacing: .06em;
}

.contact-phone__tel span {
    font-size: 26px;
    font-weight: 700;
    color: #60a9d4;
}

.contact-phone__time {
    margin: 10px 0 15px;
    font-size: unset;
    text-align: center;
    line-height: 1.6;
}

.contact-phone__alert {
    display: inline-block;
    margin: 0 auto;
    background: #cc121b;
    color: #fff;
    font-weight: 700;
    padding: 10px 14px;
    font-size: 16px;
}

.contact-phone__notes {
    margin: 50px 0 0;
}

.contact-phone__sep {
    border: 0;
    height: 1px;
    background: rgb(87 185 222 / 50%);
    margin: 16px 0;
}

.contact-phone__policy {
    color: var(--main);
    text-decoration: underline;
}

.nowrap {
    white-space: nowrap;
}

.contact-phone__notes p {
    line-height: 2;
}

.cf7-ny {
    margin: 0 auto;
}

.cf7-ny__note {
    color: var(--main);
    text-align: center;
    margin: 0 0 60px;
    font-weight: 700;
}

.cf7-ny__grid {
    background: #f3f3f7;
    border-top: 3px solid var(--main);
    border-radius: inherit;
    display: flex;
    gap: 1px;
    flex-direction: column;
    align-items: center;
    padding: 70px 0 100px;
}

.cf7-ny .row {
    background: #fff;
    width: 1000px;
}

.cf7-ny .row--textarea {
    align-items: start
}

.cf7-ny .label {
    color: var(--main);
    font-weight: 700;
    width: 290px;
    padding: 45px 0px;
    text-align: center;
}

.cf7-ny .req {
    margin-left: 5px;
    color: var(--main);
}

.cf7-ny input[type="text"], .cf7-ny input[type="email"], .cf7-ny input[type="tel"], .cf7-ny textarea {
    width: 100%;
    background: #fff;
    border: 1px solid rgb(213 213 227 / 50%);
    border-radius: 4px;
    padding: 12px 12px;
    font-size: 15px;
    line-height: 1.6;
    outline: none;
    transition: box-shadow .15s ease,border-color .15s ease;
    box-sizing: border-box;
}

.cf7-ny textarea {
    min-height: 220px;
    resize: vertical;
}

.cf7-ny input:focus,.cf7-ny textarea:focus {
    border-color: #bfe4f6;
    box-shadow: 0 0 0 3px rgba(0,160,233,.15)
}

.cf7-ny .wpcf7-radio {
    display: flex;
    gap: 18px
}

.cf7-ny .wpcf7-list-item {
    margin: 0
}

.cf7-ny .row--zip {
    grid-template-columns: 180px 1fr auto
}

.cf7-ny__zipbtn {
    border: 1px solid #cfe8f6;
    background: #e9f6fe;
    color: #1582c4;
    border-radius: 4px;
    padding: 10px 12px;
    font-weight: 700;
    cursor: pointer
}

.cf7-ny__submit .wpcf7-submit:hover {
    transition: background 0.3s cubic-bezier(.22,.61,.36,1);
    background: var(--main);
    color: #fff;
}

.cf7-ny__policy {
    margin: 60px auto 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.cf7-ny__policy .ttl {
    margin: 0 0 30px;
    font-weight: 700
}

.cf7-ny__policy .agree {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 30px;
}

.cf7-ny__submit {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cf7-ny__submit .wpcf7-submit {
    border: 1px solid var(--main);
    color: var(--main);
    border-radius: 8px;
    padding: 17px 48px;
    letter-spacing: .08em;
    cursor: pointer;
    width: 100%;
    background: none;
    font-size: 17px;
}

div#wpcf7-f11-p335-o1 {
    width: 100%;
}

.cf7-ny .row p {
    display: flex;
    align-items: center;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
}

span.wpcf7-form-control-wrap {
    width: 100%;
    padding: 40px 30px;
    border-left: 1px solid #f3f3f7;
    display: block;
}

label.agree span.wpcf7-form-control-wrap {
    border: none;
    padding: 0;
}

span.wpcf7-not-valid-tip {
    position: absolute;
    bottom: 15px;
}

/* terms */
section.terms-contents {
    width: 900px;
    margin: 0 auto 100px;
}

section.terms-contents p {
    margin-bottom: 10px;
    line-height: 2;
}

.link-box {
    background: #edf7fd;
    padding: 20px;
    line-height: 2;
    margin-top: 40px;
}

.terms-contents .guidelines.admission a {
    color: var(--main);
    text-decoration: underline;
}

.terms-contents section.guidelines.admission {
    margin-top: 100px;
}

.terms-contents .guidelines.admission .link-box a {
    color: #222;
    text-decoration: none;
}

/* privacy */
ul.privacy-link li * {
    color: var(--main);
}

ul.privacy-link li {
    list-style: none;
    line-height: 3;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

ul.privacy-link li:before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50px;
    background: var(--main);
    margin-right: 10px;
    top: 4px;
}

ul.privacy-link {
    margin-bottom: 130px;
    margin-top: 50px;
}

section.terms-contents.privacy-contents ul.privacy-link + h2 {
    margin-bottom: 50px;
}

h3.admission__sub + h4.admission__sub2 {
    margin-top: 10px;
}

ul.admission__li1 li {
    line-height: 2;
    margin-bottom: 5px;
}

/* site map */
.sitemap {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 90px 48px;
    width: 1000px;
}

.smap__head {
    background: var(--main);
    line-height: 1;
    padding: 12px 16px 12px 44px;
    position: relative;
    border-radius: 2px;
    margin-bottom: 30px;
}

.smap__head::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.smap__list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 19px;
}

.smap__list li {
    position: relative;
}

.smap__list a {
    width: 100%;
    display: block;
    border-left: 3px solid var(--main);
    padding-left: 15px;
    line-height: 1.4;
}

.smap__list a:hover {
    opacity: .8;
    text-decoration: underline
}

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

/* archive */
ul.news-list-arc {
    width: 1000px;
    margin: 0 auto 60px;
}

h2.archive-h2 {
    text-align: center;
    color: var(--main);
    margin-top: 80px;
    margin-bottom: 100px;
}

h2.archive-h2 span {
    display: block;
    text-align: center;
    color: var(--main);
    font-size: 34px;
    font-weight: 900;
    margin-top: 10px;
}

span.news-cat-arc {
    background: var(--main);
    color: #fff;
    width: 130px;
    font-size: 13px;
    text-align: center;
    padding: 5px;
    display: inline-block;
    border-radius: 4px;
    margin-right: 20px;
}

span.news-date-arc {
    color: var(--main);
    width: 100px;
    display: inline-block;
}

li.news-item-arc {
    list-style: none;
    border-bottom: 1px solid rgb(198 195 194 / 50%);
}

li.news-item-arc a {
    display: block;
    padding: 25px 0;
}

ul.pager {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
}

ul.pager .pager__link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main);
    color: var(--main);
}

li.pager__item.is-link a {
    background: var(--main);
    color: #fff;
}

li.pager__item.is-link a:hover {
    color: var(--main);
    background: #eaf9ff21;
}

/* single */
section.news-single h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 90px 0 35px;
    color: var(--main);
    line-height: 1.8;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--main);
    padding-bottom: 10px;
}

section.news-single h2:first-child {
    margin-top: 0;
}

section.news-single h3 {
    font-size: 21px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: var(--main);
    border-left: 3px solid var(--main);
    line-height: 1.4;
    padding-left: 15px;
    letter-spacing: 0.1em
}

section.news-single h4 {
    font-size: 19px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: var(--main);
    line-height: 1.4;
    letter-spacing: 0.1em
}

section.news-single h5 {
    font-size: 17px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: var(--main);
    line-height: 1.4;
    letter-spacing: 0.1em
}

section.news-single h6 {
    font-size: 16px;
    font-weight: 700;
    margin: 30px 0 10px;
    color: #222;
    line-height: 1.4;
    letter-spacing: 0.1em
}

section.news-single img {
    margin: 50px auto;
}

section.news-single p {
    line-height: 2;
}

section.news-single p strong {
    font-weight: 700;
}

section.news-single a {
    text-decoration: underline;
}

section.news-single p.btn a {
    text-decoration: none;
}

section.news-single span.prev a, section.news-single span.next a {
    text-decoration: none;
}

section.news-single a {
    transition: 0.5s;
}

section.news-single a:hover {
    opacity: 0.8;
}

.single-header h1 {
    text-align: center;
    font-weight: 900;
    margin: 0 0 14px;
    color: #111;
}

.single-contents {
    margin: 0 auto 90px;
}

.single-meta {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0 0 10px;
    padding-top: 40px;
}

.single-meta__date, .single-meta__cat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 12px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .02em
}

.single-meta__date {
    color: var(--main);
}

.single-meta__cat {
    background: var(--main);
    color: #fff;
    font-size: 15px;
}

.single-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--main);
    padding: 16px 10px 50px;
    margin: 0 0 60px;
    border-bottom: 1px solid rgb(110 167 198 / 60%);
}

.single-content {
    width: 700px;
    margin: 0 auto;
}

.single-content img {
    height: auto;
    display: block;
    margin: 20px auto;
    max-width: 100%;
    width: unset;
    justify-content: center;
}

.single-pager .arr {
    display: none;
}

.single-pager__item.is-prev a, .single-pager__item.is-next a {
    position: relative;
    font-weight: 700;
    color: var(--main);
}

.single-pager__item.is-prev a {
    padding-left: 32px;
    display: block;
}

.single-pager__item.is-prev a::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 11px;
    height: 11px;
    transform: translateY(-50%) rotate(45deg);
    border-left: 2px solid color-mix(in oklab, var(--main) 65%, white);
    border-bottom: 2px solid color-mix(in oklab, var(--main) 65%, white);
    border-right: 0;
    border-top: 0;
    border-radius: 1px;
}

.single-pager__item.is-prev a:hover::before {
    border-color: var(--main);
}

.single-pager__item.is-next a {
    padding-right: 32px;
}

.single-pager__item.is-next a::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid color-mix(in oklab, var(--main) 65%, white);
    border-top: 2px solid color-mix(in oklab, var(--main) 65%, white);
    border-left: 0;
    border-bottom: 0;
    border-radius: 1px;
}

.single-pager__item.is-next a:hover::after {
    border-color: var(--main);
}

.to-index {
    border: 1px solid color-mix(in oklab, var(--main) 55%, white);
    padding: 12px 28px;
    border-radius: 0px;
    color: var(--main);
}

.to-index:hover {
    border-color: var(--main);
    opacity: .95;
}

nav.single-pager {
    display: flex;
    justify-content: center;
    gap: 0 30px;
    width: 1000px;
    padding-top: 70px;
    margin: 0 auto;
    border-top: rgb(110 167 198 / 60%) 1px solid;
}

.single-pager__item span {
    color: var(--main);
}

/* SPハンバーガー */
.sr-only {
    /*! position: absolute!important; */
    clip: rect(1px,1px,1px,1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden
}

.spmenu__btn {
    position: fixed;
    right: 0px;
    top: 0;
    z-index: 1200;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border: 0;
    background: #169dd7;
    color: #fff;
    cursor: pointer;
}

.spmenu__icon {
    position: relative;
    width: 28px;
    height: 18px;
    display: block;
    margin: 0 auto;
}

.spmenu__icon span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease,opacity .25s ease,top .25s ease
}

.spmenu__icon span:nth-child(1) {
    top: 0
}

.spmenu__icon span:nth-child(2) {
    top: 8px
}

.spmenu__icon span:nth-child(3) {
    top: 16px
}

.spmenu__btn .spmenu__label {
    margin-top: 6px;
    font-size: 10px;
    color: #fff
}

.spmenu__btn[aria-expanded="true"] .spmenu__icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.spmenu__btn[aria-expanded="true"] .spmenu__icon span:nth-child(2) {
    opacity: 0
}

.spmenu__btn[aria-expanded="true"] .spmenu__icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

.spmenu[hidden] {
    display: none
}

.spmenu {
    position: fixed;
    inset: 0;
    z-index: 1199;
    display: flex;
    background: rgba(0,0,0,.45)
}

.spmenu__inner {
    margin-left: auto;
    height: 100%;
    background: #169dd7;
    color: #fff;
    padding: 90px 20px 28px;
    overflow: auto;
    box-shadow: -6px 0 16px rgba(0,0,0,.2);
    position: relative;
    width: 100%;
}

.spmenu__head {
    display: none;
}

.spmenu__close {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 56px;
    height: 56px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer
}

.spmenu__close-icon {
    position: relative;
    width: 24px;
    height: 24px
}

.spmenu__close-icon::before,.spmenu__close-icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #fff;
    transform-origin: center
}

.spmenu__close-icon::before {
    transform: translateY(-50%) rotate(45deg)
}

.spmenu__close-icon::after {
    transform: translateY(-50%) rotate(-45deg)
}

.spmenu__close-label {
    font-size: 11px;
    line-height: 1;
    color: #fff
}

.spmenu__list {
    list-style: none;
    margin: 8px 0 40px;
    padding: 0;
    border-bottom: 1px solid rgb(255 255 255 / 40%);
    border-top: 1px solid rgb(255 255 255 / 40%)
}

.spmenu__item + .spmenu__item {
    border-top: 1px solid rgb(255 255 255 / 40%);
    padding: 0px 0;
    position: relative
}

.spmenu__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}

.spmenu__link {
    color: #fff;
    font-weight: 900;
    font-size: 15px;
    padding: 20px 0;
    display: block;
    width: 100%;
}

.spmenu__link--arrow:after {
    content: "\2192";
    margin-left: 10px;
    font-weight: 700;
    right: 0;
    position: absolute
}

.spmenu__toggle {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    width: 100%;
    height: 32px;
    cursor: pointer;
    right: -9px;
    position: absolute
}

.spmenu__toggle[aria-expanded="true"]::after {
    content: "-";
}

.spmenu__toggle::after {
    content: "+";
    position: absolute;
    right: 2%;
    top: 16%;
}

.spmenu__sub {
    list-style: none;
    margin: 0px 0 10px;
}

.spmenu__sub[hidden] {
    display: none
}

.spmenu__sub li {
    padding: 10px 0
}

.spmenu__sub a {
    color: #fff
}

.spmenu__sub a:before {
    content: "\2192";
    margin-right: 8px
}

.spmenu__bullets {
    list-style: none;
    margin: 10px 0 30px;
    padding: 0
}

.spmenu__bullets li {
    position: relative;
    padding-left: 18px;
    line-height: 1.8;
    margin-bottom: 10px
}

.spmenu__bullets li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%
}

.spmenu__bullets a {
    color: #fff;
    font-weight: 700
}

.spmenu__recruit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgb(255 255 255 / 60%);
    padding: 15px 18px;
    color: #fff;
    font-weight: 700
}

.spmenu__recruit .ext {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-left: 0;
    border-bottom: 0
}

li.spmenu__item.has-sub {
    padding: 0px 0;
}

p.spmenu__open_logo {
    background: #fff;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 9px 30px;
}

p.spmenu__open_logo img {
    width: 140px;
}

#spmenu[hidden] {
    display: block;
    visibility: hidden;
    pointer-events: none;
}

#spmenu .spmenu__inner {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .28s ease, transform .28s ease;
    will-change: opacity, transform;
}

#spmenu:not([hidden]) .spmenu__inner {
    opacity: 1;
    transform: translateY(0);
}

@starting-style {
    #spmenu:not([hidden]) .spmenu__inner {
        opacity: 0;
        transform: translateY(-8px);
    }
}

.spmenu__sub {
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height .35s ease, opacity .25s ease;
}

.spmenu__sub:not([hidden]) {
    max-height: 800px;
    opacity: 1;
    visibility: visible;
}

@starting-style {
    .spmenu__sub:not([hidden]) {
        max-height: 0;
        opacity: 0;
    }
}

.spmenu__btn.sp_and_tablet {
    display: none;
}

a {
    transition: opacity 0.3s cubic-bezier(.22,.61,.36,1);
}

a:hover {
    opacity: 0.85;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.sp_only {
    display: none;
}

.sp_and_pc {
    display: block;
}

.pc_and_tablet {
    display: block;
}

.tablet {
    display: none;
}

.pc_only {
    display: block;
}

.sp_and_tablet {
    display: none;
}

/*　フェードイン：スクロールアニメーション　*/
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
    will-change: opacity, transform;
}

.reveal.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.reveal.is-inview {
    transition-delay: var(--reveal-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.is-inview {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/*　フェードイン：終了　*/
/*NOW追加分*/
.mb10 {
    margin-bottom: 10px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

.mb70 {
    margin-bottom: 70px !important;
}

.mb80 {
    margin-bottom: 80px !important;
}

.mb90 {
    margin-bottom: 90px !important;
}

.mb100 {
    margin-bottom: 100px !important;
}
.mt10 {
    margin-top: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}

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

.mt40 {
    margin-top: 40px !important;
}

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

.mt60 {
    margin-top: 60px !important;
}

.mt70 {
    margin-top: 70px !important;
}

.mt80 {
    margin-top: 80px !important;
}

.mt90 {
    margin-top: 90px !important;
}

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

.height36 {
    height: 36px !important;
}

.card__p {
    height: 64px;
    margin-top: 10px;
    align-items: center;
    display: flex;
}

.pill__p {
    height: 63px;
    display: flex;
    align-items: center;
    width: 58px;
    background: #fff;
    border-radius: 8px 0 0 8px;
    justify-content: center;
}

table.schedule-table thead tr th:nth-child(3) {
    border-right: none;
}

.width-unset {
    width: unset;
}

a.facility:after:nth-child(5) {
    content: none;
}

.greeting-content .headline {
    margin-bottom: 20px;
}

.headline-thumbail {
    width: 414px;
}

.about-table ul li.reveal.is-inview {
    line-height: 1.25;
}

.about-hours__table thead th:last-child {
    border-right: none;
}

.line__title span br.pc {
    display: inline-block;
}

.rehabilitation-content.dialysis span.grad-pulse.blue-grad-pulse {
    left: -24px;
    right: unset;
    top: 40px;
}

.rehabilitation-content.dialysis span.grad-pulse {
    top: 445px;
    width: 40px;
    height: 40px;
    right: -30px;
}

.cv__intro {
    margin-bottom: 100px;
}

.font13 {
    font-size: 13px;
}

.admission ul li.admission_font13_mb {
    font-size: 13px;
    margin-bottom: 12px;
}

ul.ct-list li {
    list-style: none;
    margin-bottom: 17px;
}

.ncd .admission__title {
    /*! line-height: 1; */
}

.terms-contents a.linkcollar {
    color: var(--main);
    text-decoration: underline;
}

.txt_center {
    text-align: center;
}

.grf__grid a:nth-child(5):after {
    display: none;
}

p.sign {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 50px;
}

p.sign span {
    font-size: 14px;
    margin-right: 20px;
}

a.about-schedule__btn .arrow {
    color: #fff;
    margin-left: 15px;
}
.form_h2 {
	font-size:17px;
	text-align:center;
	border-bottom: 1px solid;
	padding-bottom: 10px;
	margin: 0 0 0 0;
	font-weight:700;
}
.page-id-335.fade-out {
    opacity: 1!important;
}
.wpcf7-response-output {
    max-width: 800px;
    margin: 0 auto!important;
    display: block;
    text-align: center;
    padding: 13px 10px!important;
    width: 92%;
    line-height: 1.6;
}