@charset "UTF-8";

html {
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  width: 100%;
  /* font-family: "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif; */
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 100%;
  color: #fff;
  line-height: 1.8;
}

a {
  text-decoration: none;
}

/* a:hover {
  opacity: 0.7;
} */

.jump a:hover {
  color: #ffec04;
  font-weight: 600;
  font-size: 1.5rem;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.sec-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  margin-top: 20px;
}

.btnarea {
  padding-top: 40px;
  padding-bottom: 40px;

}

.btn {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: #ffec04;
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px;
  width: 300px;
  border-radius: 25px;
  text-align: center;
  outline: none;
  transition: ease .2s;
}

.btnarchive {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: #ffec04;
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px;
  width: 350px;
  border-radius: 25px;
  text-align: center;
  outline: none;
  transition: ease .2s;
}


.btnarrow::after {
  content: '';
  position: absolute;
  top: 1em;
  right: 25px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
}


.btnarrow:hover::after {
  animation: arrow .5s;
}

@keyframes arrow {
  50% {
    right: 20px;
  }

  100% {
    right: 25px;
  }
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
  background: #f9d9e3;
}

#header img {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  object-fit: cover;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #f9d9e3;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash-logo img,
#splash-logo canvas {
  width: 50px;
}

/*画面遷移アニメーション*/

.splashbg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-width: 0px;
  border-style: solid;
  border-color: #f9d9e3;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

@keyframes backBoxAnime {
  99.9% {
    z-index: 2;
    border-width: 0px;
  }

  100% {
    z-index: -1;
    border-width: 0px;
  }
}

/*画面遷移の後*/
#container {
  position: relative;
  opacity: 0;
}

body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}


.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #f9d9e3;
  transform: scale(0);
  top: -50px;
  left: calc(50% - 50px);
  transition: all .6s;
}

.circle-bg.circleactive {
  transform: scale(50);
}


#g-nav-list {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;

}

#g-nav.panelactive #g-nav-list {
  display: block;
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


#g-nav.panelactive ul {
  opacity: 1;
}

#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/*リストのレイアウト*/
#g-nav li {
  text-align: center;
  list-style: none;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #e8649d;
}


.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*-------------------------------------------
schedule
-------------------------------------------*/
#schedule {
  text-align: center;
  /* padding-top: 50px; */
  padding-bottom: 20px;
  background: #f9d9e3;
}

.schedule-inner {
  margin-bottom: 20px;
}

#schedule h1.sec-title {
  font-size: 1.7rem;
  /* color: #e8649d; */
  font-weight: bold;
  margin-bottom: 5px;
  padding-bottom: 10px;
}

.concept {
  background-color: #e8649d;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 20px;
}

.concept p {
  font-size: 1.2rem;
  line-height: 2;
  font-weight: bold;
  color: #fff;
}

.conceptlink {
  background-color: #5874b8;
  width: 70%;
  height: auto;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
}

p.small-right {
  text-align: right;
  font-size: 0.9rem;
  color: #fff;
}

.guideline {
  color: #000;
  text-align: left;
  line-height: 1.8;
  margin-bottom: 20px;
}

.small {
  font-size: 1.1rem;
  color: #ef2e7d;
  font-weight: bold;
}

/*-------------------------------------------
lastyear
-------------------------------------------*/
#lastyear {
  background-color: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}

.youtube {
  position: relative;
  height: 0;
  margin-bottom: 20px;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.movie img {
  max-width: 100%;
}

/* メディアクエリー逆注意 */
@media screen and (min-width: 600px) {

  .movie {
    display: flex;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }

  .item {
    flex-basis: 49.5%;
  }
}



.line {
  vertical-align: text-bottom;

}

.lastyearevent {
  margin-bottom: 0.5rem;
}

.btnchange {
  display: inline-block;
  background: #e8649d;
  color: #fff;
  padding: 10px 20px;
  border: 5px double white;
  text-decoration: none;
  outline: none;
  transition: .3s ease-out;
}

.btnchange:hover {
  opacity: 0.7;
  border-radius: 20px;
}

.eventtitle {
  margin-bottom: 1.5rem;
}

.award-inner {
  /* background:#f5f5f5; */
  padding: 20px;
}

.flexaward {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: dotted 1px #efefef;
  padding: 10px 0px;
}

.award-img {
  width: 35%;
}

.award-text {
  width: 62%;
  text-align: left;
}

.flexaward:nth-child(even) {
  flex-direction: row-reverse;
}

.flexaward:nth-child(even) .text {
  text-align: right;
}

#schedule h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.winners {
  /* font-size:0.98rem; */
  font-weight: 600;
  margin-bottom: 3px;
}

span.features {
  color: #ef2e7d;
}

span.judge {
  font-weight: 500;
}
.schedule_pc{
  display: block;
}
.schedule_sp{
  display: none;
}

@media screen and (max-width:768px) {
  .flexaward {
    flex-direction: column;
  }

  .award-img,
  .award-text {
    width: 100%;
  }
  .schedule_pc{
    display: none;
  }
  .schedule_sp{
    display: block;
  }
}





/*-------------------------------------------
event
-------------------------------------------*/
#event {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 30px;
}

table tr:nth-child(odd) td {
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  margin-bottom: 30px;
}

table th {
  /* width: 10%; */
  background: #5873b7;
  /* background: #fff27d; */
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 15px;
  vertical-align: middle;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

table td {
  background: rgb(249, 247, 249);
  border: 1px solid #333;
  box-sizing: border-box;
  padding: 15px;
  margin: auto;
  text-align: left;
}

@media all and (max-width: 767px) {

  table th,
  table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  table tr:last-child td:last-child {
    border-bottom: 1px solid #ccc;
  }
}


/*-------------------------------------------
study
-------------------------------------------*/
#study {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 30px;
  color: #333;
}

/* #study h2{
  color:#fff;
  background:#e8649d;
  padding: 20px;
  border-radius: 10px;
  margin-bottom:20px;
}
*/

h4.sec-title {
  font-size: 1.2rem;
  color: #ef2e7d;
}

h4.caution-title {
  font-size: 1.2rem;
  color: #fff;
}

.syusai {
  font-size: 0.9rem;
}

.simekiri {
  font-size: 1rem;
  font-weight: normal;
}

.ex-ext {
  color: #000;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.1rem;
}



.date {
  font-size: 1.5rem;
  color: #ef2e7d;
  font-weight: bold;
}

.ex-ext dt {
  width: 20%;
  font-weight: bold;
  line-height: 2.2;
}

.ex-ext dd {
  width: 78%;
  text-align: left;
  line-height: 2.2;
}

.study-inner {
  margin-bottom: 20px;

}

.flexitem {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.item-img {
  width: 48%;
}

.item-text {
  width: 50%;
  text-align: left;
}

@media screen and (max-width:768px) {
  .flexitem {
    flex-direction: column;
  }

  .item-img,
  .item-text {
    width: 100%;
  }
}

.class {
  text-align: left;
}

.class dt {
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
}

.class dd {
  line-height: 2;
  letter-spacing: 0.1em;
}

.info {
  width: 90%;
  background-color: #f82509;
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
}

.info p {
  font-size: 1.3rem;
  line-height: 2;
  font-weight: bold;
  color: #fff;

}

/*-------------------------------------------
advice
-------------------------------------------*/
#advice {
  color: #000 !important;
  background-color: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}

.bold {
  font-weight: bold;
}

.name {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 5px;
}

#advice .flex-item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px dotted #5873b7;
  z-index: 1;
}

#advice .flex-item .item {
  width: 30%;
  z-index: 0;
}

.flex-item dd {
  width: 68%;
  text-align: left;

}

#advice .item p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width:768px) {
  #advice .flex-item {
    flex-direction: column;
    z-index: 1;
  }

  .flex-item dt,
  .flex-item dd {
    width: 100%;
  }
}

/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
  background-color: #f9d9e3;
  padding-top: 50px;
  padding-bottom: 50px;
  line-height: 1.8;
}

#footer .copyright {
  text-align: center;
  padding: 30px 0;
  font-size: 0.75rem;
}

/* ページトップへ */
#page-top {
  position: fixed;
  right: 10px;
  bottom: 30px;
  z-index: 2;
  opacity: 0;
  transform: translateY(150px);
}


#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(150px);
  }
}

#page-top a {
  display: block;
  width: 100px;
  height: 100px;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  background: url("../imga/pagetop_1.png") no-repeat center;
  background-size: contain;
}

#page-top.floatAnime a {
  width: 100px;
  height: 130px;
  background: url("../imga/pagetop_2.png") no-repeat center;
  background-size: contain;
  animation: floatAnime 2s linear infinite;
  opacity: 0;
}

@keyframes floatAnime {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  25% {
    transform: translateX(-6px);
    opacity: 1;
  }

  50% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(6px);
    opacity: 1;
  }
}

/*Page Topテキストの位置*/
#page-top span {
  position: absolute;
  bottom: -20px;
  right: 20px;
  color: #5873b7;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* （左上へ） */
.flipLeftTop {
  animation-name: flipLeftTopAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipLeftTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }

  to {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}

.fadeUpTrigger,
.flipLeftTopTrigger {
  opacity: 0;
}


/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 768px) {

  /*-------------------------------------------
  フッター
  -------------------------------------------*/
  #footer .flex-item {
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  #footer .item {
    width: 100%;
    margin-bottom: 30px;
  }

  #footer .item:first-child {
    text-align: center;
    padding: 0;
  }
}



html {
  font-size: 100%;
}
body {
  font-family: "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 100%;
  color: #fff;
  line-height: 1.8;
}
a {
  text-decoration: none;
}
/* a:hover {
  opacity: 0.7;
} */

.jump a:hover {
  color: #ffec04;
  font-weight: 600;
  font-size: 1.5rem;
}
img {
  max-width: 100%;
 }
li {
  list-style: none;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.sec-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.btnarea{
padding-top: 40px;
padding-bottom: 40px;

}
.btn{
position: relative;
text-decoration: none;
display: inline-block;
background:#5c5;
color:#fff;
font-size: 1.5rem;
font-weight: bold;
  padding:10px;
  width:300px;
border-radius:25px;
  text-align: center;
  outline: none;
  transition: ease .2s;
}


.btnarrow::after{
  content: '';
position: absolute;
  top: 1em;
  right: 25px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}


.btnarrow:hover::after{
animation: arrow .5s;
}

@keyframes arrow {
50% {
  right: 20px;
}
100% {
  right: 25px;
}
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header{
  /* background:#5873b7; */
  background-image: url(../img/back.png);
  background-size: cover;
}
#header img {
  width: 100%;
  max-width: 1920px;
  height: 100%;
  object-fit: cover;
}
/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #5873b7;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#splash-logo img,
#splash-logo canvas{
	width:50px;
}

/*画面遷移アニメーション*/

.splashbg{
	position: fixed;
	top: 0;
	right:0;
	bottom:0;
	left: 0;
	border-width: 0px;
	border-style:solid;
    border-color: #5873b7;
	animation-duration:.5s;
	animation-fill-mode:forwards;
}

@keyframes backBoxAnime{
	99.9% {
        z-index: 2;
		border-width: 0px;
	}
    100%{
       z-index: -1;
        border-width: 0px;
    }
}

/*画面遷移の後*/
#container{
    position: relative;
	opacity: 0;
}

body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay:0.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
 position:fixed;
  z-index: 999;
top: 0;
width:100%;
  height: 100vh;
}


.circle-bg{
  position: fixed;
z-index:3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #5873b7;
 transform: scale(0);
top:-50px;
  left:calc(50% - 50px);
  transition: all .6s;
}

.circle-bg.circleactive{
transform: scale(50);
}


#g-nav-list{
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
   display: block;
}

/*ナビゲーション*/
#g-nav ul {
opacity: 0;
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}


#g-nav.panelactive ul {
  opacity:1;
}

#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト*/
#g-nav li{
text-align: center;
list-style: none;
color: #fff;
}

#g-nav li a{
color: #333;
text-decoration: none;
padding:10px;
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: bold;
color: #fff;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
position:fixed;
  z-index: 9999;
top:10px;
right: 10px;
cursor: pointer;
  width: 50px;
  height:50px;
  background: rgba(54 68 149);
}


.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
background-color: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
top:15px;
}

.openbtn span:nth-of-type(2) {
top:23px;
}

.openbtn span:nth-of-type(3) {
top:31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*-------------------------------------------
schedule
-------------------------------------------*/
#schedule {
  text-align: center;
  /* padding-top: 50px; */
  padding-bottom: 20px;
  /* margin-bottom: 30px; */
  /* background:#5873b7; */
  background:#fff;
}


.schedule-inner{
  margin-bottom: 20px;
}
#schedule h1.sec-title{
  font-size: 2.3rem;
  color:#000;
  font-weight: bold;
  margin-bottom:5px;
  padding-bottom:10px;
}
.concept{
  background-color:#4c64ae;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 30px;
  padding:20px;

}
.concept p{
  font-size: 1.2rem;
  line-height: 2;
  font-weight: bold;
  color:#fff;

}

p.small-right{
  text-align: right;
  font-size: 0.9rem;
  color: #fff;
}

.guideline{
  text-align: left;
  line-height: 1.8;
}

.small{
 font-size: 1.1rem;
 color:#ef2e7d;
  font-weight: bold;
}

/*-------------------------------------------
lastyear
-------------------------------------------*/
#lastyear {
  background-color: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}

.youtube {
  position: relative;
  height: 0;
  margin-bottom: 20px;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.movie img{
  max-width: 100%;
}
/* メディアクエリー逆注意 */
@media screen and (min-width: 600px) {
  .movie{
    display: flex;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .item{
    flex-basis: 49.5%;
    }
}
/* チャレンジ
.movie{
  display: flex;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
  }

  .item{
    flex-basis: 49.5%;
  }

  @media screen and (max-width: 600px) {
    .movie{
      flex-direction: column;
    }
    .item{
    width: 98%;
    }
  }
   */
  .line{
    vertical-align:text-bottom;

  }
   .lastyearevent{
     margin-bottom:0.5rem;
   }

   .btnchange{
  display: inline-block;
  background: rgba(54 68 149);
  color:#fff;
  padding:10px 20px;
  border:5px double white;
  text-decoration: none;
  outline: none;
  transition: .3s ease-out;
  }
  .btnchange:hover{
  opacity: 0.7;
  border-radius: 20px;
  }
  .eventtitle{
    margin-bottom:1.5rem;
  }
  .award-inner{
    /* background:#f5f5f5; */
    padding:20px;
  }

  .flexaward{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom:20px;
    border-bottom: dotted 1px #fff;
    padding:10px 0px;
  }
  .award-img{
    width:35%;
      }
  .award-text{
    width:62%;
    text-align: left;
  }
  .flexaward:nth-child(even) {
    flex-direction: row-reverse;
  }
  .flexaward:nth-child(even) .text {
    text-align: right;
  }
  #schedule h4{
    font-size:1.3rem;
    font-weight: 700;
    color:#fff;
  }
  .winners{
    /* font-size:0.98rem; */
    font-weight: 600;
    margin-bottom: 3px;
  }
 span.features{
    color:#ef2e7d;
  }
span.judge{
  font-weight: 500;
}
  @media screen and (max-width:768px) {
    .flexaward{
      flex-direction: column;
      }
    .award-img,.award-text{
      width:100%;
      }
  }


/*-------------------------------------------
study
-------------------------------------------*/
#study {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 30px;
}
#study h2{
  color:#fff;
  background:#5873b7;
  padding: 20px;
  border-radius: 10px;
  margin-bottom:20px;
}
.syusai{
  font-size:0.9rem;
}
.simekiri{
  font-size: 1rem;
  font-weight: normal;
}
.ex-ext{
  display: flex;
  flex-wrap: wrap;
}
.date{
  font-size: 1.5rem;
  color:#ef2e7d;
  font-weight: bold;
}
.ex-ext dt{
  width:20%;
  font-weight: bold;
  line-height: 1.8;
 }
.ex-ext dd{
  width:78%;
  text-align: left;
   line-height: 1.8;
}
.study-inner{
  margin-bottom:20px;

}
.flexitem{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom:20px;
}
.item-img{
  width:48%;
    }
.item-text{
  width:50%;
  text-align: left;
}

@media screen and (max-width:768px) {
  .flexitem{
    flex-direction: column;
    }
  .item-img,.item-text{
    width:100%;
    }
}
.class{
  text-align: left;
}
.class dt{
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
}
.class dd{
  line-height: 2;
  letter-spacing: 0.1em;
}
.info{
  width:90%;
  background-color:#f82509;
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 30px;
  padding:20px;
  margin-left:auto;
  margin-right: auto;
}
.info p{
  font-size: 1.3rem;
  line-height: 2;
  font-weight: bold;
  color:#fff;

}

/*-------------------------------------------
advice
-------------------------------------------*/
#advice {
  background-color: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}
#advice h3.sec-title {
  font-size:1.2rem;
  color:#ef2e7d;
}
.bold{
  font-weight: bold;
}
.name{
  font-size:0.9rem;
  font-weight: bold;
  margin-bottom: 5px;
}
#advice .flex-item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom:20px;
  border-bottom:1px dotted #5873b7;
  z-index:1;
}
#advice .flex-item .item{
  width: 30%;
  z-index:0;
 }

 .flex-item dd {
   width:68%;
   text-align: left;

}
#advice .item p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width:768px){
  #advice .flex-item {
    flex-direction: column;
    z-index:1;
}
.flex-item dt, .flex-item dd{
  width:100%;
}
}

/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
  background-color:rgba(54 68 149);
  padding-top: 50px;
  padding-bottom: 50px;
  line-height: 1.8;
  color: #fff;
}

#footer .copyright {
  text-align: center;
  padding: 30px 0;
  font-size: 0.75rem;
}
#footer .copyright >a{
  text-align: center;
  padding: 30px 0;
  font-size: 0.75rem;
  color: #3cf;
}
/* ページトップへ */
#page-top {
	position: fixed;
	right: 10px;
	bottom:30px;
	z-index: 2;
	opacity: 0;
	transform: translateY(150px);
}


#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(150px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}


#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(150px);
  }
}

#page-top a {
	display: block;
	width: 100px;
	height: 100px;
	color: #333;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size:0.6rem;
  	background: url("../img/pagetop_1.png") no-repeat center;
	background-size: contain;
}

#page-top.floatAnime a{
	width: 100px;
	height: 130px;
	background: url("../img/pagetop_2.png") no-repeat center;
	background-size: contain;
 	animation: floatAnime 2s linear infinite;
	opacity: 0;
}

@keyframes floatAnime {
  0% { transform: translateX(0); opacity: 0; }
  25% { transform: translateX(-6px);opacity: 1; }
  50% { transform: translateX(0) }
  100% { transform: translateX(6px);opacity: 1; }
}

/*Page Topテキストの位置*/
#page-top span{
    position: absolute;
    bottom: -20px;
    right: 20px;
	color: #aaa;
}

  .fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }

  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }

    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
/* （左上へ） */
.flipLeftTop{
  animation-name: flipLeftTopAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }

  @keyframes flipLeftTopAnime{
    from {
     transform: translate(-20px,80px) rotate(-15deg);
     opacity: 0;
    }

    to {
     transform: translate(0,0) rotate(0deg);
    opacity: 1;
    }
  }

.fadeUpTrigger,
.flipLeftTopTrigger{
    opacity: 0;
}



/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 768px) {
 /*-------------------------------------------
  フッター
  -------------------------------------------*/
  #footer .flex-item {
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
  }
  #footer .item {
    width: 100%;
    margin-bottom: 30px;
    color: #fff;
  }
  #footer .item:first-child {
    text-align: center;
    padding: 0;
  }
}

        /* 画面に固定される要素 */


.fixed-element{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
  }

  .button {
    display: inline-block;
    width: 150px;
    height: 60px;

    background-color: #69a;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(10deg);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .button::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-color: rgba(255, 255, 255, 0.2);
    transform-origin: center;
    transform: rotateX(45deg);
    transition: transform 0.3s;
  }

  .button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transform-origin: center;
    transform: translateY(8px);
    filter: blur(8px);
    transition: transform 0.3s;
  }

  .button-text {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 24px;
    text-align: center;
    z-index: 1;
  }

  .button:active {
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }

  .button:active::before {
    transform: rotateX(0deg);
  }

  .button:active::after {
    transform: translateY(4px);
  }


  /*追記20231207岡村*/
@media (min-width: 768px) {
  .video-caption {
    font-size: 18px;
    color: #000;
  }
}

/* SP用のスタイル */
@media (max-width: 767px) {
  .video-caption {
    font-size: 16px;
    color: #000;
  }
}

.slider {
  margin: 30px auto 0;
  max-width: 500px;
  width: 80%;
}

.slick-img img {
  height: auto;
  width: 100%;
}




/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}


.slick-loading .slick-list {
  background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;

  src: url('./fonts/slick.eot');
  src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;

  position: absolute;
  top: 50%;

  display: block;

  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);

  cursor: pointer;

  color: #000;
  border: none;
  outline: none;
  background: #000;opacity: 0.8;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  /*color: transparent;
  outline: none;
  background: transparent;*/
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;

  opacity: .75;
  color: white;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '←';
}

[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: '→';
}

[dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}

.slick-dots li {
  position: relative;

  display: inline-block;

  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;

  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: '•';
  text-align: center;

  opacity: .25;
  color: black;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}




.container {
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  width: 85%;
  position: relative;
  width: 100%;
}

.slick-img img {
  height: auto;
  width: 100%;
  object-fit: cover;
}

.slick-prev {
  left: -30px;
  z-index: 1;
}

.slick-next {
  right: -30px;
}

.container .slick-num {
  background-color: rgba(255, 255, 255, .5);
  bottom: 0;
  font-size: 18px;
  left: 0;
  line-height: 2;
  position: absolute;
  right: 0;
  text-align: center;
}
.slick-prev:before {
  content: '◀';
}
.slick-next:before {
  content: '▶';
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  height: 100%;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #fff;
  border: none;
  outline: none;
  background: #fff;
  opacity: 0.7;
}


.header-image {
  max-width: 100%;
}

.special-date {
  font-size: 1.5rem;
  /* text-shadow: 1px 2px 1px rgb(25, 200, 245); */
  color: #111;
  font-weight: bold;
  /* background: linear-gradient(transparent 80%, rgba(54, 68, 149, 1) 80%); */
}

.obo-area{
  justify-content: center;
  max-width: 750px;
  gap: 0 20px;
  margin: 30px auto;
  display: flex;
}

.obo-area b{
  color: #fff;
}

.apply-button {
  /* padding: 1.2rem 3rem; */
  line-height: 1.5rem;
  display: inline-block;
  width: 320px;
  height: 100px;
  background-color: orange;
  background-color: #888;
  border-radius: 20px;
  text-align: center;
  position: relative;
  cursor: not-allowed;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(10deg);
  transition: transform 0.3s, box-shadow 0.3s;
  font-size: 20px;
  color: #000;

  font-weight: 800;
}
.apply-button2 {
  line-height: 1.5rem;
  display: inline-block;
  width: 320px;
  height: 100px;
  background-color: #f82509;
  border-radius: 20px;
  text-align: center;
  position: relative;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(10deg);
  transition: transform 0.3s, box-shadow 0.3s;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

 .apply-button2:hover {
  /* ホバー時の変形: 少し沈んだように見せる */
  transform: perspective(1000px) rotateX(0deg) translateY(5px);
  /* ボックスシャドウを減少させて、ボタンが平面に近づいたように見せる */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}


.obo-description{
  text-align: left;
  padding: 1.2rem;
  color: #fff;
  background-color: #07f;
  border: solid 1px #eee ;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-top: 1.5rem;
}
.obo-description li{
  padding-left: 1.2rem;
}

.bold{
  font-weight: bold;
}

@media screen and (max-width : 768px) {
  .apply-button2 {
    margin-top: 15px;

  }
  .obo-area{
    justify-content: center;
    max-width: 750px;
    gap: 0 20px;
    margin: 0 auto;
    display: block;
  }
}

.archive{
  display: inline-block;
  width: 300px;
  height: 100px;
  background-color: rgba(54, 68, 149, 1);
  border-radius: 30px;
  text-align: center;
  position: relative;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(10deg);
  transition: transform 0.3s, box-shadow 0.3s;
  font-size: 20px;
}
.archive b{
  font-size: 20px;
}


.slick-prev:before, .slick-next:before {
  color: black;
}

#slick-slider img {
max-width: 350px;
  min-height: 120px;
  object-fit: cover; /* 画像のアスペクト比を保ちながらサイズを変更 */
}

.slick-slide img {
  display: block;
  margin: 0 auto;

}
.dropdown-menu a {
  white-space: nowrap;
}

.menu-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;

}
.menu {
  display: flex;
  width: 750px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #000;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.submenu {
  display: none;
  list-style: none;
  padding-left: 20px;
}
.menu-item {
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 5px;
  transition: background-color 0.3s ease;
}
.menu-item:hover {
  background-color: #e0e0e0;
}
.menu-item a {
  text-decoration: none;
  color: inherit;
}
.submenu a {
  text-decoration: none;
  color: #333;
}
.submenu a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px ) {

  .menu {
    width: 320px;
    display: block;
    }
}
