@charset "UTF-8";


/*======================================================
共通の設定
======================================================*/

/* IEでobject fitを適用させる
縦横比を保って表示したい場合

-o-object-fit: contain;
object-fit: contain;
font-family: 'object-fit: contain;'; /*IE対策*/

.btn{
    margin:30px auto;
    text-align: center;
}

.btn a{
    border-radius: 6px;
    padding:10px 30px;
    display: inline-block;
}

.btn-post-all a{
    background: #00a00b;
    color:#fff;
    font-size:1.4rem;
    text-decoration: none;
}
.btn-post-all a::after{
    content:url(../img/common/arrow-right-wh.png);
    margin-left:10px;
    display: inline-block;
}
.btn-post-all a:hover{
    background: #37c240;;
}


/*======================================================
トップページのスタイル設定
======================================================*/

/*----------------------------------------
見出し
----------------------------------------*/

.h2-index{
    text-align: center;
    font-weight: normal;
    font-size:2.8rem;
    color:#00903D;
}

/*----------------------------------------
スライドショー部分
----------------------------------------*/

@media(min-width:1000px){
    .top-main-image{
        width:80%;
        margin: 0 auto 20px;
    }
}

@media(max-width:999px){

    header{
        width:96%;
        margin: auto;
    }
    .top-main-image{
        width:96%;
        margin:auto;
    }
}

.slide-image{
    border-radius: 30px;
}

.slide-text{
    width:55%;
    font-size:3.6rem;
    font-weight: bold;
}

@media(max-width:767px){
    .slide-text{
        font-size:1.2rem;
    }
}

.swiper-container {
    max-width: 1600px;
    margin: auto;
    height: auto;
}

.slide-img{
    height: 100%;
    max-width:1600px;
    margin: 0 auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 100% 100%;
    object-position: 100% 100%;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
  animation: zoomUp 10s linear 0s 1 normal both;  
}
.slide-img img{
  display: block;
}

@-webkit-keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
            
.swiper-wrapper p {
    position: absolute;
    top: 50%;
    left: 20px;
    color: #ffffff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size:3.6rem;
}

.swiper-wrapper .swiper-slide-active p{
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


/*----------------------------------------
TOP重要なお知らせ
----------------------------------------*/
@media(max-width:767px){
    .e-info > div{
        width:100%;
    }
}

@media(min-width:768px){
    .e-info{
        margin-bottom:40px;
    }
}

.h2-e-info{
    font-size:1.5rem;
    font-weight: normal;
    color:#fff;
}

.fa-exclamation-circle{
    margin-right:10px;
}

.e-info > div:first-of-type{
    background: #05B750;
    padding: 10px 10px;
}

.e-info > div:last-of-type{
    border:1px solid #05B750;
    padding:8px 10px;
    background: #fff;
}

.e-info-date{
    color:#05B750;
    font-size:1.3rem;
    font-weight: bold;
    margin-right:10px;
}


/*----------------------------------------
TOPお知らせ
----------------------------------------*/

.Tinfo{
    background: #f2f2f2;
    margin-bottom:0;
    padding:30px 0;
}

.Tinfo-list{
    padding:10px;
    border-bottom:1px dashed #333;
}

.Tinfo-list dt{
    font-size:1.3rem;
    color:#00a00b;
    display: inline-block;
}

.Tinfo-cat{
    text-align: right;
}

.Tinfo-cat a{
    border:1px solid #5cb162;
    padding:0 10px;
    text-align: center;
    background: #fff;
    font-size:1.2rem;
    color:#00a00b;
    text-decoration: none;
    display: inline-block;
}

.Tinfo-cat a:hover{
    background:#00a00b;
    color:#fff;
}

@media(max-width:767px){
    .Tinfo-list dd:first-of-type{
        margin-bottom:0.5em;
    }
    .Tinfo-list dd:last-of-type{
        text-align: right;
    }
}

/* NEWマーク　*/

.top-news-box{
    position: relative;
}

.new-mark{
    font-size:1.0rem;
    color:rgb(199, 86, 0);
    background:#fffa6b;
    padding:1px 4px;
    border-radius: 10px;
    margin-left:6px;
}

/*----------------------------------------
YouTube
----------------------------------------*/

.top-youtube{
    max-width:500px;
    margin:50px auto;
}

.youtube{    
    width: 90%;
    aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

/*----------------------------------------
TOP WORKエリア
----------------------------------------*/

.Twork{
    background: #d0e1ff;
    padding:50px 0;
}

section.Twork{
    margin-bottom:0;
}

.Twork-field{
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
}

.Twork-field > div{
    margin-bottom:20px;
}

@media(min-width:640px){
    /* PCの時だけ背景　*/
    .Twork{
        background: url(../img/index/bg-work.jpg) repeat-x center bottom;
    }

    .Twork-field > div{
        flex-basis: calc( 100% / 3 - 2% );
    }
}


.Twork-box {
    display: block;
    padding:0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
}

.Twork-text{
    background: #fff;
    padding:20px;
}

.Twork-field > div{
    display: flex;
    flex-direction: column;
    background: #fff;
}

.Twork-field a{
    text-decoration: none;
}

.Twork-field p{
    line-height: 1.5;
}

.h3-index{
    color:#00a00b;
    margin-bottom:20px;
}

/* hoverでzoom */

.Twork-box{
    background: #000;
  }

  .Twork-box > div{
    overflow: hidden;
  }
  .Twork-box img{
    transition-duration: 0.3s;
  }
  .Twork-box img:hover{
    transform: scale(1.2);
    transition-duration: 0.3s;
    opacity:0.6;
  }



 
/*======================================================
下層ページ共通
======================================================*/

.main-box{
    position: relative;
}

.breadcrumbs{
    margin-bottom:60px;
}

.breadcrumbs{
    color:#2d4341;
    font-size:1.3rem;
}

.h2-page{
    position: absolute;
    top:-30px;
    left:50%;
    transform: translateX(-50%);
    width:60%;
    text-align: center;
    z-index: 10;
    background: #00C063;
    padding:10px 20px;
}

@media(max-width:767px){
    .h2-page{
        width:90%;
    }
}

.h2-page span{
    color:#fff;
}

.h3-page{
    text-align: center;
    margin-bottom:40px;
}

.h3-page span{
    font-size:3.2rem;
    color:#00a00b;
    font-weight: normal;
    border-bottom:3px solid #05B750;
    margin-bottom: auto;
}

.page-title{
    height: 230px;
    max-width:1000px;
    margin: 0 auto 30px;
    position: relative;
    border-radius:20px;
}

.page-title-about{
    background: url(../img/about/title-page.png) no-repeat right top;
}

.page-title-project{
    background: url(../img/project/title-page.png) no-repeat right top;
}

.page-title-document{
    background: url(../img/document/title-page.png) no-repeat right top;
}

.page-title-clinic{
    background: url(../img/clinic/title-page.png) no-repeat right top;
}

.page-title-injection{
    background: url(../img/injection/title-page.png) no-repeat right top;
}

.page-title-night{
    background: url(../img/night/title-page.png) no-repeat right top;
}

.page-title-post{
    background: url(../img/post/title-page.png) no-repeat right top;
}

.page-title-members{
    background: url(../img/members/title-page.png) no-repeat right top;
}

.page-title-kvma{
    background: url(../img/kvma/title-page.png) no-repeat right top;
}

@media(max-width:767px){
    .page-title{
        height:140px;
        border-radius: 20px;
    }

    .page-title-about,.page-title-project,.page-title-document,.page-title-clinic,.page-title-night,.page-title-post{
        background-position: left 50% center;
        background-size: contain;
    }

}



.page-title img{
    border-radius: 20px;
}

@media(max-width:767px){
    .page-title{
        margin: 0 2% 30px;
    }
}

.page-title p{
    position: absolute;
    top:50%;
    left:20px;
    transform: translateY(-50%);
    letter-spacing:0.08em;
}

.page-title p:first-letter{
    font-size:3.8rem;
    color:#00903D;
}

.section-title{
    text-align: center;
    font-size:3.0rem;
    color:#00903D;
    letter-spacing:0.1em;
    margin: 0 auto 2em;
    position: relative;
}

@media(max-width:600px){
    .section-title{
        font-size:2.0rem;
        line-height: 2.0;
    }
}

.section-title:before{
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #00903D;
    border-radius: 2px;   
}

.section-sub-title{
    position: relative;
    color: #00903D;
    text-shadow: 0 0 2px white;
    font-size:2.4rem;  
    margin:0 0 30px 20px;
    z-index:1; /*アコーディオンの際に擬似要素の緑の丸が消えるのを防ぐため*/
}

.section-sub-title:before {
    content: "";
    position: absolute;
    background: #ABE0C2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    /* border: dashed 1px white; */
    left: -15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
  }

  .section-text {
    font-size: 1.8rem;
    line-height: 1.73;
  }

.main-box{
    border-radius:8px;
    max-width:1000px;
    margin: 0 auto 20px;
    background: #fff;
    position: relative;
    padding:40px 20px;
    box-shadow: 4px 4px 4px 4px rgba(102, 102, 102, 0.4);;
}

@media(max-width:767px){
    .container{
        padding: 0 2%;
    }
    .main-box{
        margin:20px;
    }
    .section-text {
        font-size: 1.3rem;
    }
}

/*　ページネーション */

.pagination{
    text-align: center;
}

.pagination a{
    text-decoration: none;
}

.pagination a:hover{
    background: rgb(175, 196, 206);
}

.page-numbers{
    background: #fff;
    border:1px solid #999;
    padding:4px 10px;
}

.page-numbers.current{
    background: #222;
    color:#fff;
}

/*　tel-link */

.tel-link a:link,
.tel-link a:visited{
    color:#fff;
}

/*======================================================
全ての投稿スタイル
======================================================*/

.post-wrapper{
    background: #fff;
    padding:40px 20px;
    /* border:1px solid #ccc; */
    box-shadow: 4px 4px 4px 4px rgba(124, 124, 124, 0.3);
}

.single .post-area{
    border-bottom:1px solid #ccc;
    padding-bottom:40px !important;
    margin-bottom:20px;
}

.post-area-all{
    border-bottom:none;
}




/*======================================================
新着情報シングルページのスタイル設定
======================================================*/
    
.single-post-date{
    color:#00a00b;
    text-align: right;
}
    

.single-post-cat{
    text-align: right;
}

.single-post-cat a{
    border:1px solid #00C063;
    font-size:1.2rem;
    text-decoration: none;
    padding:4px 20px;
    color: #00C063;
    display: inline-block;
}

.single-post-cat{
    text-align: right;
    span{
        display: inline-block;
    }
}

.single-post-cat p{
    text-align: center;
    font-size:1.2rem;
    color:#00C063;
}

.single-post-cont{
    margin:30px 0 50px;
    padding-bottom:50px;
    border-bottom:1px dashed #ccc;
}



@media(min-width:768px){
    .post-area{
        padding: 20px 50px;
    }
}

@media(max-width:767px){
    div.post-area{
        margin: 50px 2%;
    }

}

/* PCのときだけタイトルと日付を横並び */
@media(min-width:769px){
     .news-title{
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }   
}
    
    
/*======================================================
新着情報アーカイブページのスタイル設定
======================================================*/

.archive-post{
    border-bottom:1px dashed #999;
    padding:1em 0;
}
.page-navi{
    text-align: center;
    margin:30px auto;
}

.h3-archive{
    font-weight: normal;
}

.h3-archive::after{
    font-family: "Font Awesome 5 Pro";
    content:"\f101";
    margin-left:10px;
    font-weight: 400;
    font-size:1.2rem;

}


/*======================================================
新着情報カテゴリーページのスタイル設定
======================================================*/

.post-box{
    border-bottom:1px dashed #ccc;
    padding-bottom:10px;
    margin-bottom: 10px;
}

.h3-cat-title{
    border-left:6px solid #1e3e9c;
    padding-left:10px;
    margin-bottom:10px;
    color:#1e3e9c;    
}

/*======================================================
about
======================================================*/



.greet-text{
    padding-right:20px;
}

.add-wrapper{
    padding-left:20px;
}

.add-logo{
    max-width:400px;
}
.member-ta{
    width:98%;
    margin: 30px auto;
}
.member-ta th,.member-ta td{
    padding:0.7em 1em;
    border-bottom:1px solid #ccc;
}
.member-ta th:first-of-type,
.member-ta td:first-of-type{
    border-top:1px solid #ccc;
}

@media(max-width:767px){
    .greet-img{
        text-align: center;
        max-width:320px;
        margin: auto;
    }
    .member-ta th,.member-ta td{
        display: block;
        border-bottom:none;
    }
    .member-ta th{
        background: #f2f2f2;
    }
}

/*　リンクボタン設定　*/

.btn-link-page{
    max-width:480px;
    text-align: center;
    padding:1em 0;
    position: relative;
    margin:40px auto;
}

@media(max-width:767px){
    .btn-link-page{
        text-align: center;
        margin: 20px auto;
    }
}

.btn-project{
    border:6px solid #FF9D2B;
    background: #FF8900;
}

.btn-document{
    border:6px solid #7BC49B;
    background: #49AD74;
}

.btn-link-page a:link,
.btn-link-page a:visited{
    color:#fff;
    font-weight: bolder;
    text-decoration: none;
    font-size:2.0rem;
}

.btn-link-page a::after{
    content: url(../img/common/arrow-wh.png);
    position: absolute;
    right:20px;
    top:50%;
    transform: translateY(-50%);
}

.btn-link-page p::before{
    content: url(../img/common/btn-foot.png);
    position: absolute;
    left:20px;
    top:50%;
    transform: translateY(-50%);
}

/*======================================================
事業内容 project
======================================================*/


.card-project-wrapper > div{
    margin-bottom:40px;
}

.card-project{
    display: flex;
    flex-direction: column;
    padding:10px;
    height:100%;
    margin-bottom: 30px;;
}

.card-project p{
    margin-bottom:10px;
}

.project-number{
    border-top:3px solid #00903D;
    position: relative;
    border-radius: 10px 0 0;
    font-size:2.8rem;
    color:#00903D;
    font-weight: normal;
    padding: 1.5rem 2rem 1.5rem 130px;
    word-break: break-all;
    padding-left:160px;
}

.project-number span{
    font-size: 3.5rem;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    padding: 0 10px;
    color: #fff;
    border-radius: 8px 0 8px 8px;
    background: #00903D;   

}

.project-number span::before{
    content:"活動内容";
    font-size:1.8rem;
    margin-right:10px;
}

.btn-detail-small{
    text-align:right;
    margin-top: auto;
}

.btn-detail-small a{
    font-size:1.2rem;
    border-radius: 6px;
    color:#fff;
    background: #05B750;
    padding:4px 30px 4px 10px;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.btn-detail-small a:hover{
    background: #7BC49B;
}

.btn-detail-small a:after{
    content:url(../img/common/arrow-wh16.png);
    position: absolute;
    right:10px;
    top:40%;
    transform: translateY(-50%);
    margin-left:20px;

}


/*======================================================
各種資料
======================================================*/

.document-wrapper{
    margin-bottom:20px;
}

@media(max-width:767px){
    .document-wrapper:not(:last-of-type){
        margin-bottom:40px;
    }
}

.document-wrapper:first-of-type{
    padding-right:20px;
}

.document-box{
    position: relative;
}

@media(max-width:767px){
    .document-box{
        padding:initial;
        width:100%;
    }
}


.doc-title{
    background: #05B750;
    padding:6px 20px;
    position: absolute;
    top:-20px;
    left:0;
    width:80%;
    text-align: center;
}

.doc-title-project{
    background:#059CB7;
    border-radius: 0 20px 0 0 ;
}

.doc-title-zaimu{
    background-color:#FF8900;
}

.doc-title a{
    color:#fff;
    font-size:1.8rem;
    text-decoration: none;
}

@media(max-width:767px){
    .doc-title{
        padding:4px;
        width:100%;
    }

    .doc-title a{
        font-size:1.2rem;
    }
}

.doc-cont{
    border:4px solid #99DDB5;
    width:100%;
    padding:40px 20px;
    background:#FFFDF4 ;
}

@media(max-width:767px){
    .doc-cont{
        padding:60px 0 10px;
    }
}

.doc-cont-project{
    border-color:#6FCBDB;
}

.doc-cont-zaimu{
    border-color:#FFC684;
}

.doc-cont-list li{
    border-bottom:1px dashed #ccc;
    padding:10px;
    position: relative;
    display: block;
}

.doc-cont-list li a{
    display: block;
    width:100%;
}

.doc-cont-list li:after{
    font-family: "Font Awesome 5 Free";
    position:absolute;
    right:20px;
    top:50%;
    transform: translateY(-50%);
    content:"\f1c1";
    font-weight: 400;
    color:#f00;
    font-size:2.2rem;
}


/*======================================================
clinic
======================================================*/

/*　タブ　*/
.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.tab-label {
    color: White;
    background: LightGray;
    /* margin-right: 5px; */
    padding: 3px 12px;
    order: -1;
    /* width: calc(100% / 9 - 5px); */
    flex-basis: 10%;
    text-align: center;
}

@media(max-width:767px){
    .tab-label{
        flex-basis:32%;
        margin-bottom:10px;
    }
}

.tab-label:last-child{
    margin-right:0;
}

.tab-content {
    width: 100%;
    display: none;
    padding-top:30px;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
    background: #FF8900;
}
.tab-switch:checked+.tab-label+.tab-content {
     display: block;
}
/* ラジオボタン非表示 */
.tab-switch {
    display: none;
}

/* タブの中　*/

.clinic-wrapper{
    border:4px solid #BFE5CF;
    padding:20px;
    margin-bottom:20px;
}
.clinic-name{
    color:#00903D;
    font-weight: bold;
    font-size:1.8rem;
}

.clinic-phone span{
    font-size:2.2rem;
    color:#999;
    font-weight: bold;
}

.clinic-phone span::before{
    font-family:"Font Awesome 5 Free";
    font-weight:900;
    content:"\f879";
    margin-left:10px;
    margin-right:10px;
}

.clinic-map a{
    background: #05B750;
    border-radius: 4px;
    color:#fff;
    text-decoration: none;
    display: inline-block;
    padding:2px 6px;
}

.clinic-map a:hover{
    background:#49AD74;
}

.clinic-map a:after{
    font-family:"Font Awesome 5 Pro";
    font-weight:400;
    content:"\f054";
    color:#fff;
    margin-left:10px;
    font-size:1.2rem;
}

/*======================================================
学校飼育動物支援事業
======================================================*/

.school-btn{
    max-width:400px;
    margin: 20px auto;
}

/* 長寿動物表彰　写真 */

.great-age-photo-wrapper{
    max-width:1000px;
    margin:0 auto 2em;
    padding:1em;
    display: grid;
    gap:1em;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
}

.great-age-name{
    font-size:clamp(1.2rem,1.3vw,1.3rem);
    text-align: center;
}

.great-age-photo > div{
    text-align: center;
}



/* 長寿動物表彰　アコーディオン */


  .protect-award-wrapper{
    margin-bottom:2em;
}
  .qa__block {
    display: flex;
    flex-direction: column;
    min-width: 200px;
  }
  
  
  .qa__item {
    display: inline-block;
  
  }
  
  .qa__head {  
    position: relative;
    text-align: center;
    padding: 20px 30px 20px 20px;
    border-radius: 8px;
    background:#bfe5cf;
    color: #00903D;
    cursor: pointer;
    width: 100%;
    border:none;
  }
  
  .qa__head:after {
    content: "";
    border-top: 3px solid #00903D;
    border-left: 3px solid #00903D;
    display: inline-block;
    width: 16px;
    height: 16px;
    transform: rotate(-135deg) translateY(9px);
    position: absolute;
    right: 24px;
    top: 50%;
    transition: transform .4s;
  }
  
  .qa__body {
    position: relative;
    /* border-radius: 0 0 8px 8px; */
    background: #fff;
    color: black;
    border: transparent;
    padding: 0 20px;
    line-height: 0;
    opacity: 0;
    transition: line-height 0.3s, padding 0.3s, opacity 0.3s;
    height: 0;
  }
  
  .qa__body.is-open {
    display: block;
    padding: 20px;
    line-height: 1.5;
    opacity: 1;
    border: 1px solid #bfe5cf;
    height: 100%;
    margin-top:-10px;
  
  }
  
  .qa__head.is-open::after {
    transform: rotate(45deg) translateY(-10px);
  
  }
  
  
  .qa__item:not(:first-child) {
    margin-top: 16px;
  }








/*======================================================
狂犬病会場
======================================================*/

.injection-wrapper .tab-label{
    flex-basis: calc( 100% / 8 - 1px );
}

@media(max-width:767px){
    .injection-wrapper .tab-label{
        flex-basis: 100%;
        margin-bottom:15px;
    }
}

.injection-ta{
    width:100%;
}

.injection-ta th,.injection-ta td{
    border:1px solid #ccc;
    padding:4px 0 4px 10px;
}

.injection-ta td:first-of-type{
    width:15%;
}

.injection-ta td:nth-of-type(2){
    width:20%;
}

.injection-ta td:nth-of-type(4){
    width:10%;
}

.injection-ta th{
    text-align: center;
    padding:2px;
    background: #bfe5cf;
}

.injection-ta caption{
    text-align: left;
    font-weight: bold;
    color:#00903D;
}

.injection-ta{
    margin-bottom:20px;
}

.injection-ta tr:hover{
    background: #feffe2;
}

.inj-date{
    color:#00903D;
}

.inj-date::before{
    content:"\f073";
    font-family: "Font Awesome 5 Pro";
    font-weight:700;
    color:#00903D;
}

.inj-close-wrapper{
    padding:20px 20px 100px 20px;
}

.bt-clinic{
    max-width:400px;
    margin:40px 0;
}

/*======================================================
夜間動物病院 night
======================================================*/

.night-info{
    border:1px solid #37c240;
    padding:20px 40px;
    margin-bottom:40px;
}

.night-address .fas{
    margin-right:6px;
    color:#00903D;
}

.night-address dt{
    font-size:1.8rem;
    font-weight: bold;
}

.night-address dd{
    margin-bottom:1em;
}

@media(min-width:768px){
    .night-address-wrapper{
        padding-left:20px;
    }
}

/* 電話ボタン右サイド */

.btn-tel{
    background: #00903D;
}

.btn-tel p{
    color:#fff;
}

.btn-tel-center p{
    line-height: 1.5;
}

.btn-side-tel{
    border-radius: 16px 0 0 16px;
    border:1px solid #fff;
    padding:10px;
    position: fixed;
    right:-280px;
    top:40%;
    z-index:100;
}

@media(max-width:480px){
    .btn-side-tel{
        right:-260px;
        top:70%;
    }
}

.btn-side-tel-inner{
    position: relative;
}

.tel-ico{
    position: absolute;
    left:10px;
    top:50%;
    transform: translateY(-50%);
}

.night-tel-number-wrapper{
    margin-left:60px;    
}
.night-tel-number-wrapper a:link,
.night-tel-number-wrapper a:visited{
    color:#fff;
}

.night-tel-number-wrapper-center{
    text-align: center;
    margin-left:0;
}

.night-tel-number{
    font-size:3.5rem;
    border-top:1px solid #fff;
    border-bottom:1px solid #fff;
}

@media(max-width:480px){
    .night-tel-number{
        font-size:2.8rem;
        color:#fff;
    }
}

.night-tel-time{
    font-size:1.3rem;
}

/* 電話ボタン */
.btn-tel-center{
    border-radius: 16px;
    padding:10px 20px;
    max-width:460px;
    margin:auto;
    text-align: center;
}

.btn-tel-center .night-tel-number{
    border-top:none;
    margin-bottom:8px;
}

.btn-tel-center .night-tel-number img{
    vertical-align: baseline;
    margin-right:6px;
}

.module-step{
    position: relative;
    border:2px solid #39BC71;
    padding:20px 10px 0 10px;
    margin:10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.module-step > div:first-of-type{
    position: absolute;
    left:0;
    top:0;
}

.module-step-image{
    text-align: center;
}

.module-step-image img{
    height:130px;
    margin: 10px 10px 10px 30px;    
}

.module-step p{
    color:#00903D;
    margin-bottom:0;
    line-height: 1.5;
}

.module-arrow{
    width: 100px;
    height: 40px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.module-arrow-green{
    background-color: #00903D;
}

.module-arrow-step{
    text-align: center;
    margin:50px auto;

}

.night-point{
    background: #00903D;
    padding:20px;
}

.night-point-wrapper{
    padding:10px;
}

.night-point-inner{
    background:#fff;
    padding:20px;
}

.night-point-title{
    color:#fff;
    text-align: center;
    font-size:2.1rem;
    margin-bottom:10px;
}

.bring-list li{
    margin-bottom:10px;
    color:#00903D;
}

.bring-list div{
    width:80px;
    margin: auto;
    display: inline-block;
    text-align: center;
}

.bring-list img{
    vertical-align: middle;
    text-align: center;
    margin-right:20px;
}

.night-price,.night-pay{
    border:1px solid #ABE0C2;
    padding:20px;
}

.night-price-ex{
    border:2px solid #ABE0C2;
    padding:10px;
}

.btn-recruit{
    max-width:560px;
    margin:40px auto;
}



/*======================================================
夜間動物病院 求人情報
======================================================*/

.night-recruit-ta{
    width:100%;
}
.night-recruit-ta th{
    background: #f2f2f2;
    width:20%;
}

.night-recruit-ta caption{
    font-weight: bold;
    text-align: left !important;
    font-size:1.8rem;
}

.night-recruit-step{
    margin-left:2em;
}

.night-recruit-step li{
    margin-bottom:0.5em;
}

.btn-recruit-contact{
    max-width:400px;
    margin: 40px auto;
    border:4px solid #49AD74;
    padding:10px;
    text-align: center;
    background: #BFE5CF;
}
.btn-recruit-contact-title{
    color:#00903D;
}

.btn-recruit-contact-number{
    font-size:2.8rem;
    font-weight: bold;
    line-height: 1.2;
    color:#00903D;
}

.recruit-contact-mail a{
    border:1px solid #00903D;
    max-width:400px;
    margin:40px auto;
    text-decoration: none;
    color:#00903D;
    display: block;
}
.recruit-contact-mail a:hover{
    background: #BFE5CF;
}

/*======================================================
会員専用ページ
======================================================*/

.btn-post-members a{
    max-width:400px;
    margin: 20px auto;
    padding:20px 40px;
    font-size:clamp(1.8rem,2.6vw,2.6rem);
}

.btn-post-members a::after{
    content: url(../img/common/arrow-wh40.png);
}

.members-doc-wrapper{
    max-width:1000px;
    margin-inline: auto;
    padding:0 20px;
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap:20px;
}

.member-doc-title{
    font-size:1.3rem;
    font-weight: bold;
}

.module-card{
    border:1px solid #999;
    display: flex;
    flex-direction: column;
    height:100%;
}

.member-doc-image{
    padding:30px;
    text-align: center;
}

.member-doc-image img{
    max-width:50px;
}

.member-doc-title{
    background: #f2f2f2;
    text-align: center;
    padding:5px;
    margin-top:auto;
    height:65px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}

a.member-doc-wrapper{
    text-decoration: none !important;    
}

/*======================================================
サイトマップ
======================================================*/

.wsp-container h2{
    color:#00903D;
    font-size:1.7rem;
}

.wsp-container h2:before{
    content:"【";
}
.wsp-container h2:after{
    content:"】";
}

.wsp-container > ul{
    margin-bottom:1em;
}

.wsp-container ul{
    margin-left:2em;
    font-size:1.5rem;
}

.wsp-container ul li{
    margin-bottom:0.5em;
}

.wsp-container ul li a{
    color:#2ea861
}

