@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: auto;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75em;
  background-color: #121212;
}

img {
  width: 100%;
}

@media (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

.disabled:hover{
  opacity:1 !important;
}

.btn {
  border: 1px solid #9FEF4E;
  width: 85%;
  margin: auto;
  position: relative;
}

.btn::after {
  position: absolute;
  top: 32px;
  right: 0;
  content: "";
  width: 50px;
  height: 1px;
  background: #9FEF4E;
  transform: scale(1, 1);
  transform-origin: right top;
  transition: transform 0.4s;
}

@media (min-width: 768px) {
  .btn {
    width: 280px;
    height: 64px;
    margin: 0px;
    transition: 0.3s;
  }
  .btn:hover {
    border: 1px solid #eaff39;
    transition: 0.3s;
  }

  .btn:hover::after {
    transform: scale(0, 1);
    background: #eaff39;
    transition: 0.3s;
  }
}
.btn a {
  display: block;
  padding: 20px 36px;
  color: #9FEF4E;
  font-size: 1.6em;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .btn a {
    padding: 24px 36px;
  }
  .btn a:hover {
    color: #eaff39;
    transition: 0.3s;
  }
}

.title--color {
  color: #eaff39;
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  padding: 5px;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

@media (max-width: 767px) {
  .hamburger {
    background-color: rgba(0,0,0,.4);
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 34px;
  height: 1px;
  left: 18px;
  background: #ffffff;
  transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 29px;
}

.hamburger span:nth-child(2) {
  top: 37px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 33px;
  left: 18px;
  background: #fff;
  transform: rotate(315deg);
}

.hamburger.active span:nth-child(2) {
  top: 33px;
  left: 18px;
  background: #fff;
  transform: rotate(-315deg);
}

.nav {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  color: #fff;
  background: #121212;
  text-align: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 768px) {
  .nav {
    visibility: visible;
    opacity: 1;
    z-index: 100;
    background: none;
    align-items: center;
      mix-blend-mode: difference;
  }
}

.nav__logo{
  width: 90px;
  margin-left: 30px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .nav__logo {
     margin-left: 20px;
  }
}

@media (min-width: 768px) {
  .nav__logo__sp-header {
     display:none;
  }
}


.nav__inner {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  margin-right: 30px;
  margin-top: -40px;
}
@media (min-width: 768px) {
  .nav__inner {
    display: block;
    font-size: 0.9em;
    margin-top: -77px;
  }
}
@media (max-width: 767px) {
  .nav__inner {
    flex-flow: column;
    height: 100vh;
  }
}
.nav__list {
  list-style-type: none;
  padding: 0;
  transition: 0.3s all;
  margin-bottom: 30px;
    mix-blend-mode: difference;

}

@media (max-width: 767px) {
  .nav__list {
    width: 100%;
    height: 40px;
  }
}
.nav__list:last-child {
  padding-bottom: 0;
}
.nav__list a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .nav__sns {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .nav__instagram {
    width: 32px;
    margin:auto;
  }
}

nav.nav.active {
  opacity: 100;
  visibility: visible;
}

.header {
  position: relative;
  width: 100%;
  height:90px;
}
@media (min-width: 768px) {
  .header__nav {
    height: 140px;
    position: absolute;
    right: 30px;
    top: 40px;
  }
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    z-index: 10;
  }
}

.nav__inner {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .nav__inner {
    justify-content: flex-end;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .nav__list {
    padding: 5px;
    margin: 10px;
  }
}
.nav__box {
  font-family: "Raleway", sans-serif;
  color: #ffffff;
  font-size: 1.6em;
}
@media (min-width: 768px) {
  .nav__box {
    position: relative;
  }
  .nav__box::after {
    position: absolute;
    bottom: 9px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #ffffff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.4s;
  }
  .nav__box:hover::after {
    transform: scale(1, 1);
  }
}

.tag-end {
  font-size: 16px;
  color: #121212;
  background-color: #9FEF4E;
  font-weight: bold;
  margin-bottom: 10px;
}

#mv {
  margin-bottom: 100px;
  margin-top: -90px;
}

.mv__img {
  margin: auto;
  display: block;
}

.slider {
  margin: auto;
  margin-bottom: 150px;
}
.slider__title {
  font-size: 3em;
  color: #ffffff;
  text-align: center;
  margin: auto;
  margin-bottom: 40px;
}
.slider__inner {
  margin: auto;
}
.slider__list {
  width: 400px;
  height: auto;
  margin-right: 30px;
}
@media (min-width: 768px) {
  .slider__list {
    transition: 0.3s;
  }
  .slider__list:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}

.news {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 250px;
  width: 85%;
}
@media (min-width: 768px) {
  .news {
    width: 80%;
    margin-bottom: 300px;
  }
}

@media (min-width: 768px) {
  .news__inner {
    display: flex;
  }
}
.news__title {
  font-family: "Raleway", sans-serif;
  font-size: 4em;
  color: #9FEF4E;
  margin-bottom: 30px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .news__title {
    margin-right: 24px;
  }
}

@media (min-width: 768px) {
  .news__btn {
    width: 210px;
  }
}

@media (max-width: 767px) {
  .news__btn {
    margin:0;
  }
}

@media (min-width: 768px) {

  .news__title__inner{
    padding: 70px 70px 70px 0;
    border-top: 1px solid #707070;
    border-right: 1px solid #707070;
    border-bottom: 1px solid #707070;

  }
}

.news__sub-title {
  display: block;
  color: #ffffff;
  font-size: 0.4em;
  font-weight: 400;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .news__sub-title {
    font-size: 0.3em;
  }
}
.news__block {
  direction: ltr;
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .news__block {
    margin-top: 0;
  }
}

.news__article {
  direction: ltr;
}
.news__list {
  font-size: 1.4em;
  border-bottom: 1px solid #707070;
  padding: 40px 0 40px 0;
}

@media (min-width: 768px) {
  .news__list {
    padding: 40px 0 40px 60px;
    width: 100%;
  }

  .news__list:first-child {
    border-top: 1px solid #707070;
  }
}

.news__list__page {
  padding:40px 0;
}

.news__list__box {
  display: flex;
  color: #ACACAC;
  margin-bottom: 10px;
}
.news__list__day {
  display: block;
  padding-right: 10px;
  border-right: 1px solid #464646;
}
.news__list__category {
  padding-left: 10px;
}
.news__list__title {
  color: #ffffff;
  line-height: 1.75em;
}
@media (min-width: 768px) {
  .news__list__title {
    position: relative;
    padding-bottom: 0.25em;
    background: linear-gradient(#ffffff, #ffffff) 0 100%/0 1px no-repeat;
    transition: 0.3s;
    text-decoration: none;
  }
  .news__list__title.reverse {
    background-position: 100% 100%;
  }
  .news__list__title:hover {
    background-size: 100% 1px;
  }
}

#message {
  position: relative;
  margin-bottom: 180px;
    height: auto;
  z-index:10;
}

@media (max-width: 767px) {
  #message {
      margin-bottom: 0;
  }
}

.message {
  height: auto;
  background: url(../images/message-bg.png) bottom left/180% 1200px no-repeat;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .message {
    background: url(../images/message-bg.png) bottom left/150% 1200px no-repeat;
  }
}

@media (max-width: 767px) {
  .message  {
    background: url(../images/message-bg.png) bottom left/200% 1200px no-repeat;  }
}

.message::before {
  content: "";
  background: url(../images/message-01.svg) top left no-repeat;
  background-size: contain;
  width: 329px;
  height: 55px;
  position: absolute;
  top: -30px;
  left: 15px;
}
@media (min-width: 768px) {
  .message::before {
    width: 500px;
    height: 101px;
    top: -40px;
    left: 135px;
  }
}



.message__inner {
  width: 92%;
  margin: auto;
  padding: 100px 0 0 0;
  padding-bottom: 80px;
  margin-bottom: 65px;
  position: relative;
  color:#fff;
}

@media (min-width: 768px) {
  .message__inner {
    width: 64%;
    padding: 180px 0;
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .message__inner {
      margin-bottom: 0;
  }
}

@media (min-width: 769px) and (max-width: 1020px) {
  .message__inner {
    min-width: auto;
  }
}
.message__title {
  font-size: 2.4em;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .message__title {
    margin-bottom: 40px;
  }
}
.message__text {
  font-size: 1.4em;
  line-height: 1.75em;
  font-weight: 700;
  margin-bottom: 50px;
    font-weight: 300;
}

@media (min-width: 768px) {
  .message__text {
    border-left:1px solid rgb(255, 255, 255 ,0.4);
    padding-left:40px;
    margin-bottom: 100px;
  }
}

.message__mayor {
  position: relative;
  width:100%;
  height:208px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border:1px solid rgba(72,244,111,0.7);;
}

.message__mayor::before {
  content: "";
  width: 100%;
  height: 208px;
  background: rgb(255,255,255);
  backdrop-filter: blur(12px);
  mix-blend-mode: overlay;
}

@media (max-width: 960px) {
  .message__mayor::before {
  background: rgba(255,255,255,.8);
  }
}


.message__mayor::after{
  content: "";
  border:1px solid #48F46F;
  width: 100%;
  height: 208px;
  position: absolute;
  top: 10px;
  right: 10px;
  mix-blend-mode: screen;
}

.message__mayor-img {
  padding: 28px;
  position: absolute;
  max-width: 380px;
}



.message__bg-img {
  position: absolute;
  top:0;
  right:0;
  width: 480px;
  opacity: .1;
  mix-blend-mode: lighten;
}

#purpose {
  position: relative;
  height:auto;
  overflow: hidden;
}


.purpose{
  display:flex;
  width: 90%;
  background-color: #ffffff;
  margin-bottom: 100px;
  margin-left: 160px;
  background: url(../images/purpose-bg.png) top left no-repeat;
  background-size: cover;
  background-color: #ffffff;
}

@media (max-width: 1140px) {
  .purpose {
    display:block;
    margin-left: 114px;
  }
}

@media (max-width: 767px) {
  .purpose {
    width:100%;
    margin-left: 0;
  }
}

@media (min-width: 1600px) {
  .purpose {
    justify-content: space-evenly;
    margin-left: 196px;
  }
}

.purpose__left{
  display:flex;
  align-items: center;
  padding: 0 40px;
  margin-top:180px;
}

@media (max-width: 1140px) {
  .purpose__left {
    align-items: center;
    justify-content: space-between;
    padding: 60px 100px 60px 60px;
    margin-top:0;
  }
}

@media (min-width: 1141px) {
  .purpose__left {
    flex-direction: column;
    width: 320px;
  }
}

@media (max-width: 767px) {
  .purpose__left {
    padding: 120px 40px 60px 30px;
  }
}

.purpose__title{
  font-size: 3.2em;
  font-weight: 300;
  margin-bottom:150px;
}

@media (max-width: 1140px) {
  .purpose__title{
    margin-bottom:0;
  }
}

@media (max-width: 1000px) {
  .purpose__title {
    margin-bottom:0;
  }
}

.purpose__right{
  right: 100px;
  top: 0;
}

.purpose__btn{
  display: flex;
  align-items: center;
  justify-content:center;
  border:1px solid #121212;
  color:#121212;
  font-size:1.4em;
  padding: 16px;
  width:90%;
  background-color:rgba(255,255,255,0.3);
  transition:.3s;
}



@media (max-width: 1140px) {
  .purpose__btn {
    width:200px;
  }
}

@media (max-width: 767px) {
  .purpose__btn{
    background-color:rgba(255,255,255,0);
    border:none;
    width:0;
    padding:0;
  }
}

@media (max-width: 767px) {
  .purpose__btn-text{
    display:none;
  }
}


@media (min-width: 768px) {
.purpose__btn:hover{
  background-color:rgba(255,255,255,0.8);
  transition:.3s;
}
}


.purpose__icon{
  width:30px;
  margin-right:12px;
}

.purpose__img{
  max-width: 900px;
  box-shadow: 0px 4px 36px 0px rgba(0, 0, 0, 0.06);
}



#about {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  #about {
    padding-top: 0;
    padding: 80px 0 200px;
  }
}

@media (max-width: 767px) {
  #about {
    padding: 20px 0 100px;
  }
}

#about::after {
  content: "";
  background-image: url(../images/about-bg02.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 420px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -10;
}
@media (min-width: 768px) {
  #about::after {
    width: 1300px;
    height: 100%;
    background-size: contain;
  }
}

@media (max-width: 767px) {
  #about {
    top:0;
  }
}

@media (min-width: 768px) {
  .about {
    position: relative;
  }
}
.about::before {
  content: "";
  background-image: url(../images/about-bg-02.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 90px;
  height: 420px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 768px) {
  .about::before {
    width: 150px;
    height: 708px;
    top: 26%;
    left: 15%;
  }
}

@media (min-width: 768px) and (max-width: 1399px) {
  .about {
    max-width: 1200px;
  }
}

.about__title {
  width: 86%;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 4em;
  color: #9FEF4E;
  padding-bottom: 36px;
  margin: auto;
}
@media (min-width: 768px) {
  .about__title {
    transform: rotate(270deg);
    font-size: 9.3em;
    position: absolute;
    top: 35%;
    left: 3%;
    width: 326px;
  }
}
.about__inner {
  width: 86%;
  margin: auto;
}
@media (min-width: 768px) {
  .about__inner {
    width: 64%;
    max-width: 740px;
    padding-left: 20%;
    padding-top: 180px;
  }
}

.about__sub-title {
  color: #ACACAC;
  position: relative;
  margin-bottom: 15px;
  font-size: 1.4em;
}
@media (min-width: 768px) {
  .about__sub-title {
    font-size: 1.8em;
    margin-bottom: 38px;
  }
}
@media (min-width: 768px) {
  .about__sub-title::after {
    left: 368px;
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background-color: #ACACAC;
    position: absolute;
    top: 9px;
  }
}
.about__summary {
  font-size: 2em;
  color: #ffffff;
  line-height: 1.7em;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .about__summary {
    font-size: 3.2em;
    margin-bottom: 60px;
  }
}
.about__text {
  color: #ffffff;
  font-size: 1.4em;
  line-height: 2em;
}
@media (min-width: 768px) {
  .about__text {
    line-height: 2.5em;
  }
}

@media (min-width: 1400px) {
  .about__text {
    font-size: 1.6em;
  }
}


@media (min-width: 768px) {
  .about__text {
    line-height: 2.5em;
  }
}

.history__top{
  max-width: 900px;
  display: block;
  margin: auto;
  margin-top: 80px;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .history__top {
    width:95%;
    margin-top: 40px;
    margin-bottom: 40px;
    transition: .3s;
    max-width: 500px;
  }
}

@media (min-width: 768px) {
  .history__top:hover {
    opacity: .7;
    transition: .3s;
  }
}


.program-00__kickoff {
  position: relative;
  margin-bottom: 20px;
  padding: 80px 0;
}
@media (min-width: 768px) {
  .program-00__kickoff {
    height: 600px;
    width: 100%;
    margin: auto;
    padding: 80px 0 0;
  }
}
.program-00__kickoff::before {
  content: "";
  background: url(../images/kickoff-01.png) top right no-repeat;
  background-size: cover;
  width: 100%;
  height: 600px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}

@media (max-width: 767px) {
  .program-00__kickoff::before {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .program-00__kickoff::before {
    background: url(../images/kickoff-01.png) top right no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1020px) {
  .program-00__kickoff::before {
    height: 700px;
  }
}
.program-00__kickoff__inner {
  width: 100%;
  margin: auto;
  color: #ffffff;
  display: flex;
}
@media (min-width: 768px) {
  .program-00__kickoff__inner {
    width: 85%;
    margin: auto;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .program-00__kickoff__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .program-00__kickoff__box {
    width: 60%;
    margin-right: 40px;
  }
}
.program-00__kickoff__title {
  font-size: 2em;
  line-height: 1.5em;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  padding:0 8%;
}
@media (min-width: 768px) {
  .program-00__kickoff__title {
    font-size: 3em;
    padding: 0;
  }
}

  .program-00__kickoff__movie {
    aspect-ratio: 16 / 9;
    width: 60%;
    height: auto;
  }

@media (max-width: 767px) {
  .program-00__kickoff__movie {
    width: 100%;
    width: 90%;
    margin-top: 60px;
  }
}


.program-00__kickoff__event-day {
  font-size: 1.6em;
  font-weight: 700;
  width: 85%;
  margin: auto;
  margin-bottom: 30px;
  line-height: 1.5em;
}
@media (min-width: 768px) {
  .program-00__kickoff__event-day {
    font-size: 2em;
    margin-bottom: 40px;
    width: 100%;
  }
}
.program-00__kickoff__text {
  font-size: 1.4em;
  line-height: 2em;
  width: 85%;
  margin: auto;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .program-00__kickoff__text {
    font-size: 1.6em;
    width: 100%;
  }
}




#movie {
  background: url(../images/movie-bg.png);
  background-repeat: repeat;
  width: 100%;
}

.movie {
  /* 動画を囲うdiv */
  /* YouTube埋め込み用のiframe */
}
.movie__title {
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 4.8em;
  color: #9FEF4E;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .movie__title {
    font-size: 10.8em;
    text-align: left;
    width: 85%;
    max-width: 1200px;
    margin-bottom: 100px;
  }
}
.movie__title::after {
  content: "2021年度 アーカイブ動画";
  color: #9FEF4E;
  font-size: 0.3em;
  font-weight: 700;
  display: block;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .movie__title::after {
    font-size: 0.15em;
    padding-top: 50px;
  }
}
.movie__inner {
  padding: 120px 0 60px;
  width: 85%;
  margin: auto;
  max-width: 1200px;
}
@media (min-width: 768px) {
  .movie__inner {
    padding: 200px 0 120px;
  }
  .movie__cont {
    display: flex;
    flex-wrap: wrap;
  }
}
.movie__cont {
  position: relative;
  max-width: 1200px;
}
.movie__list {
  margin: auto;
  margin-bottom: 60px;
  width: 100%;
}
@media (min-width: 768px) {
  .movie__list {
    width: 30%;
    margin-top: 0;
  }
}
.movie__text {
  font-size: 1.8em;
  line-height: 1.45em;
  color: #ffffff;
  font-weight: 700;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .movie__text {
    font-size: 2em;
  }
}
.movie__span-text {
  font-size: 14px;
  line-height: 1.45em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}
.movie__wrap {
  max-width: 100%;
}
.movie__wrap-inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.movie__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#program {
  padding-top: 100px;
  max-width: 1765px;
  width: 100%;
  height: auto;
  margin: auto;
}
@media (min-width: 768px) {
  #program {
    padding-top: 230px;
    background-size: contain;
        margin-bottom: 280px;
  }
}


.program__title {
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 4.8em;
  color: #9FEF4E;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .program__title {
    font-size: 10.8em;
    text-align: left;
    width: 85%;
    margin: auto;
    max-width: 1200px;
    margin-bottom: 100px;
  }
}
.program__title::after {
  content: "プログラム一覧";
  color: #9FEF4E;
  font-size: 0.3em;
  font-weight: 700;
  display: block;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .program__title::after {
    font-size: 0.15em;
    padding-top: 70px;
  }
}
.program__cont-title {
  font-size: 2.2em;
  font-weight: 500;
  line-height: 1.45em;
  color: #FFFFFF;
  margin: 0 15px 60px;
      position: relative;
}


@media (min-width: 768px) {
  .program__cont-title {
    font-size: 3.8em;
    margin-left: 0px;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 70px;
  }
}

.program__cont-title-number {
  font-size: 1.6em;
  font-weight: 500;
  font-family: "Raleway", sans-serif;
  color:#9FEF4E;
    display: block;
    padding-bottom: 16px;
    border-bottom: 1px solid #707070;
    margin-bottom: 20px;
}

.program__cont-title-number::before {
    content: "";
  display: block;
  width: 72px;
  height: 1px;
  background-color: #9FEF4E;
  background-size: cover;
  position: absolute;
  top:48px;
}

@media (min-width: 768px) {
  .program__cont-title-number::before {
  top:71px;
  }
}

@media (min-width: 768px) {
  .program__event {
    margin-bottom: 100px;
  }
}
.program__event__inner {
  width: 95%;
  margin: auto;
  margin-bottom: 30px;
}
.program__event-title {
  font-size: 1.8em;
  line-height: 1.45em;
  color: #ffffff;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .program__event-title {
    font-size: 2.4em;
  }
}
.program__event-day {
  font-size: 1.4em;
  line-height: 1.5em;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}
.program__event-detail {
  font-size: 1.4em;
  line-height: 1.75em;
  color: #BFBFBF;
}

@media (min-width: 768px) {
  .program-01 {
    width:85%;
    margin:auto;
  }
}

@media (max-width: 767px) {
  .program-01 {
    margin-bottom: 100px;
  }
}

@media (min-width: 768px) {
  .program-01__event {
    margin: auto;
    max-width: 1200px;
    margin-bottom: 180px;
  }
}
.program-01__event__inner {
  width: 92%;
  margin: auto;
}
@media (min-width: 768px) {
  .program-01__event__inner {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .program-01__box {
    display: flex;
    transition: 0.3s;
  }
  .program-01__box:hover {
    opacity: 0.7;
    transition: 0.3s;
    cursor: default;
  }
  .program-01__box--right {
    display: flex;
    flex-flow: row-reverse;
  }
}
.program-01__img {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .program-01__img {
    width: 54%;
    margin-right: 40px;
  }
  .program-01__img--right {
    margin-right: 0px;
    margin-left: 40px;
  }
}
.program-01__text {
  line-height: 1.75em;
}
@media (min-width: 768px) {
  .program-01__text {
    width: 46%;
  }
}
.program-01__list {
  display: block;
  position: relative;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .program-01__list {
    margin-bottom: 70px;
  }
}

.program-01__award {
  position: relative;
  margin-bottom: 20px;
  padding: 80px 0;
}
@media (min-width: 768px) {
  .program-01__award {
    height: 600px;
    width: 85%;
    margin: auto;
    max-width: 1330px;
    padding: 60px 0;
  }
}
.program-01__award::before {
  content: "";
  background: url(../images/award-bg.png) top left no-repeat;
  background-size: contain;
  opacity:.3;
  width: 100%;
  height: 600px;
  display: block;
  position: absolute;
  top: 0;
  z-index: -10;
  overflow: hidden;
}
@media (min-width: 768px) {
  .program-01__award::before {
    background: url(../images/award-bg.png) top right no-repeat;
    background-size: contain;
    display: block;
    width: 100%;
    right: -52px;
    opacity:1;
  }
}
@media (min-width: 769px) and (max-width: 1020px) {
  .program-01__award::before {
    height: 700px;
  }
}
.program-01__award__inner {
  width: 92%;
  margin: auto;
  color: #ffffff;
}
@media (min-width: 768px) {
  .program-01__award__inner {
    width: 57%;
    margin: 0px;
  }
}
.program-01__award__title {
  font-size: 2em;
  line-height: 1.5em;
  margin-bottom: 30px;
  font-weight: 500;
  position: relative;
  padding-left: 8%;
}
@media (min-width: 768px) {
  .program-01__award__title {
    font-size: 3.8em;
    padding-left: 6%;
  }
}
.program-01__award__title::before {
  content: "";
  background-color: #9FEF4E;
  width: 3px;
  height: 56px;
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
}
@media (min-width: 768px) {
  .program-01__award__title::before {
    height: 116px;
  }
}
.program-01__award__event-day {
  font-size: 1.6em;
  font-weight: 700;
  width: 85%;
  margin: auto;
  margin-bottom: 30px;
  line-height: 1.5em;
}
@media (min-width: 768px) {
  .program-01__award__event-day {
    font-size: 2em;
    margin-bottom: 40px;
    width: 100%;
  }
}
.program-01__award__text {
  font-size: 1.4em;
  line-height: 2em;
  width: 85%;
  margin: auto;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .program-01__award__text {
    font-size: 1.6em;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .program-01__award__btn {
    display:flex;
  }
}

@media (min-width: 768px) {
  .program-01__award__btn-left {
    margin-right:30px;
  }
}

.program-01__mentor {
  position: relative;
  color: #ffffff;
  padding: 80px 0 60px;
  background: url(../images/mentor-bg.png) repeat;
}
@media (min-width: 768px) {
  .program-01__mentor {
    padding: 100px 0 60px;
  }
}
.program-01__mentor__inner {
  width: 92%;
  margin: auto;
  color: #ffffff;
}
@media (min-width: 768px) {
  .program-01__mentor__inner {
    width: 63%;
    margin: auto;
    max-width: 1200px;
  }
}
.program-01__mentor__title {
  font-size: 2em;
  line-height: 1.5em;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  padding-left: 8%;
}
@media (min-width: 768px) {
  .program-01__mentor__title {
    font-size: 3em;
    padding-left: 4%;
  }
}
.program-01__mentor__title::before {
  content: "";
  background-color: #9FEF4E;
  width: 3px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
}
@media (min-width: 768px) {
  .program-01__mentor__title::before {
    height: 50px;
  }
}
.program-01__mentor__text {
  font-size: 1.4em;
  line-height: 2em;
  width: 85%;
  margin: auto;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .program-01__mentor__text {
    width: 100%;
  }
}
.program-01__member {
  width: 92%;
}
.program-01__member__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .program-01__member__inner {
    padding-bottom: 40px;
  }
}
.program-01__member__list {
  width: 48%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .program-01__member__list {
    width: 29.3333333333%;
    margin-bottom: 60px;
  }
}
.program-01__member__list:nth-of-type(odd) {
  margin-right: 4%;
}
@media (min-width: 768px) {
  .program-01__member__list:nth-of-type(odd) {
    margin-right: 0px;
  }
}
.program-01__member__img {
  margin-bottom: 10px;
}
.program-01__member__name {
  font-size: 1.8em;
  font-weight: 400;
  margin-bottom: 10px;
}
.program-01__member__biography {
  font-size: 1.4em;
  font-weight: 400;
}
.program-02 {
  padding-top: 80px;
  margin-bottom: 80px;
  position: relative;
}

@media (min-width: 768px) {
  .program-02 {
    width: 85%;
    padding-top: 70px;
    margin: auto;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .program-02 {
    padding-top: 0;
  }
}

.program-02__inner {
  margin: auto;
}
@media (min-width: 768px) {
  .program-02__inner {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .program-02__inner {
    width:92%;
  }
}

.program-02__list {
  display: block;
  position: relative;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .program-02__list {
    width: 47%;
  }
}
.program-02__box {
  transition: 0.3s;
  display: block;
}
@media (min-width: 768px) {
  .program-02__box:hover {
    opacity: 0.7;
    transition: 0.3s;
    cursor: default;
  }
}

.program-02__img-inner {
  position: relative;
}

.program-02__img {
  position: absolute;
  width:85%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
  top:48%;
  left:50%;
}

.program-02__img-bg{
    position:relative;
  overflow:hidden;
  display:inline-block;
    margin-bottom: 15px;
    opacity: .3;
    background-color: rgba(0,0,0,1); 
}

.program-02__img-bg img {
	filter: blur(12px);
  overflow: hidden;
  transform: scale(1.3,1.3);

}

@media (min-width: 768px) {
  .program-02__title {
    font-size: 2em;
  }
}
.program-03 {
  position: relative;
}

@media (min-width: 768px) {
  .program-03 {
    width:85%;
    margin:auto;
  }
}

.program-03::before {
  content: "";
  background: url(../images/program-03-bg.png) top left no-repeat;
  background-size: cover;
  width: 100%;
  height: 250px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}
@media (min-width: 768px) {
  .program-03::before {
    height: 880px;
    background-size: contain;
  }
}
.program-03__block {
  padding-top: 80px;
  margin-bottom: 80px;
  position: relative;
}
@media (min-width: 768px) {
  .program-03__block {
    margin: auto;
    max-width: 1200px;
  }
}
.program-03__inner {
  margin: auto;
}

@media (max-width: 767px) {
  .program-03__inner {
    width:92%;
  }
}

.program-03__list {
  position: relative;
  margin-bottom: 40px;
}


@media (min-width: 768px) {
  .program-03__box {
    display: flex;
    width: 100%;
    transition: 0.3s;
  }
  .program-03__box:hover {
    opacity: 0.7;
    transition: 0.3s;
    cursor: default;
  }
}
.program-03__img {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .program-03__img {
    margin-right: 5%;
    width: 50%;
  }
}
.program-03__text {
  width: 100%;
}
@media (min-width: 768px) {
  .program-03__text {
    width: 50%;
  }
}
.program-03__title {
  font-size: 2.2em;
}

#interview {
  background: url(../images/interview-bg.png) center center no-repeat;
  background-size: cover;
  width: 96%;
  height: auto;
  margin-bottom: 20px;
  padding: 96px 0 50px;
}
@media (min-width: 768px) {
  #interview {
    margin-bottom: 100px;
    padding: 60px 0 50px;
  }
}

.interview {
  color: #121212;
}
.interview__title {
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 4.8em;
  font-weight: 300;
  color: #121212;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .interview__title {
    display: flex;
    font-size: 10.8em;
    padding-top: 45px;
    margin-bottom: 70px;
  }
}
.interview__title::after {
  content: "インタビュー";
  color: #121212;
  font-size: 0.3em;
  font-weight: 700;
  display: block;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .interview__title::after {
    font-size: 0.2em;
  }
}
@media (min-width: 768px) {
  .interview__inner {
    margin: auto;
    width: 92%;
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .interview__article {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .interview__list {
    margin: 40px 30px;
  }
}
@media (min-width: 768px) {
  .interview__list {
    width: 30.6666666667%;
    margin-right: 4%;
    margin-bottom: 40px;
  }
  .interview__list:nth-of-type(3n) {
    margin-right: 0;
  }
}
.interview__box {
  transition: 0.3s;
  display: block;
}
.interview__box:hover {
  opacity: 0.7;
  transition: 0.3s;
  cursor: default;
}
.interview__img {
  margin-bottom: 12px;
}
.interview__text {
  color: #121212;
  font-size: 1.8em;
  line-height: 1.5em;
}

@media (max-width: 767px) {
  .interview__text {
      font-size: 1.4em;
  }
}

.more-btn {
  margin: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .more-btn {
    width: 280px;
    height: 59px;
    margin: auto;
    transition: 0.3s;
  }
  .more-btn:hover {
    transition: 0.3s;
  }
  .more-btn::after {
    position: absolute;
    bottom: 0;
    left: 140px;
    content: "";
    width: 1px;
    height: 13px;
    background: #121212;
    transform: scale(1, 1);
    transform-origin: left bottom;
    transition: transform 0.4s;
  }
  .more-btn:hover::after {
    transform: scale(1, 0);
    background: #121212;
    transition: 0.3s;
  }
}
.more-btn p {
  display: block;
  padding: 20px 0px;
  border: 1px solid #121212;
  color: #121212;
  font-size: 1.6em;
  text-align: center;
  cursor: default;
  transition: 0.3s;
}
.more-btn p:hover {
  border: 1px solid #579e25;
  color: #579e25;
  transition: 0.3s;
}

#report {
  margin: 30px 0 0 4%;
  background: url(../images/report-bg.png) center center no-repeat;
  background-size: cover;
  padding: 96px 0 50px;
}
@media (min-width: 768px) {
  #report {
    padding: 60px 0 50px;
  }
}

.report__inner {
  height: auto;
  color: #121212;
}
@media (min-width: 768px) {
  .report__inner {
    padding: 60px 0;
    width: 92%;
    margin: auto;
  }
}
.report__title {
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 4.8em;
  font-weight: 300;
  color: #121212;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .report__title {
    display: flex;
    font-size: 10.8em;
    padding-top: 45px;
    margin-bottom: 70px;
  }
}
.report__title::after {
  content: "イベントレポート";
  color: #121212;
  font-size: 0.3em;
  font-weight: 700;
  display: block;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .report__title::after {
    font-size: 0.2em;
  }
}
.report__contents {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .report__contents {
    margin-top: 80px;
  }
}
.report__contents--visible {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .report__contents--visible {
    margin-bottom: 30px;
  }
}
.report__year {
  font-size: 2.8em;
  font-weight: 500;
  margin: 30px;
}
@media (min-width: 768px) {
  .report__year {
    margin: 30px 0;
  }
}
@media (min-width: 768px) {
  .report__article {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .report__list {
    margin: 15px 30px;
  }
}
@media (min-width: 768px) {
  .report__list {
    width: 30.6666666667%;
    margin-right: 4%;
    margin-bottom: 10px;
  }
  .report__list:nth-of-type(3n) {
    margin-right: 0;
  }
}
.report__box {
  position: relative;
  display: block;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .report__box {
    margin-bottom: 130px;
  }
}
@media (min-width: 769px) and (max-width: 1020px) {
  .report__box {
    margin-bottom: 190px;
  }
}
@media (min-width: 768px) {
  .report__box {
    transition: 0.3s;
  }
  .report__box:hover {
    transition: 0.3s;
    opacity: 0.7;
    cursor: default;
  }
}
.report__img {
  margin-bottom: -4px;
}
@media (min-width: 768px) {
  .report__img {
    margin-bottom: 12px;
  }
}
.report__block {
  background-color: #121212;
  padding: 20px;
}
@media (min-width: 768px) {
  .report__block {
    width: 82%;
    position: absolute;
    top: 80%;
  }
}
.report__day {
  color: #C3C3C3;
  font-size: 1.6em;
  margin-bottom: 9px;
}
.report__text {
  color: #ffffff;
  font-size: 1.4em;
  line-height: 1.5em;
}

.archive {
  padding-top: 40px;
  margin-bottom: 180px;
}
@media (min-width: 768px) {
  .archive {
    padding-top: 150px;
  }
}

@media (max-width: 767px) {
  .archive {
    margin-bottom: 80px;
      padding-top: 80px;
  }
}

.archive__inner {
  width: 92%;
  margin: auto;
}
.archive__title {
  font-size: 2em;
  line-height: 1.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .archive__title {
    font-size: 3em;
  }
}
.archive__sub-title {
  display: block;
  font-size: 0.7em;
  color: #C3C3C3;
  font-weight: 400;
}
@media (min-width: 768px) {
  .archive__link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
  }
}
.archive__list {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .archive__list {
    margin-bottom: 18px;
    width: 24%;
  }
}
.archive__box {
  transition: 0.3s;
}
.archive__box:hover {
  opacity: 0.7;
  transition: 0.3s;
  cursor: default;
}

.other {
  padding-bottom: 40px;
  position: relative;
}
.other::before {
  content: "";
  background: url(../images/other-bg.png) center center no-repeat;
  mix-blend-mode: soft-light;
  background-size: cover;
  width: 100%;
  height: 930px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -10;
}
@media (min-width: 768px) {
  .other::before {
    height: 630px;
  }
}
.other__inner {
  width: 92%;
  margin: auto;
}
.other__title {
  font-size: 2em;
  line-height: 1.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .other__title {
    font-size: 3em;
  }
}
@media (min-width: 768px) {
  .other__link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
  }
}
@media (min-width: 769px) and (max-width: 1020px) {
  .other__link {
    flex-flow: column;
    align-items: center;
  }
}
.other__list {
  margin-bottom: 40px;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .other__list {
    transition: 0.3s;
    margin-right: 4%;
  }
}
@media (min-width: 768px) and (min-width: 769px) and (max-width: 1020px) {
  .other__list {
    margin-right: 0%;
  }
}
@media (min-width: 768px) {
  .other__list:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .other__list:hover {
    opacity: 0.7;
    transition: 0.3s;
    cursor: default;
  }
}
.other__img {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .other__img {
    width: 400px;
  }
}
.other__detail {
  font-size: 1.5em;
  line-height: 1.5em;
  color: #C3C3C3;
  margin-bottom: 8px;
}
.other__name {
  font-size: 1.8em;
  line-height: 1.5em;
  color: #ffffff;
  font-weight: 700;
}

.footer{
  background: url(../images/footer-bg.png) center center no-repeat;
  background-size: cover;
  display:flex;
}

@media (max-width: 767px) {
  .footer {
  display:block;
  }
}

.sponsors {
  padding-top: 40px;
  margin-bottom: 40px;
  width:78%;
}
@media (min-width: 768px) {
  .sponsors {
    margin-bottom: 60px;
    margin-left: 100px;
  }
}

@media (max-width: 767px) {
  .sponsors {
     width:90%;
     margin: auto;
     margin-bottom: 40px;
     border-bottom: 1px solid #81BC46;
     padding-bottom: 40px;
  }
}

.sponsors__title {
  color: #121212;
  font-size: 1.8em;
  margin-bottom: 20px;
  max-width:1100px;
}

@media (max-width: 767px) {
  .sponsors__title {
     text-align:center;
  }
}

.sponsors__inner {
  display: flex;
}
@media (min-width: 768px) {
  .sponsors__inner {
    flex-wrap: inherit;
  }
}

@media (max-width: 767px) {
  .sponsors__inner {
  flex-wrap:wrap;
  justify-content: center;
  }
}

.sponsors__list {
  width: 46%;
  margin-right: 8px;
  margin-bottom: 3px;
}
@media (min-width: 768px) {
  .sponsors__list {
    width: 20%;
  }
}
.sponsors__list:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .sponsors__list:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .sponsors__box {
    transition: 0.3s;
  }
  .sponsors__box:hover {
    opacity: 0.7;
    transition: 0.3s;
    cursor: default;
  }
}

.footer-instagram {
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  width:22%;
  border-left:1px solid #81BC46;
}

@media (max-width: 767px) {
  .footer-instagram {
     margin: auto;
     padding-bottom:40px;
       border-left:none;
  }
}

.footer-instagram__text {
  font-size: 1.4em;
  text-align: center;
  margin-bottom:10px;
}

.footer-instagram__icon{
  display:block;
  width:30px;
  transition: 0.3s;
}

  .footer-instagram__icon:hover {
    opacity: 0.7;
    transition: 0.3s;
  }

#pagetop {
  position: fixed;
  bottom: 30px;
  right: 0;
}

.pagetop__link {
  display: block;
  padding: 8px;
  width: 30px;
  height: 30px;
}
.pagetop__link img {
  width: 12px;
}
/*# sourceMappingURL=style.css.map */



/* x-techのあゆみ */

.history{
  width:100%;
  max-width: 1040px;
  margin: auto;
  margin-top: 40px;
}

.history__inner{
  display: flex;
  justify-content: space-between;
  margin:0 40px;
}

@media (max-width: 767px) {
  .history__inner{
    margin:0;
  }
}

.history__img{
  margin-top: -7px;
}

.history__contents{
  width:53%;
  margin-bottom: 80px;
}


@media (max-width: 767px) {
  .history__contents{
    width: 100%;
  }
}

.history__index{
  width:39%;
  height:230px;
  padding:30px;
  background-color: #1E1E1E;
  display: inline-block;
  color:#ffffff;
  font-size: 1.6rem;
  margin-top: -7px;
  position: -webkit-sticky;/*Safari*/
	position: sticky;
    /*固定したい位置*/
	top: 100px;
}

@media (max-width: 767px) {
  .history__index {
    display: none;
  }
}

.history__indextitle{
  margin-bottom: 30px;
}

#history__box{
  margin-bottom: 20px;
}

.history__number{
  font-size: 1.4rem;
  font-weight: bold;
  color:#121212;
  background-color: #9FEF4E;
  width: 18px;
  height:18px;
  padding:4px;
  margin: 0 10px 0;
  border-radius: 0 5px 5px 0;
}

.history__link{
  color:#ffffff;
  display: flex;
  align-items: center;
  transition: .3s;
}

@media (min-width: 768px) {
  .history__link:hover {
    opacity: .7;
    transition: .3s;
  }
}

@media (min-width: 768px) {
  .history__link:hover{
    opacity: .7s;
    transition: .3s;
  }
}

.history__history{
  position: relative;
}

.history__btn{
  position: absolute;
  right:20px;
  width:75%;
  transition: .3s;
}

.history__btn:hover{
  opacity: .7;
  transition: .3s;
}

.history__btn01{
  top:50%;
}

.history__btn02{
  top:66%;
}

.history__btn03{
  top:69%;

}

.history__btn04{
  top:84.5%;
}

.history-interview{
  position: relative;
}

.history__interviewlink{
  position: absolute;
  width:95%;
  transition: .3s;
}

@media (min-width: 768px) {
  .history__interviewlink:hover{
    opacity: .7;
    transition: .3s;
  }
}

.history__interviewlink01{
  top:12%;
}

.history__interviewlink02{
  top:34%;
  right:0;
}

.history__interviewlink03{
  top:56%;
}



/* 下層 */


.contents__main{
  width:100%;
  margin: auto;
  margin-top: 80px;
}

.contents__title{
  width: 90%;
  margin: auto;
  margin-top: 80px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .contents__title {
    width: 70%;
}
}

.contents__title__en{
font-family: "Raleway", sans-serif;
font-size: 4em;
font-weight: 400;
color: #9FEF4E;
margin-bottom: 30px;
}
@media (min-width: 768px) {
  .contents__title__en {
  font-size: 5em;
  margin-right: 24px;
}
}

.contents__inner{
  margin-bottom:80px;
}



/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  width:85%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tabs {
    width:70%;
  }
}


/*タブのスタイル*/
.tab_item {
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  margin-right: 20px;
  margin-bottom: 30px;
}


.tab_item:hover {
 color:#9FEF4E;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding:0;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#year-2022:checked ~ #year-2022_content,
#year-2021:checked ~ #year-2021_content,
#year-2023:checked ~ #year-2023_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  border-bottom:2px solid #9FEF4E;
  color: #9FEF4E;
}