@charset "UTF-8";
.slider2 {
  width: 100%;
  margin: 0 auto;
}
.slider2 img {
  width: 60vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
  margin: 0 1rem;
}
.slider2 .slick-slide {
  transform: scale(1); /*左右の画像のサイズを80%に*/
  transition: all 0.5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 1;
}
.slider2 .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 2rem 0 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 0.5rem;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 0.8rem; /*ドットボタンのサイズ*/
  height: 0.8rem; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}
.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

html {
  font-size: 10px;
  color: #222;
}

body {
  padding-top: 7.129rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 5rem;
  }
}
body p {
  font-size: 1.4rem;
}
body .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  body .sp {
    display: block;
  }
}
body .pc {
  display: block;
}
@media screen and (max-width: 768px) {
  body .pc {
    display: none;
  }
}
body .sub-title {
  padding: 10rem 0 8rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body .sub-title {
    padding: 5rem 0 4rem 0;
  }
}
body .sub-title h2 {
  font-size: 3.8rem;
}
@media screen and (max-width: 768px) {
  body .sub-title h2 {
    font-size: 2.6rem;
  }
}
body .sub-title p {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  body .sub-title p {
    font-size: 1.2rem;
    line-height: 1.75;
    margin-top: 2.5rem;
  }
}
body .container {
  max-width: 128rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body .container {
    max-width: 90%;
  }
}

header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 2px #e5e5e5;
}
header .pc-nav {
  height: 100%;
  max-width: 128rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  header .pc-nav {
    display: none;
  }
}
header .pc-nav .logo_a img {
  max-width: 20rem;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  header .pc-nav .logo_a img {
    max-width: 15rem;
    padding: 1rem 0;
  }
}
header .pc-nav .pc-ul {
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header .pc-nav .pc-ul {
    display: none;
  }
}
header .pc-nav .pc-ul li {
  padding: 0 2.3rem;
}
header .pc-nav .pc-ul li:nth-child(1) {
  border-left: 0.2rem solid #70549f;
}
header .pc-nav .pc-ul li:nth-child(2) {
  border-left: 0.2rem solid #00a0ae;
}
header .pc-nav .pc-ul li:nth-child(3) {
  border-left: 0.2rem solid #f9bf11;
}
header .pc-nav .pc-ul li:nth-child(4) {
  border-left: 0.2rem solid #e84709;
}
header .pc-nav .pc-ul li:nth-child(5) {
  border-left: 0.2rem solid #00a0ae;
}
header .pc-nav .pc-ul li a {
  display: inline-block;
  margin-right: auto;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 1rem 0;
  color: #222;
}
header .pc-nav .pc-ul li a img {
  width: 100%;
  max-width: 19.4rem;
}
header .sp-nav {
  height: 100%;
  width: 100%;
  z-index: 10;
}
header .sp-nav .logo_a img {
  max-width: 20rem;
}
@media screen and (max-width: 768px) {
  header .sp-nav .logo_a img {
    max-width: 15rem;
    padding: 1.2rem 0 1.2rem 2rem;
  }
}
header .sp-nav ul {
  height: 0;
  overflow: hidden;
  transition: 0.3s;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header .sp-nav ul li a {
  padding: 2rem 0;
  font-size: 1.6rem;
  color: #464646;
  display: block;
  text-align: center;
  text-decoration: none;
}
header .hamburger {
  position: absolute;
  top: 12px;
  right: 30px;
  cursor: pointer;
  width: 32px;
  height: 24px;
  z-index: 10;
}
header .hamburger span {
  /*3本の線を作る*/
  transition: all 0.3s;
  position: absolute;
  height: 2px;
  background-color: #333;
  width: 100%;
  z-index: 10;
}
header .hamburger span:nth-of-type(1) {
  /*上の線の位置*/
  top: 4px;
}
header .hamburger span:nth-of-type(2) {
  /*真ん中の線の位置*/
  top: 12px;
}
header .hamburger span:nth-of-type(3) {
  /*下の線の位置*/
  top: 20px;
}
header .hamburger.open span:nth-of-type(1) {
  /*openのとき、上の線を右斜めにする*/
  top: 10px;
  transform: translateY(6px) rotate(-33deg);
}
header .hamburger.open span:nth-of-type(2) {
  /*真ん中の線を消す*/
  opacity: 0;
}
header .hamburger.open span:nth-of-type(3) {
  /*下の線を左斜めにする*/
  top: 22px;
  transform: translateY(-6px) rotate(33deg);
}

footer {
  background: url("/assets/images/footer-bg.svg") no-repeat center;
  background-size: cover;
  text-align: center;
}
footer .inner {
  font-size: 1.2rem;
  color: #fff;
  padding: 5rem 0 3rem;
}
footer .inner .f_navi {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
footer .inner .f_navi a {
  color: #fff;
}

#main-view {
  width: 100%;
  text-align: center;
}
#main-view h1 {
  margin: 12rem auto 8rem;
  padding: 0 2rem;
  max-width: 85.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #main-view h1 {
    max-width: 76.24vw;
    margin: 5.5rem auto 3rem;
  }
}
#main-view h1 img {
  width: 100%;
}
#main-view .steamp_key {
  width: 96%;
  padding-bottom: 9.5rem;
}
@media screen and (max-width: 768px) {
  #main-view .steamp_key {
    padding-bottom: 3rem;
  }
}

.key-bg {
  background: url(/assets/images/page/key-bg-bg.png);
  background-size: 140%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.key-bg .container {
  text-align: center;
  position: relative;
}
.key-bg .container .subtitle_key {
  width: 45rem;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .key-bg .container .subtitle_key {
    width: 59%;
  }
}
.key-bg .container .flag-img {
  width: 100%;
  max-width: 70vw;
  padding-top: 5rem;
}

#welcome {
  background-color: #eeeeef;
  padding: 10rem 2rem;
}
@media screen and (max-width: 768px) {
  #welcome {
    padding: 5rem 2rem;
  }
}
#welcome .container {
  max-width: 97rem;
}
#welcome .container .welcome-m {
  max-width: 60rem;
}
@media screen and (max-width: 768px) {
  #welcome .container .welcome-m {
    max-width: 30rem;
  }
}
#welcome .container p {
  margin-top: 6rem;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #welcome .container p {
    margin-top: 3rem;
    font-size: 1.6rem;
  }
}

#news-section {
  background-color: #eeeeef;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  #news-section {
    padding-bottom: 5rem;
  }
}
#news-section .sub-title {
  padding: 8rem 0 8rem 0;
}
@media screen and (max-width: 768px) {
  #news-section .sub-title {
    padding: 5rem 0 3.5rem 0;
  }
}
#news-section .news-list {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  #news-section .news-list {
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
  }
}
#news-section .news-list .news-item {
  width: 32%;
  max-width: 36rem;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #news-section .news-list .news-item {
    width: 100%;
    margin-bottom: 2rem;
  }
}
#news-section .news-list .news-item a {
  text-align: left;
  text-decoration: none;
  color: #222;
}
#news-section .news-list .news-item a .news-thumbnail-box {
  width: 100%;
  height: 20rem;
  border-radius: 10px;
}
#news-section .news-list .news-item a .news-thumbnail-box img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
#news-section .news-list .news-item a .news-title-box {
  padding: 0 2rem 2rem 2rem;
  min-height: 18rem;
  position: relative;
}
#news-section .news-list .news-item a .news-title-box .news-date {
  padding: 1.5rem 0;
  font-size: 1.1rem;
}
#news-section .news-list .news-item a .news-title-box .news-title {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
}
#news-section .news-list .news-item a .news-title-box .news-place {
  padding-top: 1rem;
  font-size: 1.1rem;
}
#news-section .news-list .news-item a .news-title-box .news-category {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem;
  background-color: #e84709;
  color: #fff;
  border-radius: 5rem;
}
#news-section .news-list .news-item .pc {
  text-align: center;
}
#news-section .news-list .news-item .sp {
  width: 100%;
}
#news-section .news-more {
  text-align: center;
  padding: 5rem 0;
  font-size: 1.6rem;
}

#program {
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  #program {
    padding-bottom: 5rem;
  }
}
#program .inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  #program .inner {
    flex-direction: column;
  }
}
#program .inner img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #program .inner img {
    width: 100%;
    margin-bottom: 2rem;
  }
}

#about {
  background-color: #eeeeef;
  padding: 16rem 0;
}
@media screen and (max-width: 768px) {
  #about {
    padding: 6rem 0;
  }
}
#about .inner {
  width: 100%;
  height: 100%;
  background: url("/assets/images/page/BG01_about@4x.png") top center;
  background-size: 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #about .inner {
    background: url("/assets/images/sp/BG_sp about@2x.png") top center;
    background-size: 100%;
    background-repeat: no-repeat;
    min-height: 70rem;
  }
}
#about .inner h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 14rem;
}
@media screen and (max-width: 768px) {
  #about .inner h2 {
    padding-top: 5rem;
  }
}
#about .inner h2 img.title_about {
  max-width: 24rem;
}
@media screen and (max-width: 768px) {
  #about .inner h2 img.title_about {
    max-width: 9.6rem;
  }
}
#about .inner h2 img.logo_about {
  max-width: 51rem;
  margin-top: 2.6rem;
}
@media screen and (max-width: 768px) {
  #about .inner h2 img.logo_about {
    max-width: 20.7rem;
    margin-top: 2.4rem;
  }
}
#about .inner h2::after {
  content: "";
  width: 1.2rem;
  height: 13rem;
  display: inline-block;
  background: url(/assets/images/page/dot.png) no-repeat center;
  background-size: cover;
  vertical-align: middle;
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #about .inner h2::after {
    width: 0.6rem;
    height: 6.6rem;
    margin-top: 1.7rem;
  }
}
#about .inner .inner__bottom {
  max-width: 59rem;
  width: 45vw;
  margin-bottom: 30rem;
}
@media screen and (max-width: 768px) {
  #about .inner .inner__bottom {
    width: 86vw;
    margin-bottom: 0;
  }
}
#about .inner .inner__bottom p {
  font-size: 1.6rem;
  line-height: 2;
  margin: 5rem 0;
}
@media screen and (max-width: 768px) {
  #about .inner .inner__bottom p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin: 2rem 0;
    padding: 0 4rem;
  }
}
#about .image_sp {
  text-align: center;
  margin-top: 5.5rem;
}
#about .image_sp img {
  width: 80%;
}

#member .slider2 {
  margin: 8rem 0 13rem;
}
@media screen and (max-width: 768px) {
  #member .slider2 {
    margin: 2.6rem 0 5rem;
  }
}
#member .slider2 li {
  margin: 0 3.4rem;
  text-align: center;
}
#member .slider2 li.slick-slide {
  transition: all 0.5s;
  opacity: 0.5;
}
#member .slider2 li.slick-slide.slick-center {
  opacity: 1;
}
#member .slider2 li img {
  max-width: 29rem;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
#member .slider2 li h3 {
  font-size: 2.6rem;
  margin: 3rem 0;
}
@media screen and (max-width: 768px) {
  #member .slider2 li h3 {
    font-size: 2rem;
    margin: 2.4rem 0 2rem;
  }
}
#member .slider2 li p {
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #member .slider2 li p {
    font-size: 1.2rem;
    line-height: 1.75;
  }
}

#bottom-bg {
  padding-bottom: 12rem;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-color: #245993;
}
@media screen and (max-width: 768px) {
  #bottom-bg {
    padding-bottom: 5rem;
  }
}
#bottom-bg .colum {
  text-align: center;
}
#bottom-bg .colum .map {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #bottom-bg .colum .map {
    width: 80%;
    margin: 0 auto;
    padding-top: 6rem;
  }
}
#bottom-bg .colum .supportters {
  width: 90%;
  max-width: 110rem;
  margin: 2rem auto;
}

footer {
  background: url("/assets/images/page/footer-bg.png") top center;
  background-size: 130%;
  background-repeat: no-repeat;
  background-color: #eeeeef;
}
footer .massage_footer {
  width: 64vw;
  max-width: 86.9rem;
  margin: 0 auto;
  padding-top: 12rem;
}
@media screen and (max-width: 768px) {
  footer .massage_footer {
    width: 80%;
    padding-top: 7rem;
  }
}
footer .button_footer {
  width: 64vw;
  display: block;
  margin: 0 auto;
  max-width: 72rem;
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  footer .button_footer {
    width: 85vw;
    margin-top: 5rem;
  }
}
footer .footer_text {
  padding: 14rem 0;
}
@media screen and (max-width: 768px) {
  footer .footer_text {
    padding: 5rem 0;
  }
}
footer .footer_text .footer_text__stemp {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  footer .footer_text .footer_text__stemp {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
footer .footer_text .adress {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}
@media screen and (max-width: 768px) {
  footer .footer_text .adress {
    flex-direction: column;
    margin: 1rem 0 0.6rem;
  }
}
footer .footer_text .adress p:nth-child(2) {
  margin-left: 4rem;
}
@media screen and (max-width: 768px) {
  footer .footer_text .adress p:nth-child(2) {
    margin-left: 0;
    margin: 0.6rem 0;
  }
}
footer .footer_text p {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  footer .footer_text p {
    font-size: 1.2rem;
  }
}

/******************
ニュースページ
******************/
#news-block {
  background-color: #eeeeef;
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  #news-block {
    padding-top: 4rem;
  }
}
#news-block img {
  width: 100%;
  height: 100%;
}
#news-block .container {
  max-width: 70rem;
}
@media screen and (max-width: 768px) {
  #news-block .container {
    max-width: 90%;
  }
}
#news-block .container #news-detail .news-meta .news-thumbnail-box {
  width: 100%;
  height: 45rem;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #news-block .container #news-detail .news-meta .news-thumbnail-box {
    height: 23rem;
  }
}
#news-block .container #news-detail .news-meta .news-thumbnail-box img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
#news-block .container #news-detail .news-meta .news-meta-box {
  position: relative;
  margin-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.2rem solid #222;
}
#news-block .container #news-detail .news-meta .news-meta-box time {
  font-size: 1.8rem;
}
#news-block .container #news-detail .news-meta .news-meta-box h1 {
  margin-top: 1rem;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #news-block .container #news-detail .news-meta .news-meta-box h1 {
    font-size: 2.4rem;
  }
}
#news-block .container #news-detail .news-meta .news-meta-box .news-category {
  position: absolute;
  top: -0.8rem;
  right: 0;
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem;
  background-color: #e84709;
  color: #fff;
  border-radius: 5rem;
}
#news-block .container #news-detail .news-content {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  #news-block .container #news-detail .news-content {
    margin-top: 2rem;
  }
}
#news-block .container #news-detail .news-content p {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #news-block .container #news-detail .news-content p {
    font-size: 1.6rem;
  }
}
#news-block .container #news-detail .news-content img {
  padding: 2rem 0;
}
#news-block .container .news-nav {
  border-top: 0.2rem solid #222;
  padding: 4rem 0;
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #news-block .container .news-nav {
    font-size: 1.6rem;
  }
}

#news-detail-footer {
  background-image: none;
  background-color: #245993;
}
#news-detail-footer .button_footer {
  margin-top: 0;
  width: 40vw;
  padding: 4rem 0 2rem 0;
}
@media screen and (max-width: 768px) {
  #news-detail-footer .button_footer {
    width: 70vw;
  }
}
#news-detail-footer .footer_text {
  padding: 2rem 0 4rem 0;
  color: #fff;
}

/******************
ニュース一覧ページ
******************/
#news-section #news-list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  #news-section #news-list {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
#news-section #news-list .news-item {
  width: 100%;
  max-width: 36rem;
  background-color: #fff;
  border-radius: 10px;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #news-section #news-list .news-item {
    width: 100%;
    margin-bottom: 2rem;
  }
}
#news-section #news-list .news-item a {
  text-align: left;
  text-decoration: none;
  color: #222;
}
#news-section #news-list .news-item a .news-thumbnail-box {
  width: 100%;
  height: 20rem;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #news-section #news-list .news-item a .news-thumbnail-box {
    height: 11rem;
  }
}
#news-section #news-list .news-item a .news-thumbnail-box img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
#news-section #news-list .news-item a .news-title-box {
  padding: 0 2rem 2rem 2rem;
  min-height: 18rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  #news-section #news-list .news-item a .news-title-box {
    min-height: 16rem;
  }
}
#news-section #news-list .news-item a .news-title-box .news-date {
  padding: 1.5rem 0;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  #news-section #news-list .news-item a .news-title-box .news-date {
    padding: 2rem 0 1rem 0;
    font-size: 1rem;
  }
}
#news-section #news-list .news-item a .news-title-box .news-title {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #news-section #news-list .news-item a .news-title-box .news-title {
    font-size: 1.2rem;
  }
}
#news-section #news-list .news-item a .news-title-box .news-place {
  padding-top: 1rem;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  #news-section #news-list .news-item a .news-title-box .news-place {
    padding-top: 0.8rem;
    font-size: 0.8rem;
  }
}
#news-section #news-list .news-item a .news-title-box .news-category {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem;
  background-color: #e84709;
  color: #fff;
  border-radius: 5rem;
}
@media screen and (max-width: 768px) {
  #news-section #news-list .news-item a .news-title-box .news-category {
    font-size: 0.8rem;
    padding: 1rem;
  }
}
#news-section #news-list .news-item .pc {
  text-align: center;
}
#news-section #news-list .news-item .sp {
  width: 100%;
}/*# sourceMappingURL=main.css.map */