@charset "utf-8";
.tss_footer {
  background-color: #F4AE00;
}
.mtv_wrap {
  position: relative;
}
.mtv_wrap img {
  width: 100%;
  height: auto;
}
.mtv_wrap::before {
  content: "";
  display: block;
  background-image: url("../img/bg_wrap.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}


/* リンクボタン共通 */
a.mtv_boxlink {
  font-size: 0.75em;
  font-weight: normal;
  background-color: #fff;
  padding: 0.5em 3em 0.5em 1em;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-image: url("../img/ic_oslink.svg");
  background-repeat: no-repeat;
  background-position: right 0.5em center;
  background-size: 1em auto;
  color: #000B39;
}


/* ファーストビュー */
.mtv_head {
  position: relative;
  width: 100%;
  background-color: #fff;
  background-image: url("../img/bg_top.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100% auto;
  padding: 8px 16px 2em 16px;
  aspect-ratio: 3 / 1;
}

.mtv_currenttitle{
  position:relative;
  max-width: 1200px;
  margin: auto;
}
.mtv_ttlPage_sub{
  position: absolute;
  top: -110px;
  width: clamp(14.375rem, 6.086rem + 30.84vw, 35rem);/*230-560 430-1500*/
  animation: fadein 2s;
}

.mtv_logotitle{
  position: relative;
  width: 90%;
  max-width: 860px;
  margin:min(16.5vw,124px) auto 0;
}

.mtv_headFlx{
  display: flex;
  justify-content: center;
  gap: 20px;
}
.mtv_headFlx01{position: relative;}

.mtv_logo{
  position: relative;
  max-width: clamp(6.875rem, 3.833rem + 11.32vw, 10.625rem);/*110-170 430-960*/
  margin-inline-start: auto;
  animation: fadein 2s;
}
.mtv_ttlPage{max-width: 670px;}
.mtv_headIl{
  max-width: 660px;
  animation: fadein 2s;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mtv_headTxt{
  margin-top: clamp(8px,1.5vw,16px);
  font-size: clamp(1.125rem,2vw,2rem);
  font-weight: bold;
  line-height: calc(48/32);
}
.mtv_headTxt span{position: relative;}
.mtv_headTxt span::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: -21vw;
  left: -104px;
  bottom: 0;
  margin: auto;
  background-image: url("../img/ic_star.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  animation: mtv_rotate 4s infinite linear;
}
@keyframes mtv_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* セクショントップ */
.mtv_catch {
  width: 100%;
  display: grid;
  grid-template-columns: 30% 5% 5% 60%;
  grid-template-rows: auto;
  gap: 0px 0px;
  position: relative;
  border-bottom: 3vw solid #fff;
  background-image: url("../img/bg_or.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
.mtv_cth_bg {
  grid-area: 1 / 1 / 4 / 3;
  position: relative;
  z-index: 2;
}
.mtv_cth1 {
  grid-area: 1 / 3 / 2 / 5;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
}
.mtv_cth2 {
  grid-area: 2 / 2 / 3 / 5;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
}
.mtv_cth_pt {
  grid-area: 3 / 1 / 4 / 5;
  position: relative;
  z-index: 6;
}
.mtv_cth1 p {
  background-color: #FEF5E0;
  padding: 1.5em;
  line-height: 1.5;
  font-weight: bold;
  max-width: 40em;
  transform: translateX(calc((2em + 2vw)*-1));
  border-radius: 1em;
  position: relative;
}
.mtv_cth1 p::before {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  top: -40px;
  right: -32px;
  background-image: url("../img/ic_idea.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  animation: mtv_pikon 2s linear;
}
@keyframes mtv_pikon {
  0% {
    transform: scale(0);
  }
  20% {
    transform: scale(0);
  }
  40% {
    transform: scale(1.5);
  }
  60% {
    transform: scale(1);
  }
  95% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.mtv_cth2 > p {
  width: 55%;
  max-width: 33em;
  padding: calc(1em + 2vw) 1em;
  font-size: 0.875em;
  line-height: 1.35;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.mtv_cth2 > p + div {
  width: 45%;
  align-self: flex-end;
}
.mtv_cth_pt ul {
  width: 60%;
  display: flex;
  gap: 2vw;
  margin-left: 10%;
  transform: translateY(-3vw);
}
.mtv_cth_pt li {
  border-radius: 1em;
  overflow: hidden;
}
.mtv_prg {
  display: flex;
  border-top: solid 3vw #fff;
  background-image: url("../img/bg_bl.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
.mtv_prg > div:first-of-type {
  position: relative;
  width: 75%;
  background-color: #fff;
  z-index: 3;
}
.mtv_prg > div:last-of-type {
  width: 30%;
  position: relative;
  z-index: 2;
}
.mtv_prgbox {
  position: relative;
  padding: 1em 2em;
  background-color: #E4EDF9;
  width: 70%;
  margin: 1em auto 80px;
  border-radius: 1em;
}
.mtv_prgbox::before {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  top: -32px;
  left: -48px;
  background-image: url("../img/ic_qa.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  animation: mtv_mochi 3s infinite;
}
@keyframes mtv_mochi {
  0% {
    transform: scale(1, 0.8);
  }
  20% {
    transform: scale(0.8, 1.1);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0.8);
  }
}


/* セクションミドル */
.mtv_prgbox h2 {
  font-weight: bold;
  margin: 0.5em 0;
}
.mtv_prgbox li {
  margin-left: 1em;
  list-style-type: disc;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 8px;
}
.mtv_prgbox li span {
  font-size: 0.875em;
  font-weight: normal;
}
.mtv_prgbox + div {
  width: 80%;
  max-width: 800px;
  margin-left: auto;
animation: mtv_fuwa 2s infinite;
}
@keyframes mtv_fuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-2vw);
  }
  100% {
    transform: translateY(0px);
  }
}
.mtv_prgbox ul + p{font-size: 0.75em;font-weight: normal;padding-top: 0.75em;}


/* セクションボトム */
.mtv_dtlbox {
  width: 100%;
  border-top: solid 4vw #fff;
}
.mtv_dtl {
  background-image: url("../img/bg_ccltv.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  padding: 80px 1em;
}
.mtv_item {
  background-color: #FFF0F0;
  padding: 1.5em;
  line-height: 1.5;
  font-weight: bold;
  width: 80%;
  max-width: 25em;
  margin: 0 auto 40px;
  border-radius: 1em;
  position: relative;
}
.mtv_item::before {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  top: -32px;
  right: -32px;
  background-image: url("../img/ic_bag.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
    animation: mtv_bure 1s steps(2, start) infinite;
}
@keyframes mtv_bure {
  0% {
    transform: rotate(6deg);
  }
  to {
    transform: rotate(-3deg);
  }
}

/* スケジュールの表 */
.mtv_dtllist {
  background-color: #fff;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1em 0;
  border-radius: 16px;
}
.mtv_scheduleListWrap {
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0.5em;
}
.mtv_scheduleList{
  display: flex;
  gap: 8px clamp(16px,3vw,40px);
}
.mtv_scheduleList dt {
  flex: 0 0 26.83%;
  max-width: 264px;
  align-content: center;
  padding: 32px 24px 32px 72px;
  font-weight: bold;
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 20% auto;
  border-radius: 8px;
}
.mtv_scheduleList dd {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  font-size: clamp(0.875rem, 0.7372rem + 0.5128vw, 1rem);
  font-weight: bold;
  line-height: 1.6;
}
.mtv_scheduleTxt p:not(:first-child){margin-top: 8px;}
.mtv_placeContents{
  display: flex;
  align-items: center;
  gap: 16px;
}
.mtv_placeContents > p{font-weight: 400;}
.mtv_placeContents_mini{
  display: block;
  font-size: 0.875rem;
}
.mtv_scheduleList:nth-of-type(1) dt {
  background-color: #E4EDF9;
  background-image: url("../img/ic_date.svg");
}
.mtv_scheduleList:nth-of-type(2) dt {
  background-color: #FEF6E3;
  background-image: url("../img/ic_place.svg");
  animation-delay: 1s;
}
.mtv_scheduleList:nth-of-type(3) dt {
  background-color: #FFF0F0;
  background-image: url("../img/ic_target.svg");
  animation-delay: 2s;
}
.mtv_scheduleList:nth-of-type(4) dt {
  background-color: #E4EDF9;
  background-image: url("../img/ic_price.svg");
  animation-delay: 3s;
}
.mtv_scheduleList:nth-of-type(5) dt {
  background-color: #FEF6E3;
  background-image: url("../img/ic_present.svg");
  animation-delay: 4s;
}
.mtv_obento {
  position: relative;
  width: 100%;
}
.mtv_obento::after {
  content: "";
  display: block;
  position: absolute;
  width: 172px;
  height: 96px;
  top: -50px;
  right: 0;
  background-image: url("../img/ic_lunchbox.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  animation: mtv_bure 1s steps(2, start) infinite;
}
.mtv_map.mtv_boxlink{
  position: relative;
  display: flex;
}
.mtv_map.mtv_boxlink::before {
  content: "";
  display: block;
  width: 2.5em;
  height: 1.5em;
  background-image: url("../img/ic_googlemaps.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}
/* 主催・共催 */
.mtv_sponcerListWrap{
  padding: 1em 0.5em;
  background-color: #FFF0F0;
  font-size: clamp(0.875rem, 0.7372rem + 0.5128vw, 1rem);/*14-16 430-820*/
  font-weight: bold;
  line-height: 1.35;
  margin: 0.5em;
  border-radius: 8px;
}
.mtv_sponcerList{
  display: flex;
  align-items: center;
}
.mtv_sponcerList dt {
  width: 4em;
  padding: 0.5em 0.25em;
}
.mtv_sponcerListFlx{
  display: flex;
  align-items: center;
  gap: 12px;
}
.mtv_noticewrap {
  background-color: #fff;
  padding: 40px 0;
  margin: 0;
}
.mtv_noticearea {
  width: 100%;
  padding: 4em 1em;
  background-color: #FFA1A1;
  border-radius: 0 0 20vw 0;
  background-image: url("../img/bg_notice.svg");
  background-repeat: repeat-x;
  background-position: center center;
  background-size: 2em auto;
  position: relative;
}
.mtv_noticearea::before {
  content: "";
  position: absolute;
  width: 20vw;
  aspect-ratio: 1;
  background-color: #FFA1A1;
  border-radius: 10vw;
  top: -8vw;
  right: 0;
  z-index: 10;
}
.mtv_noticearea::after {
  content: "";
  position: absolute;
  width: 4vw;
  aspect-ratio: 1;
  background-color: #FFA1A1;
  border-radius: 2vw;
  top: -12vw;
  right: 0;
  z-index: 9;
}
.mtv_noticeinnrbox {
  position: relative;
  background-color: #fff;
  padding: 3em 2em;
  border-radius: 2em;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 12;
}
.mtv_noticeinnrbox h2 {
  margin-inline: auto;
  font-weight: bold;
  text-align: center;
  transform: translateY(-80px);
}
.mtv_noticeinnrbox h2::before {
  content: "";
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  background-image: url("../img/ic_notice.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 0 auto;
  top:-1em;
  animation: mtv_pikon2 2s ease-out;
}
@keyframes mtv_pikon2 {
  0% {
    transform: scale(0.5);
  }
  40% {
    transform: scale(1.5);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.mtv_noticeinnrbox > p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  text-align: center;
  margin-top: -80px;
  padding-block: 16px;
}
.mtv_noticearea ul {
  line-height: 1.35;
  margin: 1em 0;
}
.mtv_noticearea li {
  font-size: clamp(0.875rem, 2vw, 1rem);
  list-style: disc;
  margin: 0 0 8px 1em;
}


/* 募集セクション */
.mtv_foot {
  background-color: #fff;
  padding: 2em 2em 160px;
}
.mtv_foot a {
  display: block;
  position: relative;
  background-color: #0D59C9;
  border-radius: 8em;
  padding: 2em 10em;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.25em;
  font-weight: bold;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  width: fit-content;
  max-width: 100%;
  margin: 2em auto;
  text-decoration: none;
}
.mtv_foot a::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  margin: auto;
  border: solid 3px #fff;
  border-radius: 8em;
}

.mtv_foot a + p{
  width:fit-content;
  max-width: 100%;
  padding: 0.5em;
  background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 49%,#FFD0D0 50%,#FFD0D0 100%);
  margin: 0 auto;
}

.mtv_foot p:only-child{
  display: block;
  position: relative;
  color:#000;
  background-color: #DCE0E5;
  border-radius: 8em;
  padding: 1em 4em;
  font-size: 1em;
  width: fit-content;
  max-width: 100%;
  margin: 2em auto;
  text-decoration: none;
}


.tss_gotop{right:2vw;}
.tss_gotop a{display: block;}
.tss_gotop img{width:100%;height: auto;}



@media screen and (min-width:801px) {
  a.mtv_boxlink:hover {
    box-shadow: none;
    color: #000;
    text-decoration: none;
  }
  .mtv_foot a:hover {
    text-decoration: underline;
    text-shadow: none;
    box-shadow: none;
  }
}



@media screen and (max-width:1500px){
  .mtv_headFlx01{display: contents;}
  .mtv_ttlPage_sub{
    top: -90px;
    left: 0;
  }
  .mtv_headFlx{position: relative;flex-wrap: wrap;}
  .mtv_logo{margin-inline: unset;}
  .mtv_headTxt{
    order: 2;
    width: 100%;
    text-align: center;
  }
}



@media screen and (max-width:960px) {
  /* ファーストビュー */
  .mtv_headFlx02{
    width: 50%;
  }
  .mtv_headFlx {
    align-items: center;
  }
  .mtv_ttlPage_sub{top: -92px;}
}



@media screen and (max-width:860px) {
}



@media screen and (max-width:800px) {
  /* リンクボタン共通 */
  a.mtv_boxlink{
    align-items: center;
    max-width:80%;
    box-shadow:inset 0 2px 2px rgba(240,240,240,0.4), 0 2px 2px rgba(0, 0, 0, 0.2);
  }

  /* ファーストビュー */
  .mtv_head h1{width:100%;}
  .mtv_head h1 + p{margin: 0 ;padding:3em 0.5em 1em;font-size: calc(100vw / 24);width: 100%;}
  .mtv_head h1 + p::before{width:12vw;height: 12vw;left:0;right:0;top:-20vw;margin: auto;}
  
  /* セクショントップ */
  .mtv_catch{padding-top: 20vw;display: block;background-size: 160% auto;}
  .mtv_cth1 p{
    transform: none;
    width:90%;
    margin: 0 auto;
    padding:1em 0.5em;
  }
  .mtv_cth1 p::before{width:12vw;height: 12vw;top:-8vw;right:0;}
  .mtv_cth2{flex-wrap: wrap;}
  .mtv_cth2 > p{width:96%;}
  .mtv_cth2 > div{display: none;}
  .mtv_cth_pt{background-image: url("../img/bg_building.webp");background-position: right top;background-repeat: no-repeat;background-size: 60% auto;}
  .mtv_cth_pt ul{width: 100%;flex-wrap: wrap;}
  .mtv_cth_pt li{width: 25%;}
  .mtv_cth_pt li:nth-of-type(1){margin-right: 50%;}
  .mtv_cth_pt li:nth-of-type(3){margin-right: 25%;}
  .mtv_cth_pt li:nth-of-type(4){margin-left: 25%;}
  
  /* セクションミドル */
  .mtv_prg{background-position: top right;background-size: 160% auto; padding-top: 20vw;}
  .mtv_prg > div:first-of-type{width:90%; background-color: transparent;margin:0 auto; }
  .mtv_prg > div:last-of-type{display: none;}
  .mtv_prgbox{
    width: 100%;
    padding: 1em;
    margin: 1em auto 0;
  }
  .mtv_prgbox::before{top:-64px;left:0;}
  .mtv_prgbox + div{width:96%;margin: 16vw auto 0;}
  .mtv_prgbox li span{display: block;}
  
  /* セクションボトム */
  .mtv_dtlbox{border-top: 0;}
  .mtv_dtl{
    padding:clamp(6.625rem, -3.108rem + 36.22vw, 15rem) 0 40px;/*106-240 430-800*/
    background-image: url("../img/bg_ccltv_sp.svg");
    background-size: cover;
  }
  .mtv_item{
    width:92%; 
    margin: 0 auto 2em;
    padding:1em;
  }
  .mtv_item::before {width:12vw;height:12vw;right:0;}
  .mtv_obento::after {width: 19vw;}
  
  /* スケジュールの表 */
  .mtv_dtllist{width: 100%;padding:4%;}
  .mtv_scheduleList{flex-direction: column;}
  .mtv_scheduleList dt{
    flex: unset;
    max-width: unset;
    padding-block: clamp(0.5rem, -0.081rem + 2.16vw, 1rem);/*8-16 430-800*/
    padding-left: clamp(3.5rem, 2.338rem + 4.32vw, 4.5rem);/*56-72 430-800*/
    background-size: contain;
  }
  .mtv_dtllist dl:first-of-type{padding: 0;}
  .mtv_dtllist dl:first-of-type dd:nth-of-type(2){padding:0.5em 0 0.5em 1em;}
  a.mtv_boxlink.mtv_map {
    aspect-ratio: 1/1;
    padding:1em 1em 0.75em;
    background:none;
  }
  a.mtv_boxlink.mtv_map p{display: none;}
  .mtv_noticearea::before{width:40vw;top:-16vw;right:-10vw;border-radius: 20vw;}
  .mtv_noticeinnrbox > p{padding:1em 0;}
  .mtv_noticeinnrbox {padding: 3em 1em;}
  .mtv_sponcerListWrap{margin: 0; margin-top: 0.5em;}
  .mtv_placeContents_mini{display: inline-block;}

  /* 募集セクション */
  .mtv_foot{padding: 1em 4vw 160px;}
  .mtv_foot a, .mtv_foot p:only-child{padding: 1.5em 6em;margin: 1em auto;}
  .mtv_foot a + p{font-size: calc(100vw / 24);}
}



@media screen and (max-width:480px) {
  .mtv_ttlPage_sub{transform: rotate(22deg)}
}