*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

:root {
  /* Base font size */
  --font-size-base: 16px;

  /* Type scale tokens */
  --font-size-xs: clamp(0.375rem, 0.304rem + 0.476vw, 0.875rem);
  --line-height-xs: 1.8;
  --font-size-s: clamp(0.5rem, 0.411rem + 0.595vw, 1.125rem);
  --line-height-s: 1.8;
  --font-size-r: clamp(0.688rem, 0.598rem + 0.595vw, 1.313rem);
  --line-height-r: 1.8;
  --font-size-m: clamp(0.75rem, 0.607rem + 0.952vw, 1.75rem);
  --line-height-m: 1.55;
  --font-size-l: clamp(0.938rem, 0.759rem + 1.19vw, 2.188rem);
  --line-height-l: 1.49;
  --font-size-xl: clamp(1.188rem, 0.964rem + 1.488vw, 2.75rem);
  --line-height-xl: 1.41;
  --font-size-2xl: clamp(1.438rem, 1.152rem + 1.905vw, 3.438rem);
  --line-height-2xl: 1.36;
  --font-size-3xl: clamp(1.813rem, 1.464rem + 2.321vw, 4.25rem);
  --line-height-3xl: 1.29;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 100%;
	height: -webkit-fill-available;
	scroll-behavior: smooth;
}

body {
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: 500;
	color: #232B3D;
	font-size: var(--font-size-r);
	line-height: var(--line-height-r);
	letter-spacing: 0.01em;
	text-align: justify;
	height: 100%;
	background-color: #FBFDFB;
}

.container {
	width: 80%;
	max-width: 1920px;
	height: 100%;;
	margin: 0 auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn linear;
  animation-timeline: view();
  animation-range: entry 0% cover 50%;
}

@supports not (animation-timeline: view()) {
  .fade-in {
    opacity: 1;
    transform: none;
  }
}

h1 {
	font-size: var(--font-size-xl);
	line-height: var(--line-height-xl);
	letter-spacing: 0.02em;
	font-weight: bold;
}

h2 {
    font-size: var(--font-size-l);
	line-height: var(--line-height-l);
	letter-spacing: 0.01em;
	font-weight: bold;
}

h3 {
	font-size: var(--font-size-m);
	line-height: var(--line-height-m);
	letter-spacing: 0.005em;
	font-weight: bold;
}

h4 {
	font-size: var(--font-size-r);
	line-height: var(--line-height-r);
	letter-spacing: 0.005em;
}

main h3 {
	text-align: center;
	margin: 0 auto;
	position: relative;
	padding-bottom: 1rem;
	padding-top: 1rem;
	color: #CAA846;
	border: 1px solid currentColor;
	border-radius: 5px;
}

main h3:before {
	content:'';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) skew(-25deg);
	height: 15px;
	width: 15px;
	border-right: 1px solid currentColor;
	background-color: #FBFDFB;
	border-left: none;
	border-top: unset;
	border-bottom: unset;
}

.caption {
	font-size: var(--font-size-s);
	line-height: var(--line-height-s);
	letter-spacing: 0.01em;
}

/* --------------- ヘッダー --------------- */
header {
	background: rgba(255,255,255,0.9);
	height: 100px;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 10000;
	box-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

header .container {
	text-align: center;
	width: 98%;
}

header .container img {
	width: 20rem;
	height: 60%;
}

header .container ul {
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: var(--font-size-xs);
	line-height: var(--line-height-xs);
}

header .container ul li a {
	margin: 0 1em;
	font-weight: bold;
}

header .container ul li a:hover {
	color: #CAA846;
}
.link-current {
	color: #CAA846;
}
header .container #hamburger {
	display: none;
}

/* --------------- ヒーロー --------------- */
.v-center {
	height: 100vh;
	min-height: 100%;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-image: url("../img/hero_bg.jpg");
	background-color: #FBFDFB;
}
main .title {
	height: 65vh;
}
main .title .container {
	height: 100%;
}
main .title h1 {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	text-align: center;
}
main .title img {
	align-self: end;
	height: auto;
	width: 55%;
}
main .intro {
	height: 35vh;
}
main .intro h2 {
	font-family: 'Noto Serif JP', serif;
	padding-top: 1em;
	text-align: center;
	font-size: var(--font-size-l);
	line-height: var(--line-height-l);
	letter-spacing: 0.005em;
	font-weight: bold;
	color: #FFF;
	text-shadow: 0px 0px 10px rgba(240, 198, 16, 1);
}
main .intro h2 .br1,main .intro .br2 {
	display: none;
}
main .intro h4 {
	margin: 2em auto 0;
	text-align: center;
	font-size: var(--font-size-m);
	line-height: var(--line-height-m);
	color: #CAA846;
	font-weight: bold;
}
main .intro h4 span {
	border: 1px solid #CAA846;
    border-radius: 6em;
	background-color: #fff;
	display: inline-block;
	padding: 0.5em 3em;
}
main .intro h4 span span {
	display: block;
	border: none;
    border-radius: 0;
	background: none;
	padding: 0;
}
main .intro h4 span span.extention {
	color: #E60003;
}
main .intro h4 span span span {
	display: inline;
	padding: 0;
	border: none;
    border-radius: 0;
	background: none;
	text-decoration: line-through;
	font-weight: normal;
}

/* --------------- プロジェクト概要 --------------- */
main .overview {
	padding: 5em 0;
	text-align: center;
}
main .overview p {
	text-align: justify;
	margin-top: 3em;
}
main .overview .last-year {
	margin-top: 3em;
}
main .overview .last-year p {
    align-items: center;
	display: flex;
}
main .overview .last-year p::before,
main .overview .last-year p::after {
	background-color: #CAA846;
	content: "";
	flex-grow: 1;
	height: 1px;
}
main .overview .last-year p::before {
	margin-right: 1em;
}
main .overview .last-year p::after {
	margin-left: 1em;
}
main .overview .last-year .gallery {
	margin-top: 1em;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
}
main .overview .last-year .gallery .gallery_slide {
	display: flex;
	animation: slide 24s linear infinite 1s both;
}
main .overview .last-year .gallery .gallery_slide li {
	flex: 0 0 12.5%;
	width: 100%;
}
main .overview .last-year .gallery .gallery_slide li img {
	height: 250px;
}
@keyframes slide {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}
main .overview .last-year .gallery.slide-paused:hover .gallery_slide {
	animation-play-state: paused;
}
main .overview .last-year p {
	margin-top: 0;
	text-align: center;
	color: #CAA846;
}
main .overview .last-year p br {
	display: none;
}

/* --------------- 審査員 --------------- */
main .judges {
	padding: 3em 0 5em;
	text-align: center;
	position: relative;
}

main .judges h4 {
	color: #CAA846;
	font-weight: bold;
	position: relative;
	top: 0.8em;
}

main .judges h4 span {
	padding: 0 0.5em;
	background: #FFF;
}

main .judges .add-catch {
	font-size: var(--font-size-m);
	line-height: var(--line-height-m);
	letter-spacing: 0.005em;
	font-weight: bold;
	margin-bottom: 3em;
	padding: 1em;
	background: #CAA846;
	color: #FFF;
	border-radius: 5px;
}
main .judges .add-catch br.br1 {
	display: none;
}

main .judgesBox {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);;
	align-items: end;
	column-gap: 2em;
	row-gap: 2em;
	margin: 2em auto;
}
main .judgesItem {
	padding: 0.5em;
	border: 1px solid #CAA846;
	border-radius: 5px;
	flex-grow: 0;
}
main .judgesItem h5 {
	font-weight: bold;
	margin-bottom: 0.5em;
	line-height: 1;
	background-color: #CAA846;
	color: #fff;
	padding: 1em 0;
	border-radius: 5px;
}
main .judgesItem h5 span {
	font-weight: normal;
	font-size: 80%;
}
main .judgesItem img {
	max-width: 60%;
	max-height: 350px;
	border-radius: 5px;
}
main .judges p.caption {
    margin-top: 3em;
}
main .judges .judgesBox p.caption {
    margin-top: 0;
}


/* --------------- ファイナリスト --------------- */
main .finalist {
	padding: 5em 0;
}
main .finalist h3 span {
	font-size: 70%;
}
main .finalist_list {
	margin: 3em 0 0;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: stretch;
	column-gap: 2em;
	row-gap: 2em;
	margin: 2em auto;
}
main .finalist_list .artist_con {
	padding: 0.5em;
	border: 1px solid #CAA846;
	border-radius: 5px;
	flex-grow: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
main .finalist_list .artist_con .artist_sns {
	position: relative;
	bottom: 0;
}
main .finalist_list .artist_con h4 {
	text-align: center;
	font-weight: bold;
	margin-bottom: 0.5em;
	line-height: 1;
	background-color: #CAA846;
	color: #fff;
	padding: 1em 0;
	border-radius: 5px;
	position: relative;
}
main .finalist_list .artist_con h4 .artist_num {
	font-size: 400%;
	position: absolute;
	z-index: 1;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	display: block;
	letter-spacing: -0.1em;
}
main .finalist_list .artist_con .pf_img {
	width: 100%;
	background-color: #eee;
	text-align: center;
	margin: 0 auto;
	border-radius: 5px;
}
main .finalist_list .artist_con img {
	max-width: 100%;
	max-height: 350px;
	border-radius: 5px;
}
main .finalist_list .artist_con h5 {
	font-weight: bold;
	color: #CAA846;
	margin: 0.5em 0;
	padding: 0 0 0 1.5em;
	position: relative;
}
main .finalist_list .artist_con h5::before {
	position: absolute;
	top: calc(50% - 0.5px);
	left: 0;
	width: 1em;
	height: 1px;
	content: '';
	background: #CAA846;
}
main .finalist_list .artist_con .sns_list {
	display: grid;
	grid-template-columns: repeat(auto-fit, 12.9%);
	column-gap: 0.5em;
	row-gap: 0.5em;
}
main .finalist_list .artist_con .sns_list li {
	border: 1px solid #CAA846;
	border-radius: 5px;
	padding: 0;
	text-align: center;
	color: #CAA846;
}
main .finalist_list .artist_con .sns_list li:hover,
main .finalist_list .artist_con .sns_list li:active {
	background: #CAA846;
	color: #FFF;
	cursor: pointer;
}
main .finalist_list .artist_con i {
	padding: 0.3em;
}

/* --------------- グランプリ受賞特典 --------------- */
main .extraprize {
	padding: 5em 0;
}
main .extraprize h3 {
	margin-bottom: 3em;
}
main .prizebox {
	margin: 1em 0;
	background-color: #FFF;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	border-radius: 5px;
	display: flex;
	align-items: center;
}
main .prizebox h4 {
	width: 30%;
	text-align: center;
	padding: 1em 0;
	background-image: linear-gradient(150deg, rgba(202, 168, 70, 1), rgba(237, 229, 125, 1) 50%, rgba(237, 229, 125, 1));
	color: #232B3D;
	border-radius: 5px 0 0 5px;
	font-weight: bold;
}
main .prizebox h4 span {
	display: inline-block;
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	text-shadow: none;
	font-weight: normal;
	border-bottom: 1px solid #232B3D;
	font-style: italic;
}
main .prizebox h4 span span {
	margin-bottom: 0;
	padding-bottom: 0;
	padding-left: 0.2em;
	border-bottom: none;
	font-size: var(--font-size-m);
	line-height: var(--line-height-m);
	font-weight: bold;
}
main .prizebox ul {
	width: 70%;
	padding: 0 1em;
}
main .prizebox ul li{
	margin: 1em 0;
}
main .prizebox ul li span {
	padding: 0;
}
main .prizebox ul li span.marker {
	background: linear-gradient(transparent 70%, rgba(237, 229, 125, 1) 30%);
	display: inline;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition:background-size 1.5s;
}
main .prizebox ul li span.marker.on {
	background-size: 100% 100%;
}

/* --------------- 実施概要 --------------- */
main .about {
	padding: 5em 0;
}
main .about h3 {
	margin-bottom: 3em;
}
main .about h4 {
	color: #CAA846;
	font-weight: bold;
	margin: 3em 0 0;
}
main .about table th {
	font-weight: bold;
	color: #CAA846;
	padding: 0.5em 0;
}
main .about table td {
	padding: 0.5em 1em;
}

/* --------------- フッター --------------- */
footer {
	background: #eee;
	padding: 5em 0;
	text-align:  justify;
}
footer h3 {
	text-align: center;
	color: #CAA846;
}
footer h4 {
	color: #CAA846;
	font-weight: bold;
	margin: 3em 0 0;
}
footer p {
	margin: 3em 0 0;
}
footer table th {
	font-weight: bold;
	color: #CAA846;
	padding: 0.5em 0;
}
footer table td {
	padding: 0.5em 1em;
}
footer table br {
	display: none;
}
footer ul.footer-link li {
	margin: 1em 0 0;
}
footer ul.footer-link li a {
	padding: 0.5em 1em;
	color: #CAA846;
	background: #FFF;
	border: 1px solid #CAA846;
	border-radius: 10em;
}
footer ul.footer-link li a:hover,
footer ul.footer-link li a:active {
	color: #FFF;
	background: #CAA846;
}
footer .footer-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 3em 0 0;
}
footer .footer-logo img {
	width: 20%;
}
