#body {
  width: 100%;
  max-width: 1920px;
  margin: auto;
}

#index_flex {
	width: 100%;
	max-width: 1200px;
	box-sizing: border-box;
	display: flex;
	gap: 5rem;
	margin: 0 auto 10rem auto;
	padding: 6rem 0 0 0;
}

#index_flex .index_left {
	width: calc(100% - 29rem);
}

#index_flex .index_right {
	width: 24rem;
}

@media print, screen and  (max-width: 1400px) {
	#index_flex {
		width: calc(100% - 11rem);
		max-width: inherit;
	}
}

@media print, screen and  (max-width: 1200px) {
	#index_flex {
		padding: 6rem 3rem 0 3rem;
	}
}

@media print, screen and  (max-width: 768px) {
	#index_flex {
		flex-flow: column;
		width: 100%;
		margin: 0 auto;
	}
	
	#index_flex .index_left {
		width: 100%;
	}

	#index_flex .index_right {
		width: 100%;
	}
}

@media print, screen and  (max-width: 641px) {
	#index_flex {
		margin-bottom: 1rem;
		padding: 6rem 2rem 0 2rem;
	}
	
	#index_flex .index_left {
		width: 100%;
	}

	#index_flex .index_right {
		width: 100%;
	}
}




/* ======================
      HEADER
======================== */

@media only screen and (min-width: 1080px) and (max-width: 1140px){
  #index {
  }
}



/* MAIN  */

main {
  width: 100%;
}

main#index {
  padding: 0;
}



/* KEYVISUAL  */

main#index #keyvisual {
 background: url("../images/common/keyvisual.webp") no-repeat center bottom / cover;
}

main#index #keyvisual .keyvisual_in {
	width: 100%;
	max-width: 1200px;
	height: 64vh;
	min-height: 51rem;
	margin: 0 auto;
	position: relative;
}

main#index #keyvisual .keyvisual_in .theme {
	width: 100%;
	max-width: 99.8rem;
	position: absolute;
	top: 5rem;
	left: 0;
}

main#index #keyvisual .keyvisual_in .dates {
	width: 100%;
	max-width: 44.4rem;
	position: absolute;
	bottom: 3.5rem;
	right: 0;
}

@media only screen and  (max-width: 981px) {
	main#index #keyvisual .keyvisual_in .theme {
		max-width: 70rem;
		top: 3rem;
		left: 2rem;
	}

	main#index #keyvisual .keyvisual_in .dates {
		max-width: 36rem;
		bottom: 2rem;
		right: 2rem;
	}
}

@media only screen and  (max-width: 768px) {
	main#index #keyvisual .keyvisual_in .theme {
		max-width: calc(100% - 4rem);
	}

	main#index #keyvisual .keyvisual_in .dates {
		max-width: 32rem;
	}
}

@media only screen and  (max-width: 641px) {
	main#index #keyvisual {
	 background: url("../images/common/keyvisual_sp.webp") no-repeat center bottom / cover;
	}

	main#index #keyvisual .keyvisual_in {
		height: 64vh;
		min-height: 45rem;
		margin: 0 auto;
		position: relative;
	}

	main#index #keyvisual .keyvisual_in .theme {
		width: 84%;
		max-width: 99.8rem;
		position: absolute;
		top: 3rem;
		left: 1rem;
	}

	main#index #keyvisual .keyvisual_in .dates {
		display: none;
	}
}


/* MESSAGE  */

#message {
	padding: 0 0 6rem 0;
	overflow: hidden;
}

#message h2 {
  font-size: clamp(0.8rem, 1vw + 2rem, 3.2rem);
	margin-bottom: 6rem;
	position: relative;
}

#message h2:before {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 150px;
  height: 5px;
  content: '';
  border-radius: 6px 0 6px 0;
  background: #8965af;
}

#message .photo {
	float: right;
	width: 140px;
	margin: 0 0 3rem 3rem;
}

#message .photo figure {
	margin-bottom: 2rem;
}

#message .photo figure figcaption {
	font-size: 1.4rem;
}

#message p {
	margin-bottom: 2rem;
}

#message p:last-of-type {
	margin-bottom: 0;
}

@media print, screen and  (max-width:1024px) {

	#message .photo {
		width: 100px;
	}
}

@media print, screen and  (max-width:981px) {
	#message h2 {
		font-size: 2.4rem;
	}
	
	#message .photo {
		float: none;
		display: flex;
		gap: 3rem;
		justify-content: center;
		width: auto;
		margin: 0 0 1rem 0;
	}
	
	#message .photo figure {
		width: 140px;
	}
}

@media print, screen and  (max-width:641px) {
	#message h2 {
		font-size: 2rem;
	}
	
	#message .photo figure {
		width: 120px;
	}
}




/* OUTLINE  */

#outline {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 3rem;
  padding-top: 0;
}

#outline h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10em;
	font-size: 1.6rem;
	text-align: center;
	padding: 0.5rem 1rem;
	background: #8965af;
	border-radius: 10px 0 10px 0;
}

#outline h2 span {
	color: #ffffff;
}

#outline p,
#outline ul {
	width: calc(100% - 10em - 2rem);
	padding: 0.5rem 0;
}

#outline ul li {
	margin-left: 1em;
}

/*#outline h2 {
	font-size: 2.4rem;
	font-weight: 700;
	color: #3f4273;
	margin-bottom: 2rem;
}

#outline p {
  margin: 0 0 1.25rem 0;
}*/

@media print, screen and  (max-width:768px) {
	#outline {
		flex-flow: column;
		gap: 1rem;
		margin-bottom: 3rem;
		padding-top: 0;
	}
	
	#outline p,
	#outline ul {
		width: 100%;
		margin-bottom: 1rem;
		padding: 0;
	}
	
  #outline .container p {
    font-size: 1rem;
  }
}

@media print, screen and  (max-width: 641px) {
	#outline h2 {
		font-size: 2.2rem;
		font-weight: 500;
		/*margin-bottom: 1.5rem;*/
	}
}

/* NEWS  */

#news {
  padding: 0;
	position: relative;
	z-index: 20;
}

#news:after {
	content: " ";
	display: block;
	width: 57px;
	height: 58px;
	background: url("../images/index/icon_news.svg") no-repeat left center;
	position: absolute;
	top: -1.5rem;
	left: 0;
}

#news h2 {
	font-size: 1.8rem;
  color: #3f4273;
	margin-bottom: 1rem;
	padding-left: 1rem;
	position: relative;
	z-index: 10;
}

#news dl {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
  max-width: 100%;
	height: 140px;
  margin: auto;
	padding: 3rem;
	border: 1px solid #3f4273;
	border-radius: 3rem 0 3rem 0;
  overflow: hidden;
	overflow-y: scroll;
	scrollbar-color: #30497b #91abc6;
}

#news dl dt {
	width: 11rem;
	font-weight: 500;
	color: #3f4273;
}

#news dl dd {
	width: calc(100% - 11.75rem);
}

@media print, screen and  (max-width: 641px) {
	#news dl {
		flex-flow: column;
		gap: 0;
		height: 200px;
		padding: 2rem;
		border: 1px solid #3f4273;
		border-radius: 2rem 0 2rem 0;
	}

	#news dl dt {
		width: 100%;
		margin-bottom: 0.25rem;
	}

	#news dl dd {
		width: 100%;
		margin-bottom: 1rem;
	}
}


/* MOVIE  */

#movie {
	width: 100%;
	margin-top: 6rem;
}

#movie video {
  width: 100%;
}



/* IMPORTANT  */

#important {
	height: 100%;
  padding: 3rem 2rem;
	border-radius: 0 2rem 0 2rem;
	background: url("../images/common/bg.webp") no-repeat 40% center / auto 140%;
}

#important h2 {
	font-size: 2.4rem;
	font-weight: 700;
	color: #258acb;
	text-align: center;
}

#important p {
	text-align: center;
}

#important dl dt {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 1.5rem;
}

#important dl dd {
	font-size: 2.6rem;
	font-weight: 700;
	color: #258acb;
	margin-bottom: 2rem;
	padding-bottom: 1.75rem;
	border-bottom: 1px dashed #ccc;
}

#important dl dd:last-of-type {
	margin: 0;
	padding-bottom: 0;
	border: none;
}

#important dl dd ul {
	margin-left: 1em;	
}

#important dl dd ul li {
	margin-top: 1rem;
}

#important dl dd ul li small {
	font-size: 1.4rem;
}

#important dl dd ul li b {
	display: table;
	font-size: 2.2rem;
}

@media print, screen and  (max-width: 768px) {
	#important {
		background: url("../images/common/bg.webp") no-repeat 40% center / cover;
	}
}



/* ORGANIZED  */

#organized {
	display: none;
	width: 100%;
	padding: 1.5rem 0;
}

#organized .logo_list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	list-style: none;
}

#organized .logo_list .isncc {
	width: 100px;
}

#organized .logo_list .aons {
	width: 102px;
}

#organized .logo_list .jscc {
	width: 44px;
}

@media print, screen and  (max-width: 768px) {
	#organized {
		display: table;
	}
}


