@charset "utf-8";

/*----------------------------------

全体指定・見出し

----------------------------------*/

body{
  margin: auto;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #F3F0EE;
  font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
a{
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -webkit-tap-highlight-color: transparent;
  color: #8D8686
}
a:hover{
  color: #5AD169;
}
ul{
  padding: 0;
}
ul li{
  list-style-type: none;
}
ol{
  padding: 0;
  list-style-position: inside;
}
ol.kakko{
  padding:0;
  margin:0;
}
ol.kakko li{
  list-style-type:none;
  list-style-position:outside;
  counter-increment: cnt
}
ol.kakko li::before{
  display: marker;
  content: "(" counter(cnt) ") ";
}
ol.circle{
  padding: 0;
  counter-reset: list_count;
  list-style-position: outside;
  list-style-type: none;
}
ol.circle li{}
ol.circle li:before{
  margin-right: .5em;
  counter-increment: list_count;
  content: counter(list_count);
  display: inline-block;
  line-height: 17px;
  text-align: center;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  font-size: 0.8em;
  border: 1px solid #000;
}
img{
  width: 100%;
}
h1{
  width: 30%;
  height: auto;
  max-width: 342px;
  max-height: 60px;
  margin: 0;
}
h1 a{
  width: 100%;
  height: 100%;
  display: block;
}
h1 a img{
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
h1 a:hover{
  opacity: 0.7;
}
h2{
  margin: 0;
  text-align: center;
  font-size: 32px;
}
.top-section-title{
  margin: 70px 0 40px 0;
  text-align: center;
}
.top-section-title h2{
  color: #6BBA59;
}
.top-section-title img{
  width: 70px;
  height: 70px;
}
.top-section-title span{
  font-size: 15px;
  font-weight: bold;
}
.page-title{
  margin: 40px 0;
  text-align: center;
}
.page-title h2{
  font-weight: normal;
}
.page-title img{
  width: 70px;
  height: 70px;
}
.page-title span{
  color: #6BBA59;
}
h3{
  margin: 80px 0 30px 0;
  font-size: 32px;
  font-weight: normal;
}
h3.page-section-title{
  margin: 80px 0;
  padding: 0;
  position: relative;
  text-align: center;
  font-weight: bold;
  color: #8D8686
}
h3.page-section-title::before{
  content: '';
  width: 80px;
  height: 4px;
  display: inline-block;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #6BBA59;
}
h4{
  margin: 50px 0 25px 0;
  font-size: 24px;
  font-weight: normal;
  color: #6BBA59;
}
h5{
  font-size: 18px;
}
.header-content, .footer-content{
  width: 80%;
  max-width: 1200px;
  margin: auto;
}
.article{
  width: 88%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 0;
  background: #fff;
}
.content{
  width: 80%;
  max-width: 960px;
  margin: auto;
}
.pc{
  display: block !important;
}
.sp{
  display: none !important;
}

@media only screen and (max-width:1024px){
  h1 a img{
    vertical-align: top;
  }
}
@media only screen and (max-width:768px){
  .article{
    width: 100%;
    padding: 50px 0;
  }
  .pc{
    display: none !important;
  }
  .sp{
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .header-content, .footer-content{
    width: 90%;
  }
  .content{
    width: 90%;
  }
}



/*----------------------------------

ボタン設定

----------------------------------*/

.button{
  width: 100%;
  padding: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  border-radius: 4px;
  color: #fff;
  background: #4BAD74;
  box-shadow:0px 3px 6px -4px #000000;
}
.button:hover{
  color: #fff;
  background: #5AD169;
}
.download-link{
  display: inline-block;
  background: url(//www.kaigo-shien-kyokai.or.jp/img/icon-pdf@2x.png) left top no-repeat;
  background-size: 2rem auto;
  padding: .2rem 0 0.3rem 2.5rem;
}

.section-icon{
  width: 70px;
  height: 70px;
  margin: auto;
  position: relative;
  border-radius: 35px;
  background: #fff;
  box-shadow:0px 3px 6px -4px #000000;
}

.section-icon img{
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-top, .icon-right, .icon-bottom, .icon-tel, .icon-mail, .icon-listen, .icon-download, .icon-plus{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.icon-top::before, .icon-right::before, .icon-bottom::before, .icon-top::after, .icon-right::after, .icon-bottom::after{
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -webkit-tap-highlight-color: transparent;
}
.icon-top::before, .icon-right::before, .icon-bottom::before{
  width: 15px;
  height: 15px;
  left: 10px;
  border-radius: 50%;
  background: #fff;
}
.icon-top::after, .icon-right::after, .icon-bottom::after{
  width: 4px;
  height: 4px;
  border-top: 2px solid #4BAD74;
  border-right: 2px solid #4BAD74;
}
.icon-top::after{
  left: 15px;
  top: 2px;
  transform: rotate(-45deg);
}
.icon-right::after{
  top: -1px;
  left: 13px;
  transform: rotate(45deg);
}
.icon-bottom::after{
  left: 14px;
  top: -3px;
  transform: rotate(135deg);
}
.icon-top:hover::before, .icon-right:hover::before, .icon-bottom:hover::before{
  background: #fff;
}
.icon-top:hover::after, .icon-right:hover::after, .icon-bottom:hover::after{
  border-top: 2px solid #5AD169;
  border-right: 2px solid #5AD169;
}
.icon-tel::before, .icon-mail::before, .icon-listen::before, .icon-download::before, .icon-plus::before{
  width: 15px;
  height: 26px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -webkit-tap-highlight-color: transparent;
}
.icon-tel::before{
  content: "";
  width: 20px;
  height: 22px;
  top: -4px;
  left: -10px;
  background-image: url(//www.kaigo-shien-kyokai.or.jp/img/icon-tel-green@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.icon-mail::before{
  content: "";
  width: 24px;
  height: 18px;
  top: -4px;
  background-image: url(//www.kaigo-shien-kyokai.or.jp/img/icon-mail@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.icon-listen::before{
  content: "";
  width: 24px;
  height: 18px;
  top: -4px;
  background-image: url(//www.kaigo-shien-kyokai.or.jp/img/icon-sound@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.icon-download::before{
  content: "";
  width: 24px;
  height: 22px;
  top: -4px;
  background-image: url(//www.kaigo-shien-kyokai.or.jp/img/icon-download@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.icon-plus::before{
  content: "";
  width: 16px;
  height: 16px;
  top: 0px;
  background-image: url(//www.kaigo-shien-kyokai.or.jp/img/icon-plus@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.icon-plus.active::before{
  content: "";
  width: 16px;
  height: 16px;
  top: 0px;
  background-image: url(//www.kaigo-shien-kyokai.or.jp/img/icon-minus-green@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (max-width:1024px){
  .icon-tel::before{
    content: "";
    top: 0;
    background-image: url(//www.kaigo-shien-kyokai.or.jp/img/icon-tel@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
}



/*----------------------------------

ヘッダー・グローバルナビ

----------------------------------*/

header{
  width: 100%;
  height: 180px;
  z-index: 1000;
  background: #fff;
  box-shadow:0px 3px 6px -4px #000000;
}

header .header-content{
  padding: 20px 0 0 0;
}

header .header-top{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .contact-wrap{
  width: 65%;
  display: flex;
  justify-content: flex-end;
}

header .contact ul{
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

header .contact ul li{}

header .contact ul li:nth-child(1){
  margin: 0 10px 0 0;
}

header .contact ul li:nth-child(1) a{
  width: 188px;
  height: 24px;
  padding: 0;
  font-size: 24px;
  font-weight: bold;
  color: #231815;
  background: transparent;
  box-shadow: none;
}

header .contact ul li:nth-child(1) a::before{
  top: -5px;
  left: -7px;
}

header .contact ul li:nth-child(1) a:hover{
  opacity: 0.7;
}

header .contact ul li:nth-child(1) span{
  display: block;
  position: relative;
  top: -1px;
  left: -10px;
  font-size: 14px;
  color: #8D8686;
}

header .contact ul li:nth-child(2){
  width: 240px;
}
header .contact ul li:nth-child(2) span{
  position: absolute;
  top: -21px;
  left: auto;
  z-index: 10;
  font-size: 12px;
  color: #8D8686;
}

header .contact ul li:nth-child(2) a{
  background: #6BBA59;
}

header .contact ul li:nth-child(2) a:hover{
  background: #5AD169;
}

header .contact ul li:nth-child(3) {
  width: 16%;
  min-width: 100px;
  margin-left: 15px;
}

header .contact ul li:nth-child(3) a{
  background: #ca6561;
}

header .contact ul li:nth-child(3) a:hover{
  background: #e8837f;
}

header .contact ul div{
  height: 44px
}

header .contact ul div + div{
  margin: 0 0 0 10px;
}

nav{
  width: 100%;
  padding: 20px 0 10px 0;
}

nav ul{
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

nav ul li{
  width: calc(100% / 7);
  border-left: 1px dotted #8D8686;
}

nav ul li a{
  width: 100%;
  padding: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  border-bottom: 5px solid #fff
}

nav ul li a:hover{
  border-bottom: 5px solid #6EB85E;
}

nav ul li:last-child{
  border-right: 1px dotted #8D8686;
}

nav ul li.current{
  border-bottom: 5px solid #6EB85E;
}

body#page-1 nav ul li:first-child a, body#page-2 nav ul li:first-child a, body#page-3 nav ul li:first-child a, body#page-4 nav ul li:first-child a, body#page-6 nav ul li:nth-child(2) a, body#page-88 nav ul li:nth-child(3) a, body#page-99 nav ul li:nth-child(4) a, body#page-102 nav ul li:nth-child(5) a, body#page-101 nav ul li:nth-child(6) a, body#page-5 nav ul li:nth-child(7) a{
  border-bottom: 5px solid #6EB85E;
}

nav span,
nav a.button{
  display: none;
}

.sp-nav, .sp-contact, .close-btn{
  display: none;
}

@media only screen and (max-width:1024px){
  header{
    height: 60px;
  }
  header .header-content{
    padding: 0;
  }
  header .header-content h1{
    width: 170px;
    height: 30px;
    margin: 15px 0 0 0;
  }
  header .contact-wrap{
    width: 100%;
    display: none;
  }
  header .contact{
    width: 100%;
    max-width: 600px;
    padding: 10%;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  header .contact ul{
    flex-wrap: wrap;
  }
  header .contact ul li{
    width: 100%
  }
  header .contact ul li:nth-child(1){
    margin: 0 0 20px 0;
  }
  header .contact ul li:nth-child(1) span{
    left: 0;
    margin: 0 0 40px 0;
    text-align: center;
  }
  header .contact ul li:nth-child(1) a.button{
    width: 100%;
    padding: 10px 0;
    font-weight: normal;
    color: #fff;
    background: #6BBA59;
    box-shadow: 0px 3px 6px -4px #000000;
  }
  header .contact ul li:nth-child(1) a.button::before{
    position: absolute;
    left: 10px;
  }
  header .contact ul li:nth-child(1) a.button:hover{
    background: #5AD169;
  }
  header .contact ul li:nth-child(2){
    width: 100%;
  }
  header .contact ul li:nth-child(2) a.button{
    width: 100%;
  }
  header .contact ul li:nth-child(2) a.button::before{
    margin: auto;
    position: absolute;
    left: 10px;
  }
  header .contact ul li:nth-child(3){
    display: none;
  }

  nav{
    width: 100%;
    max-width: 600px;
    padding: 0 10% 10%;
    box-sizing: border-box;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  nav ul{
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  nav ul li{
    width: 100%;
    border-left: none;
    border-top: 1px dotted #8D8686
  }

  nav ul li:last-child{
    border-right: none;
    border-bottom: 1px dotted #8D8686;
  }

  .sp-nav, .sp-nav span
  .sp-contact, .sp-contact, span, .close-btn, .close-btn span{
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .sp-nav, .sp-contact, .close-btn{
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: 100;
  }
  .sp-nav{
    top: 0;
    right: 0;
    background: #4BAD74;
  }
  .sp-contact{
    top: 0;
    right: 60px;
    background: #6BBA59;
  }
  .sp-contact img{
    position: relative;
    top: -3px;
  }
  .close-btn{
    top: 0;
    right: 0;
    background: transparent;
  }
  .sp-nav span:nth-of-type(1){
    position: absolute;
    top: 11px;
    left: 15px;
    width: 30px;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
  }
  .sp-nav span:nth-of-type(2){
    position: absolute;
    top: 21px;
    left: 15px;
    width: 30px;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
  }
  .sp-nav span:nth-of-type(3){
    position: absolute;
    bottom: 25px;
    left: 15px;
    width: 30px;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
  }
  .sp-nav span:nth-of-type(4){
    position: absolute;
    bottom: 3px;
    left: 8px;
    font-size: 12px;
    color: #fff;
  }
  .sp-contact span:nth-of-type(1){
    position: absolute;
    top: 12px;
    left: 17px;
    width: 26px;
    height: 20px;
  }
  .sp-contact span:nth-of-type(2){
    position: absolute;
    bottom: 3px;
    left: 8px;
    font-size: 12px;
    color: #fff;
  }
  .close-btn span:nth-of-type(1){
    position: absolute;
    top: 11px;
    left: 15px;
    width: 30px;
    height: 4px;
    background-color: #4BAD74;
    border-radius: 4px;
    transform: translateY(10px) rotate(-45deg);
  }
  .close-btn span:nth-of-type(2){
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 30px;
    height: 4px;
    background-color: #4BAD74;
    border-radius: 4px;
    transform: translateY(-19px) rotate(45deg);
  }
  .close-btn span:nth-of-type(3){
    position: absolute;
    bottom: 3px;
    left: 13px;
    font-size: 12px;
    color: #4BAD74;
  }
  .glnav, .contact-wrap{
    margin: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 10000;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: rgba(255,255,255,0.95);
  }
  nav span{
    margin-top: 30px;
    display: block;
    font-size: 14px;
    text-align: center;
    color: #8D8686;
  }
  nav a.button{
    display: flex;
    margin-top: 10px;
    background: #e8837f;
  }
}



/*----------------------------------

フッター・ページトップボタン

----------------------------------*/

.topbtn{
  position:fixed;
  bottom:0;
  right:20px;
  display:block;
  text-decoration: none;
  transition: all 0s ease;
  -webkit-transition: all 0s ease;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #4BAD74;
}

.topbtn img{
  width: 50px;
  height: 60px;
}

.topbtn span{
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -webkit-tap-highlight-color: transparent;
}
.grass{
  width: 100%;
  height: 30px;
  margin: 120px 0 0 0;
  background-image: url(//www.kaigo-shien-kyokai.or.jp/img/bg-prairie.png);
  background-repeat: repeat-x;
}
footer{
  width: 100%;
  background: #fff;
}
footer .footer-content{
  padding: 60px 0 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .footer-logo{
  width: 265px;
  height: auto;
}
footer .footer-area{
  width: 49%;
  margin: 0 2% 0 0
}
footer .footer-area:nth-child(2){
  margin: 0;
}
footer .footer-address p{
  color: #8D8686;
}
footer .footer-address ul{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #8D8686;
}
footer .footer-address ul li{
  width: 185px;
}
footer .footer-address ul li a{
  color: #8D8686;
  background: transparent
}
footer .footer-address ul li a.button{
  width: auto;
  box-shadow: none;
}
footer .footer-address ul li a.icon-right::before{
  background: #D7D4D3;
}
footer .footer-address ul li a.icon-right::after{
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
footer .footer-address ul li a:hover{
  color: #5AD169;
  background: transparent;
  text-decoration: underline;
}
footer .footer-banner{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .footer-banner a{
  width: 100%;
  display: block;
}
footer .footer-banner a img{
  width: 100%;
  height: 100%;
  vertical-align: top;
}
footer .footer-banner a:hover{
  opacity: 0.7;
}
footer .footer-banner div{
  width: 49%;
  margin: 0 2% 0 0
}
footer .footer-banner div:nth-child(2){
  margin: 0;
}
footer .footer-banner div:nth-child(2) a{
  margin: 0 0 3.5% 0;
}
footer .copyright{
  width: 100%;
  margin: 30px 0 0 0;
  padding: 20px 0 20px 0;
  text-align: center;
  font-size: 14px;
  color: #8D8686;
  border-top: 1px solid #D7D4D3;
}

@media only screen and (max-width:1024px){
  footer .footer-area{
    width: 100%;
    margin: 0;
    text-align: center;
  }
  footer .footer-area ul li{
    width: 50%
  }
  footer .footer-area ul li:nth-child(2n){
    margin: 0;
  }
}
@media only screen and (max-width:619px){
  footer .footer-content .footer-area{
    width: 100%;
    margin: 0;
  }
  footer .footer-address p{
    margin: 0 0 30px 0;
    text-align: center;
  }
  footer .footer-address ul li{
    width: 100%;
    border-top: 1px solid #D7D4D3
  }
  footer .footer-address ul li:last-child{
    border-bottom: 1px solid #D7D4D3;
  }
  footer .footer-banner{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .footer-banner div{
    width: 100%;
    margin: 0
  }
  footer .footer-banner div:nth-child(2){
    margin: 0;
  }
  footer .footer-banner div:nth-child(2) a{
    margin: 3.5% 0 0 0;
  }
}



/*----------------------------------

トップページ

----------------------------------*/

.slide{
  width: 100%;
  height: 460px;
  max-width: 1920px;
}

.slide .swiper-slide img{
  display: none;
}
.slide .swiper-slide a{
  height: 100%;
  display: block;
  transition: all 0.3s ease;
}
.slide .swiper-slide a:hover{
  background: rgba(255,255,255,0.3);
}

/*.slide .swiper-slide:nth-child(1){
  background-image: url(//www.kaigo-shien-kyokai.or.jp/img/mainvis04-1.png);
  background-size: cover;
  background-position: center;
}*/
.slide .swiper-slide:nth-child(1){
  background-image: url(//www.kaigo-shien-kyokai.or.jp/img/mainvis01-1.png);
  background-size: cover;
  background-position: center;
}
.slide .swiper-slide:nth-child(2){
  background-image: url(//www.kaigo-shien-kyokai.or.jp/img/mainvis03-1.png);
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width:1024px){
/*  .slide .swiper-slide:nth-child(1){
    background-image: url(//www.kaigo-shien-kyokai.or.jp/img/mainvis04-2.png);
    background-size: cover;
    background-position: center;
  }*/
  .slide .swiper-slide:nth-child(1){
    background-image: url(//www.kaigo-shien-kyokai.or.jp/img/mainvis01-2.png);
    background-size: cover;
    background-position: center;
  }
  .slide .swiper-slide:nth-child(2){
    background-image: url(//www.kaigo-shien-kyokai.or.jp/img/mainvis03-2.png);
    background-size: cover;
    background-position: center;
  }
}
@media only screen and (max-width:768px){
  .slide .swiper-slide:nth-child(1),
  .slide .swiper-slide:nth-child(2),
  .slide .swiper-slide:nth-child(3){
    background: none;
  }
}

.slide .swiper-pagination-bullet{
  width: 18px;
  height: 18px;
  border-radius: 0;
  background-color: transparent;
  background-image: url(//www.kaigo-shien-kyokai.or.jp/img/icon-leaf@2x.png);
  background-size: cover;
  opacity: 0.5;
}

.slide .swiper-pagination-bullet-active{
  background-color: transparent;
  background-image: url(//www.kaigo-shien-kyokai.or.jp/img/icon-leaf@2x.png);
  opacity: 1;
}

.info .blog-title{
  height: 400px;
  margin: 0 0 40px 0;
  overflow-y: scroll;
}

.info .blog-title ul{
  margin: 0;
  padding: 0;
}

.info .blog-title ul li{
  background: #fff;
}

.info .blog-title ul li span:nth-child(1){
  width: auto;
  padding: 25px 40px;
  display: block;
  color: #333;
  background: #fff;
}

.info .blog-title ul li span:nth-child(1) span{
  display: block
}

.info .blog-title ul li span:nth-child(1) span:nth-child(1){
  padding: 0;
  color: #8D8686;
}

.info .blog-title ul li span:nth-child(1) span:nth-child(2){
  margin: 5px 0 10px 0;
  /* overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
}

.info .blog-title ul li span:nth-child(1) span:nth-child(3){
  padding: 0 15px;
  display: inline-block;
  color: #fff;
  background: #4D4D4D;
}

.info .blog-title ul li span:nth-child(1).icon-right::before{
  background: #4BAD74;
}

.info .blog-title ul li span:nth-child(1).icon-right::after{
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.info .blog-title ul li + li{
  margin: 2px 0 0 0;
}

.info .blog-cat ul{
  width: 495px;
  margin: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}

.info .blog-cat ul li{
  width: 240px
}

.info .blog-cat ul li:nth-child(odd){
  margin: 0 15px 15px 0;
}

.activity .activity-list ul{
  margin: 0 0 40px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.activity .activity-list ul li{
  width: 30%
}

.activity .activity-list ul li + li{
  margin: 0 0 0 5%;
}

.activity p{
  margin: 0 0 40px 0;
  text-align: center;
}

.activity .activity-btn ul{
  width: 495px;
  margin: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}

.activity .activity-btn ul li{
  width: 240px
}

.activity .activity-btn ul li:nth-child(odd){
  margin: 0 15px 15px 0;
}

.activity .activity-btn ul li:nth-child(2) a{
  background: #F0990E;
}

.activity .activity-btn ul li:nth-child(2) a::after{
  border-top: 2px solid #F0990E;
  border-right: 2px solid #F0990E;
}

.activity .activity-btn ul li:nth-child(2) a:hover{
  background: #FFAA00;
}

.activity .activity-btn ul li:nth-child(2) a:hover::after{
  border-top: 2px solid #FFAA00;
  border-right: 2px solid #FFAA00;
}

@media only screen and (max-width:768px){
  .slide{
    height: auto;
  }
  .slide .swiper-slide img{
    display: block;
  }
  .slide .swiper-slide:nth-child(1){
    background-image: none;
  }
  .slide .swiper-slide:nth-child(2){
    background-image: none;
  }
  .slide .swiper-slide:nth-child(3){
    background-image: none;
  }
  .info .blog-title{
    height: 280px;
  }
  .info .blog-cat ul{
    width: 100%;
  }
  .info .blog-cat ul li{
    width: 80%;
    margin: 0 0 15px 0
  }
  .info .blog-cat ul li:nth-child(odd){
    margin: 0 0 15px 0;
  }
  .activity p{
    margin: 0 0 40px 0;
    text-align: center;
  }
  .activity .activity-btn ul{
    width: 100%;
  }
  .activity .activity-btn ul li{
    width: 80%
  }
  .activity .activity-btn ul li:nth-child(odd){
    margin: 0 0 15px 0;
  }
  .activity .activity-btn ul li:nth-child(2) a{
    background: #F0990E;
  }
  .activity .activity-btn ul li:nth-child(2) a::after{
    border-top: 2px solid #F0990E;
    border-right: 2px solid #F0990E;
  }
}
@media only screen and (max-width:619px){
  .activity .activity-list ul li{
    width: 100%
  }
  .activity .activity-list ul li + li{
    margin: 0;
  }
}



/*----------------------------------

下層ページ

----------------------------------*/

.page-tab, .entry ul, .news ul{
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-tab li, .entry ul li, .news ul li{
  width: 18%;
  margin: 0 2.5% 0 0;
}

.page-tab li a.button, .entry ul li a.button, .news ul li a.button{
  width: 100%;
  border: 2px solid #4BAD74
}

.page-tab li a.button:hover, .entry ul li a.button:hover, .news ul li a.button:hover{
  border: 2px solid #5AD169;
}

.page-tab li:last-child, .entry ul li:last-child, .news ul li:last-child{
  margin: 0;
}

.page-tab li.active a.button, .entry ul li.active a.button, .news ul li.active a.button{
  color: #4BAD74;
  border: 2px solid #4BAD74;
  background: #fff;
}

.page-tab li.active a::before, .entry ul li.active a::before, .news ul li.active a::before{
  background: #4BAD74;
}

.page-tab li.active a::after, .entry ul li.active a::after, .news ul li.active a::after{
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.about #access p, .about #access h4, .about #access h5, .about #access dl{
  width: 70%;
  margin: auto;
}

.about #access h4{
  margin: 50px auto 0;
}

.about #access h5{
  margin: 25px auto 0;
}

.about #access a{
  margin: 50px auto 0;
  width: 240px;
}

.about #access .map{
  width: 100%;
  max-width: 960px;
  height: 300px;
  margin: auto;
  overflow: hidden;
  border: 0;
  background-color: transparent;
}

.about #access dl{
  margin: 30px auto 50px;
  box-sizing: border-box;
  border-bottom: 1px solid #E5E2E0;
  background: #F3F0EE;
}

.about #access dl dt{
  width: 10em;
  padding: 15px 15px 0 15px;
  float: left;
  box-sizing: border-box;
  border-top: 1px solid #E5E2E0;
}

.about #access dl dd{
  margin: 0 0 0 10em;
  padding: 15px;
  box-sizing: border-box;
  border-top: 1px solid #E5E2E0;
  background: #fff;
}

.greeting h3{
  margin: 0 0 80px 0;
}

.greeting .greeting-mainvis{
  width: 125%;
  height: 280px;
  margin: 0 0 50px -12.5%;
  position: relative;
  background: #EAF5E9;
}

.greeting .greeting-mainvis img{
  width: 464px;
  height: auto;
  max-height: 280px;
  position: absolute;
  right: 5%;
  bottom: 0;
}

/*
.news{
  .news-content{
    padding: 0 0 40px 0;
    border-bottom: 1px solid #D7D4D3;
    .news-info{
      margin: 0 0 40px 0;
      .date{
        margin: 0 20px 0 0;
        display: inline-block;
        font-size: 14px;
      }
      .category{
        padding: 0 15px;
        display: inline-block;
        font-size: 14px;
        color: #fff;
        background: #0D1E3D;
      }
    }
    img{
      width: auto;
      max-width: 80%;
      min-width: 288px;
      height: auto;
      margin: 0 auto 10px;
      display: block;
    }
  }
}
*/

.news .news-article{
  padding: 0 0 40px 0;
  border-bottom: 1px solid #D7D4D3;
}

.news img{
  width: auto;
  max-width: 80%;
  min-width: 288px;
  height: auto;
  margin: 0 auto 10px;
  display: block;
}

.entry p:first-child{
  margin-top: 0;
}

.entry ul{
  margin-top: 50px;
}

.entry .orange-txt{
  font-weight: bold;
  color: #F0990E;
}

.issue .issue-btn ul{
  width: 595px;
  margin: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}

.issue .issue-btn ul li{
  width: 290px
}

.issue .issue-btn ul li:nth-child(odd){
  margin: 0 15px 15px 0;
}

.issue .download-link{
  margin: 0 0 30px 0;
  display: block;
}

.issue .issue-list{
  padding: 0 0 40px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #D7D4D3;
}

.issue .issue-list .issue-title{
  width: 100%;
}

.issue .issue-list .issue-title h4{
  margin: 0 0 25px 0;
}

.issue .issue-list .issue-title .sold-out{
  margin: 0 0 10px 0;
  padding: 0 15px;
  display: inline-block;
  font-weight: bold;
  color: #F0990E;
  border: 2px solid #F0990E;
}

.issue .issue-list .sp-issue-txt{
  display: none;
}

.issue .issue-list .issue-txt{
  width: 60%;
  margin: 0 5% 0 0;
}

.issue .issue-list .issue-txt h5{
  margin: 0 0 25px 0;
}

.issue .issue-list .issue-txt dl{
  margin: 0 0 2rem 0;
  padding: 0;
  border-right: none;
  border-bottom: none;
  border-left: none;
  background: transparent;
}

.issue .issue-list .issue-txt dl dt{
  width: 6rem;
  margin: 0;
  padding: 0;
  float: left;
  clear: both;
  border-top: none;
}

.issue .issue-list .issue-txt dl dd{
  margin: 0 0 0 6rem;
  padding: 0;
  border-top: none;
  border-left: none;
  background: transparent;
}

.issue .issue-list .issue-txt dl dd + dt{
  margin-top: 15px
}

.issue .issue-list .issue-txt dl dd + dt + dd{
  margin-top: 15px;
}

.issue .issue-list span.button{}

.issue .issue-list span.button.active{
  color: #4BAD74;
  border: 2px solid #4BAD74;
  background: #fff;
}

.issue .issue-list .issue-img{
  width: 35%;
}

.issue .issue-list + .issue-list{
  margin-top: 80px;
}

.course .course-list{
  padding: 0 0 40px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #D7D4D3;
}

.course .course-list .course-title{
  width: 100%;
}

.course .course-list .course-title h4{
  margin: 0 0 25px 0;
}

.course .course-list .sp-course-txt{
  display: none;
}

.course .course-list .course-txt{
  width: 60%;
  margin: 0 5% 0 0;
}

.course .course-list .course-txt p:first-child{
  margin-top: 0;
}

.course .course-list .course-txt h5{
  margin: 0 0 25px 0;
}

.course .course-list .course-detail{
  width: 35%;
}

.course .course-list .course-detail dl{
  margin: 0 0 30px 0;
  padding: 0 0 15px 0;
  border-right: none;
  border-bottom: 1px solid #E5E2E0;
  border-left: none;
  background: transparent;
}

.course .course-list .course-detail dl dt{
  width: 100%;
  margin: 0 0 15px 0;
  padding: 15px;
  box-sizing: border-box;
  border-top: 1px solid #E5E2E0;
  background: #F3F0EE;
}

.course .course-list .course-detail dl dd{
  width: 100%;
  margin: 0;
  padding: 0 15px;
  box-sizing: border-box;
  border-top: none;
  border-left: none;
  background: transparent
}

.course .course-list .course-detail dl dd+dt{
  margin: 15px 0;
}

.course .course-list span.button{}

.course .course-list span.button.active{
  color: #4BAD74;
  border: 2px solid #4BAD74;
  background: #fff;
}

.course .course-list + .course-list{
  margin-top: 80px;
}

.member .slide .swiper-slide:nth-child(1){
  background-image: url(//www.kaigo-shien-kyokai.or.jp/img/membervis01-1.png);
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width:1024px){
  .member .slide .swiper-slide:nth-child(1){
    background-image: url(//www.kaigo-shien-kyokai.or.jp/img/membervis01-2.png);
    background-size: cover;
    background-position: center;
  }
}
@media only screen and (max-width:768px){
  .member .slide .swiper-slide:nth-child(1){
    background-image: none;
  }
}

.listening .listening-introduction{
  margin: 0 0 80px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.listening .listening-introduction .listening-txt{
  width: 60%;
  margin: 0 5% 0 0;
}

.listening .listening-introduction .listening-img{
  width: 35%;
}

.listening .listening-download h4{
  margin: 50px 0 15px 0;
  display: inline-block;
}

.listening .listening-download span{
  margin: 0 0 0 10px;
  display: inline-block
}

.listening .listening-download span:nth-child(3){
  padding: 0 15px;
  border: 2px solid #4D4D4D;
}

.listening .listening-download ul{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.listening .listening-download ul li{
  width: 32%;
  margin: 0 2% 2% 0;
  border-bottom: 1px solid #D7D4D3;
}

.listening .listening-download ul li a{
  width: 240px;
  margin: auto;
}

.listening .listening-download ul li a+a{
  margin: 15px auto;
}

.listening .listening-download ul li:nth-child(3n){
  margin: 0 0 2% 0;
}

@media only screen and (max-width:1024px){
  .page-tab, .entry ul, .news ul{
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .page-tab li, .entry ul li, .news ul li{
    width: 32%;
    margin: 0 2% 15px 0
  }
  .page-tab li:nth-child(3n), .entry ul li:nth-child(3n), .news ul li:nth-child(3n){
    margin: 0;
  }

  .about #access p, .about #access h4, .about #access h5, .about #access dl{
    width: 100%;
  }

  .about #access h4{
    margin: 50px auto 0;
  }

  .about #access h5{
    margin: 25px auto 0;
  }

  .about #access dl{
    width: 100%;
    margin: 30px auto 50px;
    border-bottom: none;
    background: #F3F0EE;
  }

  .about #access dl dt{
    width: 100%;
    padding: 15px;
    float: none;
    border-top: none;
  }

  .about #access dl dd{
    margin: 0;
    border-top: none;
  }

  .issue .issue-btn ul{
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .issue .issue-btn ul li{
    width: 100%
  }

  .issue .issue-btn ul li:nth-child(odd){
    margin: 0 0 15px 0;
  }

  .issue .issue-list .sp-issue-txt{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-order: 4;
    order: 4;
  }

  .issue .issue-list .issue-txt{
    width: 100%;
    display: none;
    -ms-flex-order: 3;
    order: 3;
  }

  .issue .issue-list .issue-txt dl dt{
    width: 4rem;
  }

  .issue .issue-list .issue-txt dl dd{
    margin: 0 0 0 4rem;
  }

  .issue .issue-list .issue-img{
    width: 100%;
    max-width: 300px;
    margin: 0 auto 25px;
    -ms-flex-order: 2;
    order: 2;
  }

  .issue .issue-list + .issue-list{
    margin: 40px 0 0 0;
  }

  .course .course-list .sp-course-txt{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-order: 4;
    order: 4;
  }

  .course .course-list .course-txt{
    width: 100%;
    display: none;
    -ms-flex-order: 3;
    order: 3;
  }

  .course .course-list .course-txt dl dt{
    width: 4rem;
  }

  .course .course-list .course-txt dl dd{
    margin: 0 0 0 4rem;
  }

  .course .course-list .course-detail{
    width: 100%;
    margin: 0 auto 25px;
    -ms-flex-order: 2;
    order: 2;
  }

  .course .course-list + .course-list{
    margin: 40px 0 0 0;
  }

  .listening .listening-download ul li{
    width: 48%;
    margin: 0 4% 15px 0
  }

  .listening .listening-download ul li:nth-child(3n){
    margin: 0 4% 15px 0;
  }

  .listening .listening-download ul li:nth-child(2n){
    margin: 0 0 15px 0;
  }
}

@media only screen and (max-width:768px){
  .page-tab li, .entry ul li, .news ul li{
    width: 48%;
    margin: 0 4% 15px 0
  }
  .page-tab li:nth-child(2n), .entry ul li:nth-child(2n), .news ul li:nth-child(2n){
    margin: 0 0 15px 0;
  }
  .page-tab li:nth-child(3n), .entry ul li:nth-child(3n), .news ul li:nth-child(3n){
    margin: 0 auto 15px 0;
  }

  .greeting .greeting-mainvis{
    width: 111%;
    height: 193px;
    margin: 0 0 30px -5.5%;
  }

  .greeting .greeting-mainvis img{
    width: 320px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .listening .listening-introduction .listening-txt{
    width: 100%;
  }

  .listening .listening-introduction .listening-img{
    width: 100%;
  }

  .listening .listening-download h4{
    margin: 30px 0 15px 0;
    display: inline-block;
  }

  .listening .listening-download ul li{
    width: 100%;
    margin: 0;
  }

  .listening .listening-download ul li a{
    width: 100%;
  }

  .listening .listening-download ul li:nth-child(3n){
    margin: 0 0 15px 0;
  }

  .listening .listening-download ul li:nth-child(2n){
    margin: 0 0 15px 0;
  }

  .listening .listening-download ul li:last-child{
    margin: 0 0 0 0;
  }
}

/* add 2020/08/25 */
#doc0825 object { display:none; }

