@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after { box-sizing: border-box; }
* {
  margin: 0;
  min-height: 0vw;
  min-height: 0;
}
html { font-size: calc((100vw - 320px) / 140 + 16px); }
html, body { height: 100%; }
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
#root, #__next { isolation: isolate; }
:root { --vw: 1vw; }

/* ------ */
html {
	scroll-behavior: smooth;
}
body {
  background: #fff;
	font-family: "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-weight: 400;
	font-size: 1rem;
	color: #000;
}
a {
	text-decoration: none;
	color: #000;
	transition: text-decoration .3s ease;
	text-underline-offset: 2px;
}
  a:hover { text-decoration: underline; }
table {
	border-spacing: 0;
	border-collapse:  collapse;
}
img {
	max-width: 100%;
	height: auto;
	display: inline-block;
}

.p-mv {
	width: 100%;
	height: 100vh;
	background: #fff url(../images/mv.jpg) no-repeat center 15vh;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding: 6vh 0;
}
.m-title {
	position: relative;
	padding: 0 24px;
	line-height: 1;
	text-align: center;
}
.m-title__lead {
	position: relative;
	display: block;
	text-align: center;
	font-size: 26px;
	font-weight: 700;
	z-index: 3;
}
.m-title img {
	z-index: 3;
	position: relative;
}
.m-title::before {
	position: absolute;
	top: -40%;
	left: -10%;
	background: radial-gradient(rgb(255 255 255 / .8) 40%, rgb(255 255 255 / 0) 70%);
	width: 120%;
	height: 180%;
	content: '';
	z-index: 2;
}
.m-date {
	display: flex;
	flex-direction: column;
	align-content: center;
	gap: 8px;
	background: #fff;
	padding: 10px;
	text-align: center;
	line-height: 1;
	font-weight: 600;
	font-feature-settings: "palt";
}
.m-date__date {
	font-size: calc(24rem / 16);
}
.m-date__date span {
	font-size: calc(70rem / 16);
	letter-spacing: -0.05em;
}
.m-date__place {
	font-size: calc(22rem / 16);
}
@media (width < 414px) {
	.m-title__lead { font-size: 22px; }
}
@media (orientation: landscape) and (max-height: 600px) {
	.m-title {
		max-height: 60vh;
	}
	.m-title img {
		width: auto;
		height: 100%;
	}
	.m-date__date { font-size: calc(18rem / 16); }
	.m-date__date span { font-size: calc(40rem / 16); }
	.m-date__place { font-size: calc(14rem / 16); }
}
@media (orientation: landscape) and (max-height: 450px) {
	.m-date__date { font-size: calc(14rem / 16); }
	.m-date__date span { font-size: calc(32rem / 16); }
	.m-date__place { font-size: calc(14rem / 16); }
}

.l-section {
	margin: 0 auto;
	padding: 16vw 0;
	width: 100%;
}
@media (width <= 600px) {
	.l-section {
		padding: 120px 0;
	}
}

.c-sectiontitle {
	margin-bottom: 6vw;
}
.c-sectiontitle span {
	display: block;
	font-size: calc(14rem / 16);
	font-weight: 400;
}
.c-maplink {
	padding-left: 20px;
	background: url(../images/icon-access.svg) no-repeat left center;
	background-size: auto 1em;
}

.p-lead {
	background-color: #fff;
	background-image: url(../images/bg01.png), url(../images/bg04.png), url(../images/layer.png), linear-gradient(180deg, #fff 0%, #fff 30vw, #F0F4F5 30vw, #F0F4F5 100%);
	background-repeat: no-repeat;
	background-position: right 10vw, left center, center bottom, center top;
	background-size: 20vw auto, auto calc(100% - 30px), cover, cover;
}
.m-lead {
	width: calc(100% - calc((100vw - 1000px) / 2));
	margin: 0 0 0 calc((100vw - 1000px) / 2);
	padding: 0 0 50px;
	display: grid;
	grid-template-areas: "title title" "txt img";
	grid-template-columns: 55% 45%;
}
.m-lead__title {
	grid-area: title;
	margin: 0 0 8vw;
	line-height: 1.2;
	font-size: calc(40rem / 16);
	font-weight: 600;
	font-feature-settings: "palt";
	word-break: auto-phrase;
}
.m-lead__txt {
	grid-area: txt;
	line-height: 1.8;
	font-family: "Yu Gothic", "Hiragino Gothic Pro", "MS Gothic", sans-serif;
}
.m-lead__txt p {
	word-break: auto-phrase;
	margin-bottom: 1em;
	font-size: calc(14rem / 16);
}
.m-lead__img {
	grid-area: img;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-template-rows: auto 1fr;
	gap: 16px;
}
.m-lead__img img {
	line-height: 0;
	margin: 0;
	padding: 0;
	border-radius: 24px;
}
.m-lead__img01 { grid-column: 2 / 4; grid-row: 1 / 1; }
.m-lead__img02 { grid-column: 4 / 6; grid-row: 1 / 1; }
.m-lead__img03 { grid-column: 6 / 8; grid-row: 1 / 1; }
.m-lead__img04 { grid-column: 1 / 3; grid-row: 2 / 3; }
.m-lead__img05 { grid-column: 3 / 5; grid-row: 2 / 3; }
.m-lead__img06 { grid-column: 5 / 7; grid-row: 2 / 3; }

@media (width <= 1024px) {
	.m-lead {
		width: 100%;
		max-width: 1024px;
		margin: 0 auto;
		padding: 0 0 0 16px;
	}
	.m-lead__title {
		margin: 0 0 4vw;
	}
}
@media (width <= 980px) {
	.p-lead {
		background-size: 30vw auto, auto calc(100% - 30px), cover, cover;
	}
	.m-lead {
		max-width: 980px;
		grid-template-areas: "title" "txt" "img";
		grid-template-columns: 1fr;
		gap: 4vw;
		padding: 0 16px;
	}
	.m-lead__title { margin-bottom: 0; }
	.m-lead__img {
		grid-template-columns: repeat(6, 1fr);
		gap: 8px;
	}
	.m-lead__img01 { grid-column: 1 / 2; grid-row: 1 / 1; }
	.m-lead__img02 { grid-column: 2 / 3; grid-row: 1 / 1; }
	.m-lead__img03 { grid-column: 3 / 4; grid-row: 1 / 1; }
	.m-lead__img04 { grid-column: 4 / 5; grid-row: 1 / 1; }
	.m-lead__img05 { grid-column: 5 / 6; grid-row: 1 / 1; }
	.m-lead__img06 { grid-column: 6 / 7; grid-row: 1 / 1; }
	.m-lead__img img { width: 100%; }
}
@media (width <= 600px) {
	.m-lead__img {
		grid-template-columns: repeat(7, 1fr);
	}
	.m-lead__img01 { grid-column: 1 / 3; grid-row: 1 / 1; }
	.m-lead__img02 { grid-column: 3 / 5; grid-row: 1 / 1; }
	.m-lead__img03 { grid-column: 5 / 7; grid-row: 1 / 1; }
	.m-lead__img04 { grid-column: 2 / 4; grid-row: 2 / 3; }
	.m-lead__img05 { grid-column: 4 / 6; grid-row: 2 / 3; }
	.m-lead__img06 { grid-column: 6 / 8; grid-row: 2 / 3; }
	.m-lead__img img { width: 100%; }
}


.p-information {
	position: relative;
	background: #F0F4F5;
}
.p-information::after {
	position: absolute;
	bottom: -30px;
	left: 0;
	display: block;
	background: url(../images/layer.png) no-repeat center top;
	background-size: cover;
	width: 100%;
	height: 50px;
	content: '';
}
.m-information {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 16px;
}
.m-informationblock {
	background: #fff;
	border-radius: 24px;
	padding: 4vw 1vw;
}
.m-informationblock table {
	max-width: 80%;
	margin: 0 auto;
}
.m-informationblock table th {
	border-bottom: 1px solid #F0F4F5;
	padding: 24px 0;
	text-align: left;
	vertical-align: top;
	font-size: calc(16rem / 16);
	white-space: nowrap;
}
.m-informationblock table td {
	border-bottom: 1px solid #F0F4F5;
	padding: 24px 40px;
	font-size: calc(14rem / 16);
}
.m-informationblock table tr:last-child th,
.m-informationblock table tr:last-child td { border-bottom: none; }

@media (width <= 980px) {
	.m-information { min-height: 60vw; }
	.m-informationblock {
		padding: 3vw 1vw;
	}
	.m-informationblock table {
		max-width: 90%;
	}
}
@media (width <= 600px) {
	.m-informationblock {
		padding: 32px;
	}
	.m-informationblock table {
		max-width: 100%;
	}
	.m-informationblock table th {
		display: block;
		border-bottom: none;
		padding: 16px;
		text-align: center;
	}
	.m-informationblock table td {
		display: block;
		padding: 0 16px 16px;
	}
}


.p-program {
	position: relative;
	background-color: #fff;
}
.p-program::before {
	position: absolute;
	top: -80px;
	left: calc((100vw - 1000px) / 2);
	width: 10vw;
	min-width: 125px;
	aspect-ratio: 125 / 140;
	background: url(../images/bg02.png) no-repeat center center;
	background-size: cover;
	content: '';
}
.m-program { padding: 0 16px; }
.m-program__main {
	margin:0 auto 40px;
	max-width: 1024px;
	display: grid;
	grid-template-areas: "img txt";
	grid-template-columns: minmax(30%, 300px) 1fr;
	gap: 40px;
}
.m-program__main__img {
	grid-area: img;
	border-radius: 24px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.m-program__main__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.m-program__main__txt {
	grid-area: txt;
}
.m-program__main__txt h3 {
	margin-bottom: 24px;
}
.m-program__main__txt h3 img {
	width: auto;
	height: 90px;
}
.m-program__main__txt p {
	line-height: 1.8;
	font-size: calc(14rem / 16);
}
.m-program__sub {
	margin:0 auto;
	padding: 0;
	max-width: 1024px;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto auto;
	gap: 40px;
}
.m-program__sub h3 {
	margin-bottom: 8px;
	font-size: calc(14rem / 16);
}
.m-program__sub p {
	font-size: calc(10rem / 16);
}
.m-program__sub__img {
	margin-bottom: 8px;
	border-radius: 24px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.m-program__sub__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (width < 980px) {
	.m-program__main {
		margin-bottom: 24px;
		grid-template-columns: 40% 1fr;
		gap: 24px;
	}
	.m-program__sub {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}
}
@media (width < 600px) {
	.m-program__main {
		grid-template-columns: 50% 1fr;
	}
	.m-program__sub {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}
@media (width < 414px) {
	.m-program__main {
		grid-template-areas: "img" "txt";
		grid-template-columns: 1fr;
	}
	.m-program__sub {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

.p-map {
	position: relative;
	background-color: #F0F4F5;
}
.p-map::before {
	position: absolute;
	top: -80px;
	right: calc((100vw - 1000px) / 2);
	width: 8vw;
	min-width: 110px;
	aspect-ratio: 110 / 156;
	background: url(../images/bg03.png) no-repeat center center;
	background-size: cover;
	content: '';
}
.m-map {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 16px;
}
.m-mapblock {
	margin-bottom: 2vw;
	display: grid;
	grid-template-columns: 30% 1fr;
	gap: 2vw;
}
.m-mapblock__img img {
	border-radius: 24px;
}
.m-mapblock__txt h3 {
	margin-bottom: 1em;
	font-size: calc(21rem / 16);
	font-weight: 600;
}
.m-mapblock__txt p {
	font-size: calc(14rem / 16);
}
.m-map__map {
	width: 100%;
	aspect-ratio: 10 / 4;
	overflow: hidden;
}
.m-map__map iframe {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
@media (width <= 1024px) {
	.p-map::before {
		right: 16px;
	}
}
@media (width <= 600px) {
	.p-map::before {
		width: 80px;
		top: -50px;
		min-width: unset;
	}
	.m-mapblock {
		margin-bottom: 40px;
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.m-map__map { aspect-ratio: 4 / 3; }
}

.p-tanka {
	position: relative;
	background-color: #F0F4F5;
	background-image: url(../images/layer.png), linear-gradient(#fff 0%, #fff 50%, #F0F4F5 100%);
	background-repeat: no-repeat, repeat;
	background-position: bottom center, center center;
	background-size: auto 100%, auto;
}
.m-tanka__title {
	margin: 0 0 58px;
	text-align: center;
	font-weight: 500;
	font-size: calc(32rem / 16);
	color: #90763A;
}
.m-tanka_lead {
	margin: 0 0 58px;
	text-align: center;
	font-weight: 500;
	font-size: calc(14rem / 16);
}
.m-tanka_lead span {
	display: inline-block;
	margin: 0 2px;
	padding: 2px 8px;
	background: #90763A;
	font-size: calc(20rem / 16);
	color: #fff;
}
.m-tanka {
	width: calc(100% - calc((100vw - 1000px) / 2));
	margin: 0;
	margin-left: calc((100vw - 1000px) / 2);
	padding: 0;
	display: grid;
	grid-template-areas: "txt img";
	grid-template-columns: repeat(2, 1fr);
	gap: 4vw;
}
.m-tanka__txt {
	grid-area: txt;
	width: 100%;
	height: 100%;
	padding: 32px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.m-tanka__txt p {
	margin: 0;
	padding: 0;
	line-height: 1.8;
	font-size: calc(14rem / 16);
}
.m-tanka__txt p em { text-decoration: underline; }
.m-tanka__txt .m-attention {
	font-size: calc(10rem / 16);
}
.m-tanka__txt .m-entry {
	margin-bottom: 16px;
	font-size: calc(16rem / 16);
	font-weight: 500;
	color: #90763A;
}
.m-tanka__txt .m-entry__btn {
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 32px;
	padding: 16px 32px 16px 58px;
	border-radius: 24px;
	background: #90763A;
	font-size: calc(12rem / 16);
	color: #fff;
}
.m-tanka__txt .m-entry__btn:hover {
	background: #000;
	text-decoration: none;
}
.m-tanka__img {
	grid-area: img;
	max-width: 100%;
	aspect-ratio: 5 / 3;
	overflow: hidden;
}
.m-tanka__img img {
	border-radius: 24px 0 0 24px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (width <= 1024px) {
	.m-tanka {
		margin: 0 auto;
		max-width: 1024px;
		width: 100%;
		padding: 0 0 0 16px;
	}
	.m-tanka__txt { padding: 0; }
}
@media (width < 980px) {
	.m-tanka {
		grid-template-areas: "img" "txt";
		grid-template-columns: 1fr;
		padding: 0 16px;
	}
	.m-tanka__img img { border-radius: 24px; }
}
@media (width < 414px) {
	.m-tanka__title { font-size: calc(28rem / 16); }
	.m-tanka_lead { font-size: calc(12rem / 16); }
	.m-tanka_lead span { font-size: calc(14rem / 16); }
}

.p-timetable {
	position: relative;
	background: #fff url(../images/layer02.png) no-repeat bottom center;
	background-size: auto 100%;
}
.m-timetable {
	max-width: 1024px;
	width: 100%;
	margin: 0 auto;
	padding: 0 16px;
}
.m-timetable__title {
	color: #fff;
}
.m-timetable__joso {
	margin: 0 auto 40px;
	width: 80%;
	text-align: center;
	background: url(../images/bg01.png) no-repeat right center;
	background-size: 20% auto;
}
.m-timetable__joso img {
	max-width: 138px;
	width: 100%;
}
.m-timetable__inner {
	display: grid;
	padding: 80px 16px;
	border-radius: 24px;
	background: #fff;
}
.m-timetable__wrapper {
	width: 100%;
	max-width: 790px;
	height: 650px;
	margin: 0 auto;
	overflow-x: scroll;
	margin: 0 auto;
	white-space:nowrap
}
.m-timetable__block {
	display: grid;
	grid-template-columns: 42px 200px 200px 200px 42px;
	gap: 0 24px;
	width: 782px;
}
.m-timetable_timelist {
	display: grid;
	padding-top: calc((64px * 2) - 0.5em);
	grid-template-rows: repeat(8, 64px);
	font-size: calc(10rem / 16);
	font-weight: 600;
	font-family: "Yu Gothic", "Hiragino Gothic Pro", "MS Gothic", sans-serif;
	color: #4C9FA7;
}

.m-timetable__program {
	background-image: url(../images/bg05.png);
	background-repeat: repeat-y;
	background-position: center top;
	background-size: auto 64px;
}
.m-timetable__program h3 {
	background: #fff;
	height: 64px;
	text-align: center;
	font-size: calc(14rem / 16);
	font-weight: 600;
}
.m-timetable__program h3 span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 64px;
	border-radius: 24px 24px 0 0;
	color: #fff;
}
.m-timetable__block__inner {
	position: relative;
	padding: 0 10px;
}
.m-timetable__program.is_nisui {
	background-color: #FDEDF1;
}
.m-timetable__program.is_nisui h3 span {
	background: #D0919F;
}
.m-timetable__program.is_nakaniwa {
	background-color: #ECF5E2;
}
.m-timetable__program.is_nakaniwa h3 span {
	background: #69844B;
}
.m-timetable__program.is_shichokaku {
	background-color: #FFF8E0;
}
.m-timetable__program.is_shichokaku h3 span {
	background: #918459;
}
.m-timetable__block__time {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 85px;
	text-align: center;
	line-height: 1.2;
	font-size: 10px;
	font-weight: 600;
	font-family: "Yu Gothic", "Hiragino Gothic Pro", "MS Gothic", sans-serif;
	color: #fff;
}
.m-timetable__block__time span {
	display: block;
	margin-bottom: 4px;
	font-size: 11px;
}
.m-timetable__program.is_nisui .m-timetable__block__time {
	background: #D0919F;
}
.m-timetable__program.is_nakaniwa .m-timetable__block__time {
	background: #69844B;
}
.m-timetable__program.is_shichokaku .m-timetable__block__time {
	background: #918459;
}
.m-timetable__block__time.p01 {
	top: 64px;
	left: 10px;
	height: calc(64px * 7);
}
.m-timetable__block__time.p02 {
	top: calc(64px * 2.8);
	right: 10px;
	height: calc(64px * 0.8);
}
.m-timetable__block__time.p03 {
	top: calc(64px * 5.1);
	right: 10px;
	height: calc(64px * 0.8);
}
.m-timetable__block__time.p04 {
	top: calc(64px * 7.2);
	right: 10px;
	height: calc(64px * 0.8);
}
.m-timetable__block__time.p05 {
	top: 64px;
	left: 10px;
	height: calc(64px * 7);
}
.m-timetable__block__time.p06 {
	top: calc(64px * 2);
	right: 10px;
	height: calc(64px * 0.8);
}
.m-timetable__block__time.p07 {
	top: calc(64px * 4.5);
	right: 10px;
	height: calc(64px * 0.8);
}
.m-timetable__block__time.p08 {
	top: calc(64px * 5);
	left: 10px;
	width: 180px;
	height: calc(64px * 4);
}

@media (width < 600px) {
.m-timetable__joso {
	margin: 0 auto 40px;
	width: 80%;
	text-align: center;
	background: url(../images/bg01.png) no-repeat right top;
	background-size: 80px auto;
}
}

footer {
	padding: 8px;
	text-align: center;
	font-size: calc(12rem / 16);
}


.tanka_announcement{
    width: 1200px;
    margin: 0 auto;
}

@media (width < 1200px) {
  .tanka_announcement{
    width: 80%;
  }
}
@media (width < 600px) {
  .tanka_announcement{
    width: 95%;
  }
}

.thanks{
    background: #3B5F62;
    color: #FFF;
    padding: 16px;
    margin: 40px 0;
    z-index: 100;
}

h1.award_title{
    background: #90763A;
    color: #fff;
    padding: 16px;
    text-align: center;
    letter-spacing: .2em;
}

.award {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 0;
}

.badge {
    width: 120px;
    background: #90763A;
    height: 120px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    margin-bottom: 24px;
}

span.material-symbols-outlined {
    font-size: 24px;
    margin-top: 26px;
}

.badge p {
    font-size: 24px;
    margin-top: -5px;
    font-weight: bold;
}

.award h2 {
    padding: 40px;
    border: 4px solid #009944;
    font-size: 32px;
    text-align: center;
}

.runnerup{
    padding: 40px 0;
}

.one {
    width: 49%;
    display: inline-block;
}

.one .badge {
    background: #F7F5F0;
    color: #90763A;
    padding: 40px 0;
    font-size: 24px;
    font-weight: bold;
}

.one h2 {
    font-size: 24px;
}

.special .one {
    width: 100%;
}

.special .one .badge {
    font-size: 21px;
  }

.hr-img1 {
    background-image: url(../images/bg-img1.jpg);
}

.hr-img {
    height: clamp(120px, 16vw, 160px);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.deco1 {
    width: 200px;
    position: absolute;
    left: 20%;
    top: 100px;
}
@media (width < 1024px) {
  .deco1 {
    width: 100px;
    position: absolute;
    left: 5%;
    top: 80px;
}

.award {
    width: 95%;
    padding-bottom: 40px;
}

.award h2 {
    padding: 24px;
    font-size: 24px;
    text-align: left;
}

.one {
    width: 100%;
    display: block;
    margin-bottom: 40px;
}

.one h2 {
    font-size: 16px;
}

.runnerup {
    padding-bottom: 0;
}
}
