@charset "utf-8";
/* Generic Child-noda Style 
    -フォント読み込み
    -共通要素の上書き
    -共通要素
    -外枠 div id="wrapper" #wrapper
    -ヘッダ header id="header" #header
    -コンテナ div id="container" #container
    -フッタ footer id="footer" #footer
    -ログイン時表示「編集」ボタンスタイル .post-edit-link
        ※ログイン時のみ表示される記事の編集画面へのリンクボタン
*/

/*　Google Fonts 読込  Noto Sans Japanese , Noto Serif Japanese , Charm　*/
@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/*
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Noto Serif JP', serif;
    font-family: "Charm", cursive;
*/
/*
    Green: #54baa4 rgba(84,186,164,1.00) 
    Blue: #769bb5 rgba(118,155,181,1.00)
    Pink: #f19ca7 rgba(241,156,167,1.00)
    Beige: #cbb994 rgba(203,185,148,1.00)
*/

/* 共通要素の上書き
---------------------------------------------------- */
/*ダークモードの設定上書き*/
@media(prefers-color-scheme:dark) {

    body,
    #container {
        background: #fff;
    }
}

/*テキスト選択時カラー*/
::selection {
    background: rgba(118, 155, 181, .35);
    color: #666;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    transition: unset;
}

html {
    scroll-behavior: auto;
}

body {
    animation: fadeIn .5s ease 0s 1 normal;
    -webkit-animation: fadeIn .5s ease 0s 1 normal;
    background-color: #fff;
    color: #555;
    -webkit-text-size-adjust: 100%;
}

/*ページ読み込み時のフェードアニメーション用キーフレーム*/
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

address,
cite,
var {
    font-style: normal;
}

pre,
code {
    font-family: inherit;
}

/*フォームスタイル上書き*/
textarea,
input[type="text"],
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="search"],
input[type="password"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 5px;
}

input[type="search"] {
    -webkit-appearance: textfield
}

input,
textarea {
    background: #fff;
    border: #ddd solid 1px;
    border-radius: 5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1em;
    margin: 0;
    outline: 0;
    padding: .5em;
}

input:focus,
textarea:focus {
    background-color: #f7f7f7;
    border: rgba(0, 166, 186, 0.50) solid 1px;
}

input[type="submit"],
button,
.button {
    background: rgba(0, 166, 186, 1.00);
    border: 0;
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 18px;
    margin: 0 auto;
    padding: .5em 2em;
    ;
    text-align: center;
    text-decoration: none;
}

input[type="submit"]:hover,
input[type="submit"]:focus,
button:hover,
button:focus,
.button:hover,
.button:focus {
    opacity: 0.8
}

/*h要素スタイル上書き*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 0;
    margin-top: 0;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.75em;
}

h3 {
    font-size: 1.25em;
}

h4 {
    font-size: 1.125em;
}

h5 {
    font-size: 1.125em;
}

h6 {
    font-size: 1.125em;
}

/*p（段落）要素スタイル上書き*/
.page .content p,
.single-post .content p {
    font-size: 1em;
    line-height: 160%;
    margin: 1em 0;
}

/*a（ハイパーリンク）要素スタイル上書き*/
a {
    color: rgba(0, 166, 186, 1.0);
    transition: .3s;
}

a:hover {
    color: rgba(0, 166, 186, .80);
}

a img {
    transition: .3s;
}

/*キャプション付画像スタイル上書き*/
.wp-caption {
    display: inline-block;
}

/*ul,ol（リスト、順序リスト）要素スタイル上書き*/
.entry-content ul,
.widget-container ul,
.comment-body ul,
.entry-content ol,
.widget-container ol,
.comment-body ol {
    margin: 30px 0 30px 1em;
}

.entry-content ol,
.widget-container ol,
.comment-body ol {
    margin-left: 1em;
}

.entry-content ul li,
.widget-container ul li,
.comment-body ul li {
    list-style-type: initial;
}

/*エントリーメタデータスタイル上書き*/
.entry-meta,
.entry-meta a,
.entry-footer,
.entry-footer a,
.comment-meta,
.comment-meta a,
.comment-author,
.comment-author a {
    font-family: 'Noto Sans JP', sans-serif;
}

/*ヘッダ・コンテナ・フッタスタイル上書き*/
#header,
#container,
#footer {
    padding: 0;
}

#site-title h1,
#site-title a {
    display: block;
    font-size: 0;
    font-weight: normal;
    margin: 0 auto;
    width: fit-content;
}

#container::after {
    display: none;
}

/* reCAPTCHA V3 バッヂ非表示*/
/*バッヂを非表示にする際はフォームの送信ボタン下にGoogleが指定する一文を記載すること*/
.grecaptcha-badge {
    visibility: hidden;
}

/* PC/SP切り替え */
.pc {
    display: block !important;
}

.sp {
    display: none !important;
}


/* 共通要素
---------------------------------------------------- */

/* 外枠 div id="wrapper" #wrapper
---------------------------------------------------- */
#wrapper {
    padding: 0;
    overflow: hidden;
}

/* ヘッダ header id="header" #header
---------------------------------------------------- */
#header {
    background: #fff;
    /* box-shadow: 0 0 5px 3px rgba(0,0,0,.05); */
    /*position: fixed; */
    /*ヘッダ固定の指定を外す際はposition:relativeに変更し、header.php内の「ヘッダーの高さ分だけコンテンツを下げる」をコメントアウトし、
    ログイン時のアドミンバー表示調整（body.logged-in #header）もコメントアウトする
    （@media screen and (max-width: 782px)にもログイン時のアドミンバー表示調整の記述有）
    */
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

/*ログイン時のアドミンバー表示調整*/
body.logged-in #header {
    top: 32px;
}

#header:after {
    display: none;
}

#header .header-wrap {
    position: relative;
    width: 100%;
}

/*サイト説明文（キャッチコピー）*/
#site-description {
    display: none;
}

/*ヘッダコンテンツ（住所・電話番号：address / サイトタイトル：#sitetitle / グローバルナビ：#menu / 各種コンテンツリンクボタン：.cont-btn）*/
#header-contents {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: .5em;
}

#header-contents .site-title-wrap {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

#header-contents .header-in {
    display: block;
}

/*ヘッダコンテンツ - サイトロゴ・サイトタイトル*/
#site-title {
    margin: 0 2rem 0 0;
}

#site-title a {
    align-items: center;
    color: #333;
    display: flex;
}

#site-title a span {
    display: block;
}

#site-title a p {
    margin: 0;
}

/*サイトロゴ（画像）*/
#site-title #logo-container {
    height: auto;
    margin: 0;
    max-height: 60px;
}

#site-title #logo-container img {
    height: 100%;
    width: auto;
}

/*法人名*/
#site-title .corporation-container {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: .875rem;
    font-weight: bold;
    padding: 0 0 0 .5rem;
}

/*サイトタイトル*/
#site-title .title-container {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 0 0 0 .5rem;
}

/*ヘッダコンテンツ - 住所・電話番号*/
#header-contents address {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: .875rem;
    font-weight: bold;
}

#header-contents address .facility_zip::before {
    content: "〒";
    display: inline;
    padding: 0 .25em 0 0;
}

#header-contents address .facility_phone::before {
    content: "TEL:";
    display: inline;
    padding: 0 .25em 0 0;
}

#header-contents address .facility_phone a:hover {
    color: rgba(0, 166, 186, 1.0);
}

/*グローバルナビゲーション*/
#menu {
    flex: 1;
    margin: 0;
    padding: 0;
}

#menu div:first-of-type {
    float: none;
}

#menu ul {
    align-items: center;
    display: flex;
    font-size: inherit;
    justify-content: flex-end;
    margin: 0 auto;
}

#menu ul li {
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.24rem;
    font-weight: 400;
    display: flex;
    padding: .5rem;
    width: 100px;
}

/* #menu ul li:last-child {
    background-color: #0058e1;
    border: #0058e1 solid 1.5px;
    border-radius: 12px;
} */

#menu ul li a {
    align-items: center;
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: 500;
    height: 100%;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

/* #menu ul li:last-child a {
    color: #fff;
}

#menu ul li:last-child:hover {
    background-color: #fff;
        color: #0058e1;
    transition: .3s;
}

#menu ul li:last-child a:hover {
    color: #0058e1;
    transition: .3s;
} */

#menu ul li a:hover,
#menu ul li a:focus,
#menu ul li.current-menu-item a,
/*メニューページ current表示*/
#menu ul li.current-page-ancestor a,
/*メニューの子ページ current表示*/
body.single-recruit #menu ul li.menu-item-object-recruit a,
/*カスタム投稿タイプ（採用情報） current表示*/
body.tax-recruit-category #menu ul li.menu-item-object-recruit a

/*カスタム投稿タイプ（採用情報） current表示*/
    {
    color: rgba(0, 166, 186, 1.0);
    text-decoration: none
}

#menu ul li a::before {
    content: "";
    background-position: center top;
    background-repeat: no-repeat;
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

#menu ul li:nth-child(1) a::before {
    content: url(../images/common/header/ico01.png);
}

#menu ul li:nth-child(2) a::before {
    content: url(../images/common/header/ico02.png);
}

#menu ul li:nth-child(3) a::before {
    content: url(../images/common/header/ico03.png);
}

#menu ul li:nth-child(4) a::before {
    content: url(../images/common/header/ico04.png);
}

#menu ul li:nth-child(5) a::before {
    content: url(../images/common/header/ico05.png);
}

#menu ul li:nth-child(6) a::before {
    content: url(../images/common/header/ico06.png);
}

#menu ul li:nth-child(7) a::before {
    content: url(../images/common/header/ico07.png);
}

#menu ul li:nth-child(8) a::before {
    content: url(../images/common/header/ico08.png);
}

#menu ul li:nth-child(8):hover a::before {
    content: url(../images/common/header/ico08_b.png);
}

/* #menu ul li a::after {
    background: rgba(0, 166, 186, 0.0);
    border-radius: 1px;
    content: '';
    height: 2px;
    position: absolute;
    bottom: -2rem;
    left: 0;
    transform-origin: left top;
    transition: 0.3s;
    width: 100%;
} */

#menu ul li a:hover::after,
#menu ul li.current-menu-item a::after,
/*メニューページ current表示*/
#menu ul li.current-page-ancestor a::after,
/*メニューの子ページ current表示*/
body.single-recruit #menu ul li.menu-item-object-recruit a::after,
/*カスタム投稿タイプ（採用情報） current表示*/
body.tax-recruit-category #menu ul li.menu-item-object-recruit a::after
/*カスタム投稿タイプ（採用情報） current表示*/
/* {
    bottom: -1rem;
    background: rgba(0, 166, 186, 1.0);
} */

/*SP用グローバルナビハンバーガーボタン*/
#menu .menu-toggle {
    display: none;
}

/*SP用ヘッダコンテンツ*/
#menu .sp-menu-contents {
    display: none;
}

/*ヘッダコンテンツ - 各種コンテンツリンクボタン*/
#header-contents .cont-btn {
    display: flex;
    justify-content: flex-end;
}

#header-contents .cont-btn li {
    display: inline-block;
    padding: 0 .25rem .5em;
}

#header-contents .cont-btn li a {
    align-items: center;
    background-color: rgba(234, 244, 252, 1);
    border: rgba(234, 244, 252, 1) solid 1px;
    border-radius: 1rem;
    padding: 0 .5em;
    color: #333;
    display: flex;
    height: 1.5rem;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
    width: fit-content;
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 500;
}

#header-contents .cont-btn li .facility_phone a {
    align-items: center;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    padding: 0 .5em;
    font-weight: 800;
}

#header-contents .cont-btn li .facility_phone a::before {
    color: #0058e1;
    content: "\f095";
    font-family: FontAwesome;
    display: inline;
    margin-right: .25em;
}


#header-contents .cont-btn li a:hover {
    background-color: #fff;
    border: #ccc solid 1px;
    color: #333;
}

#header-contents .cont-btn li .facility_phone a:hover {
    background-color: #fff;
    border: 0;
    color: #333;
}

/* #header-contents .cont-btn li.link-access a::before {
    content: "\f041";
    font-family: FontAwesome;
    display: inline;
}

#header-contents .cont-btn li.link-inquiry a::before {
    content: "\f003";
    font-family: FontAwesome;
    display: inline;
}

#header-contents .cont-btn li.link-facebook a::before {
    content: "\f09a";
    font-family: FontAwesome;
    display: inline;
}

#header-contents .cont-btn li.link-instagram a::before {
    content: "\f16d";
    font-family: FontAwesome;
    display: inline;
} */

/*検索窓のエリア*/
#header-contents .cont-btn li.search {
    z-index: 2;
    /*最前面に設定。数字は変更可*/
}

#header-contents .cont-btn li.search .search-form {
    position: relative;
}

#header-contents .cont-btn li.search .search-form label::before {
    align-items: center;
    background-color: rgba(0, 166, 186, 1.0);
    border-radius: 1rem;
    content: "\f002";
    color: rgba(255, 255, 255, 1.0);
    font-family: FontAwesome;
    display: flex;
    justify-content: center;
    height: calc(2rem - 4px);
    position: absolute;
    right: 2px;
    top: 2px;
    transition: .3s;
    width: calc(2rem - 4px);
}

#header-contents .cont-btn li.search .search-form label:hover {
    cursor: pointer;
}

#header-contents .cont-btn li.search .search-form label:hover::before {
    background-color: rgba(255, 255, 255, 1.0);
    color: rgba(0, 166, 186, 1.0);
}

/*テキスト入力input設定*/
#header-contents .cont-btn li.search .search-field {
    -webkit-appearance: none;
    /*SafariやChromeのデフォルトの設定を無効*/
    background-color: #fff;
    background-image: none;
    border: rgba(0, 166, 186, 1.0) solid 1px;
    border-radius: 1rem;
    cursor: pointer;
    height: 2rem;
    outline: none;
    padding: .25rem;
    transition: .3s;
    width: 2rem;
}

/*テキスト入力inputにフォーカスした時の形状*/
#header-contents .cont-btn li.search .search-field:focus {
    width: 200px;
    /*テキスト入力エリアが伸びる後の横幅*/
}

/* コンテナ div id="container" #container
---------------------------------------------------- */
/*メインコンテンツ - サブヘッダ*/
#sub-header {
    background: url("../images/common/bg_sub-header.png") center no-repeat;
    background-size: cover;
    height: 340px;
    margin: 0;
    padding: 0;
    width: 100%;
}

#sub-header .sub-header-wrap {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    margin: 0 auto;
    width: 1240px;
}

#sub-header .sub-header-wrap .sub-header-title {
    display: flex;
    flex-direction: column-reverse;
    height: fit-content;
    margin: 0 0 3rem;
    width: 100%;
}

#sub-header .sub-header-wrap .sub-header-title h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: bold;
}

#sub-header .sub-header-wrap .sub-header-title .slag {
    color: rgba(0, 166, 186, 1.0);
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    letter-spacing: .25rem;
}

/*メインコンテンツ - パンくずナビ*/
.breadcrumbs {
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    width: 100%;
}

.breadcrumbs .bradcrumbs-wrap {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
    padding: .5rem;
}

.breadcrumbs .bradcrumbs-wrap span {
    font-family: 'Noto Sans JP';
    font-size: .875em;
    padding: 0 .15rem;
}

.breadcrumbs .bradcrumbs-wrap .material-symbols-outlined {
    font-family: 'Material Icons';
}

.container-wrap {
    background-color: transparent;
    position: relative;
}

#container {
    background-color: rgba(255, 255, 255, 1.00);
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    /* padding: 2em; */
    margin: 2em auto 5rem;
    width: 1240px;
}

/*メインコンテンツ - メインカラム*/
main.content {
    float: none;
    margin: 0;
    padding: 0 0 0 3em;
    width: 75%;
}

/*メインコンテンツ - メインカラム - メインカラム100%*/
body.page-parent main.content,
/*親（body.page-parent）の場合*/
body.post-type-archive-section main.content,
/*診療科INDEX（body.post-type-archive-section）の場合*/
body.tax-section-category main.content {
    /*診療科カテゴリINDEX（body.tax-section-category）の場合*/
    width: 100%;
}

body.page-parent.page-child main.content {
    /*子ページを持つ親（body.page-parent.page-child）の場合メインカラム75%*/
    width: 75%;
}

/*メインコンテンツ - サイドバー*/
aside#sidebar {
    float: none;
}

/*メインコンテンツ - サイドバー - サイドバー非表示*/
body.page-parent aside#sidebar,
/*親（body.page-parent）の場合*/
body.post-type-archive-section aside#sidebar,
/*診療科INDEX（body.post-type-archive-section）の場合*/
body.tax-section-category aside#sidebar {
    /*診療科カテゴリINDEX（body.tax-section-category）の場合*/
    display: none;
}

body.page-parent.page-child aside#sidebar {
    /*子ページを持つ親（body.page-parent.page-child）の場合サイドバー表示*/
    display: block;
}

/*メインコンテンツ - サイドバー - 固定ページ子ページリスト*/
aside#sidebar .child-page-box {
    margin: 0 0 3rem;
}

aside#sidebar .widget-box>li#side-page-link ul {
    margin: 0;
}

aside#sidebar .widget-box>li#side-page-link ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

aside#sidebar .child-page-box>ul,
aside#sidebar .widget-box>li#side-page-link ul {
    border-top: #ddd dotted 1px;
}

aside#sidebar .child-page-box ul li a,
aside#sidebar .widget-box>li#side-page-link ul li a {
    align-items: center;
    background-color: #fff;
    color: #333;
    display: flex;
    padding: 1rem 0;
    text-decoration: none;
}

aside#sidebar .child-page-box ul li a:hover,
aside#sidebar .widget-box>li#side-page-link ul li a:hover {
    background-color: rgba(0, 166, 186, 0.1);
    color: #666;
}

/*該当ページ滞在時*/
aside#sidebar .child-page-box ul li.current_page_item>a,
aside#sidebar .widget-box>li#side-page-link ul li.current_page_item>a {
    background-color: rgba(0, 166, 186, 0.1);
    color: #666;
}

/*第一階層*/
aside#sidebar .child-page-box>ul>li,
aside#sidebar .widget-box>li#side-page-link ul li {
    border-bottom: #ddd dotted 1px;
}

aside#sidebar .child-page-box ul>li>a,
aside#sidebar .widget-box>li#side-page-link ul li>a {
    padding: 1rem 0;
}

aside#sidebar .child-page-box>ul>li>a::before,
aside#sidebar .widget-box>li#side-page-link ul li>a::before {
    color: rgba(0, 166, 186, 1.00);
    content: "\e5cc";
    font-family: 'Material Icons';
    padding: 0 .5rem 0 0;
}

/*第二階層*/
aside#sidebar .child-page-box>ul>li>ul {
    border-top: #ddd dotted 1px;
}

aside#sidebar .child-page-box>ul>li>ul>li {
    border-bottom: #ddd dotted 1px;
}

aside#sidebar .child-page-box>ul>li>ul>li:last-child {
    border-bottom: none;
}

aside#sidebar .child-page-box>ul>li>ul>li a {
    padding: .75rem 0 .75rem 1rem;
}

aside#sidebar .child-page-box>ul>li>ul>li a::before {
    color: rgba(0, 166, 186, 1.00);
    content: "\eac9";
    font-family: 'Material Icons';
    padding: 0 .5rem 0 0;
}

/*第三階層*/
aside#sidebar .child-page-box>ul>li>ul>li>ul {
    border-top: #ddd dotted 1px;
}

aside#sidebar .child-page-box>ul>li>ul>li>ul>li {
    border-bottom: #ddd dotted 1px;
}

aside#sidebar .child-page-box>ul>li>ul>li>ul>li:last-child {
    border-bottom: none;
}

aside#sidebar .child-page-box>ul>li>ul>li>ul>li a {
    padding: .75rem 0 .75rem 2rem;
}

aside#sidebar .child-page-box>ul>li>ul>li>ul>li a::before {
    color: rgba(0, 166, 186, 1.00);
    content: "-";
    padding: 0 .5rem 0 0;
}

/*第三階層以下*/
aside#sidebar .child-page-box>ul>li>ul>li>ul>li ul {
    border-top: #ddd dotted 1px;
}

aside#sidebar .child-page-box>ul>li>ul>li>ul>li ul li {
    border-bottom: #ddd dotted 1px;
}

aside#sidebar .child-page-box>ul>li>ul>li>ul>li ul li:last-child {
    border-bottom: none;
}

aside#sidebar .child-page-box>ul>li>ul>li>ul>li ul li a {
    padding: .75rem 0 .75rem 3rem;
}

aside#sidebar .child-page-box>ul>li>ul>li>ul>li ul li a::before {
    display: none;
}

/*メインコンテンツ - サイドバー - ウィジェット*/
/*ウィジェットタイトル*/
aside#sidebar .widget-box li.widget-container {
    margin: 0 0 3rem;
}

aside#sidebar .widget-box li h3 {
    align-items: center;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    padding: .5rem;
}

aside#sidebar .widget-box li h3::before,
aside#sidebar .widget-box li h3::after {
    background-color: rgba(0, 166, 186, 1.0);
    content: "";
    display: block;
    width: 50px;
    height: 1px;
}

/*ウィジェット（リスト）*/
aside#sidebar .widget.widget-container ul {
    /* border-top: #ddd dotted 1px; */
    margin: 0;
    padding: 0;
}

aside#sidebar .widget.widget-container ul li {
    border-bottom: #ddd dotted 1px;
    list-style: none;
    line-height: normal;
    margin: 0;
}

aside#sidebar .widget.widget-container ul li a {
    font-family: 'Noto Sans JP';
    align-items: center;
    background-color: #fff;
    color: #333;
    display: flex;
    padding: .75rem 0;
    text-decoration: none;
}

aside#sidebar .widget.widget-container ul li a:hover {
    background-color: rgba(0, 166, 186, 0.1);
    color: #666;
}

aside#sidebar .widget.widget-container ul li a::before {
    color: rgba(0, 166, 186, 1.00);
    content: "\e5cc";
    font-family: 'Material Icons';
    padding: 0 .5rem 0 0;
}

aside#sidebar .widget.widget-container ul li ul {
    /* border-top: #ddd dotted 1px; */
    padding: 0 0 0 .75em;
}

aside#sidebar .widget.widget-container ul li ul li {
    border-top: #ddd dotted 1px;
    border-bottom: 0;
}

aside#sidebar .widget.widget-container ul li ul li a::before {
    content: "\eac9";
}

/*該当ページ滞在時*/
aside#sidebar .widget.widget-container ul li.current_page_item a {
    background-color: rgba(0, 166, 186, .1);
    color: #666;
}

aside#sidebar .widget.widget-container ul li[class*="current"] a {
    background-color: rgba(0, 166, 186, .1);
    color: #666;
}

/* フッターバナーエリア id="widget-banner-area" #widget-banner-area
---------------------------------------------------- */
section#widget-banner-area {
    margin: 0 !important;
    padding: 0;
    position: relative;
    background-color: #f7f7f7;
}

section#widget-banner-area .banner-area.slick {
    padding: 0;
    position: relative;
    margin: 2rem auto;
    max-width: 1240px;
    width: 90%;
}

section#widget-banner-area .banner-area.slick .slick-track {
    align-items: center;
    display: flex;
}

section#widget-banner-area .banner-area.slick li {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

section#widget-banner-area .banner-area.slick li h2 {
    display: none;
}

section#widget-banner-area .banner-area.slick .slide-arrow {
    height: 2rem;
    margin: 0;
    text-align: center;
    width: 2rem;
}

section#widget-banner-area .banner-area.slick .slide-arrow:hover {
    cursor: pointer;
}

section#widget-banner-area .banner-area.slick .slide-arrow::before {
    color: #e5e5e5;
    content: "";
    display: inline;
    font-family: 'Material Icons';
    font-size: 2rem;
    line-height: 1;
}

section#widget-banner-area .banner-area.slick .slide-arrow.slick-disabled::before {
    color: #f5f5f5;
}

section#widget-banner-area .banner-area.slick .slide-arrow.next-arrow {
    position: absolute;
    top: calc(50% - 1rem);
    right: -2rem;
}

section#widget-banner-area .banner-area.slick .slide-arrow.next-arrow::before {
    content: '\e5e1';
}

section#widget-banner-area .banner-area.slick .slide-arrow.prev-arrow {
    position: absolute;
    top: calc(50% - 1rem);
    left: -2rem;
}

section#widget-banner-area .banner-area.slick .slide-arrow.prev-arrow::before {
    content: '\e2ea';
}

/* フッタ footer id="footer" #footer
---------------------------------------------------- */
#footer {
    font-size: .875rem;
    margin: 0;
    padding: 0;
}

/* アドレス */
#footer .address {
    align-items: center;
    background-color: rgba(255, 255, 255, 1.00);
    border-radius: 1rem;
    box-shadow: 0px 2px 5px 2px rgba(118, 155, 181, 0.50);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 3rem;
    padding: 1rem;
    width: 1200px;
}

#footer .address>dl {
    font-family: 'Noto Serif JP', serif;
    width: 30%;
}

#footer .address>dl>dt {
    align-items: center;
    display: flex;
    padding: 0 0 1rem;
}

#footer .address>dl>dt>p {
    margin: 0 1rem 0 0;
    width: 40px;
}

#footer .address>dl>dt .corporation_name {
    display: block;
    font-size: 1rem;
}

#footer .address>dl>dt .site_name {
    font-size: 1.5rem;
    padding: 0 0 .5em;
}

#footer .address>dl>dd {
    font-weight: bold;
    margin: 0;
}

#footer .address>dl>dd span {
    display: inline;
}

#footer .address>dl>dd span.facility_zip::before {
    content: "〒";
    display: inline;
    padding: 0 .25em 0 0;
}

#footer .address>dl>dd span.facility_phone {
    display: block;
}

#footer .address>dl>dd span.facility_phone::before {
    content: "TEL:";
    display: inline;
    padding: 0 .25em 0 0;
}

#footer .address .map {
    width: 70%;
}

#footer .address .map iframe {
    height: 200px;
    width: 100%;
}

/*フッタ - コピーライト・サブナビゲーション・ページトップ*/
#footer-sub-nav {
    align-items: center;
    background-color: rgba(0, 88, 225, 1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    width: 100%;
}

#footer-sub-nav>p {
    padding: .75em;
    margin: 0;
}

/* コピーライト */
#copyright,
#copyright a {
    color: #fff;
    font-size: .875em;
    text-align: left;
}

/* サブナビゲーション */
#footer-sub-nav .sp-sub-nav {
    display: none;
}

#footer-sub-nav .pc-sub-nav {
    flex: 1;
    font-size: .875em;
}

#footer-sub-nav .pc-sub-nav ul {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    padding: 0 1em;
}

#footer-sub-nav .pc-sub-nav ul li {
    padding: 0 .5em;
}

#footer-sub-nav .pc-sub-nav ul li a {
    color: rgba(255, 255, 255, 1.00);
    text-decoration: none;
}

#footer-sub-nav .pc-sub-nav ul li a:hover {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
}

/* ページトップ */
#pagetop {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.50);
    display: flex;
    transition: .3s;
}

#pagetop:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

#pagetop a {
    color: rgba(255, 255, 255, 1.00);
    padding: 0 .5em;
}

#pagetop a:hover {
    color: rgba(255, 255, 255, .75);
    padding: 0 .5em;
}

/* ログイン時表示「編集」ボタンスタイル .post-edit-link
---------------------------------------------------- */
.post-edit-link {
    /*ログイン時の編集ボタン非表示*/
    display: none;
}


@media(max-width:1366px) {

    /* ヘッダ header id="header" #header
---------------------------------------------------- */
    /*ヘッダコンテンツ（住所・電話番号：address / サイトタイトル：#sitetitle / グローバルナビ：#menu / 各種コンテンツリンクボタン：.cont-btn）*/
    #header-contents .site-title-wrap {
        align-items: flex-start;
        flex-direction: column;
    }

    /*サイトロゴ（画像）*/
    #site-title #logo-container {
        height: auto;
        margin: 0;
        max-height: 30px;
    }

    #site-title #logo-container img {
        height: 30px;
        width: auto;
    }

    /*ヘッダコンテンツ - 住所・電話番号*/
    #header-contents address {
        font-size: .75rem;
        font-weight: normal;
    }
}

@media(max-width:1260px) {

    /* ヘッダ header id="header" #header
---------------------------------------------------- */
    /*ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    #header-contents .cont-btn {
        display: flex;
        justify-content: flex-end;
    }

    /* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header {
        background-position: left center;
        background-size: unset;
    }

    #sub-header .sub-header-wrap {
        width: 90%;
    }

    #container {
        margin: 1.5em 2% 3em;
        width: 96%;
    }

    /*メインコンテンツ - メインカラム*/
    main.content {
        padding: 0 0 0 2%;
        width: 75%;
    }

    /*メインコンテンツ - サイドバー*/
    aside#sidebar {
        width: 25%;
    }

    /* フッタ footer id="footer" #footer
---------------------------------------------------- */
    /* アドレス */
    #footer .address {
        width: 90%;
    }

    #footer .address>dl {
        width: 40%;
    }

    #footer .address .map {
        width: 60%;
    }
}

@media(max-width:1024px) {

    /* ヘッダ header id="header" #header
---------------------------------------------------- */
    #header::after {
        background-size: auto 100%;
        height: 62px;
    }

    /*ヘッダコンテンツ（住所・電話番号：address / サイトタイトル：#sitetitle / 各種コンテンツリンクボタン：.cont-btn）*/
    #header-contents {
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }

    /*ヘッダコンテンツ - 住所・電話番号 */
    #header-contents address {
        display: none;
    }

    /*ヘッダコンテンツ - サイトロゴ・サイトタイトル*/
    #site-title {
        width: 100%
    }

    #site-title a {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        text-align: left;
    }

    #site-title a span {
        display: inline-block;
    }

    /*ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    #header-contents .cont-btn {
        display: none;
    }

    /*グローバルナビゲーション*/
    #menu {
        background: url("../images/common/bg_sp-nav.png") no-repeat center;
        background-size: cover;
        display: block;
        flex: none;
        height: 100vh;
        position: absolute;
        left: 0;
        top: -100vh;
        transition: .15s;
        width: 100%;
        z-index: 1000;
    }

    #menu div:first-of-type {
        display: block;
        margin: 0;
    }

    /*グローバルナビゲーション - OPEN時*/
    #menu.toggled {
        height: 100vh;
        overflow-x: auto;
        overflow-y: auto;
        position: fixed;
        right: 0;
        top: 0;
    }

    #menu ul,
    #menu.toggled ul {
        border: #fff solid 1px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 4rem 1rem 0;
        padding: 0;
        position: relative;
        left: 0;
        top: 0;
    }

    #menu ul::before,
    #menu.toggled ul::before,
    #menu ul::after,
    #menu.toggled ul::after {
        content: "";
        display: block;
        width: calc(100% / 3);
        height: 0;
    }

    #menu ul::before,
    #menu.toggled ul::before {
        order: 1;
    }

    #menu ul li,
    #menu.toggled ul li {
        border: #fff solid 1px;
        margin: 0;
        padding: 0;
        width: calc(100% / 3);
    }

    #menu.toggled ul li:last-child {
        border: #fff solid 1px;
        /* margin: 0;
        padding: 0;
        width: calc(100% / 3); */
    }

    #menu.toggled ul li {
        position: relative;
    }

    #menu ul li:last-child {
        background-color: transparent;
        border: 0;
        border-radius: 0;
    }

    #menu ul li:nth-child(8) a::before {
        content: url(../images/common/header/ico08_b.png);
    }

    #menu ul li a,
    #menu.toggled ul li a {
        background-color: transparent;
        color: #333;
        display: block;
        font-size: 1rem;
        height: 100%;
        line-height: auto;
        /* margin: .5em 0; */
        padding: 2rem 1rem;
        text-align: center;
        width: 100%;
    }

    #menu ul li:last-child:hover {
        background-color: transparent;
        transition: .3s;
    }

    #menu.toggled ul li a:hover,
    #menu.toggled ul li a:focus,
    #menu.toggled ul li.current-menu-item a,
    /*メニューページ current表示*/
    #menu.toggled ul li.current-page-ancestor a,
    /*メニューの子ページ current表示*/
    body.facility-template #menu.toggled ul li.menu-item-object-facility a

    /*施設情報（カスタム投稿タイプ） current表示*/
        {
        background-color: rgba(233, 246, 254, .5);
        /* color: rgba(0, 166, 186, 1.0); */
    }

    #menu.toggled ul li a::after {
        display: none;
    }

    /*SP用グローバルナビハンバーガーボタン*/
    #menu .menu-toggle {
        background: none;
        border: 0;
        color: rgba(0, 166, 186, 1.0);
        display: block;
        height: 2.4em;
        margin: 0;
        padding: 0;
        position: absolute;
        right: .5em;
        top: calc(100vh + .5em);
        text-align: center;
        transition: unset;
    }

    #menu .menu-toggle:hover,
    #menu .menu-toggle:focus {
        color: rgba(0, 166, 186, 1.0);
    }

    #menu .menu-icon {
        font-size: 1em;
        height: 100%;
    }

    #menu .menu-icon::before {
        color: rgba(0, 166, 186, 1.0);
        content: '\e5d2';
        display: inline;
        font-family: 'Material Icons';
        font-size: 2.4em;
        line-height: 1;
    }

    /*SP用グローバルナビハンバーガーボタン - OPEN時*/
    #menu.toggled .menu-toggle {
        right: 10px;
        top: .5em;
    }

    #menu.toggled .menu-icon::before {
        color: rgba(0, 166, 186, 1.00);
        content: '\e5cd';
        font-family: 'Material Icons';
    }

    /*SP用ヘッダコンテンツ*/
    #menu.toggled .sp-menu-contents {
        align-items: center;
        /* border-top: #fff solid 1px; */
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 1rem 0;
    }

    #menu.toggled .sp-menu-contents address,
    #menu.toggled .sp-menu-contents ul.cont-btn {
        border: none;
        margin: 0;
    }

    /*SP用ヘッダコンテンツ - 住所・電話番号*/
    #menu.toggled .sp-menu-contents address {
        display: block;
        padding: 1rem;
    }

    #menu.toggled .sp-menu-contents address ul {
        border: none;
        display: block;
        margin: 0;
    }

    #menu.toggled .sp-menu-contents address ul li {
        border: none;
        font-size: .875rem;
        margin: 0 0 .5rem;
        text-align: left;
        width: 100%;
    }

    #menu.toggled .sp-menu-contents address .facility_zip::before {
        content: "〒";
        display: inline;
        padding: 0 .25em 0 0;
    }

    #menu.toggled .sp-menu-contents address .facility_phone {
        font-size: 1rem;
        font-weight: bold;
    }

    #menu.toggled .sp-menu-contents address .facility_phone a {
        background-color: transparent;
        display: inline;
        height: 100%;
        line-height: auto;
        margin: 0;
        padding: 0;
        text-align: left;
        width: fit-content;
    }

    #menu.toggled .sp-menu-contents address .facility_phone a:hover {
        background-color: transparent;
    }

    #menu.toggled .sp-menu-contents address .facility_phone::before {
        content: "TEL:";
        display: inline;
        padding: 0 .25em 0 0;
    }

    #menu.toggled .sp-menu-contents address .facility_phone a::before {
        display: none;
    }

    /*SP用ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    #menu.toggled .sp-menu-contents .cont-btn {
        display: flex;
        flex: 1;
        justify-content: flex-end;
    }

    #menu.toggled .sp-menu-contents .cont-btn li {
        border: none;
        display: inline-block;
        margin: 0;
        padding: .5rem;
        width: fit-content;
    }

    #menu.toggled .sp-menu-contents ul.cont-btn::before,
    #menu.toggled .sp-menu-contents ul.cont-btn::after {
        display: none;
    }

    #menu.toggled .sp-menu-contents .cont-btn li a {
        align-items: center;
        background-color: #fff;
        border-radius: 1.5rem;
        color: rgba(0, 166, 186, 1.0);
        display: flex;
        font-size: 1.5rem;
        height: 3rem;
        justify-content: center;
        padding: 0;
        text-decoration: none;
        transition: .3s;
        width: 3rem;
    }

    #menu.toggled .sp-menu-contents .cont-btn li a:hover {
        background-color: rgba(0, 166, 186, 1.0);
        color: #fff;
    }

    #menu.toggled .sp-menu-contents .cont-btn li.link-access a::before {
        content: "\f041";
        font-family: FontAwesome;
        display: inline;
        padding: 0;
    }

    #menu.toggled .sp-menu-contents .cont-btn li.link-inquiry a::before {
        content: "\f003";
        font-family: FontAwesome;
        display: inline;
        padding: 0;
    }

    #menu.toggled .sp-menu-contents .cont-btn li.link-facebook a::before {
        content: "\f09a";
        font-family: FontAwesome;
        display: inline;
        padding: 0;
    }

    #menu.toggled .sp-menu-contents .cont-btn li.link-instagram a::before {
        content: "\f16d";
        font-family: FontAwesome;
        display: inline;
        padding: 0;
    }

    /*検索フォーム*/
    #menu.toggled .sp-menu-contents .cont-btn li.search .search-field {
        background-color: #fff;
        border-radius: 1.5rem;
        height: 3rem;
        width: 15rem;
    }

    #menu.toggled .sp-menu-contents .cont-btn li.search .search-form label::before {
        border-radius: 1.5rem;
        height: calc(3rem - 4px);
        width: calc(3rem - 4px);
    }

    /* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header {
        background-position: left center;
        background-size: cover;
        height: 240px;
    }

    /* フッタ footer id="footer" #footer
---------------------------------------------------- */
    /* アドレス */
    #footer .address {
        border-bottom: #fff solid 1px;
        padding: 1em;
    }

    #footer .address>dl>dt .site_name {
        font-size: 1.25em;
        padding: 0 0 .5em;
    }

    /* コピーライト */
    #copyright,
    #copyright a {
        font-size: .75em;
        width: calc(100% - 3rem);
    }

    /* サブナビゲーション */
    #footer-sub-nav .pc-sub-nav {
        display: none;
    }

    #footer-sub-nav .sp-sub-nav {
        border-bottom: #fff solid 1px;
        display: block;
        flex: 1;
        font-size: .875em;
        padding: .75em;
    }

    #footer-sub-nav .sp-sub-nav ul {
        display: flex;
        flex: 1;
        justify-content: center;
        padding: 0;
    }

    #footer-sub-nav .sp-sub-nav ul li {
        padding: 0 .5em;
    }

    #footer-sub-nav .sp-sub-nav ul li a {
        color: rgba(255, 255, 255, 1.00);
        text-decoration: none;
    }

    #footer-sub-nav .sp-sub-nav ul li a:hover {
        color: rgba(255, 255, 255, .75);
        text-decoration: none;
    }
}

@media screen and (max-width: 782px) {
    html #wpadminbar {
        position: fixed;
    }

    /*ログイン時のアドミンバー表示調整*/
    body.logged-in #header {
        top: 46px;
    }

    #wp-admin-bar-my-account {
        line-height: 80%;
    }
}

@media(min-width:769px) {}

@media(max-width:768px) {

    /* 共通要素の上書き
---------------------------------------------------- */
    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.25em;
    }

    h3 {
        font-size: 1.125em;
    }

    h4 {
        font-size: 1em;
    }

    h5 {
        font-size: 1em;
    }

    h6 {
        font-size: 1em;
    }

    .page .content p,
    .single-post .content p {
        line-height: 160%;
    }

    /* PC/SP切り替え */
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    /* ヘッダ header id="header" #header
---------------------------------------------------- */
    #menu.toggled a,
    #menu.toggled ul.sub-menu a,
    #menu.toggled ul.children a {
        color: unset;
    }

    /*グローバルナビゲーション*/
    #menu ul::before,
    #menu.toggled ul::before,
    #menu ul::after,
    #menu.toggled ul::after {
        display: none;
    }

    #menu ul li,
    #menu.toggled ul li,
    #menu.toggled ul li:last-child {
        width: calc(100% / 2);
    }

    /*SP用ヘッダコンテンツ*/
    #menu.toggled .sp-menu-contents address,
    #menu.toggled .sp-menu-contents ul.cont-btn {
        flex: unset;
        width: 100%;
    }

    #menu.toggled .sp-menu-contents ul.cont-btn {
        justify-content: flex-start;
    }


    /* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header {
        background-size: cover;
    }

    #container {
        width: 100%;
    }

    /*メインコンテンツ - メインカラム*/
    main.content {
        margin: 0 0 2em;
        padding: .5em;
        width: 100%;
    }

    /*メインコンテンツ - メインカラム - 固定ページ最上の親ページのみメインカラム100%*/
    body.page-parent.page-child main.content {
        /*子ページを持つ親（body.page-parent.page-child）の場合メインカラム75%*/
        width: 100%;
    }

    /*メインコンテンツ - サイドバー*/
    aside#sidebar {
        padding: .5em;
        width: 100%;
    }

    /* フッタ footer id="footer" #footer
---------------------------------------------------- */
    #footer {
        text-align: left;
    }

    /* フッタ footer id="footer" #footer
---------------------------------------------------- */
    /* アドレス */
    #footer .address>dl,
    #footer .address .map {
        width: 100%;
    }

    #footer .address>dl {
        margin: 0 0 1rem;
        text-align: center;
    }

    #footer .address>dl>dt {
        justify-content: center;
    }

    #footer .address>dl>dd span.facility_address {
        display: block;
    }

    /* サブナビゲーション */
    #footer-sub-nav .sp-sub-nav {
        border-bottom: none;
        flex: auto;
        padding: 0;
        width: 100%;
    }

    #footer-sub-nav .sp-sub-nav ul {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0;
    }

    #footer-sub-nav .sp-sub-nav ul li {
        border-right: #fff solid 1px;
        border-bottom: #fff solid 1px;
        padding: 1em;
        text-align: center;
        width: 50%;
    }

    #footer-sub-nav .sp-sub-nav ul li:nth-child(even) {
        border-right: none;
    }
}

@media(max-width:767px) {}

@media(max-width:576px) {

    /* ヘッダ header id="header" #header
---------------------------------------------------- */
    #header {
        align-items: center;
        display: flex;
    }

    #header::after {
        height: 92px;
    }

    /*ヘッダコンテンツ（住所・電話番号：address / サイトタイトル：#sitetitle / 各種コンテンツリンクボタン：.cont-btn）*/
    /*ヘッダコンテンツ - サイトロゴ・サイトタイトル*/
    #site-title {
        width: 100%
    }

    #site-title h1,
    #site-title a {
        margin: 0;
    }

    #site-title a {
        display: block;
        width: fit-content;
    }

    #site-title a span {
        display: block;
    }

    #site-title .corporation-container {
        padding: 0;
    }

    #site-title .title-container {
        padding: 0;
    }

    /*サイトロゴ（画像）*/
    #site-title #logo-container {
        display: none;
    }

    /*グローバルナビゲーション*/
    #menu ul li,
    #menu.toggled ul li,
    #menu.toggled ul li:last-child {
        margin: 0;
        width: 100%
    }

    #menu ul li a,
    #menu.toggled ul li a {
        padding: .5em;
    }

    /*SP用ヘッダコンテンツ*/
    #menu.toggled .sp-menu-contents address,
    #menu.toggled .sp-menu-contents ul.cont-btn {
        width: 100%;
    }

    /*SP用ヘッダコンテンツ - 住所・電話番号*/
    #menu.toggled .sp-menu-contents address ul {
        margin: 0 0 1rem;
    }

    #menu.toggled .sp-menu-contents address ul li {
        margin: 0;
    }

    /*SP用ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    #menu.toggled .sp-menu-contents .cont-btn {
        justify-content: space-around;
    }

    /* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header {
        border-bottom: rgba(0, 166, 186, .25) solid 3px;
    }

    /*メインコンテンツ - パンくずナビ*/
    .breadcrumbs {
        font-size: .875em;
    }

    /* フッターバナーエリア id="widget-banner-area" #widget-banner-area
---------------------------------------------------- */
    section#widget-banner-area .banner-area.slick .slide-arrow {
        height: 1.5rem;
        width: 1.5rem;
    }

    section#widget-banner-area .banner-area.slick .slide-arrow::before {
        font-size: 1.5rem;
    }

    section#widget-banner-area .banner-area.slick .slide-arrow.next-arrow {
        position: absolute;
        right: -.25rem;
    }

    section#widget-banner-area .banner-area.slick .slide-arrow.prev-arrow {
        position: absolute;
        left: -.25rem;
    }

    /* フッタ footer id="footer" #footer
---------------------------------------------------- */
    /* サブナビゲーション */
    #footer-sub-nav .sp-sub-nav ul {
        flex-wrap: wrap;
    }

    #footer-sub-nav .sp-sub-nav ul li {
        border-bottom: #fff solid 1px;
        width: 50%;
    }

    #footer-sub-nav .sp-sub-nav ul li:nth-child(3n) {
        border-right: #fff solid 1px;
    }

    #footer-sub-nav .sp-sub-nav ul li:nth-child(2n) {
        border-right: none;
    }
}

@media(max-width:350px) {

    /* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - パンくずナビ*/
    .breadcrumbs {
        display: none;
    }
}