*,
*: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: 65%;
}
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);
}
main .intro h4 span {
	padding: 1em 3em;
	text-align: center;
	color: #CAA846;
	font-weight: bold;
	border: 1px solid #CAA846;
    border-radius: 2em;
	background-color: #fff;
}

/* --------------- プロジェクト概要 --------------- */
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 .qualification {
	padding: 5em 0;
}
main .qualification ol {
	margin: 3em 0 0;
	list-style: decimal;
}
main .qualification li {
	margin: 1em 1.5em;
	padding: 0 0 1em 1em;
	border-bottom: 1px dotted #CAA846;
}
main .qualification li::marker {
	font-weight: bold;
	color: #CAA846;
}
main .qualification .final-judge {
	margin: 1em 1.5em 2em;
	padding: 1em;
	border: 1px dotted #CAA846;
	border-radius: 5px;
}
main .qualification .final-judge h4 {
	letter-spacing: 0.01em;
	margin-bottom: 0.5em;
	font-weight: bold;
	color: #CAA846;
}
main .qualification li span.caption {
	margin-top: 0;
}
main .qualification p.caption {
	text-align: center;
	font-weight: bold;
	color: #CAA846;
}
main .qualification p.caption span {
	padding: 1em 3em;
	text-align: center;
	color: #f06060;
	font-weight: bold;
	border: 1px solid #f06060;
    border-radius: 2em;
	background: #ffebee;
}

/* --------------- 副賞 --------------- */
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: 5em 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 .schedule {
	padding: 5em 0;
	text-align: center;
}
main .schedule table {
	border-collapse: collapse;
	width: 100%;
	margin-top: 3em;
}
main .schedule table th,
main .schedule table td {
	padding: 1em;
	text-align:center;
	box-sizing:border-box;
	border: solid 1px #CAA846;
	white-space: nowrap;
	vertical-align: middle
}
main .schedule table th {
	background: #CAA846;
	border-bottom: solid 1px #fff;
	color: #fff;
}
main .schedule table th.last-child {
	border-bottom: solid 1px #CAA846;
}
main .schedule table td {
	text-align: left;
}

/* --------------- 求める人材 --------------- */
main .wanted {
	padding: 5em 0;
	text-align: center;
}
main .wanted ul {
	margin: 3em 0;
	position: relative;
	text-align: left;
	display: inline-block;
	font-size: var(--font-size-m);
	line-height: var(--line-height-m);
}
main .wanted ul li {
	margin-bottom: 3em;
	line-height: 2;
	transform: skew(-15deg);
}
main .wanted ul li:last-child {
	margin-bottom: 0;
}
main .wanted ul li span {
	padding: 0.3em 0.5em;
	color: #FFF;
	font-weight: bold;
}
main .wanted ul li span.marker {
	background: linear-gradient(#CAA846 0, #CAA846 100%);
	display: inline;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition:background-size 1.5s;
}
main .wanted ul li span.marker.on {
	background-size: 100% 100%;
}

/* --------------- 選考方法 --------------- */
main .selection {
	padding: 5em 0;
}
main .selection p {
	margin-top: 3em;
}
main .selection p.caption {
	margin-top: 0;
}
main .selection p a {
	color: #3194B3;
	text-decoration: underline;
}
main .selection p a:hover {
	text-decoration: none;
}

/* --------------- 審査員 --------------- */
main .judges {
	padding: 5em 0;
	text-align: center;
}
main .judgesBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 3em;
	row-gap: 3em;
	margin: 3em auto;
}
main .judgesItem {
	padding: 0.5em;
	border: 1px solid #CAA846;
	border-radius: 5px;
	flex-grow: 2;
}
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: 250px;
	border-radius: 5px;
}

/* --------------- 審査員からのコメント --------------- */
main .judgesComment {
	padding: 5em 0;
}
main .judgesComment .comment {
	--bg-gradient: linear-gradient(#CAA846 0 100%);
	position: relative;
	padding: 5em;
	background-image:
		var(--bg-gradient),
		var(--bg-gradient),
		var(--bg-gradient),
		var(--bg-gradient);
	background-repeat: no-repeat;
	background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
	background-position: left top 1em, right 1em top, left bottom 1em, left 1em top;
}
main .judgesComment .comment h4 {
	position: absolute;
	display: inline-block;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 1em;
	background-color: #FBFDFB;
	color: #CAA846;
	font-weight: bold;
	white-space: nowrap;
}
main .judgesComment .comment .comment-body {
	text-align: justify;
	padding: 0 1em 1em;
	border-box: box-sizing;
	background-color: #F3F3F3;
	margin-bottom: 3em;
	border-radius: 5px;
}
main .judgesComment .comment .comment-body:last-child {
	margin-bottom: 0;
}
main .judgesComment .comment .comment-body:before {
	display: inline-block;
	margin: 0 0 0.5em -1em;
	padding: 0.5em 2em;
	background-color: #CAA846;
	color: #fff;
	content: attr(data-title);
	border-radius: 5px 0 5px 0;
}

/* --------------- 応募方法 --------------- */
main .applicationMethod {
	padding: 5em 0;
}
main .applicationMethod h3 {
	margin-bottom: 3em;
}
main .applicationMethod p span {
	color: #CAA846;
	font-weight: bold;
}
main .applicationMethod ol {
	margin: 1em 0 3em;
	padding: 1em 0 0 2em;
	border: 1px dotted #CAA846;
	border-radius: 5px;
	list-style: decimal;
}
main .applicationMethod ol li {
	margin-bottom: 1em;
}
main .applicationMethod li::marker {
	font-weight: bold;
	color: #CAA846;
}

main .qualification ol {
	margin: 3em 0 0;
	list-style: decimal;
}
main .qualification li {
	margin: 1em 1.5em;
	padding: 0 0 1em 1em;
	border-bottom: 1px dotted #CAA846;
}

main .privacyPolicy {
	margin: 3em 0;
	width: 100%;
	border: 2px solid #333;
	letter-spacing: .3px;
	border-radius: 5px;
}
main .privacyPolicyTitle {
	color: #fff;
	font-weight: bold;
	background-color: #333;
	padding: 4px 6px;
	text-align: center;
}
main .privacyPolicy p {
	margin: 0;
	padding: 1em;
}
main .privacyPolicy p a {
	color: #3194B3;
	font-weight: bold;
	text-decoration: underline;
}
main .privacyPolicy p a:hover {
	text-decoration: none;
}
main .apply {
	text-align: center;
	margin: 5em auto;
    color: #CAA846;
	font-weight: bold;
}

a.btn-apply {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 50%;
    margin:0 auto;
    padding: 1em 3em;
    overflow: hidden;
    border: 1px solid #CAA846;
    border-radius: 2em;
    background-color: #CAA846;
    color: #FFF;
}

a.btn-apply:hover {
	background-color: #FFF;
    color: #CAA846;
}

a.btn-apply::after {
	margin-left: 0.5em;
	transform: rotate(10deg);
    content: "\f1d8";
	color: #FFF;
    display: inline-block;
    font-family: FontAwesome;
    font-weight: normal;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a.btn-apply:hover::after {
	color: #CAA846;
}

main .notice h5 {
	font-weight: bold;
	color: #f06060;
	background: #ffebee;
	border: 1px solid #f06060;
	margin: 1em 0;
	padding: 0.5em 1em;
	border-radius: 5px;
}
main .notice ul {
	margin: 0 0 3em;
	position: relative;
	border: 1px dotted #CAA846;
	border-radius: 5px;
}
main .notice ul li {
	border: none;
	padding: 0;
	margin: 1em 1em 1em 2em;
}
main .notice ul li:before {
	position: absolute;
	left: 1em;
	content: "\f14a";
	color: #CAA846;
    display: inline-block;
    font-family: FontAwesome;
    font-weight: normal;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
main .notice ul li a {
	color: #3194B3;
	text-decoration: underline;
}
main .notice ul li a:hover {
	text-decoration: none;
}
main .notice ul li ul {
	margin: 0;
	border: none;
	position: relative;
}
main .notice ul li ul li {
	margin: 0 0 0 1em;
}
main .notice ul li ul li:before {
	position: absolute;
	left: 0;
	content: "\f105";
}

/* --------------- Q&A --------------- */
main .QA {
	padding: 5em 0;
}
main .QA div {
	padding: 2em 0;
	border-bottom: 1px dotted #CAA846;
}
main .QA dl dt,
main .QA dl dd {
	display: flex;
	align-items: baseline;
	margin: 1em 0;
}
main .QA dl dt p {
	margin: 0;
	padding-left: 1em;
	font-weight: bold;
	width: 100%;
}
main .QA dl dd p {
	margin: 0;
	padding-left: 1em;
	width: 100%;
}
main .QA div:last-of-type {
	border-bottom: none;
}
main .QA dl dt::before {
	content: "Q";
	display: flex;
	justify-content: center;
	align-items: center;
	background: #a0daea;
	color: #FFF;
	width: 2em;
	height: 2em;
	border-radius: 5px;
}
main .QA dl dd::before {
	content: "A";
	display: flex;
	justify-content: center;
	align-items: center;
	background: #CAA846;
	color: #FFF;
	width: 2em;
	height: 2em;
	border-radius: 5px;
}

/* --------------- お問い合わせ --------------- */
main .contact {
	padding: 5em 0 20em;
}
main .contact p {
	margin: 3em 0;
}
main .contact p a {
	color: #3194B3;
	text-decoration: underline;
}
main .contact p a:hover {
	text-decoration: none;
}
