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

/*　Google Fonts 読込  Noto Sans Japanese（Regular 400） , Noto Serif Japanese（Regular 400） , Roboto（Regular 400）　*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP&family=Roboto&display=swap');
/*
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Noto Serif JP', serif;
    font-family: 'Roboto', sans-serif;
*/

/* 共通要素の上書き
---------------------------------------------------- */
/*ダークモードの設定上書き*/
@media(prefers-color-scheme:dark){
    body, #container{
        background:#fff;
    }
}

/*テキスト選択時カラー*/
::selection {
    background: rgba(130,174,70,.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: #000;
    -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(130,174,70,0.50) solid 1px;
}
input[type="submit"], button, .button {
    background: #007b43;
    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: #007b43;
    transition: .3s;
}
a:hover {
    color: #82ae46;
}
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;
}

/* ヘッダ header id="header" #header
---------------------------------------------------- */
#header {
    background-color: #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: relative;
        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 / 各種コンテンツリンクボタン：.cont-btn）*/
#header-contents{
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}
/*ヘッダコンテンツ - 住所・電話番号*/
#header-contents address{
    font-size: .875rem;
    width: 25%;
}
#header-contents address .facility_zip::before{
    content: "〒";
    display: inline;
    padding: 0 .25em 0 0;
}
#header-contents address .facility_phone{
    color: #82ae46;
    font-size: 1rem;
    font-weight: bold;
}
#header-contents address .facility_phone::before{
    content: "TEL:";
    display: inline;
    padding: 0 .25em 0 0;
}
/*ヘッダコンテンツ - サイトロゴ・サイトタイトル*/
#site-title {
    margin-bottom: 0;
    width: 50%
}
#site-title a{
    color: #333;
    text-align: center;
}
#site-title a span{
    display: block;
}
/*サイトロゴ（画像）*/
#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;
    padding: 0 0 0 .5rem;
}
/*サイトタイトル*/
#site-title .title-container{
    font-family: 'Noto Serif JP', serif;
    font-size: 1.25rem;
    padding: 0 0 0 .5rem;
}
/*ヘッダコンテンツ - 各種コンテンツリンクボタン*/
#header-contents .cont-btn{
    display: flex;
    justify-content: flex-end;
    width: 25%;
}
#header-contents .cont-btn li{
    display: inline-block;
    padding: .5rem;
}
#header-contents .cont-btn li a{
    align-items: center;
    background-color: #fff;
    border:#007b43 solid 1px;
    border-radius: 1rem;
    display: flex;
    height: 2rem;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
    width: 2rem;
}
#header-contents .cont-btn li a:hover{
    background-color: #007b43;
    color: #fff;
}
#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: #fff;
    border-radius: 1rem;
    content: "\f002";
    color: #007b43;
    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: #007b43;
    color: #fff;
}
/*テキスト入力input設定*/
#header-contents .cont-btn li.search .search-field{
    -webkit-appearance:none;/*SafariやChromeのデフォルトの設定を無効*/
    background-color: #fff;
    background-image: none;
    border:#007b43 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;/*テキスト入力エリアが伸びる後の横幅*/
}

/*グローバルナビゲーション*/
#menu {
    border-top: #cbb994 solid 1px;
    margin: 0;
    padding: 1rem;
    width: 100%;
}
#menu div:first-of-type {
    float: none;
    width: 100%;
}
#menu ul {
    align-items: center;
    display: flex;
    font-size: inherit;
    justify-content: space-between;
    margin: 0 auto;
    width: 1240px;
}
#menu ul li{
    align-items: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.24rem;
    font-weight: normal;
    display: flex;
    padding: .5em 1em;
}
#menu ul li a {
    align-items: center;
    color: #000;
    display: flex;
    font-size: 1rem;
    height: 100%;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-align: inherit;
    text-decoration: none;
    width: 100%;
}
#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: #82ae46;
    text-decoration: none
}

#menu ul li a::after {
    background: #fff;
    border-radius: .15rem;
    content: '';
    height: .3rem;
    position: absolute;
        bottom: -1rem;
        left: calc( 50% - .15rem);
    transform-origin: left top;
    transition: 0.3s;
    width: .3rem;
}
#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表示*/ {
    background: #82ae46;
}
/*SP用グローバルナビハンバーガーボタン*/
#menu .menu-toggle {
    display: none;
}
/*SP用ヘッダコンテンツ*/
#menu .sp-menu-contents {
    display: none;
}

/* コンテナ div id="container" #container
---------------------------------------------------- */
/*メインコンテンツ - サブヘッダ*/
#sub-header{
    background:url("../images/common/bg_sub-header.png") center no-repeat;
    background-size: cover;
    height: 140px;
    margin: 0;
    padding: 0;
    width: 100%;
}
#sub-header .sub-header-wrap{
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin: 0 auto;
    width: 1240px;
}
#sub-header .sub-header-wrap .sub-header-title{
    height: fit-content;
    width: 100%;
}
#sub-header .sub-header-wrap .sub-header-title h2{
    font-family: 'Noto Serif JP', serif;
    font-size: 2.25em;
    font-weight: normal;
    letter-spacing: .25rem;
}
#sub-header .sub-header-wrap .sub-header-title .slag{
    color: #82ae46;
    font-family: 'Noto Serif JP', serif;
    font-size: .875em;
}
/*メインコンテンツ - パンくずナビ*/
.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-size: .875em;
    padding:  0 .15rem;
}
.breadcrumbs .bradcrumbs-wrap .material-symbols-outlined{
    font-family: 'Material Icons';
}

#container {
    background-color: transparent;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2em auto;
    width: 1240px;
}
/*メインコンテンツ - メインカラム*/
main.content {
    float: none;
    margin: 0;
    padding: 0 0 0 3em;
    width: 75%;
}
/*メインコンテンツ - メインカラム - 固定ページ最上の親ページのみメインカラム100%*/
body.page-parent main.content { /*親（body.page-parent）の場合メインカラム100%*/
    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）の場合サイドバー非表示 */
    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(130,174,70,0.15);
    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(130,174,70,0.15);
    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(130,174,70,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(130,174,70,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(130,174,70,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: #82ae46;
    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{
    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(130,174,70,0.15);
    color: #666;
}
aside#sidebar .widget.widget-container ul li a::before {
    color: rgba(130,174,70,1.00);
    content: "\e5cc";
    font-family: 'Material Icons';
    padding: 0 .5rem 0 0;
}
/*該当ページ滞在時*/
aside#sidebar .widget.widget-container ul li.current_page_item a {
    background-color: rgba(130,174,70,.15);
    color: #666;
}
aside#sidebar .widget.widget-container ul li[class*="current"] a {
    background-color: rgba(130,174,70,.15);
    color: #666;
}

/* フッターバナーエリア id="widget-banner-area" #widget-banner-area
---------------------------------------------------- */
section#widget-banner-area{
    background-color:rgba(203,185,148,0.25);
    border-top: #ddd solid 1px;
    margin: 0 !important;
    padding: 0;
    position: relative;
}
section#widget-banner-area .banner-area.slick{
    margin: 0 2rem;
    padding: 2rem 0;
    position: relative;
    width: calc( 100% - 4rem);
}
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 {
    background: url("../images/common/bg-footer-address.jpg") no-repeat center center;
    background-size: cover;
    margin: 0 auto;
    padding: 3em 1em;
    width: 100%;
}
#footer .address > dl{
    text-align: center;
}
#footer .address > dl > dt .corporation_name{
    display: block;
    font-size: 1em;
    font-weight: normal;
}
#footer .address > dl > dt .site_name{
    font-size: 1.5em;
    padding: 0 0 .5em;
}
#footer .address > dl > dd{
    font-weight: normal;
    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-sub-nav{
    align-items: center;
    background-color: #007b43;
    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 {
    background-color: rgba(0,0,0,0.00);
    align-items: center;
    border-left: #fff solid 1px;
    display: flex;
}
#pagetop:hover {
    background-color: rgba(0,0,0,0.15);
}
#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
---------------------------------------------------- */
    /*サイトロゴ（画像）*/
    #site-title #logo-container{
        height: auto;
        margin: 0;
        max-height: 30px;
    }
    #site-title #logo-container img{
        height: 30px;
        width: auto;
    }
    /*グローバルナビゲーション*/
    #menu ul{
        width: 100%;
    }
}

@media(max-width:1260px) {
/* ヘッダ header id="header" #header
---------------------------------------------------- */
    /*ヘッダコンテンツ - 住所・電話番号*/
    #header-contents address{
        width: 33%;
    }
    /*ヘッダコンテンツ - サイトロゴ・サイトタイトル*/
    #site-title {
        width: 34%
    }
    /*ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    #header-contents .cont-btn{
        display: flex;
        justify-content: flex-end;
        width: 33%;
    }
    
/* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header{
        background-position: right bottom;
        background-size: unset;
    }
    #sub-header .sub-header-wrap{
        width: 90%;
    }
    #container {
        margin: 1.5em 2%;
        width: 96%;
    }
    /*メインコンテンツ - メインカラム*/
    main.content {
        padding: 0 0 0 2%;
        width: 75%;
    }
    /*メインコンテンツ - サイドバー*/
    aside#sidebar {
        width: 25%;
    }
}

@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-color: rgba( 0,0,0,.9);
        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: 3.8em 0 0 0;
    }
    /*グローバルナビゲーション - OPEN時*/
    #menu.toggled {
        height: 100vh;
        overflow-x: auto;
        overflow-y: auto;
        position: fixed;
            right: 0;
            top: 0;
    }
    #menu ul , 
    #menu.toggled ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 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: 32%;
        height: 0;
    }
    #menu ul::before , 
    #menu.toggled ul::before {
        order: 1;
    }
    #menu ul li , 
    #menu.toggled ul li {
        border: #fff solid 1px;
        margin: 0 0 2rem;
        padding: 0;
        width: 32%
    }
    #menu.toggled ul li {
        position: relative;
    }
    #menu ul li a ,
    #menu.toggled ul li a{
        background-color: transparent;
        color: #fff;
        display: block;
        font-size: 1rem;
        height: 100%;
        line-height: auto;
        margin: 0;
        padding: 2rem 1rem;
        text-align: center;
        width: 100%;
    }
    #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(130,174,70,.05);
        color: #82ae46;
    }
    #menu.toggled ul li a::before{
        content: '\e5df';
        font-family: 'Material Icons';
        padding: 0 .25em 0 0;
    }
    #menu.toggled ul li a::after{
        display: none;
    }
    /*SP用グローバルナビハンバーガーボタン*/
    #menu .menu-toggle {
        background: none;
        border: 0;
        color: #82ae46;
        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: #82ae46;
    }
    #menu .menu-icon {
        font-size: 1em;
        height: 100%;
    }
    #menu .menu-icon::before {
        color: #82ae46;
        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: #fff;
        content: '\e5cd';
        font-family: 'Material Icons';
    }
    /*SP用ヘッダコンテンツ*/
    #menu.toggled .sp-menu-contents {
        align-items: flex-start;
        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{
        width: 50%;
    }
    /*SP用ヘッダコンテンツ - 住所・電話番号*/
    #menu.toggled .sp-menu-contents address{
        color: #fff;
        font-size: .875rem;
    }
    #menu.toggled .sp-menu-contents address ul{
        display: block;
    }
    #menu.toggled .sp-menu-contents address ul li{
        border: none;
        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{
        color: #82ae46;
        font-size: 1rem;
        font-weight: bold;
    }
    #menu.toggled .sp-menu-contents address .facility_phone::before{
        content: "TEL:";
        display: inline;
        padding: 0 .25em 0 0;
    }
    /*SP用ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    #menu.toggled .sp-menu-contents .cont-btn{
        display: flex;
        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: #007b43;
        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: #007b43;
        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;
    }
    
    
/* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header{
        background-position: right bottom;
        background-size: contain;
        height: fit-content;
    }
    #sub-header .sub-header-wrap{
        padding: 2rem 0;
    }
    
/* フッタ 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 ul::before , 
    #menu.toggled ul::before ,
    #menu ul::after , 
    #menu.toggled ul::after {
        display: none;
    }
    #menu ul li , 
    #menu.toggled ul li {
        width: 48%
    }
    
/* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header{
        background-size: cover;
    }
    #sub-header .sub-header-wrap{
        padding: 2rem 0;
    }
    #container {
        margin: 1.5em 0;
        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 .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: 33.333%;
    }
    #footer-sub-nav .sp-sub-nav ul li:nth-child(3n){
        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 {
        margin: 0;
        width: 100%
    }
    #menu ul li a,
    #menu.toggled ul li a {
        padding: 1rem;
    }
    
    /*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(130,174,70,.25) solid 3px;
    }
    #sub-header .sub-header-wrap{
        padding: 1rem 0;
    }
    #sub-header .sub-header-wrap .sub-header-title h2 {
        font-size: 1.75em;
        letter-spacing: unset;
    }
    #sub-header .sub-header-wrap .sub-header-title .slag{
        color: rgba(130,174,70,1.00);
    }
    /*メインコンテンツ - パンくずナビ*/
    .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;
    }
    
/* フッタ footer id="footer" #footer
---------------------------------------------------- */
    /* アドレス */
    #footer .address > dl{
        text-align: left;
    }
}
