@charset "utf-8";

/* *******************************************************************
//
// Browser default initialization
//
// **************************************************************** */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, svg {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  vertical-align: baseline;
  outline: 0;
}
*, ::before, ::after {
  box-sizing: inherit;
  font-style: normal;
  font-weight: inherit;
  font-size: inherit;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
html, body {
  height: 100%;
}
html {
  overflow-y: scroll;
  box-sizing: border-box;
  line-height: 1;
  font-size: 0.67vw;
  font-size: 62.5%;
  
}
body {
  color: #333333;
  font-weight: normal;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	min-width: inherit !important;
	font-size: 1.6rem;
}
input, select, textarea, button {
  margin: 0;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}
dl, ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: bottom;
}
img, x:-moz-any-link, x:default {
  box-shadow: #333 0 0 0;
}
a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
}
a:hover {
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	filter: alpha(opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
}
svg {
  line-height: 1;
  vertical-align: top;
}
svg:not(:root) {
  overflow: hidden;
}
:focus {
  outline: none;
}

/* *******************************************************************
//
//
//
// **************************************************************** */

html {
	color: #333333;  
}
body {
	background: #fff;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.8;
	font-family: "Noto Sans JP", sans-serif;
}
* {
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}

/* env */
.env-device_is_mobile *,
.env-device_is_tablet * {
  cursor: pointer;
}

/* clearfix */
.clearfix::after {
  display: block;
  clear: both;
  content: '';
}


@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }

  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
  }
}

@media screen and (max-width: 374px) {
    body {
      	font-size: 4vw;
    }
}


/* =============================================================================
 common header
============================================================================= */

header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 1001;
    background: #ffffff;
}
header .headInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    margin: 0 auto;
    padding: 0 0 0 2%;
    box-sizing: border-box;
	box-shadow: 0px 0px 15px -5px #777777;
}
header .logo {
  	width: 156px;
}
header ul.head_btn {  
    display: flex;
    align-items: center;
    z-index: 10;
}
header ul.head_btn li {
	margin-right: 0.6em;
	position: relative;
}
header ul.head_btn li:nth-of-type(-n+5) {
	padding-right: 0.9em;
}
header ul.head_btn li:nth-of-type(-n+5)::after {
	content: "|";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 0;	
}
header ul.head_btn li.insta {
	margin-left: 0.8em;
}
header ul.head_btn li.sns {
	margin-right: 1em;
}
header ul.head_btn li.entry,
header ul.head_btn li.viewing,
header ul.head_btn li.live {
	margin-right: 0;
}
header ul.head_btn li a {
	display: inline-block;
	color: #000000;
	font-weight: 600;
	font-size: 1.3rem;
	line-height: 1.2;
}

header ul.head_btn li.btn a {
	color: #ffffff;
	width: 140px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	padding-left: 1em;
}
header ul.head_btn li.entry a {
	background: #fb1f7b url("../images/icon_entry.svg") no-repeat 1.7em 50% / 15px auto;
}
header ul.head_btn li.viewing a {
	background: #fb1f7b url("../images/icon_viewing.svg") no-repeat 1.3em 50% / 27px auto;
}
header ul.head_btn li.live a {
	background: #fb1f7b url("../images/icon_live.svg") no-repeat 1em 50% / 24px auto;
}
footer {
	padding: 4em 0;	
}
footer .copy {
	text-align: center;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.1em;
}

/*@media screen and (max-width: 1079px) {*/
@media screen and (max-width: 768px) {
	header {
		min-width: inherit;
		height: 60px;
	}
	header .headInner {    
        padding: 0 4%;        
        height: 60px;
	}
	header .logo a {
	  	height: 60px;
		display: flex;
		align-items: center;
	}	
	header ul.head_btn {
		display: none;
		font-size: 1.4rem;
	}
	header ul.head_btn li {
		margin-right: 0;
	}
	header ul.head_btn li:nth-of-type(-n+6) {
		padding-right: 0;
	}
	header ul.head_btn li:nth-of-type(-n+6)::after {
		content: none;
	}
	header .menu_head {
        padding: 0;
        position: static;
        margin-top: 0;
		background: none;
	}
	header .menu_head nav {
	  	width: auto;
	}
	header .menu_head .menu-trigger, header .menu_head .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
	}
	header .menu_head .menu-trigger {
        display: block;
        position: absolute;
        top: 18px;
        right: 4%;
        width: 30px;
        height: 24px;
        z-index: 10002;
        cursor: pointer;
	}
	header .menu_head .menu-trigger span {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #232951;
	}
	header .menu_head .menu-trigger span:nth-of-type(1) {
	  	top: 0;
	}
	header .menu_head .menu-trigger span:nth-of-type(2) {
	  	top: 11px;
	}
	header .menu_head .menu-trigger span:nth-of-type(3) {
	  	bottom: 0;
	}
	header .menu_head .menu-trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(12px) rotate(-315deg);
        transform: translateY(12px) rotate(-315deg);
	}
	header .menu_head .menu-trigger.active span:nth-of-type(2) {
	  	opacity: 0;
	}
	header .menu_head .menu-trigger.active span:nth-of-type(3) {
	  	-webkit-transform: translateY(-10px) rotate(315deg);
	  	transform: translateY(-10px) rotate(315deg);
	}
	header .menu_head .gnav {
        position: absolute;
		background: #232951;
        background: #f5f5f5;
        top: 60px;
		right: -300px;
		width: 280px;
        padding: 0 0 20px;
		box-shadow: -5px 5px 15px -10px #777777;
        z-index: 10001;
		transition: 0.3s;
	}
	header .menu_head .gnav.active {
        /*display: block;*/        
		right: 0;
		transition: 0.3s;
	}
	header .menu_head .gnav ul {
	  	display: block;
	  	/*font-size: 3.8vw;*/
		text-align: center;
		border-top: 1px solid #ccc;
	}
	header .menu_head .gnav ul li {	  	
	  	line-height: 1.6;
		text-align: left;
	}
	header .menu_head .gnav ul li.sns {
		display: inline-block;
		padding: 24px 5px 20px 0;
	}
	header .menu_head .gnav ul li:nth-of-type(-n+6) a {
		display: block;
        padding: 1em 2em;
    	border-bottom: 1px solid #ccc;
	}
	header ul.head_btn li.btn {
		display: inline-block;
		clear: both;
	}
	header ul.head_btn li.btn a {
		height: 48px;
		line-height: 48px;
		width: 240px;		
	}	
	header .menu_head .gnav ul li:last-of-type a:before {
		content: none;
	}
	header .menu_head .gnav ul li a:hover {
	  	opacity: 1;
	}
	header .menu_head .gnav ul li.spBtn {
        width: 84vw;
        margin-bottom: calc(26/750*100vw);
	}
	header .menu_head .gnav ul li.susume {
        width: 55vw;
        margin-bottom: calc(64/750*100vw);
	}
	header .menu_head .gnav ul li.spBtn a {
	  	padding-left: 0;
	}
	header .menu_head .gnav ul li.spBtn a:before {
	  	content: none;
	}
	header .menu_head .gnav ul li.sns a {
		width: 30px;
	}
	header .menu_head .gnav ul li.sns.youtube a {
		width: 34px;
	}
	header .menu_head .gnav ul li.sns a img {
		width: 100%;
	}
	header .menu_head .gnav ul li.btn {
		margin-bottom: 10px;
		margin-top: 28px;
	}
	footer {
		padding: 3em 0;	
	}
	footer .copy {
		font-size: 1.0rem;
	}
}

/* -------------------------------------------------------------------
 contents common
------------------------------------------------------------------- */

main {
    overflow: hidden;
    padding-top: 60px;
    margin: 0 auto;
    background-color: #fff;
    text-align: center;
}
.secInner {
  	max-width: 1280px;
  	margin-left: auto;
  	margin-right: auto;
	text-align: left;
	padding: 0 4%;
	box-sizing: border-box;
	position: relative;
}
.sec_cont {
	padding: 60px 0;
}
h2.contTitle {
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 1em;
}
h2.contTitle .txt_sml {
	font-size: 1.6rem;
	display: block;
}
.txtarea p {
	margin-bottom: 1em;
}
.txtarea p:last-child {
	margin-bottom: 0;
}
.txt_sml {
	font-size: 80%;
}
.txt_lar {
	font-size: 120%;
}
.txt_bold {
	font-weight: 700;
}
.txt_torikeshi {
	text-decoration: line-through;
}
.highlighter {
	background: linear-gradient(transparent 75%, #f9f89c 75%);
}
.txt_slash:before,
.txt_slash:after {
    display: inline-block;
    content: '';
    width: 0.8em;
    height: 0.6em;
    border-left: 1px solid #509d58;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
	vertical-align: 0.2em;
}
.txt_slash:after {
	width: 0.7em;
    border-left: none;
    border-right: 1px solid #509d58;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}
.ttl-border {
	display: flex;
	align-items: center;
}
.ttl-border:before,
.ttl-border:after {
    border-top: 1px solid #8f7030;
    content: "";
    flex-grow: 1;
}
.ttl-border:before {
	margin-right: 2em;
}
.ttl-border:after {
	margin-left: 2em;
}
.flexbox {
	display: flex;
	justify-content: space-between;
}
.kadomarubox {
	background: #ffffff;
	max-width: 920px;
	box-sizing: border-box;
	margin: auto;
	position: relative;
	box-shadow: 20px 10px 0 -5px #cccccc;
}
.shadowbox {
	background: #ffffff;
	box-shadow: 0 0 1em -0.3em #777777;	
}
a.shadowbox:hover {
	box-shadow: 0 0 0 0;
}
.btnarea {
	text-align: center;
}
.btnarea a {
	display : inline-block;
	color: #ffffff;
	text-align: center;
	background: #fb1f7b;
	width: 420px;
	height: 72px;
	line-height: 72px;
	font-size: 1.9rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}
ul.list_dot li{
  padding-top: 0.2em;
  padding-left: 1em;
  text-indent: -0.45em;
  line-height: 1.5;
  margin-bottom: 0.3em;
}
ul.list_dot li:before {
  content: "●";
  font-size: 40%;
  padding-right: 0.8em;
  display: inline-block;
  vertical-align: 0.6em;
}
ul.list_cir li{
  padding-top: 0.2em;
  padding-left: 1em;
  text-indent: -1em;
}
ul.list_cir li:before {
  content: "";
  display: inline-block;
  border: 3px solid #999999;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  margin-right: 0.2em;
}
ul.list_cir.pink  li:before {
	border-color: #ed3780;	
}
ul.list_slash li {
	display: inline-block;
}
ul.list_slash li:not(:last-of-type):after {
  content: "／";
  display: inline-block;
}
ul.list_kome li,
p.kome {
    text-indent: -1em;
    margin-left: 1em;
	font-size: 80%;
	line-height: 1.6;
}
ul.list_kome li:before,
p.kome:before {
	content: "※";
}
table {
	width: 100%;
	border-right: 1px solid #cdcdcd;
	border-bottom: 1px solid #cdcdcd;
	background: #ffffff;
	position: relative;
}

table th,
table td {
	border-top: 1px solid #cdcdcd;
	border-left: 1px solid #cdcdcd;
	padding: 0.8em 1.2em;	
	letter-spacing: 0.05em;
	font-weight: 600;
}
table th {
	background: #0053a8;
	color: #ffffff;
	text-align: center;
	width: 120px;
}
table td {
	text-align: left;
	color: #24294e;
}
.shadow {
	position: relative;
}
.shadow:before,
.shadow:after {
	z-index: 0;
	position: absolute;
	content: "";
	bottom: 15px;
	left: 8px;
	width: 50%;
	top: 80%;
	max-width:140px;
	background: #d0cecb;
	-webkit-box-shadow: 0 15px 10px #827f7e;
	-moz-box-shadow: 0 15px 10px #827f7e;
	box-shadow: 0 15px 10px #827f7e;
	-webkit-transform: rotate(-4deg);
	-moz-transform: rotate(-4deg);
	-o-transform: rotate(-4deg);
	-ms-transform: rotate(-4deg);
	transform: rotate(-4deg);
}
.shadow:after {
	-webkit-transform: rotate(4deg);
	-moz-transform: rotate(4deg);
	-o-transform: rotate(4deg);
	-ms-transform: rotate(4deg);
	transform: rotate(4deg);
	right: 8px;
	left: auto;
}
.pagetop {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
	z-index: 100;
}
.pagetop a {
	position: relative;
    display: block;
    font-size: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #111111;
    border-radius: 50%;
    line-height: 50px;	
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
}
.pagetop a:hover{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.pagetop a::before {
    display: block;
    content: '';
    position: absolute;
    z-index: 2;
    margin: auto;
    top: 20px;
	left: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-right: 3px solid #FFFFFF;
    border-bottom: 3px solid #FFFFFF;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
@media screen and (max-width: 768px) {
    main {  
		padding-top: 56px;
    }
    .secInner {
  		max-width: inherit;
		width: 100%;
		box-sizing: border-box;
    }
    h2.contTitle {
		margin-bottom: 0.6em;
    }
	h2.contTitle .txt_sml {
		font-size: 1.2rem;
	}
	.ttl-border:before {
		margin-right: 1em;
	}
	.ttl-border:after {
		margin-left: 1em;
	}
	.flexbox {
		flex-direction: column;
	}

	.btnarea {
		background-position: 5vw 50%;
		background-size: 20vw auto;
		padding: 14vw 0 3vw 10vw;
	}
	.btnarea a {
		font-size: 1.6rem;
		width: 100%;
		max-width: 280px;
		height: 60px;
		line-height: 60px;		
	}
	ul.list_kome li,
	p.kome {
		font-size: 1.2rem;
	}
	.shadow:before {
		  left: 8%;
	}
	.shadow:after {
		  right: 8%;
	}
	table th,
	table td {
		font-size: 95%;
		padding: 0.8em 1em;
	}
	table th {
		width: 18vw;
  		padding: 0.8em 0;
	}
	.pagetop {
		right: 2%;
		bottom: 4vw;
	}
	.movie_bg {
		padding: 8px;
		border-radius: 18px;
	}
	.movie iframe {
		border-radius: 14px;
	}
}
@media screen and (max-width: 374px) {
    .contTitle {
      	font-size: calc(30/375 * 100vw);
    }
}

/* main visual */
#mv {
	position: relative;
}
#mv .mvbg {
	width: 100%;
}
#mv .txt_entry a {
	display: block;
	width: 14.2vw;
	height: 14.2vw;
	background: #f0fc36 url("../images/icon_arrow.png") no-repeat 50% 10.5vw / 6vw auto;
	border-radius: 50%;
	text-align: center;
	position: absolute;
	right: 7.5vw;
	top: 20.5vw;
	padding-top: 4.2vw;
}
#mv .txt_entry img {
	width: 9.2vw;
}
#mv .btn {
	display: inline-block;
	position: absolute;
	width: 14.2vw;
	top: 20vw;
	right: 10%;
}
#mv .btn img {
	width: 100%;
	box-shadow: 0px 0px 15px -5px #777777;
	border-radius: 50%;
}
#mv .btn a:hover {
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
#mv .btn img:hover {	
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-webkit-transform:scale(0.98);
	-moz-transform:scale(0.98);
	-o-transform:scale(0.98);
	-ms-transform:scale(0.98);
}
@media screen and (max-width: 768px) {
	#mv .btn {
		display: inline-block;
		position: absolute;
		width: 28vw;
		top: 60vw;
		right: 4%;
	}	
}

/* about */
#about {
	background-color: #0053a8;
	background-image:url(../img/about_bg.svg);
	background-size: 100% auto;
	background-position: 0 21.6%;
	background-repeat: no-repeat;
}
#about .secInner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#about .txt_sml {
	margin-top: 1.5rem;
}
#about .txtarea {
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 705px;
	margin: 0 auto;
	padding: 4rem 6rem;
	color: #0072c1;
	font-weight: 600;	
	border-radius: 200px;
}
#about .txtarea:after {
	content: "";
	background-image: url(../img/about_parts.svg);
	background-size: 136px 89px;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -11%;
	right: 6%;
	width: 136px;
	height: 89px;
}
@media screen and (max-width: 768px) {
	#about {
		background-size: auto auto;
		background-position: 0 38%;
		padding-block: 40px 80px;
	}
	#about .secInner {
		display: block;
	}
	#about .txtarea {
		margin-top: 3rem;
		border-radius: 50px;
		padding: 2rem 3rem;
	}
	#about .txtarea:after {
		bottom: -18%;
	}
	#about .contTitle {
		width: 80%;
	}
	#about .contTitle img {
		width: 100%;
		height: auto;
	}
}

/***********************
 * sponcer
 * ********************/
#sponcer {
	background-image: url(../img/sponcer_bg01.jpg);
	background-position: top left;
	background-size: cover;
}
#sponcer .secInner {
	display: flex;
	justify-content: space-between;
}
.sponcer_left {
	width: 382px;
}

.sponcer_right {
	width: 578px;
}

.sponcer_right-inner .box {
	width: 100%;
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	align-items: center;
	margin: 0;
}
.sponcer_right-inner .box p {
	margin: 10px 5px;
}
@media screen and (max-width: 768px) {
	#sponcer {
		background-position: top center;
		background-size: 100% auto;
	}
	#sponcer .secInner {
		display: block;
		text-align: center;
	}
	.sponcer_left {
		width: 65%;
		margin-bottom: 4rem;
	}

	.sponcer_right {
		width: 100%;
	}
}




/* live */
#live {
	background: url("../images/bg_navy.jpg") no-repeat 0 0 / cover;
}
#live h2.contTitle {
	color: #ffffff;
}


/* outline */
#outline {
	padding-bottom:10rem ;
}
#outline iframe {
	margin-top: 1em;
	width: 100%;
}
#outline td dl dt {
	display: inline-block;
	padding-bottom: 0.2em;
}
#outline td dl dd {
	/*padding-left: 2.5rem;*/
}
#outline td span {
	color: #0053a8;
}
#outline td dl:not(:last-of-type) dd {
	margin-bottom: 1em;
}
h2.outline_title {
	color: #0053a8;
	font-size: 1.8rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 12rem;
}
.outline_title-inner {
	
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7rem;
}
h2.outline_title span {
	display: block;
}
h2.outline_title span.txt {
	margin-top: 1rem;
}

.top_left {
	position: absolute;
	top: -40px;
	left: -25px;
}
.top_right {
	position: absolute;
	top: -40px;
	right: -25px;
}
.bottom_left {
	position: absolute;
	bottom: -150px;
	left: -85px;
}
.bottom_right {
	position: absolute;
	bottom: -40px;
	right: -25px;
}
@media screen and (max-width: 768px) {
	.sec_cont {
	    padding: 30px 0;
	}
	#outline {
		padding-bottom:10rem;
	}
	#outline td dl dt {
		display: inline-block;
		padding-bottom: 0.2em;
	}
	#outline td dl dd {
		padding-left: 1.5rem;
	}
	#outline td dl:not(:last-of-type) dd {
		margin-bottom: 1em;
	}
	h2.outline_title {
		font-size: 1.6rem;
		margin-bottom: 3rem;
	}
	.outline_title-inner {
		gap: 1rem;
	}
	h2.outline_title span {
		display: block;
	}
	h2.outline_title span.txt {
		margin-top: 1rem;
	}
	.kadomarubox img {
		zoom: 0.5;
	}
	.top_left {
		position: absolute;
		top: -20px;
		left: -15px;
	}
	.top_right {
		position: absolute;
		top: -10px;
		right: -5px;
	}
	.bottom_left {
		position: absolute;
		bottom: -20px;
		left: -15px;
	}
	.bottom_right {
		position: absolute;
		bottom: -20px;
		right: -10px;
	}
}

/* 賞金 */
.prize {
	padding-block: 10px;
	background-image: url(../img/prize_bg.jpg);
	background-size: 100% auto;
}
.container {
	width: 100%;
	max-width: 960px;
	margin-inline: auto;
	margin-block: 5rem 10rem;
}
.prize .container {
	position: relative;
}
.prize h2 {
	margin-bottom: 2rem;
}
.prize .icon {
	position: absolute;
	right: 0;
	top: -40px;
}
.prize__block {
	width: 100%;
	max-width: 570px;
	margin-inline: auto;
	background-color: rgba(255, 255, 255, 0.8);
	margin-bottom: 4rem;
	border-radius: 20px;
	padding-block: 15px;
}
.prize__block p {
	font-weight: 700;
	font-size: 1.8rem;
}
.prize__wrap {}
.prize__wrap th {
	vertical-align:middle;
	white-space: nowrap;
}
.prize__inner {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 2rem;
	margin-block: 4rem 6rem;
}
.prize__inner h3 {
	display: block;
	width: 100%;
	padding: 1.5rem 0;
	background-color: #0053a8;
	color: #ffffff;
	text-align: center;
	font-weight: 700;
	border-radius: 2rem 2rem 0 0;
}
.prize__inner-inner {
	padding: 5rem;
}
table.prize__inner-table {
	width: 100%;
	border: none;
	background-color: inherit;
}
table.prize__inner-table th {
	background-color: inherit;
	color: #000000;
	white-space: nowrap;
	text-align: left;
	border: none;
}
table.prize__inner-table tr:nth-child(odd) {
	background-color: #f3f3f3;
}
table.prize__inner-table td {
	border: none;
	text-align: right;
}
table.prize__inner-table td small {
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1.4;
}
@media screen and (max-width: 959px) {
	.prize .icon {
		right: calc(50% - 370px);
		top: -100px;
		width: 150px;
	}	
}
@media screen and (max-width: 767px) {
	.prize__inner {
		padding-inline: 2rem;
		margin-block: 2rem 3rem;
	}
	.prize .icon {
		right: 2%;
		top: -124px;
		width: 150px;
	}
	.prize__inner h3 {
		display: block;
		width: 100%;
		padding: 1.5rem 0;
		background-color: #0053a8;
		color: #ffffff;
		text-align: center;
		font-weight: 700;
		border-radius: 2rem 2rem 0 0;
	}
	.prize__inner-inner {
		padding: 2rem 1rem;
	}
	table.prize__inner-table th {
		padding-inline: 1rem 0;
		vertical-align: middle;
		line-height: 1.3;
	}
	table.prize__inner-table td small {
		font-size: 0.9rem;
	}
	table.prize__inner-table td {
		white-space: nowrap;
		vertical-align: middle;
	}

}
@media screen and (max-width: 479px) {
	.prize .icon {
		right: 1%;
		top: -140px;
	}
}

/* schedule */
#schedule {
	position: relative;
	background: #b2cbe5;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	padding-bottom: 20rem;
}
#schedule:before {
	content: "";
	background-image: url(../img/schedule_bg01.svg);
	background-position: left top;
	background-size: 100% auto;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#schedule:after {
	content: "";
	background-image: url(../img/schedule_bg03.svg);
	background-position: left bottom;
	background-size: 100% auto;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}
.scheduleTitle {
	display: inline-block;
	margin-bottom: 7rem;
}
.scheduleTitle .txt {
	color: #f79520;
	font-size: 1.8rem;
	font-weight: 600;
	display: block;
	margin: 1rem auto;
	text-align: center;
}
.secInner {
	position: relative;
	z-index: 10;
}
#schedule .flow {
	position: relative;
	max-width: 850px;
	margin: 0 auto 1em;
}
#schedule .flow:after {
	content: "";
	background-image: url(../img/schedule_bg02.svg);
	background-repeat: no-repeat;
	background-size: 120px auto;
	width: 134px;
	height: 617px;
	position: absolute;
	top: -3rem;
	left: -10rem;
}
#schedule .flow dl {
	z-index: 10;
	display: flex;
	background: #ffffff;
	position: relative;
}
#schedule .flow dl:not(:last-of-type) {
	margin-bottom: 3.5rem;
}
#schedule .flow dl dt {
	color: #ffffff;
	background: #00a68b;
	width: 220px;
	padding: 1em 1em 1em 1.3em;
}
#schedule .flow dl dd {
	padding: 1em;
	color: #00a68b;
}
#schedule ul.list_kome {
	max-width: 850px;
	margin: 0 auto;
}
#schedule .list_kome {
	text-align: right;
}
@media screen and (max-width: 768px) {
	#schedule {
		font-size: 1.2rem;
		letter-spacing: 0;
		padding-bottom: 10rem;
	}
	#schedule .flow:after {
		display: none;
	}
	.scheduleTitle {
		margin-bottom: 3rem;
	}
	.scheduleTitle .txt {
		font-size: 1.6rem;
	}
	#schedule .flow dl:not(:last-of-type) {
		margin-bottom: 2rem;
	}
	#schedule .flow dl dt {
		width: 38%;
		padding: 1rem;
		white-space: nowrap;
	}
	#schedule .flow dl dd {
		padding: 1rem;
		width: 62%;
		line-height: 1.4;
	}
	#schedule ul.list_kome {
		max-width: 850px;
		margin: 0 auto;
	}
	#schedule .list_kome {
		text-align: right;
		position: relative;
		z-index: 10;
	}
}

/* point */
#point {
	background: #eaf3cf;
}
#point a {
	color: #0053a8;
}
#point .flexbox {
	align-items: center;
}
.pointTitle {
	position: relative;
}
.pointTitle .parts {
	position: absolute;
	right: 0;
	top: 0;
}
.pointTitle span {
	display: block;
	font-size: 1.8rem;
	font-weight: 600;
	color: #0053a8;
	margin-top: 1rem;
}
.point__content {
	width: 60%;
	position: relative;
}
#point .imgarea {
	width: 35%;
}
.point__content h3 {
	font-weight: 600;
	font-size: 3rem;
	margin-bottom: 2rem;
	color: #0053a8;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.point__content p {
	color: #24294e;
	font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
	.order-1 {
		order: 1;
	}
	.order-2 {
		order: 2;
	}
	#point {
	}
	.pointTitle {
		margin-bottom: 3rem;
	}
	.pointTitle .parts img {
		zoom: 0.5;
	}
	.pointTitle span {
		font-size: 1.6rem;
		margin-top: 0rem;
	}
	.point__content {
		width: 100%;
		position: relative;
		margin-bottom: 4rem;
	}
	#point .imgarea {
		width: 80%;
		margin-bottom: 2rem;
	}
	.point__content h3 {
		font-weight: 700;
		font-size: 1.8rem;
		margin-bottom: 1rem;
	}
	.point__content h3 img {
		zoom: 0.5;
	}
	.point__content p {
		color: #24294e;
		font-size: 1.6rem;
	}
}

/* .cta */
.cta {
	background-image: url("../img/cta_bg.svg") ;
	background-size: cover;
}
.cta .secInner {
	text-align: center;
}
.cta h3 {
	display: flex;
	justify-content: center;
	color: #ffffff;
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	transform: translateX(-15%);
}
.cta .btnarea {
	padding: 20px 0 20px;
}
.cta .btnarea li:not(:last-of-type) {
	margin-bottom: 1em;
}
.cta .btnarea a {
	background-color: #eb3039;
	border-radius: 20px;
}

@media screen and (max-width: 768px) {
	.cta {
	}
	.cta h3 {
		font-size: 1.8rem;
		font-weight: 700;
		letter-spacing: 0;
		transform: translateX(-15%);
	}
	.cta h3 img {
		zoom: 0.5;
	}
	.cta .btnarea {
		padding: 10px 0 10px;
	}
}


/* judge */
#judge {
	padding-block: 5rem 4rem;
}
.judgeTitle {
	text-align: center;
	position: relative;
	margin-bottom: 9rem;
}
.judgeTitle img {}
.judgeTitle .txt {
	font-size: 1.8rem;
	font-weight: 600;
	color: #0053a8;
	position: absolute;
	left: 50%;
	bottom: 0.7rem;
	transform: translateX(-50%);
}

.chairman {
	flex-wrap: wrap;
	justify-content: center;
	gap: 4.5rem;
}
.chairman__inner {
	width: 100%;
	max-width: 47.2rem;
	margin-top: 5rem;
	background-color: #6194c9;
	color: #ffffff;
	border-radius: 3rem;
	padding: 3rem;
}
.chairman__inner picture {
	display: block;
	margin-top: -8rem;
}
.chairman__inner-block {}
.chairman__inner-block h2 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	font-size: 2.1rem;
	margin-bottom: 1.5rem;
}
.chairman__inner-block h2 span {
	display: block;
	font-size: 1.6rem;
}
.chairman__inner-block p {
	line-height: 1.3;
	margin-bottom: 1rem;
}
#judge .other {
	width: 100%;
	text-align: right;
	font-size: 2.8rem;
	color: #0053a8;
	font-weight: 700;
	padding-right: 12%;
}

@media screen and (max-width: 768px) {
	#judge {
		padding-block: 3rem 2rem;
	}
	.judgeTitle {
		margin-bottom: 3rem;
	}
	.judgeTitle .txt {
		font-size: 1.6rem;
		font-weight: 700;
		bottom: 0.5rem;
	}
	.chairman {
		padding-inline: 2rem;
		    align-items: center;
	}
	.chairman__inner picture {
		display: block;
		margin-top: -8rem;
	}
	.chairman__inner picture {
		text-align: center;
	}
	.chairman__inner picture img {
		width: 80%;
	}
	.chairman__inner-block h2 {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		font-size: 2.1rem;
		margin-bottom: 4rem;
	}
	.chairman__inner-block h2 img {
		zoom: 0.75;
	}
	.chairman__inner-block h2 span {
		display: block;
		font-size: 1.6rem;
	}
	#judge .other {
		font-size: 2rem;
		padding-right: 5%;
	}

}


/* player */
#player {
	background: linear-gradient(to bottom,  #d5fdf1 0%,#cfdff4 50%,#bff7fe 100%);	
	position: relative;
}
#player:before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;	
	width: 100%;
	height: 100%;
	background: url("../images/bg_dot.png") repeat-y 0 0 / 98% auto;
}
#player .secInner {
	position: relative;
	z-index: 10;
}
#player p.kome {
	text-align: right;
	margin-bottom: 1em;
}
#player .category {
	margin-bottom: 60px;
}
#player h3 {
	font-size: 2.2rem;
	color: #fefdc3;
	font-weight: 600;
	background: #354193;
	padding: 0.5em 0 0.6em;
	text-align: center;
	margin-bottom: 1em;
}
#player .menber {	
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	padding: 0 1em;	
}
#player .menber .prof {
	display: flex;
	justify-content: space-between;
	background: #ffffff;
	border-radius: 1em;	
}
#player .menber .prof .imgarea {
	width: 180px;
	background: #63a1e1;
    border-radius: 1em 0 0 1em;
}
#player .menber .prof .imgarea img {
	border-radius: 1em 0 0 1em;
}
#player .menber .prof dl {
	width: calc(100% - 180px);
	padding: 1.5em 0.5em 0 1.5em;
	line-height: 1.4;
}
#player .menber .prof dl dt {
	font-size: 2.3rem;
	font-weight: 600;
	position: relative;	
	margin-bottom: 1em;
}
#player .menber .prof dl dt .txt_sml {
	font-size: 60%;
}
#player .menber .prof dl dt .txt_en {
	color: #228fe8;
	font-size: 65%;
	display: block;
}
#player .menber .prof dl dt:after {
	content: "";
	display: block;
	position: absolute;
	width: 50px;
	height: 3px;
	background: #228fe8;	
	left: 0;
	bottom: -0.5em;		
}
#player .menber .prof dl dd {
	font-size: 1.5rem;
}
#player .menber .prof dl dd .lbl {
	font-size: 1.3rem;
	color: #ffffff;
	background: #228fe8;
	display: inline-block;
	width: 5em;
	border-radius: 1em;
	padding: 0.1em 0 0.2em;
	text-align: center;
	margin: 0.8em 0 0.3em;
}
@media screen and (max-width: 768px) {
	#player .category {
		margin-bottom: 40px;
	}
	#player h3 {
		font-size: 2.0rem;
	}
	#player .menber {
		display: block;
		max-width: 520px;
		margin: 0 auto;
	}
	#player .menber .prof {
		margin-bottom: 1em;
	}
}
@media screen and (max-width: 480px) {
	#player .menber .prof .imgarea {
		width: 42%;		
	}
	#player .menber .prof dl {
		width: 58%;
		padding: 0.8em 0.6em 0.6em 1.2em;
  		line-height: 1.3;
	}
	#player .timeattack .menber .prof dl {
		padding-top: 1.5em;
	}
	#player .menber .prof dl dt {
		font-size: 1.8rem;
	}
	#player .menber .prof dl dd {
		font-size: 1.3rem;		
	}
	#player .menber .prof dl dd .txt_lar {
		font-size: 110%;
	}
}


/* award */
#award {
	background: url("../images/bg_confetti.png") no-repeat 0 0 / 100% auto, url("../images/bg_navy.jpg") no-repeat 0 0 / cover;
}
#award h2 {
	color: #ffffff;
}
#award h3 {
	text-align: center;
	padding: 1em 0;
	margin-bottom: 2em;
	background: url("../images/leaf_lef.png") no-repeat 15% 50% / auto 121px, url("../images/leaf_rig.png") no-repeat 85% 50% / auto 121px;
}
#award .flexbox {
	max-width: 820px;
	margin: 0 auto 2em;
}
#award .flexbox .item {
	background: #ffffff;
	border-radius: 15px;
	text-align: center;
}
#award .flexbox .item .imgarea img {
	border-radius: 15px 15px 0 0;
}
#award .flexbox .item dl {
	padding: 0.8em;
	font-size: 2.0rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
}
#award .flexbox .item dl dt {
	color: #b6a03b;
	font-weight: 600;
}
#award .txtarea {
	color: #ffffff;
	letter-spacing: 0.05em;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#award h3 {
		max-width: 480px;
		padding: 3vw 0;
		margin: 0 auto 1.5em;
		background-position: 0% 50%, 100% 50%;
		background-size: auto 110px, auto 110px;
	}
	#award h3 img {
		width: 80%;
	}
	#award .flexbox {
		margin-bottom: 0;
	}
	#award .flexbox .item {
		border-radius: 12px;
		width: 90%;
		margin: 0 auto 1.5em;
	}
	#award .flexbox .item .imgarea {
		max-width: 420px;
  		margin: 0 auto;
	}
	#award .flexbox .item .imgarea img {
		border-radius: 0;
		padding: 1em 1em 0;
	}
	#award .flexbox .item dl {
		font-size: 1.7rem;
	}
}
@media screen and (max-width: 619px) {
	#award h3 {
		background-size: auto 18vw, auto 18vw;
	}
}
@media screen and (max-width: 500px) {
	#award .flexbox .item .imgarea img {
		border-radius: 12px 12px 0 0;
		padding: 0;
	}	
}

/* archive */
#archive {
	background-image: url(../img/archive_bg.jpg);
	background-size: 100% auto;
	background-position: center top;
	background-repeat: repeat-y;
}
#archive .movie_wrap {
	background-color: #ffffff;
	border-radius: 3.5rem;
	padding: 6rem 7rem;
	margin-bottom: 10em;
	box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.15);
}
#archive .movie_bg {
	margin-bottom: 2em;
}
.movie {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 0 auto;
}
.movie iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
	border-radius: 24px;
}
#archive h3 {
	background-color: #0053a8;
	text-align: center;
	font-weight: 600;
	color: #ffffff;
	width: 100%;
	max-width: 26rem;
	padding-block: 1.5rem;
	border-radius: 100px;
	position: relative;
	display: block;
	margin-inline: auto;
}
#archive h3 i {
	position: absolute;
	top: -2rem;
	left: -4rem;
}
#archive .photo_wrap {
	text-align: center;
	background-color: #0b5cae;
	padding:5rem 8rem ;
	border-radius: 5rem;
}
#archive .photo_wrap h4 {
	margin-bottom: 5rem;
}
#archive .photo_wrap .activeimg.flexbox {
	flex-wrap: wrap;
}
#archive .photo_wrap .activeimg li {
	width: 32.8%;
	margin-bottom: 0.5em;
}
#archive .photo_wrap .activeimg li img {
	width: 100%;
}
#archive #morebtn,
#archive #closebtn {	
	margin: 2em auto 0;
}
#archive #morebtn a,
#archive #closebtn a {	
	width: 100%;
	max-width: 32rem;
	padding-block: 2rem;
	background: #f79520;
	color: #ffffff;
	font-weight: 700;
	border-radius: 200px;
	display: block;
	margin-inline: auto;
	position: relative;
}
#archive #morebtn a:after,
#archive #closebtn a:after {
	content: "";
	background-image: url(../img/archive_btn.svg);
	background-size: 48px 48px;
	width: 48px;
	height: 48px;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.morearea {
	display: none;
}

@media screen and (max-width: 768px) {
	#archive h3 {		
		font-size: 1.7rem;
	}
	#archive .photo_wrap .activeimg.flexbox {
		flex-direction: inherit;
	}
	#archive .photo_wrap .activeimg li {
		width: 49%;
		margin-bottom: 2vw;
	}
	#archive #morebtn,
	#archive #closebtn {	
		width: 100%;
		padding: 0;
	}
	#archive #morebtn.btnarea a,
	#archive #closebtn.btnarea a {	
		width: 100%;
		max-width: 220px;
		height: 44px;
		line-height: 44px;
		font-size: 1.5rem;    
	}
	#archive {
	}
	#archive .movie_wrap {
		padding: 1.5rem;
		box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.15);
		margin-bottom: 2em;
	}
	#archive .movie_bg {
		margin-bottom: 1em;
	}
	.movie {
	    position: relative;
	    width: 100%;
	    padding-top: 56.25%;
	    margin: 0 auto;
	}
	.movie iframe {
	    position: absolute;
	    top: 0;
	    right: 0;
	    width: 100%;
	    height: 100%;
		border-radius: 24px;
	}
	#archive h3 {
		font-weight: 700;
		width: 80%;
		padding-block: 1rem;
	}
	#archive h3 i {
		position: absolute;
		top: -1rem;
		left: -2rem;
	}
	#archive h3 i img {
		zoom: 0.75;
	}
	#archive .photo_wrap {
		padding:1.5rem;
		border-radius: 5rem;

	}
	#archive .photo_wrap h4 {
		margin-bottom: 1rem;
		padding-inline: 3rem;
	}
	#archive .photo_wrap .activeimg li {
		width: 48.8%;
		margin-bottom: 0.5em;
	}
	#archive #morebtn,
	#archive #closebtn {	
		margin: 1em auto 1rem;
	}
	#archive #morebtn a,
	#archive #closebtn a {	
		width: 70%;
		padding-block: 1rem;

	}
	#archive #morebtn a:after,
	#archive #closebtn a:after {
		background-size: 30px 30px;
		width: 30px;
		height: 30px;
		right: 20px;
	}
	.morearea {
		display: none;
	}
}


/* Gallery */
#gallery {
	background: #a5dceb;
}

#gallery .gallery-img {
	width: 100%;
}

#gallery .modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s;
	pointer-events: none;
	opacity: 0;
	z-index: 100;
	background-color: rgba(24, 24, 24, 0.8);
	}

#gallery .modal.is-active {
	opacity: 1;
	pointer-events: auto;
	}

#gallery .modal__overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

#gallery .modal__content {
	position: relative;
	width: 100%;
	max-width: 900px;
	text-align: center;
}

#gallery .gallery-flexbox {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
	#gallery .gallery-flexbox {
		flex-direction: inherit;
	}
}

#gallery .gallery-flexbox li {
    width: 32.8%;
    margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
	#gallery .gallery-flexbox li {
        width: 49%;
        margin-bottom: 2vw;
	}
}

#gallery .gallery-flexbox li img {
    width: 100%;
}


#gallery .modal__close-btn {
	font-size: 25px;
    position: absolute;
    right: -59px;
    top: -50px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    color: #FFF;
}

#gallery .gallery-btnarea {
		text-align: center;
}
@media screen and (max-width: 768px) {
	#gallery .gallery-btnarea {
		background-position: 5vw 50%;
		background-size: 20vw auto;
		padding: 14vw 0 3vw 10vw;
	}
}

#gallery .gallery-btnarea a {
	display : inline-block;
	color: #ffffff;
	text-align: center;
	width: 420px;
	height: 72px;
	line-height: 72px;
	font-size: 1.9rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
	#gallery .gallery-btnarea a {
		font-size: 1.6rem;
		width: 100%;
		max-width: 280px;
		height: 60px;
		line-height: 60px;		
	}
}

#gallery #gallery-morebtn,
#gallery #gallery-closebtn {	
	margin: 2em auto 0;
}
@media screen and (max-width: 768px) {
	#gallery #gallery-morebtn,
	#gallery #gallery-closebtn {	
        width: 100%;
        padding: 0;
	}
}

#gallery #gallery-morebtn.gallery-btnarea a,
#gallery #gallery-closebtn.gallery-btnarea a {	
	width: 320px;
	height: 66px;
	line-height: 66px;
	background: #232951;
	font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
	#gallery #gallery-morebtn.gallery-btnarea a,
	#gallery #gallery-closebtn.gallery-btnarea a  {	
		width: 100%;
		max-width: 220px;
		height: 44px;
		line-height: 44px;
		font-size: 1.5rem;    
	}
}

#gallery .gallery-morearea {
	display: none;
}

#gallery .gallery-content-more {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: repeat(4 1fr);
    gap: 2% 1%;
}


/* Swiperの矢印部分 */
.swiper-button-prev:after {
	position: fixed;
	left: 5%;
	color: #228fe8;
}

.swiper-button-next:after {
	position: fixed;
	right: 5%;
	color: #228fe8;
}

@media (max-width: 768px) {
	#gallery .modal .swiper-button-next,
	#gallery .modal .swiper-button-prev {
		display: none;
	}
}


/* Winners */
#winners {
	background-color: #a5dceb;
}

#winners ul {
	display: block;
	margin: 0 auto;
	padding: 5%;
}

#winners li {
	display: block;
	background: #ffffff;
    border-radius: 1em;
	box-shadow: 0px 0px 15px -5px #777777;
    border-radius: 20px;
	overflow: hidden;
}

#winners li:not(:last-child) {
	margin-bottom: 3em;
}

#winners .winners-flex {
	display: flex;
}
@media (max-width: 768px) {
	#winners .winners-flex {
		display: block;
	}
}

#winners .winners-photo {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

#winners .winners-img {
	display: flex;
	width: 100%;
	background: #f1f1f1;
}
@media (max-width: 768px) {
	#winners .winners-img {
		width: 100%;
		border-radius: 20px 20px 0 0;
	}
}

#winners .winners-img img,
#winners .winners-robo-img img {
	max-width: 100%;
    height: auto;
	display: flex;
    margin: auto;
}

#winners .winners-robo-img {
	display: flex;
	width: 100%;
	background: #f1f1f1;
}

#winners .winners-information {
	width: 100%;
	padding: 2.5% 2.5% 2.5% 2%;
}
@media (max-width: 768px) {
	#winners .winners-information {
		padding: 2.5% 2.5% 4% 2%;
	}
}

@media (max-width: 768px) {
	#winners .winners-center-768 {
		text-align: center;
	}
}

#winners .winners-center {
	text-align: center;
}

#winners .winners-left-text {
	width: 73%;
	margin: 0 auto;
	text-align: justify;
}

@media (max-width: 768px) {
	#winners .winners-left-text-768 {
		width: 73%;
		margin: 0 auto;
	}
}

#winners .winners-video {
	display: block;
	width: fit-content;
	color: #228fe8;
	border-bottom: 1px solid #228fe8;
	margin-top: 5px;
	transition: all 0s;
}

#winners .winners-video:hover {
	border-bottom: 1px solid #FFF;
}

@media (max-width: 768px) {
	#winners dl {
		text-align: center;
		text-align: justify;
	}
}

#winners dt {
	color: #228fe8;
    font-size: 2.3rem;
    font-weight: 600;
    position: relative;
}
@media (max-width: 480px) {
	#winners dt {
		font-size: 1.8rem;
	}
}

#winners dd {
    font-size: 1.5rem;
}
@media (max-width: 480px) {
	#winners dd {
		font-size: 1.3rem;
	}
}

#winners .lbl {
    font-size: 1.3rem;
    color: #ffffff;
    background: #228fe8;
    display: inline-block;
    width: 5em;
    border-radius: 1em;
    padding: 0.1em 0 0.2em;
    text-align: center;
    margin: 2em 1em 0.3em 0;
}

#winners .winners-time {
	width: fit-content;
    margin-top: 1em;
}

#winners .winners-btnarea {
	text-align: center;
}

#winners .winners-more {
    width: 80%;
    height: 66px;
    line-height: 66px;
    background: #232951;
    font-size: 1.9rem;
	display: inline-block;
    color: #ffffff;
    text-align: center;
	font-weight: 600;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
	#winners .winners-more {
		width: 100%;
        height: 44px;
        line-height: 44px;
        font-size: 1.3rem;
    }
}


/* hamburger */
header ul.head_btn li:nth-of-type(-n+6) {
	padding-right: 0.9em;
}
header ul.head_btn li:nth-of-type(-n+6)::after {
	content: "|";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	right: 0;	
}

@media screen and (max-width: 768px) {
	header ul.head_btn li:nth-of-type(-n+7) {
		padding-right: 0;
	}
	header ul.head_btn li:nth-of-type(-n+7)::after {
		content: none;
	}
	header .menu_head .gnav ul li:nth-of-type(-n+7) a {
		display: block;
        padding: 1em 2em;
    	border-bottom: 1px solid #ccc;
	}
}