/* ------------------------------
            TOP-BG
--------------------------------- */
.home-body-bg {
  background-image: url("../images/home-bg-allpattern.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: repeat;
}



/* ------------------------------
              TOP
--------------------------------- */
.kv {
  overflow: hidden;
}

.kv .item {
  width: 80%;
  margin: auto;
  text-align: center;
}
.kv .item img {
  width: 80%;
  margin: auto;
}

.kv-slider {
  max-width: none;
	width: 100%;
  margin: auto;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, .2);
}

.kv .item.img1 {
  background-color: #fff;
}

.kv .item.img2 {
  background-color: #fff;
}

@media screen and (min-width:1701px) {
  .kv-slider {
    max-width: none;
    width: 100%;
    margin: auto;
    box-shadow: 0 5px #333333 0 0;
  }

  .kv .item.img1 {
    background-size: 100% auto;
  }
  
  .kv .item.img2 {
    background-size: 100% auto;
  }
}

@media screen and (max-width:767px) {
  .kv .item {
    width: 100%;
  }
  .kv .item img {
    width: 100%;
    margin: auto;
  }
}

/* ------------------------------
             ABOUT
--------------------------------- */
.section-about {
  max-width: 1440px;
  margin: auto;
  font-size: 25px;
  line-height: 2em;
  text-align: center;
  padding: 100px 0 0;
}

.section-about .movie {
  max-width: 1440px;
  width: 100vw;
  max-height: 810px;
  height: 56.25vw;
  margin: 100px 0 0;
}

@media screen and (max-width:767px) {
  .section-about {
    font-size: 22px;
    text-align: left;
    line-height: 1.81;
    padding: 100px 20px 0;
    font-feature-settings: "palt";
    text-align: justify;
  }

  .section-about br:nth-child(1), .section-about br:nth-child(2),
  .section-about br:nth-child(4), .section-about br:nth-child(5), 
   .section-about br:nth-child(7) {
    display: none;
  }
}



/* ------------------------------
              NEWS
--------------------------------- */
.section-news {
  text-align: center;
  padding: 100px 0 0;
}

.section-news .news-contents {
  max-width: 980px;
  margin: 100px auto 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.section-news .news-contents .twitter {
  flex: 1;
  margin: 0 20px;
}

.section-news .news-contents .news-list {
  flex: 1;
  margin: 0 20px;
}

.section-news .news-list .item {
  display: block;
  text-align: left;
  margin: 20px 0 0;
}

.section-news .news-list .item .date {
  font-size: 13px;
  background-color: #999999;
  color: #fff;
  margin-right: 15px;
  padding: 0 8px;
}

.section-news .news-list .item .title {
  display: inline-block;
  font-size: 17px;
  text-align: left;
}

@media screen and (max-width:767px) {
  .section-news {
    text-align: center;
    padding: 100px 20px 0;
  }

  .section-news .news-contents {
    display: block;
  }

  .section-news .news-contents .twitter {
    flex: auto;
    margin: 50px 0 0;
  }

  .section-news .news-contents .news-list {
    flex: auto;
    margin: 0 0;
  }
}


/* ------------------------------
             EVENT
--------------------------------- */
.section-event {
  font-size: 35px;
  text-align: center;
  padding: 100px 0 0;
}

.section-event .section-lead {
  font-size: 25px;
  line-height: 2;
  margin: 100px 0;
  text-align: center;
}

.section-event .inner-wrap {
  display: flex;
  max-width: 1240px;
  margin: auto;
}

.section-event .event-item {
  display: flex;
  padding: 100px 20px;
}

.section-event .event-item:nth-child(2n) {
  background-color: rgba(0, 0, 0, .04);
}

.section-event .event-item .content {
  flex: 1;
}

.section-event .event-item .content.left {
  margin-right: 20px;
  position: relative;
}

.section-event .event-item .content.left .img {
  display: block;
  object-fit: cover;
  width: 110%;
  height: auto;
}

.section-event .event-item .content.left .tag {
  position: absolute;
  top: -61px;
  left: 1px;
  border-radius: 100px;
}

  /* boxの影 (filterプロパティ未対応のブラウザ) */
.section-event .event-item .content.left .tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  box-shadow: 1px 1px 1px 1px #333333;
}

/* boxの影 (filterプロパティ対応済のブラウザ) */
@supports (-webkit-filter: blur(1px)) {
  .section-event .event-item .content.left .tag::before {
    background-image: linear-gradient(to right, #B80917 20%, #4055B5 40%, #4055B5 60%, #639F39 80%);
    -webkit-filter: blur(1px);
    filter: blur(1px);
    box-shadow: none;
  }
}

.date-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  position: relative;
}
.date-circle::before {
  content: "";
  display: block;
  position: absolute;
  width: 110px;
  height: 110px;
  background: linear-gradient(to right, #B80917 20%, #4055B5 40%, #4055B5 60%, #639F39 80%);
  border-radius: 50%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.date-circle span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 35px;
  font-weight: bold;
  color: #002063;
  font-family: 'Roboto', sans-serif;
}
.event-item.-paraspot .date-circle span {
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0;
}
.event-item.-paraspot .date-circle span em {
  font-size: 20px;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
}

.section-event .event-item .content.right {
  margin-left: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-event .event-item .content.right .outline {
  position: relative;
}

.section-event .event-item .content.right .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.section-event .event-item .content.right .title {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0;
}

.section-event .event-item .content.right .lead {
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.363;
  margin-top: 24px;
}

.section-event .event-item:nth-child(2) .content.right .lead {
  margin-top: 14px;
}

.section-event .event-item .content.right .text {
  font-size: 18px;
  margin-top: 20px;
  text-align: justify;
}

/* グラデーションボタン　START */

.request-btn {
  position: relative;
  width: 160px;
  height: 72px;
}

  /* boxの影 (filterプロパティ未対応のブラウザ) */
.request-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline;
  width: 160px;
  height: 72px;
  box-shadow: 1px 1px 1px 1px #333333;
  border-radius: 6px;
}

/* boxの影 (filterプロパティ対応済のブラウザ) */
@supports (-webkit-filter: blur(1px)) {
  .request-btn::before {
    background-image: linear-gradient(to right, #B80917 20%, #4055B5 40%, #4055B5 60%, #639F39 80%);
    -webkit-filter: blur(1px);
    filter: blur(1px);
    border-radius: 6px;
    box-shadow: none;
  }
}

.gradation-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  width: 160px;
  height: 72px;
  border-radius: 6px;
  background: white;
}
.gradation-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: 62px;
  border-radius: 6px;
  background: linear-gradient(to right, #B80917 20%, #4055B5 40%, #4055B5 60%, #639F39 80%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.request-btn .gradation-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 42px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 22px;
  font-weight: bold;
  color: #002063;
  font-family: 'Roboto', sans-serif;
  transition: background .3s ease,
  color .3s ease;
}

.request-btn:hover .gradation-btn span {
  background: transparent;
  color: #fff;
}

@media screen and (max-width:767px) {
  .section-event .event-item .content.right .head {
    display: block;
    text-align: left;
  }

  .section-event .event-item:nth-child(2) .content.right .lead {
    margin-top: 24px;
  }

  .request-btn {
    margin-top: 26px;
  }
}

/* グラデーションボタン　END */

.section-event .event-item .content.right .info-list {
  font-size: 18px;
  line-height: 1;
}

.section-event .event-item .content.right .info-item {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-top: 10px;
}

.section-event .event-item .content.right .info-item .info-item-txt br.-sp {
  display: none;
 }
/* .section-event .event-item:nth-child(5) .content.right .info-item:last-child .info-item-category,
.section-event .event-item:nth-child(5) .content.right .info-item:last-child .info-item-txt {
  background-color: transparent;
  color: transparent;
} */

.section-event .event-item .content.right .info-item.-many-characters .info-item-txt {
  line-height: 1.3;
}

.section-event .event-item .content.right .detail {
  position: relative;
}

.section-event .event-item .content.right .detail .viewmore-btn {
  position: absolute;
  right: 0;
  bottom: -7px;
}

.section-event .event-item .content.right .detail .viewmore-btn .img {
  width: 80px;
}

.info-item-category {
  text-align: center;
  width: 100px;
  height: 30px;
  padding: 4px 0;
  background-color: #333333;
  color: #fff;
  border-radius: 100px;
  margin-right: 12px;
}

.event-item .outline {
  position: relative;
}
.event-item .outline .receiving-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 62px;
  font-size: 22px;
  line-height: 1em;
  font-weight: bold;
  padding: 9px;
  white-space: nowrap;
  background: linear-gradient(-170deg, rgb(215, 2, 16) 20%, rgb(50, 84, 185) 40%, rgb(50, 84, 185) 60%, rgb(51, 160, 42) 80%);
  border-radius: 9px;
  color: #002063;
  display: flex;
  box-shadow: 0 0 0 5px white;
  font-style: normal;
}
.event-item .outline .receiving-icon span {
  width: 100%;
  display: flex;
  background-color: white;
  align-items: center;
  justify-content: center;
  transition: .25s all;
}
.outline .receiving-icon:hover  span {
  background-color: transparent;
  color: transparent;
  text-shadow: 0 2px 0 #eee, 0 0 #002063;
}
.outline .receiving-icon.-finished:hover  span {
  background-color: white;
  color: #002063;
  text-shadow: none;
}

@media  screen and (max-width:949px) {
  .date-circle {
    width: 96px;
    height: 96px;
  }
  .date-circle::before {
    width: 88px;
    height: 88px;
  }
  .date-circle span {
    font-size: 27px;
    width: 73.6px;
    height: 73.6px;
  }
  .section-event .section-lead {
    font-size: 22px;
    text-align: left;
    padding: 0 20px;
    text-align: justify;
  }

  .section-event .section-lead br {
    display: none;
  }

  .section-event .event-item {
    display: flex;
    padding: 110px 0 60px;
  }

  .section-event .inner-wrap {
    display: block;
  }

  .section-event .event-item .content.left {
    margin-right: 0;
    position: relative;
  }
  
  .section-event .event-item .content.left .img {
    display: block;
    object-fit: cover;
    width: 110%;
    height: auto;
  }

  .date-circle {
    width: 96px;
    height: 96px;
  }
  .date-circle::before {
    width: 88px;
    height: 88px;
  }
  .date-circle span {
    width: 73.6px;
    height: 73.6px;
  }

  .event-item .date-circle span {
    font-size: 27px;
  }

  .event-item.-paraspot .date-circle span {
    font-size: 22px;
  }
  .event-item.-paraspot .date-circle span em {
    font-size: 20px;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0;
  }

  
  .section-event .event-item .content.left .tag {
    position: absolute;
    top: -61px;
    left: 20px;
    border-radius: 100px;
  }

  .section-event .event-item .content.right .info-item {
    display: block;
    margin-top: 15px;
  }

  .section-event .event-item .content.right .info-item .info-item-txt {
    margin-top: 5px;
  }

  .section-event .event-item .content.right .info-item .info-item-txt br.-sp {
   display: inline-block;
  }

  .section-event .event-item .content.right {
   margin: 30px 20px 0;
  }

  .event-item .outline .receiving-icon {
    position: relative;
    margin-top: 30px;
  }

}


/* ------------------------------
              取組紹介
--------------------------------- */
.section-introduction {
  text-align: center;
  padding: 100px 0 0;
  background-color: rgba(0, 130, 189, .2);
}

.section-introduction .section-title-inner,
.section-link .section-title-inner {
  background-color: #e5f2f8;
}

.section-introduction .intro-list {
  text-align: left;
  max-width: 1200px;
  margin: auto;
  padding: 100px 0 0;
}

.section-introduction .intro-item .btn {
  display: block;
  font-size: 25px;
  line-height: 1;
  font-weight: bold;
  padding: 17px 50px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 15px 15px 0 0;
  position: relative;
  transition: .2s all;
}

.section-introduction .intro-item .btn .icon-arrow {  
  position: absolute;
  top: 53%;
  right: 50px;
  transform: translateY(-50%);
  fill: #0082bd;
}

.section-introduction .intro-item .btn:hover {
  background-color: #0082bd;
  color: #fff;
}

.section-introduction .intro-item .btn:hover .icon-arrow {
  fill: #fff;
}

.section-introduction .intro-item.active .btn {
  background-color: #0082bd;
  color: #fff;
}

.section-introduction .intro-item.active .btn .icon-arrow {
  fill: #fff;
  transform: translateY(-50%) rotate(180deg);
}

.section-introduction .intro-item .text-content {
  display: none;
}

.section-introduction .intro-item.active .btn {
  background-color: #0082bd;
  color: #fff;
}

.section-introduction .intro-item.active .text-content {
  font-size: 18px;
  letter-spacing: 0.07em;
  line-height: 1.666;
  display: block;
  padding: 44px 50px;
  background-color: #fff;
  border-radius: 0 0 15px 15px;
}

.section-introduction .intro-item.active .text-content .link-list {
  margin: 36px 0 0;
  color: #0082bd;
}

.section-introduction .intro-item.active .text-content .link-item {
  display: inline-block;
}

.section-introduction .intro-item.active .text-content .link-item::before {
    content: "●";
}

.section-introduction .intro-item.active .text-content .link-item:hover {
  text-decoration: underline;
  text-underline-offset: 1px;
}





/* ------------------------------
              関連サイト
--------------------------------- */
.section-link {
  padding: 100px 0 0;
  background-color: rgba(0, 130, 189, .1);
}

.section-link .section-title-inner {
  margin-bottom: 10px;
}

.section-link .link-site-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 960px;
  margin: auto;
  padding: 100px 20px 150px;
}

.section-link .link-site-item {
  width: 48%;
  justify-content: space-between;
  margin-top: 3.5%;
  margin-right: 4%;
}

.section-link .link-site-item:nth-child(2n) {
  margin-right: 0;
}

.section-link .link-site-item:last-child {
  margin-right: 0;
}

.section-link .link-site-item:nth-child(1),
.section-link .link-site-item:nth-child(2) {
  margin-top: 0;
}


@media screen and (max-width:767px) {
  .section-link .link-site-item {
    max-width: 460px;
    width: 100%;
    justify-content: space-between;
    margin: 30px auto 0;
  }

  .section-link .link-site-item:nth-child(1),
  .section-link .link-site-item:nth-child(2) {
    margin-top: 30px;
  }

  .section-link .link-site-item:first-child {
    margin-top: 0;
  }
}




.section-movie {
  margin: 80px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.movie {
  margin-left: 80px;
}
.movie img {
  width: 700px;
}
.section-movie .viewmore-btn {
  width: 60px;
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .section-movie {
    display: flex;
    padding: 0 20px;
    flex-direction: column;
    align-items: center;
  }
  .movie {
    margin: 0 0 20px;
  }
  .section-movie .viewmore-btn {
    margin: 0;
    width: 80px;
  }
}