@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/*テーブル開閉のボタン*/
.wp-block-lazyblock-tableac2 .table-open {
    margin-top: 10px;
    position: relative;
    display: inline-block;
    padding: 8px 25px 8px 13px;
    border: 1px solid #ccc;
    background: #f1e767;
    background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
    background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
    background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
    -webkit-box-shadow: inset 1px 1px 1px #fff;
    box-shadow: inset 1px 1px 1px #fff;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.8em;
}

.wp-block-lazyblock-tableac2 .table-open::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: translateY(-2px) rotate(135deg);
    box-sizing: border-box;
    transition: all 0.5s;
}


.wp-block-lazyblock-tableac2 .table-open.on:after {
    transform: translateY(1px) rotate(315deg);
}
/* リッチリスト */
dl.rich_list {
	margin: 20px 0;
	padding: 0;
}
dl.rich_list dt {
	position: relative;
	background: var(--color_main);
	padding: 12px 15px 10px;
	margin: 0 0 10px;
	border: 0 !important;
	line-height: 1.2em;
	font-weight: bold;
	color: #fff;
	border-radius: 7px;
}
dl.rich_list dt:before {
	content: "";
	display: block;
	position: absolute;
	border-style: solid;
	border-width: 12px 7px 0;
	border-color: var(--color_main) transparent transparent;
	left: 50px;
	bottom: -12px;
}
dl.rich_list dt[style]:before {
	background: inherit;
	border-color: transparent #fff #fff;
}
dl.rich_list dd {
	padding: 0;
	margin: 0 0 15px !important;
	border: 0 !important;
	line-height: 1.5em;
}
.post_content dl.rich_list dd .h5,
dl.rich_list dd .h5 {
	margin: 0 0 5px !important;
	padding: 3px 0 2px 30px;
	background: url(./images/icon-check.png) no-repeat left top !important;
	border: 0 !important;
	background-size: 28px 28px !important;
	font-weight: bold;
	line-height: 1.2em;
	color: #030 !important;
}
dl.rich_list dd p br:first-child,
dl.rich_list dd .h5+br {
	display: none;
}
dl.rich_list dd .h5 b {
	color: #e22;
}
dl.rich_list dd p {
	margin: 0 0 0 20px !important;
	padding: 0;
	line-height: inherit;
}
.article-body dl.rich_list dd ul li {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	line-height: 1.3em !important;
}
.article-body dl.rich_list dd ul li:before {
	background: #a8a8f4;
	top: 5px;
}
@media (max-width: 600px) {
	dl.rich_list dt {
		padding: 10px 12px 8px;
	}
}

/* リッチリスト拡張（開閉付き：2024/10/18）＋ 開閉ブロックinブロック（2024/11/12） */
.openclose-inblock>.lazyblock-inner-blocks,
.rich_list_close dl.rich_list {
    margin-bottom: 0;
    padding-bottom: 0;
}

.openclose-inblock,
.rich_list_close {
    margin-bottom: 20px;
    position: relative;
}

.openclose-inblock>.lazyblock-inner-blocks>*:nth-child(n+2),
.rich_list_close dl.rich_list dt:nth-of-type(n+2),
.rich_list_close dl.rich_list dd:nth-of-type(n+2) {
    max-height: 1500px;
    transition: all 0.7s ease-in-out;
}

.openclose-inblock:has(input:checked)>.lazyblock-inner-blocks>*:not(:last-child) {
    margin-bottom: 30px;
}

.openclose-inblock:has(input:not(:checked))>.lazyblock-inner-blocks>*:nth-child(n+2),
.rich_list_close:has(input:not(:checked)) dl.rich_list dt:nth-of-type(n+2),
.rich_list_close:has(input:not(:checked)) dl.rich_list dd:nth-of-type(n+2) {
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0 !important;
    padding-top: 0;
    padding-bottom: 0 !important;
    max-height: 0;
    transition: all 0.2s ease-in-out;
}

.openclose-inblock input,
.rich_list_close input {
    display: none;
}

.openclose-inblock:has(input:not(:checked)) label:before,
.rich_list_close:has(input:not(:checked)) label:before {
    content: attr(data-text-open);
}

.openclose-inblock:has(input:checked) label:before,
.rich_list_close:has(input:checked) label:before {
    content: attr(data-text-close);
}

.openclose-inblock label,
.rich_list_close label {
    position: relative;
    display: block;
    margin: auto;
    width: fit-content;
    background: var(--color_main);
    color: var(--color_bg);
    padding: 5px 20px;
    border-radius: 40px;
    box-shadow: rgba(0, 0, 0, 0.5) 2px 2px 5px;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.5s linear;
    font-size: 90%;
    line-height: 1.2em;
    z-index: 2;
}

.openclose-inblock label:hover,
.rich_list_close label:hover {
    filter: brightness(1.1);
    left: -1px;
    top: -1px;
    box-shadow: rgba(0, 0, 0, 0.5) 3px 3px 5px;
    transition: all 0.2s linear;
}

.openclose-inblock:after,
.rich_list_close:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 20px;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #fff 0%, transparent 100%);
}

.openclose-inblock:has(input:checked):after,
.rich_list_close:has(input:checked):after {
    display: none;
}

.rich_list ul:not([class]) li,
ul[class="wp-block-list"] li,
.cap_box_content ul:not([class]) li {
    list-style: disc;
}

.rich_list dd ul {
    margin-left: 15px;
}

/* ■■■■■ .tableclose ■■■■■ */
.tableclose label input,
.tableclose:has(label[data-show="1"] input[type="checkbox"]) table tr:nth-of-type(n+2),
.tableclose:has(label[data-show="2"] input[type="checkbox"]) table tr:nth-of-type(n+3),
.tableclose:has(label[data-show="3"] input[type="checkbox"]) table tr:nth-of-type(n+4),
.tableclose:has(label[data-show="4"] input[type="checkbox"]) table tr:nth-of-type(n+5),
.tableclose:has(label[data-show="5"] input[type="checkbox"]) table tr:nth-of-type(n+6),
.tableclose:has(label[data-show="6"] input[type="checkbox"]) table tr:nth-of-type(n+7),
.tableclose:has(label[data-show="7"] input[type="checkbox"]) table tr:nth-of-type(n+8),
.tableclose:has(label[data-show="8"] input[type="checkbox"]) table tr:nth-of-type(n+9),
.tableclose:has(label[data-show="9"] input[type="checkbox"]) table tr:nth-of-type(n+10),
.tableclose:has(label[data-show="10"] input[type="checkbox"]) table tr:nth-of-type(n+11),
.tableclose:has(label:not([data-show]) input[type="checkbox"]) table tr:nth-of-type(n+5) {
    display: none;
}
.tableclose:has(label input[type="checkbox"]:checked) table tr {
    display: table-row !important;
}
.tableclose label {
    display: inline-block;
    position: relative;
    padding: 5px 15px;
    margin: 5px 0 20px;
    background: linear-gradient(175deg, var(--color_main_thin) 0%, var(--color_main) 80%);
    background: var(--color_main);
    color: #fff !important;
    box-shadow: rgba(0, 0, 0, 0.5) 2px 2px 5px;
    border: 1px solid #fff;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4em;
}
.tableclose label:hover {
    background: var(--color_main) !important;
    box-shadow: rgba(0, 0, 0, 0.6) 2px 2px 5px;
    top: -2px;
    left: -1px;
}
.tableclose label:active {
    box-shadow: rgba(0, 0, 0, 0.6) 0 1px 5px;
    top: 0;
    left: 0;
}
.tableclose label:after {
    content: "▲クリックで開く";
}
.tableclose label:has(input:checked):after {
    content: "▲クリックで閉じる";
}
.tableclose label[data-open-text]:after {
    content: attr(data-open-text);
}
.tableclose label[data-close-text]:has(input:checked):after {
    content: attr(data-close-text);
}

/* 記事先頭のアイキャッチ拡大阻止（functions.php にも） */
body .l-content .l-mainContent figure.p-articleThumb img.p-articleThumb__img {
    width: auto !important;
    min-width: 0 !important;
    margin: auto;
}

/* ロゴ */
.c-headLogo.-img svg{
	height: 100%;
	width: auto;
}
/* l-header */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', Avenir, 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic';
}
.l-header {
    position: sticky;
    top: 0;
}
.l-header__gnav {
    position: relative;
    background: var(--color_main);
}
.l-header__gnav * {
    position: static !important;
}
.lang-nav-box,
.l-header__customBtn.sp_ {
    display: flex;
    align-items: center;
    justify-content: center;
}
.l-header__customBtn.sp_ .bogo-language-switcher,
.lang-nav-box .bogo-language-switcher {
    font-size: 12px;
    border-left: 1px solid #ccc;
    padding-left: 10px;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 5px 0;
}
.l-header__customBtn.sp_ .bogo-language-switcher li a,
.lang-nav-box .bogo-language-switcher li a {
    display: block;
    color: #29617a;
    color: #231815;
    padding-left: 12px;
    line-height: 1.6em;
    position: relative;
    white-space: nowrap;
    text-align: left;
}
.l-header__customBtn.sp_ .bogo-language-switcher li a {
    line-height: 1.5em;
}
.l-header__customBtn.sp_ .bogo-language-switcher li a:hover,
.l-header__customBtn.sp_ .bogo-language-switcher li.current a,
.lang-nav-box .bogo-language-switcher li a:hover,
.lang-nav-box .bogo-language-switcher li.current a {
    color: #29617a;
}
.l-header__customBtn.sp_ .bogo-language-switcher li a::before,
.lang-nav-box .bogo-language-switcher li a::before {
    content: "";
    position: absolute;
    display: block;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 6px solid #29617a;
    left: 1px;
    top: calc(50% - 3px);
}
.bogo-language-switcher li.current {
    order: 1;
}
.bogo-language-switcher li.first {
    order: 2;
}
.bogo-language-switcher li.last {
    order: 3;
}
.lang-dl {
    margin: 15px auto 0;
    font-size: 13px;
    position: relative;
    display: flex;
    justify-content: center;
}
.lang-dl dt {
    display: flex;    ;
    align-items: center;
}
.lang-dl dt path {
    fill: #fff;
}
.lang-dl dt .icon {
    margin-right: 10px !important;
    vertical-align: middle;
}
.lang-dl dd {
    color: #231815;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #fff;
    display: flex;
    align-items: center;
}
.lang-dl dd li a {
    padding: 0 5px;
    color: #fff;
}

@media (min-width: 960px) {
	.l-header .sp {
		display: none !important;
	}
    .l-header__inner.l-container {
        padding: 0 calc(50vw - 600px) 60px !important;
        flex-wrap: nowrap;
        flex-direction: row;
    }
    .l-header__inner.l-container .textwidget.custom-html-widget {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
    }
    .l-header__gnav {
        position: absolute !important;
        left: 0;
        bottom: 0;
        width: 100vw;
    }
    .l-header__gnav ul.sub-menu {
        position: absolute !important;
        box-sizing: border-box;
        left: 0 !important;
        top: 100% !important;
        width: 100vw !important;
        transform: none !important;
        background: rgba(0, 0, 20, .9);
        padding: 10px calc(50vw - 600px);
        display: flex;
        flex-wrap: wrap;
        transition: all 0.2s ease-in;
        transform: scale(1,0.5);
    }
    .l-header__gnav .c-gnav > li > a:hover + ul.sub-menu {
        transform: scale(1,1);
        transition: all 0.3s ease-in;
    }
    .l-header__gnav .c-gnav > li > a .ttl {
        font-size: 18px;
        line-height: 1.5em;
    }
    .l-header__gnav .c-gnav > li.nav-contact,
    .l-header__gnav .c-gnav > li.nav-reservation {
        padding: 10px;
    }
    .l-header__gnav .c-gnav > li.nav-contact > a {
        border: 1px solid #fff9b1;
        border-radius: 40px;
        padding: 5px 10px;
        font-weight: bold;
    }
    .l-header__gnav .c-gnav > li.nav-reservation > a {
        background: #fff9b1;
        border-radius: 40px;
        color: var(--color_main) !important;
        padding: 5px 10px;
        font-weight: bold;
    }
    .l-header__gnav ul.sub-menu li {
        width: calc(100% / 7);
        line-height: 1.3em;
    }
    .l-header__gnav li a {
        color: #fff9b1 !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .l-header__gnav li a span.o-arrow-link02 {
        display: block;
        padding: 0 0 0 16px;
        position: relative;
        background: url(https://ohori-hosp.jp/wp-content/themes/ohoriclinic_2/svg/i-arrow02.svg) no-repeat left top;
        background-size: 12px 12px;
    }
    .l-header__logo {
        width: 300px !important;
    }
    .h1-text {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .h1-text p {
        font-family: 'ＭＳ Ｐゴシック';
        font-size: 12px;
        line-height: 1.4em;
        color: #002063;
    }
    .hd-department {
        width: 220px;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 10px 5px;
        margin-left: auto;
        margin-right: 10px;
    }
    .hd-department li {
        width: 32%;
        height: auto !important;
        margin: 0 0 2% 2%;
        background: #fff0a8;
        position: relative;
        text-align: center;
        border-radius: 5px;
        font-size: 12px;
        line-height: 1.2em;
        color: #002063;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hd-department li:nth-child(3n+1) {
        margin-left: 0;
    }
    .hd-department li span {
        margin: 0 !important;
        padding: 0 !important;
    }
    .hd-tel {
        width: 300px;
        font-size: 12px;
        line-height: 1.4em;
        padding: 10px;
    }

}
@media (max-width: 959px) {
    .c-iconBtn.-menuBtn .c-iconBtn__icon.icon-close-thin:before,
    .l-header__menuBtn.sp_ .c-iconBtn__icon:before {
        font-size: 34px;
        font-weight: bold;
        color: #002063;
    }
    .l-header__menuBtn.sp_ .c-iconBtn__icon:before {
        transform: scale(1,1.2);
    }
    .c-widget__title.-spmenu {
        padding: 0;
    }
    .p-spMenu__inner {
        width: 100vw;
        right: 0;
        -webkit-transform: translateX(100vw);
        transform: translateX(100vw);
    }
    .p-spMenu__body {
        padding-left: 0;
        padding-right: 0;
    }
    .sp-nav-bt.l-inbox-4 {
        display: flex;
        flex-wrap: nowrap;
    }
    .sp-nav-bt.l-inbox-4 li {
        flex: 1;
        border-left: 1px solid #fff;
        display: flex;
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    .sp-nav-bt.l-inbox-4 li:first-child {
        border-left: 0;
    }
    .sp-nav-bt.l-inbox-4 li a {
        display: block;
        padding: 5px;
        margin: 0;
        text-align: center;
        font-size: 12px;
        font-weight: normal;
    }
    .sp-nav-bt.l-inbox-4 li img {
        display: block;
        margin: 0 auto 5px;
        width: auto;
        height: 36px;
    }
    .sp-nav-bt.l-inbox-4 li img[src*="i-tel.svg"] {
        height: 32px;
    }
    .sp-nav-bt.l-inbox-4 li img[src*="i-time-w.svg"] {
        height: 40px;
    }
    .sub-menu li img {
        display: none;
    }
    .p-spMenu__nav li a {
        padding: 20px 40px 20px 20px;
        font-size: 4vw;
        font-weight: normal;
        color: #002063;
    }
    .p-spMenu__nav li .sub-menu li a {
        padding: 20px 20px 20px 40px;
        background: #0080cc !important;
        font-size: 4vw;
        font-weight: normal;
        color: #fff !important;
    }
    .hd-hour {
        margin-top: 20px;
        padding-bottom: 44px;
        text-align: center;
        font-size:18px;
        letter-spacing: 2px;
    }
    .hd-hour dl+dl {
        margin-top: 1em
    }
    .hd-hour dl dt {
        color: #002063;
        margin-bottom: 7.5px;
    }
    .hd-hour dl dd {
        font-weight: 700
    }
    .hd-hour dl dd p+p {
        margin-top: .5em
    }
    .hd-hour dl dd .time {
        padding-left: 20px;
        background: url("https://ohori-hosp.jp/wp-content/themes/ohoriclinic_2/svg/i-time.svg") 0 center/16px no-repeat;
    }
}









.foot-contact-block .foot-contact-box dd a {
    width: 100%;
    height: 50px;
    padding: 0 32px 0 52px;
    text-align: center;
    color: #fff;
    background: url("https://ohori-hosp.jp/wp-content/themes/ohoriclinic_2/svg/i-arrow01.svg") 24px center/10px 12px no-repeat #002063;
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    position: relative
}

.footer-head dd li {
    position: relative;
    display: block;
    background: url("https://ohori-hosp.jp/wp-content/themes/ohoriclinic_2/svg/i-arrow03.svg") left center/7.7px 12px no-repeat;
    font-size: 14px;
    padding-left: 16px;
}
.foot-contact-block .foot-contact-box dt {
    font-family: fot-tsukubrdgothic-std, sans-serif;
    font-weight: 700;
    font-style: normal;
}
.foot-contact-block .tel .tel-no {
    font-family: mason-sans, sans-serif;
    font-weight: 400;
    font-style: normal;
}
.footer-head {
    padding: 44px 0 48px;
    margin-bottom: 0 !important;
    background: #005083;
    color: #fff;
}

.footer-head a {
    color: #fff;
}

.footer-head dt {
    margin-bottom: 20px;
}

.footer-head dd {
    font-size: 14px;
}

.footer-head dd li+li {
    margin-top: 8px;
}

.footer-body {
    background: #002063;
    color: #fff;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.footer-body .ft-logo {
    width: 298px;
    margin: 0;
}

.footer-body .ft-logo svg {
    width: 298px;
    height: 70px;
}

.footer-body .ft-logo svg path {
    fill: #fff
}

.footer-body .ft-access-li li+li {
    margin-top: 3px;
}

@media print, screen and (min-width:960px) {
    .ft-bn ul {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .ft-bn ul li {
        width: 178px;
    }

    .ft-bn ul li+li {
        margin-left: 16px;
    }

    .footer-body {
        padding: 40px 0 44px;
    }
    .footer-head,
    .footer-body {
        margin-left: calc(-50vw + 590px);
        margin-right: calc(-50vw + 590px);
        padding-left: calc(50vw - 590px);
        padding-right: calc(50vw - 590px);
    }
    .footer-body .l-inbox {
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .footer-body .ft-access-li {
        margin-top: 5px;
    }

    .footer-body .ft-access-li li {
        margin: 0 18px;
    }
}

@media screen and (max-width:959px) {
    .footer-head,
    .footer-body {
        margin: 0 calc(var(--swl-pad_container, 0) * -1);
    }
    .footer-body {
        padding: 32px var(--swl-pad_container, 0) 36px;
    }
    .footer-body .ft-access-li {
        margin-top: 22.5px;
    }
    .footer-body .ft-access-li li {
        margin: 0 10px;
        text-align: center;
    }

    .footer-body .ft-access-li li:last-child {
        margin-top: 8px;
    }

    .ft-bn {
        margin-top: 22.5px;
    }

    .ft-bn ul {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .ft-bn ul li {
        width: calc(50% - 8px);
    }
}

.ft-bn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.footer-foot,
.footer-foot a {
    color: #646464
}

@media print, screen and (min-width:960px) {
    .footer-foot {
        padding: 20px 0 34px;
    }

    .footer-foot .l-inbox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media screen and (max-width:959px) {
    .footer-foot {
        padding: 23px 0 44px;
    }

    .footer-foot p {
        padding-bottom: 23px;
        margin-bottom: 26px;
        position: relative
    }

    .footer-foot p::after {
        content: '';
        display: block;
        position: absolute;
        width: 100vw;
        height: 1px;
        background: #ccc;
        bottom: 0;
        left: -14px;
    }

    .footer-foot small {
        width: 100%;
        font-size: 10px;
        letter-spacing: -1.5px;
        text-align: center;
        display: block
    }
}

@media screen and (max-width:959px) {
    .home-foot .head .time-tx {
        line-height: 1;
        font-size: 18px;
        font-weight: 700
    }

    .home-foot .head .time-tx+.time-tx {
        margin-top: 14px;
    }

    .home-foot .head .time-tx .tt {
        margin-right: 14px;
    }

    .home-foot .head .time-tx .time {
        padding-left: 30px;
        background-size: 18px;
    }

    .home-foot .foot .tx {
        padding: 20px 14px 45px;
    }

    .home-foot .foot .tx address {
        margin-bottom: 16px;
    }

    .home-robot {
        margin-bottom: 60px;
    }
}


@media print, screen and (min-width:960px) {
    .footer-head dd .open-dl .open-dd .bt li,
    .open-dl .open-dd .bt .footer-head dd li {
        position: absolute;
        right: 0;
        top: 0
    }
}
.footer-head dd .open-dl .open-dd .bt li,
.open-dl .open-dd .bt .footer-head dd li {
    height: 30px;
    padding: 8px 14px 6px 28px;
    display: inline-block;
    background-color: #0080cc;
    color: #fff;
    background-position: 10px center
}

.footer-head dd .guide-box .text li,
.guide-box .text .footer-head dd li {
    background-color: #0080cc;
    color: #fff
}

.ft-bn ul.con-btn {
    display: flex;
    width: 100% !important;
    justify-content: center;
    flex-wrap: wrap
}

.ft-bn ul.con-btn li {
    border: 1px solid #fff;
    width: 20%;
    height: 120px;
    margin-bottom: 15px;
}

.ft-bn ul.con-btn li.ft-bn-01 {
    background: url("https://ohori-hosp.jp/wp-content/themes/ohoriclinic_2/img/common/foot-bt-01-2.jpg") center center/100% no-repeat
}

.ft-bn ul.con-btn li.ft-bn-02 {
    background: url("https://ohori-hosp.jp/wp-content/themes/ohoriclinic_2/img/common/foot-bt-02.jpg") center center/100% no-repeat
}

.ft-bn ul.con-btn li.ft-bn-03 {
    background: url("https://ohori-hosp.jp/wp-content/themes/ohoriclinic_2/img/common/foot-bt-03.jpg") center center/100% no-repeat
}

.ft-bn ul.con-btn li.ft-bn-04 {
    background: url("https://ohori-hosp.jp/wp-content/themes/ohoriclinic_2/img/common/foot-bt-04.jpg") center center/100% no-repeat
}

.ft-bn ul.con-btn li.ft-bn-05 {
    background: url("https://ohori-hosp.jp/wp-content/themes/ohoriclinic_2/img/common/foot-bt-05.jpg") center center/100% no-repeat
}

.ft-bn ul.con-btn li.ft-bn-06 {
    background: url("https://ohori-hosp.jp/wp-content/themes/ohoriclinic_2/img/common/foot-bt-06.jpg") center center/100% no-repeat;
    margin-left: 0
}

.ft-bn ul.con-btn li.ft-bn-07 {
    background: url("https://ohori-hosp.jp/wp-content/themes/ohoriclinic_2/img/common/foot-bt-07.jpg") center center/100% no-repeat
}

.ft-bn ul.con-btn li a {
    background-color: rgba(0, 32, 99, .5);
    width: 100% !important;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: #fff;
    font-size: 18px !important;
    line-height: 1.4;
    text-align: center;
    -webkit-transition: .25s !important;
    transition: .25s !important;
    font-feature-settings: 'palt'
}

.ft-bn ul.con-btn li a:hover {
    opacity: 1;
    background-color: rgba(0, 32, 99, .2)
}

.ft-bn ul.con-btn li a span {
    font-size: 12px;
}

.ft-bn ul.sns-btn {
    display: flex;
    width: 100%;
    text-align: center;
    margin: 30px auto 0;
    height: auto
}

.ft-bn ul.sns-btn li {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.ft-bn ul.sns-btn li:last-child {
    margin-bottom: 20px;
}

.ft-bn ul.sns-btn li a img {
    width: 40px;
    height: auto;
}

.ft-bn ul.sns-btn li span {
    display: block;
    margin: 0 auto;
}

.ft-bn ul.sns-btn li .tx {
    color: #fff;
    font-size: 12px;
    margin: 5px 0 0;
}

.link-inline {
    width: 100%;
    margin: 40px 0 0;
    padding: 30px 0 0;
    border-top: 1px solid #fff;
    display: flex
}

.link-inline dt {
    width: 10%;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
    display: flex;
    border-right: 1px solid #fff !important
}

.link-inline dd {
    margin-left: 30px;
}

.link-inline ul li {
    margin: 0 30px 0 0 !important;
    display: inline-flex
}

.link-inline ul li:nth-child(5) {
    width: 200px;
}

.ft-access-li a {
    color: #fff
}
.l-footer__foot {
    padding-top: 0;
}
.l-footer__nav {
    display: block;
    text-align: center;
    border: 0;
}
.l-footer__nav li {
    display: inline-block;
    margin: 0 0 10px;
    border: 0;
}
.l-footer__nav li a {
    border: 0 !important;
    position: relative;
    display: block;
    font-size: 14px;
    background: url(https://ohori-hosp.jp/wp-content/themes/ohoriclinic_2/svg/i-arrow02.svg) no-repeat left center / 24px 24px;
    padding: 2px 10px 2px 26px;
}
.l-footer p.copyright {
    font-size: 14px;
    position: relative;
}
.l-footer p.copyright a {
    color: #000 !important;
}
@media screen and (max-width:959px) {
    .footer-foot {
        margin-bottom: 60px;
    }

    .footer-foot small {
        font-size: 11px;
    }

    .ft-bn ul li {
        margin-bottom: 15px;
    }

    .ft-info {
        margin: 0;
        flex-wrap: wrap
    }

    .ft-info ul {
        margin: 10px auto !important
    }

    .ft-logo,
    .ft-logo svg {
        width: 100% !important
    }

    .ft-bn ul.con-btn {
        flex-wrap: wrap;
        justify-content: space-between
    }

    .ft-bn ul.con-btn li {
        width: 48%;
        height: 110px;
    }

    .ft-bn ul.con-btn li.ft-bn-01,
    .ft-bn ul.con-btn li.ft-bn-02,
    .ft-bn ul.con-btn li.ft-bn-03,
    .ft-bn ul.con-btn li.ft-bn-04,
    .ft-bn ul.con-btn li.ft-bn-05,
    .ft-bn ul.con-btn li.ft-bn-06,
    .ft-bn ul.con-btn li.ft-bn-07 {
        background-size: 125%
    }

    .ft-bn ul.con-btn li a {
        font-size: 16px !important;
        text-align: center;
    }

    .ft-bn ul.con-btn li a:hover {
        background-color: rgba(0, 32, 99, .5);
    }

    .ft-bn ul.con-btn li a span {
        font-size: 11px;
    }
    .l-footer__nav {
        text-align: left;
        position: relative;
        margin-bottom: 20px;
    }
    .l-footer__nav:after {
        content: "";
        display: block;
        width: 100vw;
        height: 1px;
        background-color: #ccc;
        position: absolute;
        bottom: 0;
        left: calc(var(--swl-pad_container, 0) * -1);
    }
    .l-footer p.copyright {
        font-size: 11px;
    }
}
@media print,
screen and (min-width:960px) {
    .footer-head dd .guide-box .text li,
    .guide-box .text .footer-head dd li {
        width: 286px;
        padding: 15px 22px 13px 40px;
        background-position: 20px center;
        position: absolute;
        left: 24px;
        bottom: 0
    }

}

@media screen and (max-width:959px) {
    .footer-head dd .guide-box .text li,
    .guide-box .text .footer-head dd li {
        display: inline-block;
        padding: 15px 22px 13px 40px;
        background-position: 20px center;
    }
}


.contact-box .box-mail .footer-head dd li,
.contact-box .box-mail .o-arrow-link03,
.footer-head dd .contact-box .box-mail li {
    width: 100%;
    display: inline-block;
    font-weight: 600;
    background-color: #0080cc;
    color: #fff
}
.l-inbox > div.ft-info {
    display: flex;
    width: auto;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 20px auto 0;
}
@media print, screen and (min-width:960px) {
    .sp {
        display: none !important;
    }
    .contact-box .box-mail .footer-head dd li,
    .footer-head dd .contact-box .box-mail li {
        height: 60px;
        padding: 17px 0 0 78px;
        font-size: 23px;
        background-position: 54px center;
        background-size: 11px 18px;
    }
    .l-inbox > div {
        display: flex;
        justify-content: space-between;
    }
    .l-inbox-5 {
        flex-wrap: wrap;
    }
    .l-inbox-5 > * {
        width: 20%;
    }
    .l-inbox > div.ft-info,
    .l-inbox > div.ft-bn {
        width: 100%;
    }
    .l-inbox > div.ft-bn {
        order: 1;
    }
    .l-inbox > div.ft-info {
        order: 2;
    }
    .link-li dt,
    .link-li dd {
        margin: 0 0 15px;
    }
    .link-li.link-inline {
        width: 100%;
        border-top: 1px solid #fff;
        margin: 20px 0;
        padding-top: 20px;
        display: flex;
        align-items: stretch !important;
    }
    .link-li.link-inline dt {
        padding-right: 15px;
        border-right: 1px solid #fff;
        display: flex;
        margin: 0;
        align-items: center;
        white-space: nowrap;
        flex-grow: 1;
    }
    .link-li.link-inline dd {
        padding: 0 0 0 25px;
        flex-grow: 1;
    }
    .link-li.link-inline ul li {
        display: inline-block !important;
        margin-top: 0;
        margin-right: 25px;
    }
}
.footer-head dd ul li.External-link.menu-item {
    padding: 0;
    background: transparent;
    margin: 20px 20px 0 0 !important;
}
.footer-head dd ul li.External-link.menu-item a {
    position: relative;
    display: block;
    background: url(https://ohori-hosp.jp/wp-content/themes/ohoriclinic_2/svg/i-link.svg) left 10px center no-repeat;
    font-size: 14px;
    padding: 7px 10px 7px 30px;
    background-size: 15px !important;
    border: 1px solid #fff;
    width: 200px;
    margin: 0;
}
.footer-head dd ul li.External-link.wide a {
    width: 250px;
}
@media screen and (max-width:959px) {
    .pc {
        display: none !important;
    }
    .contact-box .box-mail .footer-head dd li,
    .footer-head dd .contact-box .box-mail li {
        height: 50px ;
        padding: 14px 0 0 48px;
        font-size: 18px;
        background-position: 24px center;
        background-size: 11px 18px
    }
    .c-spnav > li > a > button:before {
        content: "＋";
        color: #188cd0;
        font-size: 16px;
        font-weight: bold;
        right: 40px;
    }
    .c-spnav > li > a > button.is-opened:before {
        content: "－";
    }
    .c-spnav > li > a > button:after {
        display: none;
    }
}
.-right .p-spMenu__inner {
    transform: translateX(100vw);
}
[data-spmenu=opened] .p-spMenu__inner {
    transform: translateX(0) !important;
}

/* 投稿記事でのパンくず内の記事タイトル表示 */
.single .p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item,
.p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item,
.single .p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item:last-child > span.p-breadcrumb__text,
.p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item:last-child > span.p-breadcrumb__text {
    display: inline !important;
    white-space: wrap;
}
.single .p-breadcrumb__item:after,
.p-breadcrumb__item:after {
    display: inline-block;
    margin: 0 8px;
}
.single .p-breadcrumb .p-breadcrumb__list,
.p-breadcrumb .p-breadcrumb__list {
    display: block !important;
    width: auto !important;
    font-size: 13px;
    white-space: wrap;
}
@media (min-width: 768px) {
    .single .p-breadcrumb .p-breadcrumb__list,
    .p-breadcrumb .p-breadcrumb__list {
        font-size: 14px;
    }
}