@charset "UTF-8";
/*
	Filename: hands-on
	Version: 1.0.1
*/
/* -------------------------------- */
/* 20250808追加・ハンズオンコンテスト */
/* -------------------------------- */

/*-----------------------------------------------------
	共通
------------------------------------------------------*/
main {
    width: 100%;
    padding-bottom: 30px;
    background-image: url(../../event/hands-on_contest2025/images/main_bg.svg);
    background-repeat: repeat-y;
    background-position: center 80px;
    background-size: 1288px;
}
img {
  max-width: 100%;
}
.title_logo {
padding-top: 50px;
}
.contents {
  width: 820px;
  margin: 0 auto;
}
.text_2rem {
  font-size: 2rem !important;
}
.contents {
  width: 820px;
  margin: 0 auto;
}
/*-----------------------------------------------------
	ページ内リンクボタン
------------------------------------------------------*/
.link_btn_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 55px;
  gap: 10px 20px;
}
.link_btn_list li {
  text-align: center;
  font-size : 12px;
  line-height: 3;
  color: #3C0900;
  padding: 7px;
  list-style-type: none;
  border-radius: 18px;
  border : solid 1px #3C0900;
}
.link_btn_list img {
  vertical-align: middle;
}
.link_btn_list li a {
  display: block;
    height: 100%;
    width: 100%
}

@media screen and (max-width:750px ) {
  .link_btn_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 55px;
  gap: 5px;
}
.link_btn_list li {
  font-size : 11px;
  line-height: 1.1;
  padding: 5px;
}

}
/*-----------------------------------------------------
	各賞
------------------------------------------------------*/
.medal_container_outer {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 65px;
}
.medal_container_outer_center {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 65px;

}

.medal_container_inner {
  width: 45%;
  border-color: #F6D300!important;
  border: 4px solid;
  border-radius: 20px;
  position: relative;
  padding: 20px;
}
.medal_icon {
  background-image: url(../../event/hands-on_contest2025/images/icon_01_medal.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 130px;
  height: 145px;
  top: -52px;
  left: -67px;
}
.medal_name {
  top: -24px;
  left: -35px;
  position: absolute;
    line-height: 1.2;
}
.medal_text_1 {
  margin-left: 30px;
}
@media screen and (max-width:750px ) {
  .medal_name, .medal_text_1, .medal_text_2 {
    font-size: 14px;
  }
  .medal_name {
    left: -30px;
  }
}
/*-----------------------------------------------------
アニメーション
------------------------------------------------------*/

/* ふわっと浮き出る */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease 0.3s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* 時間差 */
.delay-0 { animation-delay: 0s; }
.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 2s; }
.delay-3 { animation-delay: 3s; }

/* ミャクミャクボタン */
.click_container_outer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.click_container_inner {
  width: 50%;
}
.click_here_outer {
  position: relative;
}
.click_here_outer p {
  position: absolute;
  top: 20%;
  left: 10%;
  color: #fff;
}
.anime-mochimochi {
   animation: mochimochi 1s infinite;
}
.click_here_inner {
  transition-duration: .4s;
}
.click_here_inner:hover {
  transform: scale(1.1);
}

@keyframes mochimochi {
  0% {
    transform: scale(1, 0.8);
  }
  20% {
    transform: scale(0.8, 1.0);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0.8);
  }
}

/*-----------------------------------------------------
SP
------------------------------------------------------*/

@media screen and (max-width: 750px) {
  .title_logo {
  padding: 90px 40px 0;
  }
  .contents {
  width: 100%;
  padding: 0 15px;
}
.medal_container_outer {
  justify-content: center;
  gap: 50px;
}
.medal_container_inner {
  width: 80%;
}

.medal_icon {
  background-image: url(../../event/hands-on_contest2025/images/icon_01_medal_sp.png);
  background-repeat: no-repeat;
  position: absolute;
  width: 93px;
  height: 102px;
  top: -38px;
  left: -48px;
}
.medal_name {
  top: -25px;
  left: -33px;
  position: absolute;
}

.click_container_inner {
    width: 90%;
}
.click_container_outer {
    justify-content: center;
}
.click_here_outer p {
    top: 13%;
    left: 10%;
    font-size: 80%;
}

}