@charset 'UTF-8';

#hero>div h2 .pc{
  display: none;
}
#hero>div h2 .sp{
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  align-items: flex-start;
}
#hero>div h2 div span:not(:first-of-type){
  margin-right: .4rem;
}
#hero>div h2 div span img{
  width: 2.3rem;
}
#hero>div h2 div span:nth-of-type(2) img{
  width: 2.2rem;
}
@media screen and (min-width: 768px){
  #hero>div h2 .sp{
    display: none;
  }
  #hero>div h2 .pc{
    display: block;
  }
  #hero>div h2 div span img{
    width: 3.4rem;
  }
}

main>article>.wrapper{
  padding-top: 5.5rem;
  padding-bottom: 8.0rem;
}
main>article>.wrapper .lead{
  display: none;
}
#fromstafflist{
  padding-top: 0;
  padding-bottom: 5.0rem;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
}
#fromstafflist>section{
  padding: 0 0 .7rem 0;
  margin-bottom: calc(26 / 1100 * 100%);
  flex-basis: calc(149 / 375 * 100vw);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
#fromstafflist>section:last-of-type:nth-of-type(4n+2){
  margin-right: calc(562.6666 / 1100 * 100%);
}
#fromstafflist>section:last-of-type:nth-of-type(4n+3){
  margin-right: calc(281.3333 / 1100 * 100%);
}
#fromstafflist section h3{
  padding: .8rem 0;
  font-size: 1.3rem;
  line-height: 1.69;
  font-weight: 500;
  margin: 0;
  letter-spacing: calc(1 / 20 * 1em);
  text-align: left;
  color: rgb(0, 104, 61);
}
#fromstafflist section time{
  padding-top: 1.6rem;
  font-family: 'Josefin Sans';
  font-size: 1.2rem;
  line-height: 1.19;
  letter-spacing: calc(0.8 / 16 * 1em);
  color: rgb(0, 104, 61);
}
#fromstafflist section label{
  cursor: pointer;
}
#fromstafflist section input[type='checkbox']{
  display: none;
}
#fromstafflist section .image{
  position: relative;
  transition: opacity .4s;
}
#fromstafflist section label:hover input:not(:checked)+.image{
  opacity: 0.75;
}
#fromstafflist section .image::before{
  content: '';
  display: block;
  padding-top: 100%;
}
#fromstafflist section input:checked+.image{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
}
#fromstafflist section .image img{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#fromstafflist section input:checked+.image img{
  -webkit-animation: fadein .4s;
  animation: fadein .4s;
  min-height: 0;
  -o-object-fit: fill;
  object-fit: fill;
  max-width: 100%;
  max-height: 100%;
}
@-webkit-keyframes fadein{
  0%{
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    opacity: 0;
  }
  100%{
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadein{
  0%{
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    opacity: 0;
  }
  100%{
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
#pagination{
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
#pagination ul{
  padding: 0 1.0rem;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
#pagination ul li, #pagination .arrow{
  margin: 0 .4rem;
  width: 3.6rem;
  height: 3.6rem;
}
#pagination ul li a, #pagination .arrow a{
  display: block;
  height: 100%;
  box-sizing: border-box;
  font-family: 'Josefin Sans';
  font-size: 1.5rem;
  line-height: 2.222;
  text-align: center;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 104, 61);
  transition: background-color .4s;
}
#pagination ul li.current a,
#pagination ul li a:hover,#pagination .arrow a:hover{
  background-color: rgb(86, 182, 0);
}
#pagination ul li a{
  padding-top: .3rem;
}
#pagination .arrow a{
  padding-top: .1rem;
  white-space: nowrap;
  overflow: hidden;
}
#pagination .arrow a::before{
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
#pagination .arrow .prev::before{
  content: '<';
}
#pagination .arrow .next::before{
  content: '>';
}
@media screen and (min-width: 768px){
  main>article>.wrapper{
    padding-top: 15.0rem;
    padding-bottom: 15.0rem;
  }
  main>article>.wrapper .lead{
    display: block;
    margin: 0;
    font-size: 2.8rem;
    line-height: 1.57;
    letter-spacing: calc(1.4 / 28 * 1em);
    text-align: center;
    color: rgb(86, 182, 0);
  }
  #fromstafflist{
    padding-top: 6.7rem;
    padding-bottom: 10.5rem;
  }
  #fromstafflist>section{
    flex-basis: calc(256 / 1100 * 100%);
  }
  #fromstafflist section h3{
    padding: .6rem 0;
    font-size: 2.0rem;
    line-height: 1.5;
    font-weight: normal;
  }
  #fromstafflist section time{
    padding-top: 2.3rem;
    font-size: 1.6rem;
  }
  #pagination ul{
    padding: 0 1.5rem;
  }
  #pagination ul li, #pagination .arrow{
    margin: 0 .5rem;
    width: 4.0rem;
    height: 4.0rem;
  }
  #pagination ul li a, #pagination .arrow a{
    font-size: 1.8rem;
  }

}
