@charset "UTF-8";
/* ======================================================================
 common
====================================================================== */
html {
  font-size: 0.6944444444vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.7777777778vw;
  }
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #000;
  font-weight: 400;
}

img {
  width: 100%;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
/* ======================================================================
 header
====================================================================== */
.tpc25_header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  z-index: 9;
  top: 0;
  left: 0;
  padding: 4rem 3.5rem;
}
@media screen and (max-width: 768px) {
  .tpc25_header {
    justify-content: space-between;
    padding: 2rem 4%;
  }
}
.tpc25_header_logo {
  width: 17.7rem;
}
@media screen and (max-width: 768px) {
  .tpc25_header_logo {
    width: 7.5rem;
  }
}
@media screen and (max-width: 768px) {
  .tpc25_header_menu {
    width: 2.4rem;
    z-index: 99;
  }
}

/* ======================================================================
 footer
====================================================================== */
.tpc25_footer_top {
  background: #aee1fd url(../img/footer_bg.png) no-repeat 0 100%;
  background-size: 100%;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .tpc25_footer_top {
    padding-bottom: 4rem;
  }
}
.tpc25_footer_btm {
  text-align: center;
  color: #FFF;
  background: #2c8547;
  margin-top: -1px;
  padding: 10rem 0 6rem;
}
@media screen and (max-width: 768px) {
  .tpc25_footer_btm {
    padding: 5rem 0 1rem;
  }
}
.tpc25_footer_btn {
  opacity: 1;
  transition: all 0.2s ease-in-out;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5rem;
  background: #ffcb33;
  box-shadow: 0.4rem 0.6rem 0 0 rgba(0, 51, 153, 0.4);
  width: 51rem;
  height: 6.4rem;
  border-radius: 6.4rem;
  font-size: 2.7rem;
}
@media screen and (max-width: 768px) {
  .tpc25_footer_btn {
    transition: none;
  }
}
.tpc25_footer_btn:hover, .tpc25_footer_btn:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .tpc25_footer_btn:hover, .tpc25_footer_btn:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .tpc25_footer_btn {
    width: 26.8rem;
    height: 3.4rem;
    box-shadow: 0.2rem 0.3rem 0 0 rgba(0, 51, 153, 0.4);
    font-size: 1.4rem;
    margin: 0 auto 2.5rem;
  }
}
.tpc25_footer_sns {
  opacity: 1;
  transition: all 0.2s ease-in-out;
  margin: 0 auto;
  display: block;
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 768px) {
  .tpc25_footer_sns {
    transition: none;
  }
}
.tpc25_footer_sns:hover, .tpc25_footer_sns:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .tpc25_footer_sns:hover, .tpc25_footer_sns:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .tpc25_footer_sns {
    width: 2rem;
    height: 2rem;
  }
}
.tpc25_footer_txt {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .tpc25_footer_txt {
    font-size: 0.9rem;
  }
}
.tpc25_footer_copy {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .tpc25_footer_copy {
    font-size: 0.9rem;
  }
}

.tpc25_pagetop {
  position: fixed;
  display: none;
  z-index: 99;
  right: 4%;
  bottom: 3%;
  width: 3.4rem;
}

/* ======================================================================
 main
====================================================================== */
.tpc25_ttl {
  text-align: center;
  letter-spacing: 0.2rem;
}
.tpc25_ttl span {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.7rem;
  width: 26.2rem;
  height: 5.4rem;
}
@media screen and (max-width: 768px) {
  .tpc25_ttl span {
    font-size: 1.6rem;
    width: 15rem;
    height: 3.1rem;
  }
}

.tpc25_mv {
  position: relative;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(../img/mv_bg_t.png);
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv {
    background-image: url(../img/mv_bg_t_sp.png);
    padding-bottom: 0;
  }
}
.tpc25_mv::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  display: block;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(../img/mv_bg_d.png);
  width: 95.5rem;
  height: 41.5rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv::after {
    width: 100%;
    height: 19.7rem;
    background-image: url(../img/mv_bg_d_sp.png);
  }
}
.tpc25_mv_cont {
  position: relative;
}
.tpc25_mv_cont::before, .tpc25_mv_cont::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 21%;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 1.4rem;
  height: 29rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv_cont::before, .tpc25_mv_cont::after {
    display: none;
  }
}
.tpc25_mv_cont::before {
  background-image: url(../img/mv_en_l.svg);
  left: 4rem;
}
.tpc25_mv_cont::after {
  background-image: url(../img/mv_en_r.svg);
  right: 4rem;
}
.tpc25_mv_txt {
  position: absolute;
  z-index: 1;
  width: 13.4rem;
  bottom: 20rem;
  left: 11rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv_txt {
    width: 11.5rem;
    bottom: 12rem;
    left: 2%;
    z-index: 10;
  }
}
.tpc25_mv_ttl {
  margin: 0 auto;
  padding: 4.5rem 0 3rem;
  width: 55.2rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv_ttl {
    width: 25.7rem;
    padding: 7.4rem 0 0.5rem;
  }
}
.tpc25_mv_slider_box {
  position: relative;
  margin: 0 auto;
  width: 91rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv_slider_box {
    width: 96%;
    padding-top: 2rem;
  }
}
.tpc25_mv_slider_box._ht .tpc25_mv_slider_badge {
  left: 15rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv_slider_box._ht .tpc25_mv_slider_badge {
    left: 5rem;
    top: 2rem;
  }
}
.tpc25_mv_slider_box._ht .tpc25_mv_slider_name {
  color: #000;
  left: 16rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv_slider_box._ht .tpc25_mv_slider_name {
    color: #FFF;
    left: 10.5rem;
  }
}
.tpc25_mv_slider_badge {
  position: absolute;
  z-index: 1;
  width: 7.5rem;
  left: -8rem;
  top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv_slider_badge {
    width: 3.5rem;
    left: 0.5rem;
    top: 0rem;
  }
}
.tpc25_mv_slider_name {
  position: absolute;
  bottom: 1rem;
  left: 2rem;
  color: #FFF;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv_slider_name {
    font-size: 0.9rem;
    left: 1rem;
    bottom: 0.5rem;
  }
}
.tpc25_mv_slider .slick-dots {
  position: absolute;
  z-index: 99;
  right: 22rem;
  top: 40%;
}
@media screen and (max-width: 768px) {
  .tpc25_mv_slider .slick-dots {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
  }
}
.tpc25_mv_slider .slick-dots li {
  margin: 0;
  line-height: 0;
}
.tpc25_mv_slider .slick-dots li:not(:last-child) {
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv_slider .slick-dots li:not(:last-child) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .tpc25_mv_slider .slick-dots li {
    margin: 0 0.25rem;
  }
}
.tpc25_mv_slider .slick-dots li.slick-active button {
  background: #3583c5;
}
.tpc25_mv_slider .slick-dots button {
  background: #8fbadf;
  border: none;
  font-size: 0;
  padding: 0;
  border-radius: 0.9rem;
  width: 0.9rem;
  height: 0.9rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv_slider .slick-dots button {
    width: 0.35rem;
    height: 0.35rem;
  }
}
.tpc25_mv_jury {
  position: absolute;
  z-index: 3;
  width: 39.4rem;
  bottom: 8rem;
  right: 5rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv_jury {
    position: relative;
    bottom: auto;
    right: auto;
    z-index: 9;
    width: 86.66%;
    margin: 3rem auto 0;
  }
}
.tpc25_mv_date {
  position: relative;
  z-index: 2;
  margin: 3rem auto 0;
  width: 54.4rem;
}
@media screen and (max-width: 768px) {
  .tpc25_mv_date {
    background: #2c8547;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    margin: 1.5rem auto 0;
  }
  .tpc25_mv_date img {
    width: 77.77%;
  }
}

.tpc25_menu {
  background: #2c8547;
  padding: 1.5rem 0;
}
@media screen and (max-width: 768px) {
  .tpc25_menu {
    background: url(../img/menu_bg.png) repeat-y 0 0;
    background-size: 100% 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    padding: 0;
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .tpc25_menu_close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1;
    width: 3.9rem;
  }
}
.tpc25_menu_list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .tpc25_menu_list {
    display: block;
    width: 74%;
    margin: 7rem auto 0;
  }
}
.tpc25_menu_list_box {
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 768px) {
  .tpc25_menu_list_box {
    border-bottom: 1px solid #FFF;
    padding: 2rem 1.2rem;
  }
}
.tpc25_menu_list_box:not(:last-child) {
  border-right: 1px solid #FFF;
}
@media screen and (max-width: 768px) {
  .tpc25_menu_list_box:not(:last-child) {
    border-right: none;
  }
}
.tpc25_menu_list_box a {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .tpc25_menu_list_box a {
    transition: none;
  }
}
.tpc25_menu_list_box a:hover, .tpc25_menu_list_box a:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .tpc25_menu_list_box a:hover, .tpc25_menu_list_box a:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .tpc25_menu_list_box a {
    display: block;
  }
}
.tpc25_menu_list_box img {
  width: auto;
  height: 1.9rem;
}
@media screen and (max-width: 768px) {
  .tpc25_menu_link {
    margin-top: 4rem;
  }
  .tpc25_menu_link_btn {
    opacity: 1;
    transition: all 0.2s ease-in-out;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #ffcb33;
    box-shadow: 0.2rem 0.3rem 0 0 rgba(0, 51, 153, 0.4);
    width: 82.2%;
    height: 3.7rem;
    border-radius: 3.7rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .tpc25_menu_link_btn {
    transition: none;
  }
}
@media screen and (max-width: 768px) {
  .tpc25_menu_link_btn:hover, .tpc25_menu_link_btn:hover img {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .tpc25_menu_link_btn:hover, .tpc25_menu_link_btn:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .tpc25_menu_link_sns {
    display: block;
    margin: 4rem auto 0;
    width: 2.6rem;
  }
}

.tpc25_theme {
  background: #fff4ba url(../img/theme_bg.png) no-repeat 0 100%;
  background-size: 100%;
  padding: 7rem 0 17rem;
}
@media screen and (max-width: 768px) {
  .tpc25_theme {
    padding: 2rem 0 5rem;
  }
}
.tpc25_theme .tpc25_ttl {
  font-size: 3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .tpc25_theme .tpc25_ttl {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
  }
}
.tpc25_theme .tpc25_ttl span {
  background: #ffcb33;
  margin-bottom: 2rem;
}
.tpc25_theme_cont {
  margin: 0 auto;
  width: 110rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .tpc25_theme_cont {
    width: 92%;
  }
}
.tpc25_theme_txt {
  text-align: center;
  font-size: 2.1rem;
  line-height: 4.5rem;
}
@media screen and (max-width: 768px) {
  .tpc25_theme_txt {
    font-size: 1.2rem;
    line-height: 2.8rem;
  }
}
.tpc25_theme_txt span {
  color: #FFF;
  display: inline-block;
  line-height: 0;
  border-radius: 1.5rem;
  font-size: 2.2rem;
  padding: 1.5rem;
  margin: 0 1rem;
}
@media screen and (max-width: 768px) {
  .tpc25_theme_txt span {
    font-size: 1.3rem;
    padding: 1rem;
    margin: 0 0.5rem;
  }
}
.tpc25_theme_txt span._c01 {
  background: #27a9eb;
}
.tpc25_theme_txt span._c02 {
  background: #fba622;
}
.tpc25_theme_txt span._c03 {
  background: #2c8547;
}
.tpc25_theme_img {
  position: absolute;
  left: 0;
  top: 35%;
  width: 12rem;
}
@media screen and (max-width: 768px) {
  .tpc25_theme_img {
    width: 5rem;
    top: 12%;
    left: 3%;
  }
}

.tpc25_jury {
  background: #FFF url(../img/jury_bg.png) no-repeat 0 100%;
  background-size: 100%;
  padding: 9rem 0 17rem;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  .tpc25_jury {
    padding: 4rem 0;
  }
}
.tpc25_jury .tpc25_ttl span {
  background: #ffcb33;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury .tpc25_ttl span {
    margin-bottom: 2rem;
  }
}
.tpc25_jury_cont {
  margin: 0 auto;
  width: 110rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_cont {
    width: 92%;
  }
}
.tpc25_jury_box {
  position: relative;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #ffe189;
  padding: 3rem 4rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_box {
    display: block;
    padding: 4% 4% 10%;
  }
}
.tpc25_jury_box::before, .tpc25_jury_box::after {
  content: "";
  position: absolute;
  border-style: solid;
}
.tpc25_jury_box::before {
  right: -2px;
  bottom: -2px;
  border-width: 0 0 4rem 4rem;
  border-color: transparent transparent transparent #ffe189;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_box::before {
    border-width: 0 0 3rem 3rem;
  }
}
.tpc25_jury_box::after {
  right: -2px;
  bottom: -2px;
  border-width: 4rem 4rem 0 0;
  border-color: transparent #FFF transparent transparent;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_box::after {
    border-width: 3rem 3rem 0 0;
  }
}
.tpc25_jury_ttl {
  text-align: center;
  letter-spacing: 0.2rem;
  font-size: 3.3rem;
  line-height: 4.8rem;
  width: 31.4rem;
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_ttl {
    margin-left: 0;
    width: auto;
    line-height: normal;
    font-size: 1.8rem;
  }
}
.tpc25_jury_ttl img {
  display: block;
  width: 24rem;
  margin: 0 0 1rem -2rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_ttl img {
    width: 12.7rem;
    margin: 0 0 0.5rem;
  }
}
.tpc25_jury_desc {
  position: relative;
  width: 65rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_desc {
    width: auto;
    margin-top: 2rem;
  }
}
.tpc25_jury_desc::before {
  content: "";
  display: block;
  border-top: 2px solid #FFF;
  position: absolute;
  z-index: 1;
  width: 100%;
}
.tpc25_jury_txt {
  font-weight: 700;
  background-image: linear-gradient(#ccc 1px, transparent 1px);
  background-size: 100% 4.5rem;
  font-size: 2rem;
  line-height: 4.5rem;
  padding: 0 3rem 1px;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_txt {
    font-size: 1rem;
    line-height: 2.7rem;
    background-size: 100% 2.7rem;
    padding: 0 2rem 1px;
  }
}
.tpc25_jury_list {
  width: 100rem;
  margin: 13rem auto 0;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list {
    width: auto;
    margin: 6rem auto 0;
  }
}
.tpc25_jury_list_box {
  position: relative;
  border-radius: 2rem;
  padding: 6rem 0 4rem;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_box {
    padding: 7% 4% 6%;
    border-radius: 0.8rem;
    margin-top: 5rem;
  }
}
.tpc25_jury_list_box._c01 {
  background: #9edbfd;
}
.tpc25_jury_list_box._c01 .tpc25_jury_list_ttl {
  background: #27a9eb;
}
.tpc25_jury_list_box._c02 {
  background: #fdd392;
}
.tpc25_jury_list_box._c02 .tpc25_jury_list_ttl {
  background: #fba622;
}
.tpc25_jury_list_box._c03 {
  background: #b3dab7;
}
.tpc25_jury_list_box._c03 .tpc25_jury_list_ttl {
  background: #2c8547;
}
.tpc25_jury_list_ttl {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  width: 47.2rem;
  height: 5.4rem;
  border-radius: 5.4rem;
  font-size: 2.7rem;
  letter-spacing: 0.2rem;
  top: -2.5rem;
  left: 50%;
  margin-left: -23.6rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_ttl {
    width: 24rem;
    height: 2.8rem;
    margin-left: -12rem;
    font-size: 1.4rem;
    top: -1.5rem;
  }
}
.tpc25_jury_list_catch {
  font-weight: 400;
  text-align: center;
  font-size: 2.1rem;
  line-height: 3.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_catch {
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin-bottom: 1rem;
  }
}
.tpc25_jury_list_catch span {
  font-weight: 700;
}
.tpc25_jury_list_prof {
  box-sizing: border-box;
  background: #FFF;
  width: 81.5rem;
  margin: 0 auto;
  padding: 2rem 3rem 3rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_prof {
    width: auto;
    padding: 4%;
  }
}
.tpc25_jury_list_prof_box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_prof_box {
    display: block;
  }
}
.tpc25_jury_list_prof_name {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_prof_name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.tpc25_jury_list_prof_name span {
  background: #ffe153;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.4rem;
  height: 2.6rem;
  font-size: 2.3rem;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_prof_name span {
    font-size: 1.4rem;
    width: 6.2rem;
    height: 1.6rem;
    margin-right: 0.5rem;
  }
}
.tpc25_jury_list_prof_img {
  width: 32rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_prof_img {
    width: 16.5rem;
    margin: 0 auto 1.5rem;
  }
}
.tpc25_jury_list_prof_cont {
  position: relative;
  width: 40rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_prof_cont {
    width: auto;
  }
}
.tpc25_jury_list_prof_txt {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_prof_txt {
    font-size: 1.1rem;
    line-height: 1.9rem;
  }
}
.tpc25_jury_list_prof_sns {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_prof_sns {
    position: static;
    justify-content: center;
    margin-top: 1rem;
  }
}
.tpc25_jury_list_prof_sns_btn {
  opacity: 1;
  transition: all 0.2s ease-in-out;
  width: 3.4rem;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_prof_sns_btn {
    transition: none;
  }
}
.tpc25_jury_list_prof_sns_btn:hover, .tpc25_jury_list_prof_sns_btn:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_prof_sns_btn:hover, .tpc25_jury_list_prof_sns_btn:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .tpc25_jury_list_prof_sns_btn {
    width: 2.7rem;
  }
}
.tpc25_jury_img {
  position: absolute;
}
.tpc25_jury_img._img01 {
  right: -10rem;
  top: 31%;
  width: 11rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_img._img01 {
    width: 3.8rem;
    right: 0;
    top: 22%;
  }
}
.tpc25_jury_img._img02 {
  left: -14rem;
  bottom: 28%;
  width: 17.2rem;
}
@media screen and (max-width: 768px) {
  .tpc25_jury_img._img02 {
    width: 6.2rem;
    left: 0;
    bottom: 24.3%;
  }
}

.tpc25_award {
  background: #aee1fd;
  padding: 11rem 0 15rem;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  .tpc25_award {
    padding: 4rem 0;
  }
}
.tpc25_award .tpc25_ttl {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .tpc25_award .tpc25_ttl {
    margin-bottom: 2rem;
  }
}
.tpc25_award .tpc25_ttl span {
  color: #FFF;
  background: #39b0ec;
}
.tpc25_award_cont {
  margin: 0 auto;
  width: 110rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .tpc25_award_cont {
    width: 92%;
  }
}
.tpc25_award_ttl {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .tpc25_award_ttl {
    font-size: 1.5rem;
    line-height: 3rem;
    margin-bottom: 0.5rem;
  }
}
.tpc25_award_txt {
  font-weight: 700;
  text-align: center;
  font-size: 2.1rem;
  line-height: 4.3rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .tpc25_award_txt {
    font-size: 1.2rem;
    line-height: 2.5rem;
  }
}
.tpc25_award_txt span {
  background: #ffff47;
}
.tpc25_award_list {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 4rem 2rem 5rem;
}
@media screen and (max-width: 768px) {
  .tpc25_award_list {
    display: block;
    width: 80%;
    margin: 2rem auto;
  }
}
.tpc25_award_list::before, .tpc25_award_list::after {
  content: "";
  display: block;
  position: absolute;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
}
.tpc25_award_list::before {
  width: 5rem;
  height: 5rem;
  background-image: url(../img/star01.svg);
  right: -4rem;
  top: 0;
}
@media screen and (max-width: 768px) {
  .tpc25_award_list::before {
    width: 3.5rem;
    height: 3.5rem;
    right: 0;
    top: 2rem;
  }
}
.tpc25_award_list::after {
  width: 3.5rem;
  height: 3.5rem;
  background-image: url(../img/star02.svg);
  left: -4rem;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .tpc25_award_list::after {
    width: 3rem;
    height: 3rem;
    left: 0;
    bottom: 4rem;
  }
}
.tpc25_award_list_box {
  width: 24rem;
}
@media screen and (max-width: 768px) {
  .tpc25_award_list_box {
    width: 100%;
  }
  .tpc25_award_list_box img {
    width: 15rem;
  }
  .tpc25_award_list_box:nth-child(2n) {
    text-align: right;
  }
  .tpc25_award_list_box:not(:first-child) {
    margin-top: -6rem;
  }
}
.tpc25_award_img {
  position: absolute;
  width: 14.3rem;
  top: -10rem;
  right: -4rem;
}
@media screen and (max-width: 768px) {
  .tpc25_award_img {
    width: 4.9rem;
    right: 0;
    top: -3rem;
  }
}

.tpc25_flow {
  position: relative;
  background: url(../img/flow_bg.png) repeat-y 0 0;
  background-size: 100%;
}
.tpc25_flow::before, .tpc25_flow::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  width: 100%;
  background-image: url(../img/wave.png);
  background-size: 100%;
  height: 3rem;
}
.tpc25_flow::before {
  background-position: 0 100%;
}
.tpc25_flow::after {
  background-position: 0 0;
}
.tpc25_flow .tpc25_ttl {
  margin: 6rem 0;
}
@media screen and (max-width: 768px) {
  .tpc25_flow .tpc25_ttl {
    margin: 3rem 0 0;
  }
}
.tpc25_flow .tpc25_ttl span {
  color: #FFF;
  background: #2c8547;
}
.tpc25_flow_list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_list {
    display: block;
    margin-top: 1.5rem;
  }
}
.tpc25_flow_list_box {
  position: relative;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_list_box {
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.tpc25_flow_list_box:first-child .tpc25_flow_list_txt, .tpc25_flow_list_box:last-child .tpc25_flow_list_txt {
  margin-left: 0;
}
.tpc25_flow_list_box:last-child .tpc25_flow_list_txt {
  margin-right: -7rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_list_box:last-child .tpc25_flow_list_txt {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .tpc25_flow_list_box:not(:last-child) {
    margin-bottom: 3.5rem;
  }
}
.tpc25_flow_list_box:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(../img/flow_arw_r.svg);
  width: 2.4rem;
  height: 4.1rem;
  top: 18%;
  right: -1rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_list_box:not(:last-child)::after {
    top: auto;
    right: auto;
    background-image: url(../img/flow_arw_d.svg);
    width: 2.2rem;
    height: 1.3rem;
    left: 50%;
    bottom: -2.5rem;
  }
}
.tpc25_flow_list_img {
  margin: 0 auto 3rem;
  width: 15rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_list_img {
    width: 16%;
    margin: 0;
  }
}
.tpc25_flow_list_txt {
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 3rem;
  margin-left: 7rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_list_txt {
    margin-left: 0;
    width: 82%;
    font-size: 1.4rem;
    line-height: 1.9rem;
  }
}
.tpc25_flow_list_txt span {
  background: #fff4ba;
}
.tpc25_flow_hash {
  margin: 8rem 0 10rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_hash {
    margin: 5rem 0;
  }
}
.tpc25_flow_hash_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_hash_ttl {
    display: block;
    color: #2c8547;
    font-size: 1.7rem;
  }
}
.tpc25_flow_hash_ttl::before, .tpc25_flow_hash_ttl::after {
  content: "";
  background: url(../img/dash_gr.svg) no-repeat 0 50%;
  background-size: 100%;
  width: 31rem;
  height: 1rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_hash_ttl::before, .tpc25_flow_hash_ttl::after {
    width: 100%;
    display: block;
  }
}
.tpc25_flow_hash_ttl::before {
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_hash_ttl::before {
    margin: 0 0 1rem;
  }
}
.tpc25_flow_hash_ttl::after {
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_hash_ttl::after {
    margin: 1rem 0 0;
  }
}
.tpc25_flow_hash_list {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_hash_list {
    display: block;
    width: 19rem;
    margin: 3rem auto 0;
  }
}
.tpc25_flow_hash_list_box {
  width: 24.3rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_hash_list_box {
    width: auto;
  }
}
.tpc25_flow_hash_list_box:not(:last-child) {
  margin-right: 11rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_hash_list_box:not(:last-child) {
    margin: 0 0 5rem;
  }
}
.tpc25_flow_hash_list_box._c01 .tpc25_flow_hash_list_ttl {
  background: #27a9eb;
}
.tpc25_flow_hash_list_box._c01 .tpc25_flow_hash_list_btn {
  border-color: #27a9eb;
  background-image: url(../img/arw_bl.svg);
}
.tpc25_flow_hash_list_box._c02 .tpc25_flow_hash_list_ttl {
  background: #fba622;
}
.tpc25_flow_hash_list_box._c02 .tpc25_flow_hash_list_btn {
  border-color: #fba622;
  background-image: url(../img/arw_or.svg);
}
.tpc25_flow_hash_list_box._c03 .tpc25_flow_hash_list_ttl {
  background: #2c8547;
}
.tpc25_flow_hash_list_box._c03 .tpc25_flow_hash_list_btn {
  border-color: #2c8547;
  background-image: url(../img/arw_gr.svg);
}
.tpc25_flow_hash_list_ttl {
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  width: 100%;
  height: 3.7rem;
  border-radius: 3.7rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_hash_list_ttl {
    font-size: 1.6rem;
    height: 3.4rem;
  }
}
.tpc25_flow_hash_list_copy {
  pointer-events: none;
  border: none;
  background: none;
  text-align: center;
  padding: 0;
  width: 100%;
  font-size: 2.1rem;
  line-height: 3.4rem;
  height: 10rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_hash_list_copy {
    font-size: 1.6rem;
    line-height: 3.1rem;
    margin-bottom: 0;
  }
}
.tpc25_flow_hash_list_copy::-webkit-scrollbar {
  display: none;
}
.tpc25_flow_hash_list_btn {
  opacity: 1;
  transition: all 0.2s ease-in-out;
  font-weight: 700;
  background-repeat: no-repeat;
  text-align: center;
  padding: 0;
  background-position: 93% 50%;
  background-size: 1.2rem;
  border-width: 3px;
  width: 100%;
  height: 4.7rem;
  border-radius: 4.7rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_hash_list_btn {
    transition: none;
  }
}
.tpc25_flow_hash_list_btn:hover, .tpc25_flow_hash_list_btn:hover img {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .tpc25_flow_hash_list_btn:hover, .tpc25_flow_hash_list_btn:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .tpc25_flow_hash_list_btn {
    line-height: 3.7rem;
    font-size: 1.3rem;
    background-size: 0.9rem;
  }
}

.tpc25_agree {
  background: #aee1fd;
  padding: 7rem 0 9rem;
}
@media screen and (max-width: 768px) {
  .tpc25_agree {
    padding: 2rem 0 4rem;
  }
}
.tpc25_agree .tpc25_ttl {
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  .tpc25_agree .tpc25_ttl {
    margin-bottom: 2rem;
  }
}
.tpc25_agree .tpc25_ttl span {
  color: #FFF;
  background: #39b0ec;
  width: 30.6rem;
}
@media screen and (max-width: 768px) {
  .tpc25_agree .tpc25_ttl span {
    width: 17.4rem;
  }
}
.tpc25_agree_cont {
  margin: 0 auto;
  width: 81.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .tpc25_agree_cont {
    width: 92%;
  }
}
.tpc25_agree_scroll {
  position: relative;
  z-index: 1;
  background: #FFF;
  overflow-y: scroll;
  box-sizing: border-box;
  width: 100%;
  height: 45rem;
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  .tpc25_agree_scroll {
    width: 86%;
    height: 26rem;
    margin: 0 auto;
    padding: 4%;
  }
}
.tpc25_agree_txt {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .tpc25_agree_txt {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.tpc25_agree_ttl {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .tpc25_agree_ttl {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
}
.tpc25_agree_img {
  position: absolute;
  width: 11.6rem;
  top: 1.8rem;
  right: 3rem;
}
@media screen and (max-width: 768px) {
  .tpc25_agree_img {
    width: 4rem;
    right: 2rem;
  }
}/*# sourceMappingURL=style.css.map */