@charset "UTF-8";

/*
Theme Name: 気仙沼市立病院
Author: kesennuma city hospital
*/

* { font-family: Noto, Hiragino Sans, Helvetica, Arial, sans-serif; }

/* 自動アイコン */
a[href$=".pdf"]::after {
    padding: 0 5px 0 10px;
    display: inline-block;
    content: url(/wp-content/themes/kesennuma/image/icon_pdf.svg);
    vertical-align: middle;
}
a[href$=".xlsx"]::after {
    padding: 0 5px 0 10px;
    display: inline-block;
    content: url(/wp-content/themes/kesennuma/image/icon_excel.svg);
    vertical-align: middle;
}
a[href$=".xls"]::after {
    padding: 0 5px 0 10px;
    display: inline-block;
    content: url(/wp-content/themes/kesennuma/image/icon_excel.svg);
    vertical-align: middle;
}
a[href$=".docx"]::after {
    padding: 0 5px 0 10px;
    display: inline-block;
    content: url(/wp-content/themes/kesennuma/image/icon_word.svg);
    vertical-align: middle;
}
a[href$=".doc"]::after {
    padding: 0 5px 0 10px;
    display: inline-block;
    content: url(/wp-content/themes/kesennuma/image/icon_word.svg);
    vertical-align: middle;
}
.none_icon::after{
    content:none !important;
}

/* PDF mini icon / id-4421は審議会 */
.mega-list a[href$=".pdf"]::after,
.mini-mega-list a[href$=".pdf"]::after,
.sitemap-box a[href$=".pdf"]::after,
.page-id-4421 .cont-box li a[href$=".pdf"]::after,
.tsunagu-box p a[href$=".pdf"]::after {
    padding: 0 0 0 10px;
    display: inline-block;
    content: url(/wp-content/themes/kesennuma/image/icon_pdf-mini.svg);
    vertical-align: middle;
}

/* PDFアイコンを付ける */
.pdf-icon a::after {
    padding: 0 5px 0 10px;
    display: inline-block;
    content: url(/wp-content/themes/kesennuma/image/icon_pdf.svg);
    vertical-align: middle;
}

/* 自動アイコン無し */
.no-icon a::after { display: none !important; }

.cf:after {
    content: "";
    display: block;
    clear: both;
}

.grecaptcha-badge { visibility: hidden; }

@media screen and (min-width: 1200px), print {
	
    .pc_none { display: none !important; }
	
    /* MEGA MENU overray */
    body {
        position: relative;
        transition: 0.3s;
        font-size: 16px;
        color: #2d2d2d;
    }
    body::after {
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: rgba(0, 0, 0, 0.45);
        content: '';
        left: 0;
        top: 0;
        z-index: -1;
        opacity: 0;
        transition: all 0.6s;
    }
    body.overlay::after {
        z-index: 3;
        opacity: 1;
    }
	
    /* index header */
    header {
        display: flex;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.95);
        position: relative;
        z-index: 5;
    }
    .index-header-logo {
        width: 30%;
        min-width: 400px;
        padding: 25px 0 15px 25px;
    }
    .index-header-logo img { width: 320px; }
	
    /* main menu */
    .index-header-menu {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
	
    /* sub menu */
    .index-header-submenu { width: 100%; }
    .index-header-submenu ul {
        display: flex;
        justify-content: flex-end;
        margin: 3.5% 2.5% 0 0;
    }
    .index-header-submenu li {
        padding: 0 40px;
        font-size: 14px;
    }
    .index-header-submenu li:nth-of-type(2) { border-right: 1px solid #aaa; }
	
    .index-header-submenu li:last-child {
        width: 360px;
        padding: 0;
    }
    .index-header-submenu a:link {
        color: #2d2d2d;
        transition: 0.2s;
    }
    .index-header-submenu a:visited { color: #2d2d2d; }
    .index-header-submenu a:hover {
        color: #127b42;
        text-decoration: underline;
    }
    .index-header-submenu a:active { color: #127b42; }
	
    /* search form */
    #searchform {
        position: relative;
        margin-top: -5px;
    }
    .searchform input[type="text"] {
        position: absolute;
        top: -4px;
        right: 0;
        width: 350px;
        height: 32px;
        line-height: 32px;
        margin: 0;
        padding: 0 0 0 15px;
        font-size: 14px;
        background: #dedede;
        border-radius: 5px;
    }
    .searchform input[type="submit"] {
        width: 120px;
        height: 32px;
        line-height: 32px;
        font-size: 14px;
        color: #fff;
        text-align: center;
        position: absolute;
        top: -4px;
        right: 0;
        border: none;
        background: #127b42;
        cursor: pointer;
        border-radius: 5px;
    }
	
    /* main menu */
    header nav { width: 100%; }
    header nav .index-gm {
        display: flex;
        justify-content: flex-end;
    }
    header .index-gm>li { text-align: center; }
    header .index-gm>li:nth-child(1) { flex: 1; }
    header .index-gm>li:nth-child(2) { flex: 1; }
    header .index-gm>li:nth-child(3) { flex: 1; }
    header .index-gm>li:nth-child(4) { flex: 1; }
    header .index-gm>li:nth-child(5) { width: 21%; }
    header .index-gm>li:nth-child(6) { flex: 1; }
    header .index-gm>li>a {
        padding: 15px 0;
        display: block;
        transition: 0.2s;
		position: relative;
    }
    header .index-gm>li>a::after {
		content: "";
		background: #aaa;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		width: 1px;
		height: 80%;
		margin: auto;
	}
    header .index-gm>li:last-of-type>a::after {
		width: 0;
		height: 0;
	}
	header .index-gm span::after {
        display: inline-block;
        margin: -2px 0 0 7px;
        vertical-align: middle;
        content: "";
        width: 9px;
        height: 7px;
        background: url(/wp-content/themes/kesennuma/image/gm-arrow.svg) no-repeat center;
        background-size: cover;
    }
    header .gm-inquiry span::after { display: none; }
	
    /* mega menu */
    .mega-midashi {
        font-size: 16px;
        color: #2d2d2d;
        text-align: left;
        margin-bottom: 10px;
        padding: 5px 0 5px 16px;
        position: relative;
    }
    .mega-midashi::before {
        content: "";
        width: 2px;
        height: 24px;
        background: #127b42;
        position: absolute;
        top: 2px;
        left: 0;
    }
    .mega-menu-box {
        display: none;
        position: absolute;
        top: 118px;
        left: 0;
        right: 0;
        width: 100%;
        height: 100% !important;
        padding: 10px;
        margin: auto;
    }
    .mega-cont {
        border-radius: 5px;
        width: 1100px;
        margin: auto;
        background: #f7f5f2;
        padding: 20px 30px;
    }
    .mega-list {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .mega-list li {
        width: 24%;
        text-align: left;
        position: relative;
        font-size: 14px;
        margin: 0 1.33% 10px 0;
        background: url(/wp-content/themes/kesennuma/image/menu-arrow.svg) no-repeat 95% center #fff;
        background-size: 6px;
        border: 1px solid #777;
        border-radius: 5px;
        transition: 0.2s;
    }
    .mega-list li:hover {
        background: url(/wp-content/themes/kesennuma/image/menu-arrow-h.svg) no-repeat 95% center #127b42;
        background-size: 6px;
        border: 1px solid #127b42;
    }
    .mega-list li:nth-child(4n) { margin-right: 0; }
    .mega-list a {
        padding: 9px 0 9px 9px;
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
    }
    .mega-list a:link { color: #2d2d2d; }
    .mega-list a:visited { color: #2d2d2d; }
    .mega-list a:hover { color: #fff; }
    .mega-list a:active { color: #fff; }
	
    /* 外来診療 */

    .shokai_li {
        width: auto;
        flex: 1;
        margin-right: 0 !important;
    }

    /* 診療案内　調整 */
    .mega-cont-shinryo li { width: 18.9%; }
    .mega-cont-shinryo li:nth-child(4n) { margin: 0 1.33% 10px 0; }
    .mega-cont-shinryo li:nth-child(5n) { margin: 0 0 10px 0; }
	
    /* mega menu hover */
    .mega-menu:hover span,
    .gm-inquiry:hover span {
        background: #127b42;
        padding: 6px 8px;
        border-radius: 4px;
        color: #fff;
    }
    .mega-menu:hover span::after { background: url(/wp-content/themes/kesennuma/image/gm-arrow-h.svg) no-repeat center; }
    .h-bg {
        background: #127b42;
        padding: 7px 12px;
        border-radius: 4px;
    }
	
	/* fix header */
	.fix-header {
        background-color: rgba(18, 123, 66, 0.95);
        top: -66px;
        left: 0;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        color: #fff;
        position: fixed;
        z-index: 10000;
        opacity: 0;
    }
    .fix-header nav { width: 100%; }
    .fix-header .mini-gm {
        width: 1100px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }
    .fix-header .mini-gm>li {
        padding: 10px 0;
        color: #fff;
        font-size: 14px;
        transition: 0.2s;
        width: calc(100% / 7);
    }
    .fix-header .mini-gm>li>a {
        display: block;
        border-right: 1px solid #51a075;
        padding: 5px 0;
    }
    .fix-header nav>ul>li:last-child>a { border: none; }
    .fix-header nav>ul>li:hover { background: rgba(255, 255, 255, 0.25); }

    /* fix header inner */
    .mini-mega-midashi {
        font-size: 16px;
        color: #2d2d2d;
        text-align: left;
        margin-bottom: 10px;
        padding: 3px 0 3px 13px;
        position: relative;
    }
    .mini-mega-midashi::before {
        content: "";
        width: 2px;
        height: 20px;
        background: #127b42;
        position: absolute;
        top: 2px;
        left: 0;
    }
    .mini-mega-menu-box {
        display: none;
        position: absolute;
        top: 46px;
        left: 0;
        right: 0;
        width: 100%;
        height: 100% !important;
        padding: 10px;
        margin: auto;
    }
    .mini-mega-cont {
        border-radius: 5px;
        width: 1100px;
        margin: auto;
        background: #f7f5f2;
        padding: 15px 20px;
    }
    .mini-mega-list {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .mini-mega-list li {
        width: 24%;
        text-align: left;
        position: relative;
        margin: 0 13px 10px 0;
        background: url(/wp-content/themes/kesennuma/image/menu-arrow.svg) no-repeat 96% center #fff;
        background-size: 5px;
        border: 1px solid #777;
        border-radius: 5px;
    }
    .mini-mega-list li:hover {
        background: url(/wp-content/themes/kesennuma/image/menu-arrow-h.svg) no-repeat 96% center #127b42;
        background-size: 5px;
    }
    .mini-mega-list li:nth-child(4n) { margin: 0 0 13px; }
    .mini-mega-list a {
        background-size: 7px;
        padding: 10px 0 9px 12px;
        display: block;
        font-size: 12px;
    }
    .mini-mega-list a:link { color: #2d2d2d; }
    .mini-mega-list a:visited { color: #2d2d2d; }
    .mini-mega-list a:hover { color: #fff; }
    .mini-mega-list a:active { color: #fff; }

    /* 診療案内　調整 */
    .mini-mega-shinryo li { width: 19%; }
    .mini-mega-shinryo li:nth-child(4n) { margin: 0 13px 10px 0; }
    .mini-mega-shinryo li:nth-child(5n) { margin: 0 0 10px 0; }
    .mini-mega-list .fs-small { font-size: 12px !important; }

    /* header info & fade slider */
    .index-header-inner-wrapper {
        display: flex;
        justify-content: space-between;
        overflow: hidden;
        margin-top: -125px;
        height: 600px;
        box-shadow: 0 0 15px -10px rgb(0 0 0 / 50%);
        position: relative;
    }

    /* information */
    .index-header-infobox {
        width: 30%;
        min-width: 400px;
        height: 600px;
        background: #fff;
        position: relative;
        padding: 150px 0 0 0;
    }
    .index-header-infobox h2 {
        margin-bottom: 20px;
        padding-left: 25px;
    }

    /* information list */
    .index-info-box {
        width: 97%;
        height: 300px;
        margin-bottom: auto;
        padding-left: 30px;
        overflow-x: hidden;
        overflow-y: auto;
        position: relative;
    }
    .index-info-box div {
        font-size: 16px;
        border-left: 3px solid #127b42;
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 2px 20px 2px 12px;
    }
    .index-info-box p {
        font-size: 14px !important;
        margin-bottom: 5px !important;
    }
    .index-info-box .post-info .day {
        margin: 0 5px 0 0;
        padding-left: 25px;
        color: #007b43;
    }
    .index-info-box .post-info .day::before { content: url(/wp-content/themes/kesennuma/image/post-info-day-mini.svg); }
    .post-info .new {
        font-size: 12px;
        font-weight: normal;
        color: #b72e2e;
    }
    .index-info-box a:link {
        color: #2d2d2d;
        transition: 0.2s;
    }
    .index-info-box a:visited { color: #2d2d2d; }
    .index-info-box a:hover {
        color: #2d2d2d;
        text-decoration: underline;
    }
    .index-info-box a:active { color: #2d2d2d; }

    /* お知らせ一覧へボタン */
    .info-archive-button {
        width: 100%;
        position: absolute;
        bottom: 30px;
        left: 0;
        text-align: center;
    }
    .info-archive-button a {
        font-size: 14px;
        background: #127b42;
        border: 1px solid #127b42;
        color: #fff;
        padding: 10px 15px;
        border-radius: 5px;
        transition: 0.2s;
    }
    .info-archive-button a:hover {
        background: #fff;
        border: 1px solid #127b42;
        color: #127b42;
    }

    /* fade slider (swiper) */
    .swiper-slide img { display: none; }
    .swiper-container {
        width: 70%;
        height: 700px;
    }
    .pic01 {
        background: url(/wp-content/themes/kesennuma/image/main-fade-01.jpg) no-repeat center;
        background-size: cover;
    }
    .pic02 {
        background: url(/wp-content/themes/kesennuma/image/main-fade-02.jpg) no-repeat center;
        background-size: cover;
    }
    .pic03 {
        background: url(/wp-content/themes/kesennuma/image/main-fade-03.jpg) no-repeat center;
        background-size: cover;
    }
    .pic04 {
        background: url(/wp-content/themes/kesennuma/image/main-fade-04.jpg) no-repeat center;
        background-size: cover;
    }
    .pic05 {
        background: url(/wp-content/themes/kesennuma/image/main-fade-05.jpg) no-repeat center;
        background-size: cover;
    }
    .pic06 {
        background: url(/wp-content/themes/kesennuma/image/main-fade-06.jpg) no-repeat center;
        background-size: cover;
    }
    .pic07 {
        background: url(/wp-content/themes/kesennuma/image/main-fade-07.jpg) no-repeat center;
        background-size: cover;
    }

    /* header部分　モニタサイズ調整 */
    @media screen and (min-width: 1350px), print {

        .index-header-submenu ul { margin: 3.1% 2.8% 0 0; }
        .index-header-submenu li { font-size: 16px; }
        header .index-gm>li { font-size: 16px; }
        .index-header-infobox h2 {
            margin-bottom: 20px;
            padding-left: 25px;
        }
        .index-info-box { padding-left: 25px; }
        /* media screen END */
    }

    @media screen and (min-width: 1800px), print {
        .index-header-logo { padding-left: 40px; }
        .index-header-submenu ul { margin: 2.4% 4.2% 0 0; }
        .index-header-infobox h2 {
            margin-bottom: 20px;
            padding-left: 40px;
        }
        .index-info-box { padding-left: 40px; }
        /* media screen END */
    }

    /* index main */
    .index-main {
        background: #f7f5f2;
        padding: 20px 0 0;
    }

	/* 休診・外来・コロナ */
	.index-kyushin-wrapper {
        width: 1100px;
        display: flex;
        justify-content: space-between;
        margin: 0 auto 20px;
    }
	
    .index-kyushin-wrapper div {
		position: relative;
        border-radius: 5px;
        transition: 0.2s;
    }
    .index-kyushin-wrapper div:nth-child(1),
    .index-kyushin-wrapper div:nth-child(2) {
		width: 255px;
        background: #fff;
        border: 1px solid #fff;
	}
    .index-kyushin-wrapper div:nth-child(3) {
		width: 300px;
        background: #ff671f;
        border: 1px solid #ff671f;
	}
    .index-kyushin-wrapper div:nth-child(4) {
		width: 230px;
        background: #127b42;
        border: 1px solid #127b42;
	}
	.index-kyushin-wrapper div::before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 10px;
		width: 3px;
		height: 80%;
		margin: auto;
    }	
	.index-kyushin-wrapper div:nth-child(1)::before,
	.index-kyushin-wrapper div:nth-child(2)::before { background: #127b42; }
	.index-kyushin-wrapper div:nth-child(3)::before,
	.index-kyushin-wrapper div:nth-child(4)::before { background: #fff; }
	
	.index-kyushin-wrapper div::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 20px;
		width: 9px;
		height: 12px;
		margin: auto;
    }
	.index-kyushin-wrapper div:nth-child(1)::after,
	.index-kyushin-wrapper div:nth-child(2)::after {
		background: url(/wp-content/themes/kesennuma/image/menu-arrow.svg) no-repeat;
		background-size: cover;
    }
	.index-kyushin-wrapper div:nth-child(3)::after,
	.index-kyushin-wrapper div:nth-child(4)::after {
		background: url(/wp-content/themes/kesennuma/image/menu-arrow-h.svg) no-repeat;
		background-size: cover;
	}
	
	.index-kyushin-wrapper a {
		height: 100%;
        display: flex;
		align-items: center;
        padding: 20px 0 20px 30px;
        font-size: 16px;
        font-weight: bold;
        box-shadow: 0 2.5rem 2rem -2rem rgb(0 0 0 / 10%);
        transition: 0.2s;
    }

    /* 外来・休診 hover */
	.index-kyushin-wrapper div:nth-child(1):hover,
	.index-kyushin-wrapper div:nth-child(2):hover,
    .index-kyushin-wrapper div:nth-child(1):active,
    .index-kyushin-wrapper div:nth-child(2):active { background: #127b42; color: #fff; }
	
    .index-kyushin-wrapper div:nth-child(1):hover::before,
    .index-kyushin-wrapper div:nth-child(2):hover::before,
    .index-kyushin-wrapper div:nth-child(1):active::before,
    .index-kyushin-wrapper div:nth-child(2):active::before { background: #fff; }
	
    .index-kyushin-wrapper div:nth-child(1):hover::after,
    .index-kyushin-wrapper div:nth-child(2):hover::after,
    .index-kyushin-wrapper div:nth-child(1):active::after,
    .index-kyushin-wrapper div:nth-child(2):active::after {
        background: url(/wp-content/themes/kesennuma/image/menu-arrow-h.svg) no-repeat;
		background-size: cover;
    }
	
	.index-kyushin-wrapper div:nth-child(1):hover a,
	.index-kyushin-wrapper div:nth-child(2):hover a,
    .index-kyushin-wrapper div:nth-child(1):active a,
    .index-kyushin-wrapper div:nth-child(2):active a { color: #fff !important; }
	
    .index-kyushin-wrapper div:nth-child(1) a:link,
	.index-kyushin-wrapper div:nth-child(2) a:link { color: #2d2d2d; }
	
    .index-kyushin-wrapper div:nth-child(1) a:visited,
    .index-kyushin-wrapper div:nth-child(2) a:visited { color: #2d2d2d; }
	
    .index-kyushin-wrapper div:nth-child(1) a:hover,
    .index-kyushin-wrapper div:nth-child(2) a:hover { color: #fff; }
	
    .index-kyushin-wrapper div:nth-child(1) a:active,
    .index-kyushin-wrapper div:nth-child(2) a:active { color: #fff; }

    /* コロナ */
    .index-kyushin-wrapper div:nth-child(3):hover,
    .index-kyushin-wrapper div:nth-child(3):active { background: #fff; color: #ff671f !important; }
	
	.index-kyushin-wrapper div:nth-child(3):hover::before,
    .index-kyushin-wrapper div:nth-child(3):active::before { background: #ff671f; }
	
    .index-kyushin-wrapper div:nth-child(3):hover::after,
    .index-kyushin-wrapper div:nth-child(3):active::after {
        background: url(/wp-content/themes/kesennuma/image/menu-arrow.svg) no-repeat;
		background-size: cover;
    }
	
	.index-kyushin-wrapper div:nth-child(3):hover a,
    .index-kyushin-wrapper div:nth-child(3):active a { color: #ff671f !important; }
	
	.index-kyushin-wrapper div:nth-child(3) a:link { color: #fff; }
    .index-kyushin-wrapper div:nth-child(3) a:visited { color: #fff; }
    .index-kyushin-wrapper div:nth-child(3) a:hover { color: #ff671f; }
	.index-kyushin-wrapper div:nth-child(3) a:active { color: #ff671f; }
	
	/* コロナ */
	.index-kyushin-wrapper div:nth-child(4):hover,
	.index-kyushin-wrapper div:nth-child(4):active { background: #fff; color: #fff; }
	
	.index-kyushin-wrapper div:nth-child(4):hover::before,
    .index-kyushin-wrapper div:nth-child(4):active::before { background: #127b42; }
	
    .index-kyushin-wrapper div:nth-child(4):hover::after,
    .index-kyushin-wrapper div:nth-child(4):active::after {
        background: url(/wp-content/themes/kesennuma/image/menu-arrow-green.svg) no-repeat;
		background-size: cover;
    }
	
	.index-kyushin-wrapper div:nth-child(4):hover a,
    .index-kyushin-wrapper div:nth-child(4):active a { color: #127b42 !important; }
	
	.index-kyushin-wrapper div:nth-child(4) a:link { color: #fff; }
    .index-kyushin-wrapper div:nth-child(4) a:visited { color: #fff; }
    .index-kyushin-wrapper div:nth-child(4) a:hover { color: #127b42; }
	.index-kyushin-wrapper div:nth-child(4) a:active { color: #127b42; }

    /* index pickup */
    .index-pickup-wrapper {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 1100px;
        margin: auto;
    }
    .index-pickup-wrapper a {
        width: 32%;
        background: url(/wp-content/themes/kesennuma/image/arrow-bottom_green.svg) no-repeat center 95% #fff;
        margin-bottom: 20px;
        text-align: center;
        box-shadow: 0 2.5rem 2rem -2rem rgb(0 0 0 / 10%);
        border-radius: 5px;
        transition: 0.2s;
    }
    .index-pickup-wrapper a img {
        width: 100%;
        border-radius: 5px 5px 0 0;
    }
    .index-pickup-wrapper figcaption {
        padding: 20px 20px 50px;
        line-height: 1.4;
    }
    .index-pickup-wrapper h3 {
        color: #2d2d2d;
        font-size: 22px;
        line-height: 1.3;
        font-weight: bold;
        margin-bottom: 10px;
    }

    /* hover */
    .index-pickup-wrapper a:hover {
        color: #fff;
        background: url(/wp-content/themes/kesennuma/image/arrow-bottom_white.svg) no-repeat center 95% #127b42;
    }
    .index-pickup-wrapper a:hover h3 { color: #fff; }

    /* その他のリンク（固定背景部分） */
    .index-other-wrapper {
        background: url(/wp-content/themes/kesennuma/image/index-fix_bg.jpg);
        background-size: cover;
        background-attachment: fixed;
        position: relative;
        padding: 70px 0;
    }
    .index-other-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.6);
    }
    .index-other-wrapper-02 {
        background: url(/wp-content/themes/kesennuma/image/index-fix_bg.jpg);
        background-size: cover;
        background-attachment: fixed;
        position: relative;
        padding: 100px 0;
    }
    .index-other-wrapper-02::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.9);
    }
    .index-other-inner-02 {
        width: 1000px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
        z-index: 2;
    }
    .index-other-inner-02 a {
        width: 48% !important;
        background: url(/wp-content/themes/kesennuma/image/arrow-bottom_green.svg) no-repeat center 87% #fff;
        margin-bottom: 20px;
        text-align: center;
        box-shadow: 0 2.5rem 2rem -2rem rgb(0 0 0 / 10%);
        border-radius: 5px;
        padding: 30px 20px 50px;
        font-size: 14px;
        line-height: 1.6;
        transition: 0.2s;
    }
    .index-other-inner-02 h4 {
        font-size: 22px;
        color: #2d2d2d;
        font-weight: bold;
    }

    /* hover */
    .index-other-inner-02 a:hover {
        color: #fff;
        background: url(/wp-content/themes/kesennuma/image/arrow-bottom_white.svg) no-repeat center 87% #007b43;
    }
    .index-other-inner-02 a:last-child { margin-right: 0; }
    .index-other-inner-02 a:hover h4 { color: #fff; }

    .index-other-inner-02 .pdf::after {
        padding: 0 5px 0 10px;
        display: inline-block;
        content: url(/wp-content/themes/kesennuma/image/icon_pdf.svg);
        vertical-align: middle;
    }

    .index-other-inner-02 a[href$=".pdf"]::after {
        display: none;
    }

    /* go to top */
    .to-top {
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 20px;
        bottom: 20px;
        cursor: pointer;
        z-index: 10;
    }
 
    /* footer */
    footer {
        background: #fff;
        padding: 20px 0 0;
        overflow: hidden;
    }
    .f-wrapper {
        width: 1100px;
        margin: auto;
        display: flex;
        justify-content: space-between;
    }
    .f-wrapper-left { width: 35%; }
    .f-wrapper-left strong {
        display: inline-block;
        font-size: 24px;
        margin: 10px 0 10px;
        padding-bottom: 10px;
        border-bottom: 3px solid #127b42;
    }
    .f-wrapper-left address {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* ロゴ横に認証マーク　20250619追加ここから */
	.f-logo {
		display: flex;
		justify-content: space-between;
	}
	.f-logo-img {
		width:60px !important;
		height:70px;
		margin-bottom: 15px;
	}
    /* ロゴ横に認証マーク　20250619追加ここまで */

    .f-wrapper-right {
        width: 63%;
        position: relative;
    }
    .f-wrapper-right::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 300%;
        height: 100%;
        content: "";
        background: #f2f2f2;
    }
    .f-wrapper-left img {
        width: 100%;
        margin-bottom: 15px;
    }
    .f-banner {
        position: relative;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 25px 15px;
    }
    .f-banner a {
        width: 49%;
        background: url(/wp-content/themes/kesennuma/image/menu-arrow.svg) no-repeat 96% center #fff;
        background-size: 7px;
        color: #2d2d2d;
        font-weight: bold;
        padding: 15px 0 15px 15px;
        transition: 0.2s;
        border-radius: 3px;
    }

    /* hover */
    .f-banner a:hover {
        color: #fff;
        background: url(/wp-content/themes/kesennuma/image/menu-arrow-h.svg) no-repeat 96% center #127b42;
        background-size: 7px;
    }
    /* footer toggle */
    .f-menu-box {
        position: relative;
        z-index: 2;
    }
    .f-btn {
        background: #ff671f;
        border-radius: 3px;
        margin: 25px 25px 15px 25px;
        padding: 15px;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        position: relative;
        cursor: pointer;
    }
    .f-btn span {
        position: relative;
        padding-left: 8px;
    }
    .f-btn span::before {
        background: #fff;
        content: "";
        width: 2px;
        height: 32px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: -5px;
        margin: auto;
    }
    .f-btn::before {
        background: #fff;
        content: "";
        width: 15px;
        height: 3px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 15px;
        margin: auto;
    }
    .f-btn::after {
        background: #fff;
        content: "";
        width: 15px;
        height: 3px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 15px;
        margin: auto;
        transform: rotate(90deg);
        transition: 0.3s;
    }
    .f-btn.active::before {
        transform: rotate(45deg);
        transition: 0.3s;
    }
    .f-btn.active::after {
        transform: rotate(-45deg);
        transition: 0.3s;
    }
    .f-cont {
        display: flex;
        justify-content: space-between;
        padding: 0 25px;
    }
    .f-cont-child {
        width: 49%;
    }
    .f-inner_btn {
        background: url(/wp-content/themes/kesennuma/image/menu-arrow.svg) no-repeat 96% center #fff;
        background-size: 5px;
        border-radius: 3px;
        margin-bottom: 10px;
        padding: 5px 10px;
        font-size: 14px;
    }
    .f-inner_cont {
        font-size: 12px;
        padding: 0 10px 10px;
    }
    .f-inner_cont li {
        padding: 0 0 5px 0;
    }
    .f-inner_cont a:link { color: #2d2d2d; }
    .f-inner_cont a:visited { color: #2d2d2d; }
    .f-inner_cont a:hover { color: #aaa; }
    .f-inner_cont a:active { color: #2d2d2d; }
    .f-cont-child a[href$=".pdf"]::after { display: none; }
    /* 外部リンク */
    .f-wrapper-right .link {
        position: relative;
        z-index: 2;
        margin: 0 0 45px;
        padding: 0 25px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .f-wrapper-right .link a {
        background: #127b42;
        border: 1px solid #127b42;
        padding: 15px;
        text-align: center;
        display: block;
        width: 49%;
        color: #fff;
        border-radius: 3px;
        transition: 0.2s;
    }
    .f-wrapper-right .link span {
        position: relative;
        margin-left: -20px;
    }
    .f-wrapper-right .link span::after {
        position: absolute;
        top: 1px;
        right: -26px;
        content: url(/wp-content/themes/kesennuma/image/new-tab.png);
    }
    .f-wrapper-right .link a:hover {
        background: #fff;
        color: #127b42;
    }
    .f-wrapper-right .link a:hover span::after {
        position: absolute;
        top: 1px;
        right: -26px;
        content: url(/wp-content/themes/kesennuma/image/new-tab-h.png) !important;
    }

    /* copy */
    footer small {
        background: #3a3a3a;
        display: block;
        text-align: center;
        margin-top: 21px;
        padding: 10px 0;
        color: #fff;
    }
    
    /* post info */
    .post-info { margin-bottom: 30px; }
    .post-info .day {
        position: relative;
        padding-left: 29px;
    }
    .post-info .day::before {
        position: absolute;
        top: -2px;
        left: 0;
        content: url(/wp-content/themes/kesennuma/image/post-info-day.svg);
    }

    /* post archive */
    .archive-h2 {
        font-size: 20px;
        margin-bottom: 50px;
    }
    .post-box {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #ccc;
    }
    .post-box .post-title { margin-bottom: 15px; }
    .post-box .post-info { margin-bottom: 15px !important; }
    .post-box .post-info span { font-size: 14px !important; }
    .post-box .post-ex { font-size: 14px; }
    .post-box .url {
        font-size: 14px;
        margin: -10px 0 0;
        word-break: break-all;
        color: #ff5500;
    }
    .post-title a:link {
        color: #127b42;
        text-decoration: underline;
        transition: 0.2s;
    }
    .post-title a:visited {
        color: #127b42;
        text-decoration: underline;
    }
    .post-title a:hover {
        color: #127b42;
        text-decoration: none;
    }
    .post-title a:active {
        color: #127b42;
        text-decoration: underline;
    }

    /* ページネーション */
    #pagination_box { padding: 20px 0; }
    #pagination_box h2 { display: none; }
    .nav-links {
        display: flex;
        justify-content: center;
    }
    .nav-links .page-numbers {
        margin: 0 5px;
        padding: 5px 10px;
        border: 1px solid #888;
    }
    .nav-links .page-numbers:link {
        color: #2d2d2d;
        background: #fff;
        transition: 0.2s;
        text-decoration: none;
    }
    .nav-links .page-numbers:visited {
        color: #2d2d2d;
        background: #fff;
        text-decoration: none;
    }
    .nav-links .page-numbers:hover {
        color: #fff;
        background: #127b42;
        text-decoration: none;
    }
    .nav-links .page-numbers:avtive {
        color: #2d2d2d;
        background: #fff;
        text-decoration: none;
    }
    .nav-links .current {
        background: #127b42;
        border: 1px solid #127b42;
        color: #fff;
    }

    /*---------------------------------------------------------------------------------------------
	 * 　page
	 *--------------------------------------------------------------------------------------------*/

    /* page top image */
    .page-image-wrapper { position: relative; }
    .page-image-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 2;
    }
    .page-image-wrapper img {
        width: 100%;
        height: auto;
    }
    .page-image-wrapper strong {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }
    .page-image-wrapper span {
        background: #fff;
        padding: 30px 100px 40px;
        font-size: 28px;
        font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        position: relative;
    }
    .page-image-wrapper span::after {
        content: "";
        width: 50px;
        height: 2px;
        background: #127b42;
        position: absolute;
        bottom: 27px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* breadcrumbs */
    .breadcrumbs {
        background: #f7f5f2;
        padding: 40px 0;
    }
    .breadcrumbs>div {
        width: 1100px;
        margin: auto;
        padding: 0 2px;
    }
    .breadcrumbs img {
        vertical-align: baseline;
        padding: 0 12px;
    }
    .breadcrumbs a:link { color: #2d2d2d; }
    .breadcrumbs a:visited { color: #2d2d2d; }
    .breadcrumbs a:hover {
        color: #2d2d2d;
        text-decoration: underline;
    }
    .breadcrumbs a:active { color: #2d2d2d; }

    /* page base */
    .page-main {
        background: #f7f5f2;
        padding-bottom: 20px;
    }
    .cont-wrapper {
        width: 1100px;
        margin: auto;
        display: flex;
        justify-content: space-between;
    }
    .cont-wrapper>section {
        width: 770px;
        background: #fff;
        padding: 70px 30px 30px;
    }
    .cont-wrapper>.sidebar {
        width: 330px;
        padding: 0 10px 10px 20px;
    }
    .cont-wrapper h1 {
        position: relative;
        font-size: 28px;
        margin-bottom: 55px;
        padding-left: 35px;
		line-height: 1.3;
    }
    .cont-wrapper h1::before {
        content: "";
        position: absolute;
        top: 14px;
        left: 0;
        width: 20px;
        height: 5px;
        background: #127b42;
    }
    
    /* sidebar */
    .sidebar a:link {
        color: #2d2d2d;
        text-decoration: none;
    }
    .sidebar a:visited {
        color: #2d2d2d;
        text-decoration: none;
    }
    .sidebar a:hover {
        color: #2d2d2d;
        text-decoration: underline;
    }
    .sidebar a:active {
        color: #2d2d2d;
        text-decoration: none;
    }
    .sidebar h2 {
        background: #fff;
        margin-bottom: 15px;
        padding: 15px 0 15px 25px;
        position: relative;
        font-size: 16px;
    }
    .sidebar h2::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 10px;
        width: 2px;
        height: 30px;
        background: #127b42;
    }
    .sidebar h3 {
        margin: 0 0 10px 10px;
        padding: 0 0 10px 20px;
        position: relative;
        font-size: 16px;
        border-bottom: 1px solid #aaa;
    }
    .sidebar h3::before {
        content: "";
        position: absolute;
        top: 3px;
        left: 0;
        width: 12px;
        height: 12px;
        background: #127b42;
    }
    .sidebar .side-list { margin: 0 0 20px 20px; }
    .sidebar .side-list li {
        padding: 6px 0 6px 10px;
        font-size: 14px;
    }
    .sidebar .children { padding: 5px 0 0; }
    .sidebar .children li { padding: 5px 0 5px 16px; }

    /* current */
    .current_page_item { position: relative; }
    .current_page_item>a {
        font-weight: bold;
        position: relative;
    }
    .current_page_item::before {
        position: absolute;
        top: 4px;
        left: -6px;
        content: url(/wp-content/themes/kesennuma/image/side-arrow-current.svg) !important;
    }
    .children .current_page_item::before { left: 2px; }

    /* post sidebar */
    .side-cat { margin-left: 5px !important; }
    .side-cat li { padding-left: 0 !important; }
    .side-post { margin-left: 5px !important; }
    .side-post li {
        margin-bottom: 5px;
        padding: 5px 10px 5px 0 !important;
        font-size: 14px;
        border-bottom: 1px solid #ddd;
    }
    .side-post li:last-of-type { border-bottom: none; }
    .side-post .day {
        display: block;
        margin-bottom: 3px;
        font-size: 14px;
        color: #127b42;
    }
    .side-post a { line-height: 1.4; }

    /* parent page */
    .parent-btn {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .parent-btn>div {
        width: 49%;
        margin: 0 0 15px;
		box-shadow: 0px 6px 7px -10px rgb(0 0 0 / 70%);
        transition: 0.2s;
        background: url(/wp-content/themes/kesennuma/image/arrow-right_maru_green.svg) no-repeat 95% center #f7f5f2;
        border: 1px solid #aaa;
        border-radius: 3px;
		cursor: pointer;
    }
    .parent-btn a {
		display: flex;
		align-items: center;
		width: 100%;
		height: 100%;
		padding: 15px 45px 15px 25px;
		font-size: 18px;
        color: #2d2d2d !important;
        text-decoration: none !important;
        position: relative;
		line-height: 1.3;
    }

    /* hover */
    .parent-btn>div:hover { background: url(/wp-content/themes/kesennuma/image/arrow-right_maru_white.svg) no-repeat 95% center #127b42; }
    .parent-btn>div:hover a { color: #fff !important; }
    .parent-btn .fs-small { font-size: 16px !important; }
    .parent-btn .fs-small-02 { font-size: 14px !important; }

    /* 病院概要 */
    .summary-table ul { margin-bottom: 0 !important; }
    .summary-table table { margin: 3px 0 !important; }
    .summary-table p {
        margin: 3px 0 !important;
        font-size: 14px !important;
    }

	/* 主な医療施設 */
	.facilities-komidashi {
		font-size: 1.2rem;
		border-bottom: 2px solid #7dc39e;
		line-height: 1.3;
		color: #2d2d2d;
		padding: 0 0 10px;
	}

	/* 血管外来 */
	.kekkan-link-wrapper {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 30px;
	}
	.kekkan-link-box {
		width: calc((100% - 40px) / 3);
		margin-right: 20px;
		margin-bottom: 20px;
	}
	.kekkan-link-box:nth-child(3n) { margin-right: 0; }
	.kekkan-link-box a { transition: 0.2s; }
	.kekkan-link-box a:hover { opacity: 0.6; }
    
    /* 臨床研究室 */
    .junkanki-fc figcaption { text-align: center; }

    /* 臨床検査室 */
    .rinsho-btn {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .rinsho-btn a {
		width: 49%;
		background: #f7f5f2;
		border-radius: 5px;
		box-shadow: 0px 6px 7px -10px rgb(0 0 0 / 70%);
		margin-bottom: 15px;
		transition: 0.2s;
		text-decoration: none !important;
		border: 1px solid #aaa;
    }
    .rinsho-btn img { width: 100%; }
    .rinsho-btn div {
        display: block;
        padding: 20px;
        font-size: 18px;
        color: #2d2d2d;
        transition: 0.2s;
        position: relative;
    }
    .rinsho-btn h2 {
        position: relative;
        border: none !important;
        margin: 0 0 20px 0 !important;
        padding: 0 0 15px !important;
        border-bottom: 1px solid #127b42 !important;
    }
    .rinsho-btn h2:after {
        content: "";
        position: absolute;
        top: 3px;
        right: 0;
        width: 20px;
        height: 20px;
        background: url(/wp-content/themes/kesennuma/image/arrow-bottom_green.svg) no-repeat;
        background-size: cover;
        transform: rotate(270deg);
    }
    .rinsho-btn p {
        margin-bottom: 0 !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

	/* hover */
    .rinsho-btn a:hover { background: #127b42; }
    .rinsho-btn a:hover h2 {
		color: #fff !important;
        border-bottom: 1px solid #fff !important;
    }
    .rinsho-btn a:hover h2::before { background: #fff !important; }
    .rinsho-btn a:hover h2:after {
        content: "";
        position: absolute;
        top: 3px;
        right: 0;
        width: 20px;
        height: 20px;
		background: url(/wp-content/themes/kesennuma/image/arrow-right_maru_white.svg) no-repeat;
        background-size: cover;
        transform: rotate(0);
	}
    .rinsho-btn a:hover p { color: #fff !important; }
	/* 臨床指標トップ */
	.rinsho-box-flex {
		display: flex;
		justify-content: space-between;
	}
	.rinsho-box-flex > div { width: 48%; }
	.rinsho-box-flex .post-box {
		margin-bottom: 10px;
		padding: 0 0 0 15px;
		border-bottom: none;
		position: relative;
	}
	.rinsho-box-flex .post-box::before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		margin: auto 0;
		width: 8px;
		height: 8px;
		background: #f80;
		border-radius: 2px;
	}
	/* 臨床指標 */
    .rinsho-mokuji {
        display: flex;
        flex-wrap: wrap;
    }
    .rinsho-mokuji > div {
        width: calc((100% - 15px) / 2);
        margin: 0 14px 15px 0;
        border-radius: 3px;
        box-shadow: 0px 6px 7px -10px rgb(0 0 0 / 70%);
        transition: 0.2s;
        background: url(/wp-content/themes/kesennuma/image/arrow-right_maru_green.svg) no-repeat 95% center #f7f5f2;
        border: 1px solid #aaa;
        display: flex;
        align-items: center;
	}
    .rinsho-mokuji > div:nth-child(2n) { margin: 0 0 15px 0; }
    .rinsho-mokuji a {
        display: block;
		width: 100%;
        padding: 7px 45px 7px 15px;
        font-size: 13px;
        color: #2d2d2d !important;
        text-decoration: none !important;
        position: relative;
    }

    .page-id-3813 .sidebar h2 {
        margin-top: 0;
        padding: 15px 0 15px 25px;
    }

    /* hover */
    .rinsho-mokuji div:hover { background: url(/wp-content/themes/kesennuma/image/arrow-right_maru_white.svg) no-repeat 95% center #127b42; }
    .rinsho-mokuji div:hover a { color: #fff !important; }

    /* 病院概要 */
    .summary-table ul { margin-bottom: 0 !important; }
    .summary-table table { margin: 3px 0 !important; }
    .summary-table p {
        margin: 3px 0 !important;
        font-size: 14px !important;
    }
	
	/* 外来診療の流れ */
	.gairai-flow-img { margin-bottom: 30px; }
	.gairai-flow-fs_big { font-size: 120%; }
	.gairai-arrow {
		text-align: center;
		margin: 20px 0 !important;
	}
	.gairai-komidashi {
		margin: 0 !important;
		padding: 10px 15px;
		background: linear-gradient(180deg, rgba(180,212,165,1) 0%, rgba(145,193,118,1) 100%);
		border: 1px solid #39b54a;
		text-align: center;
	}
	.gairai-text {
		margin: 0;
		padding: 10px 15px;
		border-bottom: 1px solid #39b54a;
		border-right: 1px solid #39b54a;
		border-left: 1px solid #39b54a;
	}

    /* 404 */
    .not404 a {
        display: inline-block;
        width: 250px;
        background-size: 7px;
        border: 1px solid #127b42;
        border-radius: 5px;
        font-weight: bold;
        margin-bottom: 10px;
        padding: 15px 0 15px 25px;
        transition: 0.2s;
    }
    .not404 a:link {
        color: #fff !important;
        text-decoration: none !important;
        background: url(/wp-content/themes/kesennuma/image/arrow-right_white.svg) no-repeat 94% center #127b42;
    }
    .not404 a:visited {
        color: #fff !important;
        text-decoration: none;
        background: url(/wp-content/themes/kesennuma/image/arrow-right_white.svg) no-repeat 94% center #127b42;
    }
    .not404 a:hover {
        color: #127b42 !important;
        text-decoration: none;
        background: url(/wp-content/themes/kesennuma/image/arrow-right_black.svg) no-repeat 94% center #fff !important;
    }
    .not404 a:active {
        color: #fff !important;
        text-decoration: none;
        background: url(/wp-content/themes/kesennuma/image/arrow-right_white.svg) no-repeat 94% center #127b42;
    }

    /* 救急診療 */
    .cont-box h2.fs-small { font-size: 24px !important; }
    .cont-box h2 span {
        font-size: 16px;
        margin-left: 20px;
    }
    .kyukyushitsu-tel {
        background: #f7f5f2;
        display: block;
        text-align: center;
        margin: 40px auto 0 !important;
        border: 5px solid #e6d2b2;
        padding: 20px 0;
        font-size: 18px;
        line-height: 1.8 !important;
    }
    .hikitsuke-how {
        color: #cf2e2e;
        margin-bottom: 10px !important;
    }

    /* 医学生の方へ */
    .start-img { width: 20%; }
    .start-img img { border: 1px solid #aaa; }
    .start-img a::after { display: none; }
    .rinsho-gaiyo-list ol { margin-bottom: 0 !important; }
    .q-a {
        font-size: 18px;
        color: #ec4f00;
        margin-bottom: 5px !important;
    }
	
	/* 市民医学講座 */
	
	a.simin-small {
		font-size: 14px;
	}

    /* 見学希望フォーム */
    .kengaku-inquiry {
        background: #f7f5f2;
        margin-bottom: 50px;
        padding: 20px;
    }
    .kengaku-inquiry input,
    .kengaku-inquiry select,
	.kengaku-inquiry textarea {
        border: 1px solid #aaa;
        background: #fff;
        padding: 3px 5px;
    }
	.kengaku-inquiry textarea {
        width: 100%;
		height: 15rem;
    }
	.kibou-box {
        display: flex;
        justify-content: space-between;
		margin-bottom: 40px;
    }
    .kibou-box>div {
        width: calc((100% - 40px) / 3);
        background: #fff;
        padding: 10px 5px;
        text-align: center;
    }
    .kengaku-inquiry .p01 {
        margin: 0 0 10px;
        position: relative;
        padding: 0 0 0 12px;
    }
    .kengaku-inquiry .p01::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 100%;
        background: #127b42;
    }
    .kengaku-inquiry .p02 { margin: 0 0 30px; }
    .kengaku-inquiry .p03 { margin: 0 0 3px; }
    .kengaku-inquiry .kibou {
        margin: 0 0 5px;
        padding: 5px 0;
        color: #127b42;
    }
    .kengaku-inquiry .wpcf7-radio .wpcf7-list-item {
        display: block;
        margin: 0;
    }
    .acceptance_p {
        margin: 0 !important;
        padding: 20px 0 !important;
    }
    .acceptance_p .wpcf7-list-item { margin: 0 3px 0 0; }
    .kengaku-inquiry .submit { margin: 0 !important; }
    .kengaku-inquiry .submit input[type="submit"] {
        background: #0082e0;
        padding: 6px 30px;
        color: #fff;
        font-size: 14px;
    }

    /* contact form 7 メッセージ */
    .wpcf7-response-output {
        background: #ffb900;
        padding: 5px 0 !important;
        text-align: center;
        margin: 10px 0 0 0 !important;
    }
    .wpcf7 form.sent .wpcf7-response-output {
        border-color: #127b42 !important;
        background: #127b42 !important;
        color: #fff !important;
    }

    /* つなぐ */
    .tsunagu-box {
        display: flex;
        flex-wrap: wrap;
        font-size: 16px;
    }
    .tsunagu-box p {
        width: calc((100% - 20px) / 3);
        margin: 0 10px 10px 0 !important;
        text-align: center;
        border: 1px solid #127b42;
        border-radius: 3px;
    }
    .tsunagu-box p:nth-child(3n) { margin: 0 0 10px 0 !important; }
    .tsunagu-box p a {
        display: block;
        padding: 7px 0;
        background: #f7f5f2;
        transition: 0.2s;
		color: #2d2d2d;
    }
    .tsunagu-box p a:link { text-decoration: none; }
    .tsunagu-box p a:visited { text-decoration: none; }
    .tsunagu-box p a:hover {
        text-decoration: none;
        background: #127b42;
		color: #fff;
    }
    .tsunagu-box p a:active {
        text-decoration: none;
        background: #127b42;
		color: #fff;
    }

    /* 審議会 */
    .page-id-4421 .cont-box li { font-size: 14px !important; }

    /* お問い合せ */
    .page-inquiry .p01 span {
        background: #ff2626;
        color: #fff;
        padding: 2px 5px;
        font-size: 14px;
        border-radius: 3px;
        margin-left: 8px;
    }
    .page-inquiry input[type="text"],
    .page-inquiry input[type="email"],
    .page-inquiry input[type="tel"],
    .page-inquiry textarea {
        width: 100%;
        background: #fff;
        border: 1px solid #aaa;
    }
    .page-inquiry textarea {
        height: 10em;
        padding: 3px 5px;
    }
    .inquiry-tel {
        font-size: 20px;
        margin-bottom: 5px !important;
        padding-left: 3px;
    }
    .inquiry-fax {
        font-size: 20px;
        padding-left: 3px;
    }
    .inquiry-tel a,
    .inquiry-fax span { position: relative; }

    /* sitemap */
    .sitemap-box {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
    }
    .sitemap-box-left { width: 49%; }
    .sitemap-box-right { width: 49%; }
    .sitemap-box ul {
        list-style: none;
        margin: 0 0 0 18px;
    }
    .sitemap-box li { padding: 5px 0; }
    .sitemap-left>ul>li,
    .sitemap-right>ul>li {
        padding: 5px 0;
        position: relative;
    }
    .sitemap-left>ul>li::before,
    .sitemap-right>ul>li::before {
        content: "";
        position: absolute;
        top: 11px;
        left: -15px;
        width: 8px;
        height: 8px;
        background: #127b42;
    }
    .sitemap-box .sub-menu {
        list-style-type: disc !important;
        margin-top: 5px;
        margin-bottom: 0;
    }
    .sitemap-box .sub-menu .sub-menu {
        list-style-type: circle !important;
        margin-top: 5px;
    }
    .sitemap-box a:link {
        color: #2d2d2d;
        text-decoration: none;
    }
    .sitemap-box a:visited {
        color: #2d2d2d;
        text-decoration: none;
    }
    .sitemap-box a:hover {
        color: #005427;
        text-decoration: underline;
    }
    .sitemap-box a:active {
        color: #005427;
        text-decoration: none;
    }

    /* 附属看護学校 */
    .goukaku-post {
        text-align: center;
        margin: 20px 0 70px;
		line-height: 1.8;
    }
    .goukaku-post a:link {
        font-size: 20px;
        color: #127b42;
        text-decoration: underline;
    }
    .goukaku-post a:visited {
        font-size: 20px;
        color: #127b42;
        text-decoration: underline;
    }
    .goukaku-post a:hover {
        font-size: 20px;
        color: #127b42;
        text-decoration: none;
    }
    .goukaku-post a:active {
        font-size: 20px;
        color: #127b42;
        text-decoration: underline;
    }

    /* 総合患者支援センター */
    .kanja_shien-relative { position: relative; }
    .kanja_shien-relative img {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .tourokui-table p { margin-bottom: 0 !important; }
	.koureisha-map figcaption { text-align: left !important; }
	
    /*---------------------------------------------------------------------------------------------
	 * 　ブロックエディタ
	 *--------------------------------------------------------------------------------------------*/

    .cont-box h2 {
        font-size: 26px;
        color: #2d2d2d;
        border-bottom: 3px solid #7dc39e;
        margin-bottom: 3%;
        padding-bottom: 8px;
        line-height: 1.4;
        position: relative;
    }
    .cont-box h2::before {
		content: "";
		position: absolute;
		bottom: -3px;
		left: 0;
		width: 50%;
		height: 3px;
		background: #127b42;
    }
    .cont-box h3 {
        font-size: 22px;
        color: #2d2d2d;
        line-height: 1.2;
        margin-bottom: 3%;
        padding: 7px 0 7px 13px;
        position: relative;
        background: #f7f5f2;
    }
    .cont-box h3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 100%;
        background: #7dc39e;
    }
    .cont-box h4 {
        font-size: 20px;
        color: #2d2d2d;
        line-height: 1.2;
        margin-bottom: 3%;
        padding: 0 0 0 22px;
        position: relative;
    }
    .cont-box h4::before {
        content: "";
        position: absolute;
        top: 6px;
        left: 0;
        width: 12px;
        height: 12px;
        background: #127b42;
    }
    .cont-box h5 {
        font-size: 20px;
        color: #2d2d2d;
        margin-bottom: 3%;
        padding: 0 0 6px 12px;
        position: relative;
    }
    .cont-box h5::before {
        content: "";
        position: absolute;
        bottom: 7px;
        left: 0;
        width: 2px;
        height: 24px;
        background: #127b42;
    }
    .cont-box img { max-width: 100%; }
    .cont-box p {
        line-height: 1.6;
        margin-bottom: 3%;
    }
    .cont-box ul {
        list-style: disc;
        margin: 0 0 3% 20px;
        padding: 0;
    }
    .cont-box ol {
        list-style: decimal;
        margin: 0 0 3% 20px;
        padding: 0;
    }
    .cont-box li {
        padding: 3px 0;
        line-height: 1.5;
    }
    .cont-box ul ul,
    .cont-box ul ol,
    .cont-box ol ul,
    .cont-box ol ol { margin-bottom: 0 !important; }
    ol.has-background,
    ul.has-background { margin: 0; }
    .cont-box table {
        font-size: 14px;
        color: #2d2d2d;
        line-height: 1.4;
        margin-bottom: 3%;
    }
    .cont-box th {
        border: 1px solid #aaa;
        vertical-align: middle;
        padding: 7px 10px;
        text-align: center;
        background: #d1ffe5;
    }
    .cont-box td {
        border: 1px solid #aaa;
        vertical-align: middle;
        padding: 7px 10px;
    }
    .cont-box a:link {
        color: #1a0dab;
        text-decoration: underline;
    }
    .cont-box a:visited {
        color: #1a0dab;
        text-decoration: underline;
    }
    .cont-box a:hover {
        color: #1a0dab;
        text-decoration: none;
    }
    .cont-box a:active {
        color: #1a0dab;
        text-decoration: underline;
    }
    
    /* ギャラリー */
    .wp-block-gallery { margin-bottom: 3% !important; }
    .wp-block-gallery ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .blocks-gallery-caption {
        font-size: 14px;
        color: #2d2d2d;
    }
    .wp-block-image figcaption {
        font-size: 14px;
        color: #2d2d2d;
		text-align: center;
    }

    /* 画像 */
    .wp-block-image { margin-bottom: 3% !important; }
    .wp-block-image img { height: auto; }
    .wp-block-image figcaption {
        margin-top: 15px !important;
        margin-bottom: 0 !important;
    }
    .wp-block-column .wp-block-image { margin-bottom: 0 !important; }
    .wp-block-column figcaption { text-align: center; }

    /* ファイルボタン */
    .wp-block-file a:first-child:link {
        color: #2d2d2d;
        text-decoration: underline;
        transition: 0.2s;
    }
    .wp-block-file a:first-child:visited {
        color: #2d2d2d;
        text-decoration: underline;
    }
    .wp-block-file a:first-child:hover {
        color: #2d2d2d;
        text-decoration: none;
    }
    .wp-block-file a:first-child:active {
        color: #2d2d2d;
        text-decoration: underline;
    }
    .wp-block-file a:last-child::after {
        display: none;
    }

    /* ストライプテーブル */
    .wp-block-table.is-style-stripes tbody tr:nth-child(odd) { background-color: #d1ffe5 !important; }

    /* カラム */
    .wp-block-columns { margin-bottom: 3% !important; }
    .wp-block-column { margin-bottom: 0 !important; }

    /* youtube埋め込み */
    .wp-block-embed-youtube { margin-bottom: 3% !important; }

    /* リンクボタン */
    .wp-block-button__link {
        font-size: 16px !important;
        border: 1px solid #127b42 !important;
        background-color: #127b42 !important;
        transition: 0.2s;
    }
    .wp-block-button__link:link {
        color: #fff !important;
        text-decoration: none !important;
    }
    .wp-block-button__link:visited {
        color: #fff !important;
        text-decoration: none !important;
    }
    .wp-block-button__link:hover {
        color: #127b42 !important;
        text-decoration: none !important;
        background: #fff !important;
    }
    .wp-block-button__link:active {
        color: #fff !important;
        text-decoration: none !important;
    }
    
    /* オリジナルCSS */
    
    .w100p { width: 100%; }
    .txt-center { text-align: center !important; }
    .z2 {
        position: relative;
		z-index: 2;
    }
    
    .mb00 { margin-bottom: 0 !important; }
    .mb05 { margin-bottom: 5px !important; }
    .mb10 { margin-bottom: 10px !important; }
    .mb15 { margin-bottom: 15px !important; }
    .mb20 { margin-bottom: 20px !important; }
    .mb25 { margin-bottom: 25px !important;  }
    .mb30 { margin-bottom: 30px !important; }
    .mb35 { margin-bottom: 35px !important; }
    .mb40 { margin-bottom: 40px !important; }
    .mb45 { margin-bottom: 45px !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; }
	
    .mt-10 { margin-top: -10px !important; }
    .mt-20 { margin-top: -20px !important; }
    .mt-30 { margin-top: -30px !important; }
    .mt-40 { margin-top: -40px !important; }
    .mt-50 { margin-top: -50px !important; }
    
    .fs12 { font-size: 12px !important; }
    .fs14 { font-size: 14px !important; }
    .fs16 { font-size: 16px !important; }
    .fs18 { font-size: 18px !important; }
    .fs20 { font-size: 20px !important; }
    
    .li-latin { list-style: lower-latin !important; }
    .li-latin li { list-style: lower-latin !important; }
    
    .green-bg {
        display: inline-block;
        background: #127b42;
        color: #fff !important;
        margin-bottom: 15px !important;
        padding: 7px 25px;
    }
    .lightgreen-bg {
        display: inline-block;
        background: #d1ffe5;
        font-size: 22px !important;
        box-shadow: 3px 3px 0 0 #127b42;
        margin-bottom: 50px !important;
        padding: 10px 20px;
    }
    .green-border {
        display: inline-block;
        border: 1px solid #127b42;
        color: #127b42 !important;
        font-size: 18px !important;
        margin-bottom: 15px !important;
        padding: 5px 15px;
    }

	/* ZOOMメールフォーム */
	
	.zoom-flex {
		display: flex;
		justify-content: space-between;
		background: #fff;
		margin-bottom: 30px !important;
	}
	
	.zoom-flex > div {
		width: 48%;
		padding: 20px;
	}
	
	.kibou-p {
		margin-bottom: 5px !important;
	}
	
	.zoom-flex .p02 {
		margin-bottom: 3px !important;
	}
	
	.zoom-inquiry textarea {
		height: 10rem !important;
	}
	
	.zoom-attention {
		background: #fff;
		margin-bottom: 30px;
		padding: 20px;
	}
	
	.zoom-attention p {
		color: #ff0000;
		margin-bottom: 5px;
	}
	
	.zoom-attention ul {
		list-style: none;
		margin: 0;
	}
	
	.zoom-attention li {
	}
	
	.zoom-attention span {
		display: inline-block;
		background: #e94b00;
		color: #fff;
		font-size: 14px;
		margin-right: 15px;
		padding: 3px 8px;
	}
	
	.zoom-attention.page {
		padding: 0;
	}
	
	/* 人間ドックの表 */

	.ningen_doc td .tategaki {
		writing-mode: vertical-rl;
		text-align: center;
		white-space: pre;
		display: inline-block;
	}
	
	
    /* media query END */
}



/* 2022年　DPC */
	
.dpc_faq {
	margin-bottom: 30px;
	border: 1px solid #ccc;
}

.dpc_faq .dpc_q {
	padding: 15px;
	background: #cef5df;
	font-weight: bold;
	color: #2d2d2d;
	line-height: 1.6;
}

.dpc_faq .dpc_a {
	padding: 15px;
	color: #2d2d2d;
	line-height: 1.6;
}

/* 20220920採用情報の「ぬまりく」追加 */
.flex-20220920 {
    display: flex;
    gap: 30px 30px;
    align-items: center;
    flex-wrap: wrap;
}

.recruit-20220920 {

}

.recruit-20220920 img {
    width: 280px;
}

.recruit-20220920 a:hover {
    text-decoration: none;
    opacity: 0.6;
}

.recruit-20220920 a {
    transition: 0.3s;
    text-decoration: underline;
    line-height: 1.5;
}

/* 採用情報バナー　2023-0508 */

.saiyou_banner_flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.saiyou_banner_wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: calc((100% - 30px) / 2);
    text-align: center;
}

.saiyou_banner_left {
}

.saiyou_banner_left img {
    border: 1px solid #ccc;
    width: 100%;
}

.saiyou_banner_right {
}

.cont-box .saiyou_banner_right p {
    font-size: 20px;
}

.saiyou_banner_left a[href$=".pdf"]::after {
    display: none;
}

.saiyou_banner_wrapper a:link { color: #2d2d2d; text-decoration: underline; }
.saiyou_banner_wrapper a:visited { color: #2d2d2d; text-decoration: underline; }
.saiyou_banner_wrapper a:hover { color: #2d2d2d; text-decoration: none; }
.saiyou_banner_wrapper a:active { color: #2d2d2d; text-decoration: none; }






/* 2023-0609 */

.index-other-inner-02 a.kinkyu2023:link {
    background:url(/wp-content/themes/kesennuma/image/arrow-bottom_blue.svg) no-repeat center 87% #fff;
}

.index-other-inner-02 a.kinkyu2023:visited {
    background:url(/wp-content/themes/kesennuma/image/arrow-bottom_blue.svg) no-repeat center 87% #fff;
}

@media screen and (min-width: 821px) {
    .index-other-inner-02 a.kinkyu2023:hover {
        background:url(/wp-content/themes/kesennuma/image/arrow-bottom_white.svg) no-repeat center 87% #0077d9;
    }
}

.index-other-inner-02 a.kinkyu2023:active {
    background:url(/wp-content/themes/kesennuma/image/arrow-bottom_white.svg) no-repeat center 87% #0077d9;
}

.index-other-inner-02 a.kinkyu2023 h4 {
    color: #2d2d2d;
    line-height: 1.3;
}

.index-other-inner-02 a.kinkyu2023 h4 span {
    color: #fff;
    background: #ff0000;
    font-size: 18px;
    padding: 3px 5px;
    border-radius: 4px;
    margin-right: 7px;
}

.index-other-inner-02 a.kinkyu2023:hover h4 { color: #fff; }

.index-header-submenu .kyukyu_2023_li {
    padding: 0;
}

@media screen and (max-width: 1500px) {
    .index-header-submenu li:nth-child(2),
    .index-header-submenu li:nth-child(3) {
        padding: 0 30px;
    }
}

@media screen and (max-width: 1400px) {
    .index-header-submenu li:nth-child(2),
    .index-header-submenu li:nth-child(3) {
        padding: 0 20px;
    }
    .index-header-submenu li:last-child {
        width: 290px;
    }
    .searchform input[type="text"] {
        width: 290px;
    }
}

.index-header-submenu .kyukyu_2023_li a {
    color: #fff;
    background: #0077d9;
    border: 1px solid #0077d9;
    padding: 6px 32px 5px 11px;
    border-radius: 5px;
    position: relative;
    text-decoration: none;
}

.index-header-submenu .kyukyu_2023_li a::after {
    content: "▶";
    position: absolute;
    top: 9px;
    right: 11px;
    font-size: 12px;
}

.index-header-submenu .kyukyu_2023_li a:hover {
    color: #0077d9;
    background: #fff;
}


/* 2023 オープンキャンパスPDF */

.cont-box .oc_2023 {
	margin-bottom: 50px;
    text-align: center;
}

.cont-box .oc_2023 a::after {
	display: none;
}

.cont-box .oc_2023 a {
	border: 1px solid #ff671f;
    background: #ff671f;
    padding: 20px 30px 20px;
    font-size: 20px;
	font-weight: bold;
    border-radius: 3px;
	box-shadow: 0px 6px 7px -10px rgb(0 0 0 / 70%);
	transition: 0.2s;
}

.cont-box .oc_2023 a:link {
    text-decoration: none;
    color: #fff;
}

.cont-box .oc_2023 a:visited {
    text-decoration: none;
    color: #fff;
}

@media (hover: hover) {
	.cont-box .oc_2023 a:hover {
    	color: #ff671f;
		background: #fff;
	}
}

.cont-box .oc_2023 a:active {
    text-decoration: none;
    color: #ff671f;
    background: #fff;
}

.cont-box .oc_2023 a span {
    background: #fff;
    color: #ff671f;
    padding: 3px 6px;
    margin-right: 10px;
    border-radius: 3px;
    font-size: 18px;
	font-weight: normal;
}

@media (hover: hover) {
	.cont-box .oc_2023 a:hover span {
    	background: #ff671f;
		color: #fff;
	}
}

.cont-box .oc_2023 a:active span {
   	background: #ff671f;
	color: #fff;
}

/*  20231208_薬剤科  */
.yakuzai-fb img{
   cursor: pointer;
}

/* 20240312_看護部バナー */
.kango_banner_flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.kango_banner_wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: calc((100% - 30px) / 2);
    text-align: center;
}
