@charset "UTF-8";
@media (max-width: 520px) {
  main::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 105%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 70vw, rgb(255, 255, 255) 80vw);
    z-index: 1;
  }
}
main .inner {
  padding-top: 70px;
  z-index: 1;
}
@media (max-width: 920px) {
  main .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 520px) {
  main .inner {
    width: 90%;
    padding-top: 100px;
  }
}
main .btnwrap {
  width: 100%;
  display: flex;
  justify-content: start;
  margin: 2rem auto;
}
@media (max-width: 920px) {
  main .btnwrap {
    align-items: start;
    gap: 1rem 0;
  }
}
@media (max-width: 520px) {
  main .btnwrap {
    width: 100%;
    flex-direction: row;
    margin: 3rem auto 5rem;
    justify-content: center;
  }
}
main .btnwrap a {
  display: flex;
  justify-content: center;
  width: 160px;
  padding: 1rem 2.5rem;
  margin-right: 1rem;
  font-size: 0.8em;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 3px;
  transition: 0.3s;
  position: relative;
}
main .btnwrap a::after {
  content: "";
  rotate: 45deg;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  position: absolute;
  top: 55%;
  left: 90%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media (max-width: 520px) {
  main .btnwrap a {
    padding: 1rem 0.5rem;
    width: 140px;
  }
}
main .btnwrap a:last-child {
  margin-right: 0;
}
main .btnwrap a:hover {
  color: #fff;
  background-color: var(--primary);
}
main .btnwrap a:hover::after {
  border-color: #fff;
}

#news {
  display: flex;
  justify-content: space-between;
  padding: 0;
  height: 250px;
}
@media (max-width: 920px) {
  #news {
    width: 90%;
    height: 100%;
    flex-direction: column;
  }
}
#news .info,
#news .event {
  display: block;
  width: calc(50% - 2rem);
  height: 250px;
}
@media (max-width: 920px) {
  #news .info,
#news .event {
    width: 100%;
    margin-bottom: 4rem;
  }
}
#news .info p a,
#news .event p a {
  display: flex;
  align-items: start;
  font-size: 1.5rem;
  line-height: 1.5;
  width: 100%;
  transition: 0.3s;
}
@media (max-width: 520px) {
  #news .info p a,
#news .event p a {
    font-size: 1.3rem;
  }
}
#news .info p a span,
#news .event p a span {
  width: 75%;
  margin-left: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#news .info p a span.date,
#news .event p a span.date {
  width: 20%;
  min-width: 90px;
  overflow: none;
  text-overflow: clip;
  white-space: wrap;
  text-align: center;
}
#news .info h3,
#news .event h3 {
  font-size: 2.4rem;
  font-weight: 600;
}
#news .info h4,
#news .event h4 {
  font-size: 1.8rem;
  width: 100%;
}
#news .info .ttlBox,
#news .event .ttlBox {
  display: flex;
  justify-content: space-between;
  border-bottom: var(--primary) solid 1px;
}
#news .info .ttlBox a,
#news .event .ttlBox a {
  width: 80px;
  height: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 520px) {
  #news .info .ttlBox a,
#news .event .ttlBox a {
    margin-bottom: 1rem;
  }
}
#news .info .ttlBox a::after,
#news .event .ttlBox a::after {
  content: "";
  position: absolute;
  width: 100%;
  min-width: 80px;
  height: 100%;
  background-image: url("../../img/common/more.svg");
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transition: 0.3s;
}
#news .info .ttlBox a:hover,
#news .event .ttlBox a:hover {
  color: var(--primary);
}
#news .info .ttlBox a:hover::after,
#news .event .ttlBox a:hover::after {
  background-image: url("../../img/common/more_hover.svg");
}
#news .info .infoTxt {
  height: 200px;
  overflow-y: scroll;
}
#news .info .infoTxt::-webkit-scrollbar {
  display: none;
}
#news .info .infoTxt p a {
  display: flex;
  justify-content: space-between;
  padding: 1.7rem 0;
  border-bottom: #EFEFEF solid 1px;
  transition: 0.3s;
}
#news .info .infoTxt p a:hover {
  background-color: var(--background);
}
#news .event {
  height: 100%;
}
#news .event .eventBox a {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  transition: 0.3s;
}
#news .event .eventBox a:hover {
  background-color: var(--background);
}
#news .event .eventBox a .eventTxt {
  width: 60%;
  min-width: 120px;
}
#news .event .eventBox a figure {
  width: 50%;
  height: 100%;
  max-height: 170px;
  overflow: hidden;
  border: solid 2px #efefef;
  position: relative;
}
@media (max-width: 520px) {
  #news .event .eventBox a figure {
    width: 50%;
  }
}
#news .event .eventBox a figure img {
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
#news .event .eventBox a figure span {
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary);
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  border-radius: 50%;
  transition: 0.3s;
  opacity: 0.7;
}
#news .event .eventBox a figure span::after {
  content: "";
  position: absolute;
  display: inline-block;
  rotate: 45deg;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  bottom: 0.8rem;
  right: 0.5rem;
  transition: 0.3s;
}
#news .event .eventBox a figure span::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  bottom: 1.2rem;
  right: 0.5rem;
  background-color: var(--primary);
  transition: 0.3s;
}
#news .event .eventBox a figure span:hover {
  color: #fff;
  background-color: var(--primary);
}
#news .event .eventBox a figure span:hover::after {
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
#news .event .eventBox a figure span:hover::before {
  background-color: #fff;
}

#cats {
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 920px) {
  #cats {
    padding: 5rem 0;
  }
}
@media (max-width: 520px) {
  #cats {
    padding-bottom: 10rem;
  }
}
@media (max-width: 520px) {
  #cats .inner {
    width: 90%;
    margin-bottom: 0 auto;
  }
}
#cats .ttlBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 8.6rem;
}
@media (max-width: 520px) {
  #cats .ttlBox {
    margin-bottom: 5rem;
  }
}
#cats .ttlBox h3 {
  font-size: 3.4rem;
  font-weight: 600;
}
@media (max-width: 520px) {
  #cats .ttlBox h3 {
    font-size: 3rem;
  }
}
#cats .ttlBox h3 span {
  font-size: 0.5em;
  display: block;
  line-height: 1;
}
#cats .ttlBox h3 em {
  color: var(--primary);
}
#cats .ttlBox a.moreBtn {
  width: 100px;
  height: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#cats .ttlBox a.moreBtn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../../img/common/more.svg");
  background-size: cover auto;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transition: 0.3s;
}
#cats .ttlBox a.moreBtn:hover {
  color: var(--primary);
}
#cats .ttlBox a.moreBtn:hover::after {
  background-image: url("../../img/common/more_hover.svg");
}

#people {
  padding: 100px 0;
  background-color: #FEFCEF;
}
#people .inner {
  width: 90%;
}
@media (max-width: 920px) {
  #people {
    width: 100%;
    padding: 5rem 0;
  }
}
@media (max-width: 520px) {
  #people {
    width: 100%;
  }
}
#people h3 {
  font-size: 3.4rem;
  margin-bottom: 3rem;
}
@media (max-width: 520px) {
  #people h3 {
    font-size: 3rem;
  }
}
#people h3 span {
  font-size: 0.5em;
  display: block;
  line-height: 1;
}
#people h3 em {
  color: var(--primary);
}
#people p.slidttl {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--black);
  display: none;
}
@media (max-width: 920px) {
  #people p.slidttl {
    display: block;
  }
}
#people .ttl_lead {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

/*==================================================
スライダーのためのcss
===================================*/
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 6rem;
}
@media (max-width: 920px) {
  .container {
    flex-direction: column-reverse;
    align-items: start;
    width: 100%;
  }
}
@media (max-width: 520px) {
  .container {
    width: 100%;
  }
}
.container .slider_02, .container .slider_03 {
  position: relative;
  width: 90%;
}
@media (max-width: 920px) {
  .container .slider_02, .container .slider_03 {
    width: 100%;
  }
}
.container .slider_02.slick-none, .container .slider_03.slick-none {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0 1rem;
}
.container .slider_02.slick-none .itemBox, .container .slider_03.slick-none .itemBox {
  width: calc((100% - 4rem) / 3);
  margin: 0;
}
@media (max-width: 920px) {
  .container .slider_02.slick-none .itemBox, .container .slider_03.slick-none .itemBox {
    width: calc((100% - 2rem) / 2);
  }
}
@media (max-width: 520px) {
  .container .slider_02.slick-none .itemBox, .container .slider_03.slick-none .itemBox {
    width: 100%;
  }
}
.container .slider_02 .itemBox, .container .slider_03 .itemBox {
  width: calc((100% - 4rem) / 3);
  display: flex;
  background: #fff;
  border: #EFEFEF solid 1px;
  margin: 0 1rem;
}
@media (max-width: 920px) {
  .container .slider_02 .itemBox, .container .slider_03 .itemBox {
    width: calc((100% - 2rem) / 2);
  }
}
@media (max-width: 520px) {
  .container .slider_02 .itemBox, .container .slider_03 .itemBox {
    width: 100%;
  }
}
.container .slider_02 .itemBox a, .container .slider_03 .itemBox a {
  display: flex;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 0.3s;
  position: relative;
}
.container .slider_02 .itemBox a::after, .container .slider_03 .itemBox a::after {
  display: inline-block;
  content: "";
  rotate: 45deg;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
.container .slider_02 .itemBox a:hover, .container .slider_03 .itemBox a:hover {
  opacity: 0.5;
}
.container .slider_02 .itemBox a figure, .container .slider_03 .itemBox a figure {
  width: 45%;
  height: 200px;
}
@media (max-width: 920px) {
  .container .slider_02 .itemBox a figure, .container .slider_03 .itemBox a figure {
    min-width: 120px;
  }
}
.container .slider_02 .itemBox a figure img, .container .slider_03 .itemBox a figure img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.container .slider_02 .itemBox a .txtBox, .container .slider_03 .itemBox a .txtBox {
  width: 55%;
  padding: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: max(55%, 100px);
}
.container .slider_02 .itemBox a .txtBox .ttl, .container .slider_03 .itemBox a .txtBox .ttl {
  font-size: 1.5rem;
}
.container .slider_02 .itemBox a .txtBox .txt, .container .slider_03 .itemBox a .txtBox .txt {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 520px) {
  .container .slider_02 .itemBox a .txtBox .txt, .container .slider_03 .itemBox a .txtBox .txt {
    font-size: 1.3rem;
  }
}
.container .slider_02 .itemBox a .txtBox .date, .container .slider_03 .itemBox a .txtBox .date {
  font-size: 1.2rem;
}
.container .slider_02 .slick-prev,
.container .slider_02 .slick-next, .container .slider_03 .slick-prev,
.container .slider_03 .slick-next {
  z-index: 2;
  position: absolute;
  width: 4rem;
  height: 4rem;
  border: #666 solid 1px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 920px) {
  .container .slider_02 .slick-prev,
.container .slider_02 .slick-next, .container .slider_03 .slick-prev,
.container .slider_03 .slick-next {
    width: 3rem;
    height: 3rem;
  }
}
.container .slider_02 .slick-prev::before,
.container .slider_02 .slick-next::before, .container .slider_03 .slick-prev::before,
.container .slider_03 .slick-next::before {
  content: "";
  display: inline-block;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(-135deg);
}
.container .slider_02 .slick-prev, .container .slider_03 .slick-prev {
  bottom: 0;
  right: 0;
  transform: translateX(-155%) translateY(120%);
}
.container .slider_02 .slick-next, .container .slider_03 .slick-next {
  bottom: 0;
  right: 0;
  transform: translateX(-1rem) translateY(120%) rotate(180deg);
}
.container .more {
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 920px) {
  .container .more {
    width: 100%;
    flex-direction: row;
  }
}
.container .more p {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
}
@media (max-width: 920px) {
  .container .more p {
    padding: 0 1rem;
  }
}
.container .more a {
  width: 80px;
  height: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  z-index: 2;
}
@media (max-width: 920px) {
  .container .more a {
    display: none;
  }
}
.container .more a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../../img/common/more.svg");
  background-size: cover auto;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transition: 0.3s;
}
.container .more a:hover {
  color: var(--primary);
}
.container .more a:hover::after {
  background-image: url("../../img/common/more_hover.svg");
}
.container .more a span {
  display: block;
}

#action {
  padding: 10rem 0;
}
@media (max-width: 920px) {
  #action {
    padding-bottom: 12rem;
  }
}
@media (max-width: 520px) {
  #action {
    padding: 5rem 0;
  }
}
@media (max-width: 520px) {
  #action .inner {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 6rem;
  }
}
#action h3 {
  font-size: 3.4rem;
  margin-bottom: 5rem;
}
#action h3 span {
  font-size: 0.5em;
  display: block;
  line-height: 1;
}
#action h3 em {
  color: var(--primary);
}
#action .conBox {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 920px) {
  #action .conBox {
    flex-direction: column;
    position: relative;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
#action .conBox p {
  width: 80%;
  font-size: 1.6rem;
}
@media (max-width: 920px) {
  #action .conBox p {
    font-size: 1.3rem;
    width: 100%;
    margin-bottom: 4rem;
  }
}
#action .conBox figure {
  width: 550px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 920px) {
  #action .conBox figure {
    width: 100%;
    margin-bottom: 4rem;
  }
}
#action .conBox figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#action .conBox .imgBox {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 170px;
  margin: 5rem auto 0;
  font-weight: 600;
}
@media (max-width: 920px) {
  #action .conBox .imgBox {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
}
#action .conBox .imgBox p {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  width: 210px;
  letter-spacing: 0.5rem;
}
#action .conBox .imgBox .iconBox {
  display: flex;
  justify-content: space-between;
  gap: 0 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 920px) {
  #action .conBox .imgBox .iconBox {
    gap: 0 2rem;
  }
}

.sns {
  background-color: #f1f1f1;
  padding: 5rem 0;
}
.sns .twitterWrap {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}
.sns .twitterWrap p {
  text-align: center;
  margin-bottom: 1rem;
}/*# sourceMappingURL=style.css.map */