@charset "utf-8";
/* ----------------------------
/*
/* 共通
/*
-------------------------------*/
.wrapper{
	width: 100%;
}
h1,h2,h3,h4,h5,h6,p,li,a,th,td{
	font-family: "Shippori Mincho B1", serif;
	font-weight: 600;
	text-decoration: none;
	color: #000;
}
.jsg-main{
	display: flex;
	justify-content: center;
	width: 100%;
	background: #E59381;
	background: -webkit-linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
	background: -moz-linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
	background: linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
		startColorstr="#E59381",
		endColorstr="#C6D0D8",
		GradientType=1
	);
}
.jsg-main-r{
	width: 85%;
	max-width: 1200px;
	background-color: #fff;
}
.jsg-main-r section{
	margin-bottom: 100px;
}
.jsg-main-r section:last-child{
	margin-bottom: 200px;
}
.lttr-s{
	font-size: .5em;
}
.lttr-m{
	font-size: .7em;
}
.lttr-l{
	font-size: .8em;
}
h2{
	width: 100%;
	font-size: 2rem;
	position: relative;
	text-align: start;
	padding-left: 20px;
	z-index: 0;
}
h2::after{
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 3px;
	background: #E59381;
	background: -webkit-linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
	background: -moz-linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
	background: linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
		startColorstr="#E59381",
		endColorstr="#C6D0D8",
		GradientType=1
	);
}
.pc-disp{
	display: inline-block;
}
.sp-disp{
	display: none;
}
.char-red{
	color: #e74545;
	font-weight: bold;
}
.junbichu{
	width: 100%;
	font-size: 2rem;
	text-align: center;
	font-weight: bold;
}
/* ----------------------------
/*
/* header
/*
-------------------------------*/
header{
	width: 100%;
	height: 25vh;
	background-image: url(../img/top_bg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: inline-flex;
	align-items: center;
	margin-bottom: 40px;
}
header h1{
	display: inline-block;
	position: relative;
	width: fit-content;
	text-align: center;
	font-size: clamp(1rem, -0.091rem + 5.45vw, 3rem);
	color: #ffffff;
	text-shadow: -2px 2px 0px #000000;
	margin: 0 auto;
}
header h1::after{
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -15px;
	left: 10px;
	width: 90%;
	height: 3px;
	border-bottom: 3px solid #fff;
}
/* ----------------------------
/*
/* サイドメニュー
/*
-------------------------------*/
nav.sidenav{
	display: block;
	position: sticky;
	width: 15%;
	left: 0;
	top: 0;
	height: 100vh;
	background: #E59381;
	background: -webkit-linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
	background: -moz-linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
	background: linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
		startColorstr="#E59381",
		endColorstr="#C6D0D8",
		GradientType=1
	);
	overflow-y: scroll;
	scrollbar-width: thin;
}
nav.sidenav .sidenav-logo{
	width: 90%;
	display: block;
    margin: 0 auto;
	margin-bottom: 50px;
}

nav.sidenav .sidenav-logo img{
	width: 100%;
	height: auto;
}
nav.sidenav ul{
	padding: 10px 5px;
	width: 80%;
	margin: 0 auto;
}
nav.sidenav ul li{
	margin-bottom: 40px;
	list-style-type: none;
}
nav.sidenav ul li a{
	font-family: "inter", sans-serif;
	position: relative;
	font-size: 1rem;
	display: inline-block;
    text-decoration: none;
	font-weight: bold;
	color: #36445D;
}
nav.sidenav ul li:not(.nohover) a{
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: #36445D;
}
nav.sidenav ul li:not(.nohover) a::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: #36445D;
	transition: width 0.3s ease-in-out;
}
nav.sidenav ul li:not(.nohover) a:hover::after{
	width: 100%;
}
/* ----------------------------
/*
/* スマホ用ナビ
/*
-------------------------------*/	
.jsg-main-r .hb-nav{
	display: none;
}
/* ----------------------------
/*
/* footer
/*
-------------------------------*/
footer{
	width: 100%;
	background-color: #A29494;
	padding: 50px;
}
footer .footerinf{
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.footerinf-wdpl h4,
.footerinf-jsg h4{
	width: fit-content;
	padding: 4px;
	background-color: #fff;
	color: #A29494;
	margin-bottom: 10px;
}
.footerinf-wdpl p,
.footerinf-jsg p{
	color: #fff;
	margin-bottom: 5px;
}
.footerinf-wdpl a,
.footerinf-jsg a{
	color: #fff;
}

/* ----------------------------
/*
/* TOPページ
/*
-------------------------------*/
.top-fv header{
	display: none;
}
/* .top-fv{
	background-image: url(../img/top_bg.png);
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-repeat: no-repeat;
} */
.top-fv{
	width: 100%;
}

.top-fv img{
	width: 100.1%;	
}

/* .top-fv h1{
	color: #27415B;
	width: fit-content;
	font-size: clamp(1rem, -0.091rem + 5.45vw, 4.5rem);
	text-align: start;
	padding-left: 30px;
	text-shadow: -3px 3px 0px #ffffffc7;
	font-weight: 800;
	-webkit-text-stroke: 0.6px currentColor;
}
.top-fv h2{
	color: #CA7455;
	width: fit-content;
	writing-mode: vertical-rl;
	font-size: 51px;
	letter-spacing: 1.3rem;
	text-align: end;
	text-shadow: -3px 2px 0 #ffffff81;
	font-weight: 800;
	-webkit-text-stroke: 0.6px currentColor;
}
.top-fv h2::after{
	content: "";
	width: 0;
	height: 0;
}
.top-fv .top-fv-info{
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: flex-end;
	bottom: 10px;
	text-shadow: -1px 1px 0px #ffffff81;
}
.top-fv-info-iroiro{
	width: 70%;
	margin-bottom: 22px;
}
.top-fv-info-thm{
	width: 20%;
	display: flex;
    justify-content: end;
}
.top-fv-info-kaiki p{
	margin-left: 20px;
	font-size: 3rem;
	line-height: 1.2em;
	font-weight: 700;
	color: #27415B;
	-webkit-text-stroke: 0.6px currentColor;
}
.top-fv-info-intro{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.top-fv-info-innerintro{
	display: flex;
}
.top-fv-info-innerintro-nm{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30%;
} */
.top-fv-info-innerintro-nm h4{
	width: 70%;
	padding: 8px 0;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 800;
	border-top: 2px solid #C97A5E;
	border-bottom: 2px solid #C97A5E;
	color: #C97A5E;
	text-shadow: -1px 1px 0 #ffffff81;
	-webkit-text-stroke: 0.6px currentColor;
}
.top-fv-info-innerintro-cnt{
	width: 70%;
	display: flex;
	align-items: center;
}
.top-fv-info-innerintro-cnt p{
	padding: 5px 0 5px;
	line-height: 1em;
	font-size: 1.5rem;
	font-weight: 800;
	-webkit-text-stroke: 0.6px currentColor;
	color: #27415B;
}
.top-fv-info-innerintro-cntsz{
	font-size: 0.9em;
}
.top-news{
	width: 90%;
	margin: 0 auto;
}
.top-news h3{
	/* font-size: 3rem; */
	font-size: clamp(1rem, -0.091rem + 5.45vw, 3rem);
	text-align: center;
	margin-bottom: 10px;
}
.top-news ul{
	list-style-type: none;
	width: 50%;
	margin: 0 auto;
}
.top-news ul li p{
	font-size: 25px;
	font-weight: bold;
	padding-left: 10px;
	padding-bottom: 9px;
	border-bottom: 2px solid #000;
	line-height: 1.8;
	padding: 10px 0;
}
.top-news ul li span::after{
	content: "　";
}
span.new-icon{
	display: inline-block;
	height: fit-content;
	width: fit-content;
	font-size: .6em;
	background-color: #DA4E4E;
	color: #ffffff;
	border-radius: 5px;
	text-align: center;
}

/* ----------------------------
/*
/* 大会長挨拶ページ
/*
-------------------------------*/
.aisastu-main{
	width: 90%;
	padding: 20px;
	margin: 0 auto;
}
.aisastu-main h2{
	margin-bottom: 20px;
}
.aisastu-content{
	padding: 40px;
}
.aisastu-photo-blng{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 50px;
}
.aisastu-photo-blng img{
	float: left;
	width: 25%;
	height: auto;
}
.aisastu-photo-blng p{
	text-align: end;
	font-weight: 700;
}
.aisastu-text{
	width: 100%;
	padding: 10px;
}
.aisastu-text p{
	text-indent: 1rem;
	margin-bottom:1.2rem;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.6em;
}

/* ----------------------------
/*
/* 開催概要ページ
/*
-------------------------------*/

.gaiyou-main h2,
.gaiyou-heisai h2{
	margin-bottom: 40px;
}
.gaiyou-main,
.gaiyou-heisai{
	padding: 50px;
}
.gaiyou-main h3{
	padding-left: 1em;
	position: relative;
	font-size: 1.3rem;
	margin-bottom: 20px;
}
.gaiyou-main h3::before{
	content:"";
	display: inline-block;
	position: absolute;
	width: 10px;
	height: 25px;
	left: 3px;
	bottom: 0;
	background-color: #E59381;
}
.gaiyou-main h3::after{
	content:"";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 1px;
	left: 3px;
	bottom: 0;
	background: #E59381;
	background: -webkit-linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
	background: -moz-linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
	background: linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
		startColorstr="#E59381",
		endColorstr="#C6D0D8",
		GradientType=1
	);
}
.gaiyou-main div{
	padding-left: 2em;
	margin-bottom: 20px;
}
.gaiyou-main div p{
	padding-left: 2em;
	margin-bottom: 10px;
	font-weight: 600;
}
.gaiyou-main table tr th{
	text-align: start;
	font-weight: 600;
}
.gaiyou-heisai table tr th{
	text-align: start;
	font-weight: bold;
}
.gaiyou-main table tr td,
.gaiyou-heisai table tr td{
	text-align: start;
	padding: 1rem;
	font-weight: 600;
}

@media only screen and (max-width:770px){
	.pc-disp{
		display: none;
	}
	.sp-disp{
		display: inline-block;
	}
	nav.sidenav{
		display: none;
	}
	.jsg-main-r{
		width: 100%;
	}
	/* ----------------------------
	/*
	/* footer
	/*
	-------------------------------*/
	footer{
		width: 100%;
		background-color: #A29494;
		padding: 50px;
	}
	footer .footerinf{
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: baseline;
		gap: 20px;
	}
	.footerinf-wdpl h4,
	.footerinf-jsg h4{
		width: fit-content;
		padding: 4px;
		background-color: #fff;
		color: #A29494;
		margin-bottom: 10px;
	}
	.footerinf-wdpl p,
	.footerinf-jsg p{
		color: #fff;
		margin-bottom: 5px;
	}
	.footerinf-wdpl a,
	.footerinf-jsg a{
		color: #fff;
	}
	/* ----------------------------
	/*
	/* スマホ用ナビ
	/*
	-------------------------------*/	
	.jsg-main-r .hb-nav{
		display: block;
		position: fixed;
		width: 100%;
		height: 1rem;
		background-image:none;
		z-index: 99;
	}
	.jsg-main-r .hb-nav label{
		position: relative;
		width: fit-content;
		font-size: 1rem;
		color: #27415B;
		text-shadow: -1px 1px 0px #ffffff;
		z-index: 990;
	}
	#menu-btn-check {
		display: none;
	}
	.hb-nav-menu {
		width: 100%;
		height: 100%;
		position: fixed;
		left: 100%;
		bottom: 0;
		z-index: 900;
		background: #E59381;
		background: -webkit-linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
		background: -moz-linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
		background: linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(
			startColorstr="#E59381",
			endColorstr="#C6D0D8",
			GradientType=1
		);
		transition: all 0.5s;
	}
	.hb-nav-menu ul {
		padding: 70px 10px 0;
	}
	.hb-nav-menu ul li.nohover{
		list-style-type: none;
	}
	.hb-nav-menu ul li img{
		display: block;
		width: 50%;
		height: auto;
		margin: 0 auto;
	}
	.hb-nav-menu ul li:not(.nohover) {
		border-bottom: solid 1px #ffffff;
		list-style: none;
		margin-bottom: 10px;
	}
	#menu-btn-check:checked ~ .hb-nav-menu {
		left: 0;
	}
	.hb-nav-menu .sidenav-logo{
		width: 70%;
		display: block;
		margin: 0 auto;
		height: auto;
	}
	.hb-nav-menu .sidenav-logo img{
		width: 100%;
		height: auto;
	}

	/* ----------------------------
	/*
	/* TOPページ
	/*
	-------------------------------*/	
	.top-fv{
		background-position: center;
	}
	.top-fv h1{
		color: #27415B;
		width: fit-content;
		font-size: clamp(1.4rem, -0.091rem + 5.45vw, 4.5rem);
		text-align: center;
		padding-left: 0;
		margin: 1rem auto 0;
		text-shadow: -2px 2px 0px #ffffff81;
	}
	.top-fv h2{
		color: #CA7455;
		width: fit-content;
		writing-mode: initial;
		text-align: start;
		font-size: clamp(1.6rem, -0.091rem + 5.45vw, 4.5rem);
		letter-spacing: .5rem;
	}
	.top-fv h2::after{
		content: "";
		width: 0;
		height: 0;
	}
	.top-fv .top-fv-info{
		display: flex;
		justify-content: space-between;
		flex-direction: column-reverse;
		align-items: center;
		bottom: 10px;
		text-shadow: -1px 1px 0px #ffffff81;
		gap: 30px;
	}
	.top-fv-info-iroiro{
		width: 90%;
		margin-bottom: 22px;
	}
	.top-fv-info-thm{
		width: 100%;
		display: flex;
		justify-content: center;
		padding: 20px 0;
		margin: 0 auto;
	}
	.top-fv-info-kaiki p{
		margin-left: 20px;
		font-size: clamp(1rem, -0.091rem + 5.45vw, 4.5rem);
		line-height: 1.2em;
		font-weight: 600;
		color: #27415B;
	}
	.top-fv-info-intro{
		display: grid;
		grid-template-columns: 1fr;
	}
	.top-fv-info-innerintro{
		display: flex;
		gap: 10px;
	}
	.top-fv-info-innerintro-nm{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 30%;
	}
	.top-fv-info-innerintro-nm h4{
		width: 100%;
		padding: 8px 0;
		text-align: center;
		font-size: clamp(1rem, -0.091rem + 5.45vw, 4.5rem);
		border-top: 2px solid #C97A5E;
		border-bottom: 2px solid #C97A5E;
		color: #C97A5E;
	}
	.top-fv-info-innerintro-cnt{
		width: 70%;
		display: flex;
		align-items: center;
	}
	.top-fv-info-innerintro-cnt p{
		padding: 5px 0 5px;
		line-height: 1em;
		font-size: clamp(1rem, -0.091rem + 5.45vw, 4.5rem);
		font-weight: bold;
		color: #27415B;
	}
	.top-fv-info-innerintro-cntsz{
		font-size: 0.9em;
	}
	.top-news{
		width: 90%;
		margin: 0 auto;
	}
	.top-news h3{
		/* font-size: 3rem; */
		font-size: clamp(1rem, -0.091rem + 5.45vw, 3rem);
		text-align: center;
		margin-bottom: 10px;
	}
	.top-news ul{
		list-style-type: none;
		width: 90%;
		margin: 0 auto;
	}
	.top-news ul li p{
		font-size: clamp(1rem, -0.091rem + 5.45vw, 2rem);
		font-weight: bold;
		padding-left: 10px;
		padding-bottom: 9px;
		border-bottom: 2px solid #000;
		line-height: 1.8;
		padding: 10px 0;
	}
	.top-news ul li span::after{
		content: "　";
	}
	span.new-icon{
		display: inline-block;
		height: fit-content;
		width: fit-content;
		font-size: .6em;
		background-color: #DA4E4E;
		color: #ffffff;
		border-radius: 5px;
		text-align: center;
	}
	/* ----------------------------
	/*
	/* 大会長挨拶ページ
	/*
	-------------------------------*/
	.aisastu-main{
		width: 100%;
		padding: 20px;
		margin: 0 auto;
	}
	.aisastu-main h2{
		margin-bottom: 20px;
	}
	.aisastu-content{
		padding: 40px;
	}
	.aisastu-photo-blng{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 20px;
	}
	.aisastu-photo-blng img{
		float: initial;
		width: 80%;
		height: auto;
	}
	.aisastu-photo-blng p{
		text-align: start;
		font-weight: 600;
	}
	.aisastu-text{
		width: 100%;
		padding: 0;
	}
	.aisastu-text p{
		text-indent: 1rem;
		margin-bottom:1.2rem;
		font-size: 1.3rem;
		font-weight: 600;
	}
	/* ----------------------------
	/*
	/* 開催概要ページ
	/*
	-------------------------------*/
	.gaiyou-main h2,
	.gaiyou-heisai h2{
		margin-bottom: 20px;
	}
	.gaiyou-main,
	.gaiyou-heisai{
		padding: 50px;
	}
	.gaiyou-main h3{
		padding-left: 1em;
		position: relative;
		font-size: 1.3rem;
	}
	.gaiyou-main h3::before{
		content:"";
		display: inline-block;
		position: absolute;
		width: 10px;
		height: 25px;
		left: 3px;
		bottom: 0;
		background-color: #E59381;
	}
	.gaiyou-main h3::after{
		content:"";
		display: inline-block;
		position: absolute;
		width: 100%;
		height: 1px;
		left: 3px;
		bottom: 0;
		background: #E59381;
		background: -webkit-linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
		background: -moz-linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
		background: linear-gradient(90deg,rgba(229, 147, 129, 1) 0%, rgba(201, 158, 159, 1) 50%, rgba(198, 208, 216, 1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(
			startColorstr="#E59381",
			endColorstr="#C6D0D8",
			GradientType=1
		);
	}
	.gaiyou-main div{
		padding-left: 0;
		margin-bottom: 10px;
	}
	.gaiyou-main div p{
		padding-left: 2em;
		margin-bottom: 10px;
		font-weight: 600;
	}
	.gaiyou-main table tr th{
		text-align: start;
		font-weight: 600;
	}
	.gaiyou-heisai table tr th{
		text-align: start;
		font-weight: bold;
	}
	.gaiyou-main table tr,
	.gaiyou-heisai table tr{
		display: flex;
		flex-direction: column;
	}
	.gaiyou-main table tr td,
	.gaiyou-heisai table tr td{
		text-align: start;
		padding: .3rem 0 .5rem 1rem;
		font-weight: 600;
	}
}