@charset "UTF-8";
:root {
}

a {
	color: inherit;
	text-decoration: none;
}



/* スライド */
#SlideZone{
	display: block;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
	
	width: var(--thin-max-width);
	max-width: 100%;
	margin: 0 auto;
}
#SlideView{
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
	position: relative;
	will-change: translate;
	background-color: #000;
}
#SlideView li{
	margin: 0;
	padding: 0;
}
.js #SlideView li{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	overflow: hidden;
	transition: opacity 0.4s 0.4s ease-out;
	pointer-events: none;
}
.js #SlideView li[aria-hidden="false"]{
	opacity: 1;
	z-index: 5;
	transition: opacity 0.4s ease-out;
	pointer-events: auto;
}
.js #SlideView li:first-child{
	position: relative;
}
.documentnotready #SlideView li{
	transition: none !important;
}
#SlideView li img{
	width: 100%;
	height: auto;
	vertical-align: top;
	max-height: 920px;
	object-fit: cover;
	object-position: 50% 50%;
}
@media (max-width:750px){
	#SlideView{
		font-size: 0;
	}
}

#Prevbutton,
#Nextbutton{
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	bottom: 0;
	color: transparent;
	font-size: 10px;
	width: 8%;
	min-width: 44px;
	/* height: 32px; */
	cursor: pointer;
	transition: background-color 0.2s ease-out;
	
	user-select: none;
	-webkit-user-select: none;
	align-content: center;
	
	background: url(../images/slider.svg) no-repeat center/20% auto;
	background-size: 20% auto;
	background-position: 50% 58%;
}
#Nextbutton{
	left: auto;
	right: 0;
	transform: scale(-1, 1);
}
/* #Prevbutton.unavailable,
#Nextbutton.unavailable{
	opacity: 0;
	pointer-events: none;
} */
.mouseUI #Prevbutton:hover,
.mouseUI #Nextbutton:hover{
	background-color: rgba(0,0,0,0.15);
	/* box-shadow: 0 100px 0 rgba(0,0,0,0.15) inset; */
}
.mouseUI #Prevbutton:active,
.mouseUI #Nextbutton:active{
	transition: none;
	background-color: rgba(0,0,0,0.2);
	/* box-shadow: 0 100px 0 rgba(0,0,0,0.15) inset; */
}
@media (max-width:750px){
	#Prevbutton,
	#Nextbutton{
		background-size: 30% auto;
	}
}

/* -------- hero image -------- */
.hero {
	position: relative;
	width: 100%;
	max-width: 100%;
	max-height: 920px;
	overflow: hidden;
}
.hero .slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
		 object-fit: cover;
}
.hero .slide img:nth-child(n+2) {
	position: absolute;
}
.hero .slider {
	position: absolute;
	width: 8%;
	top: 40%;
	cursor: pointer;
	padding: 4% 3.2%;
	z-index: 1;
}
.hero .slider-right {
	right: 0;
	transform: scale(-1, 1);
}
.hero .toucharea {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.hero-wave {
	position: absolute;
	width: 100%;
	bottom: -1px;
	/* left: 20%; */
	left: 10%;
	right: 0;
}
.hero-wave img {
	margin: 0 auto;
}

@media (max-width: 640px) {
	.hero {
		height: 115.2vw;
	}
	.hero .slide img {
		width: 115.2%;
		height: 115.2%;
	}
	.hero .slider {
		top: 50%;
		padding: 4% 2.8%;
	}
}
/* 画像の表示位置調整用(jsで使用) */
/* .slide-left {
	-o-object-position: 0;
		 object-position: 0;
}

.slide-pos10 {
	-o-object-position: 10%;
		 object-position: 10%;
}

.slide-pos35 {
	-o-object-position: 35%;
		 object-position: 35%;
} */


main section{
	padding: 0 var(--pw);
	width: auto;
	margin: 4rem auto;
	max-width: var(--thin-max-width);
	box-sizing: content-box;
}
main section h2 {
	font-size: 1em;
	position: relative;
	grid-column: 1;
	grid-row: 1;
	padding: 0 0 1em;
	margin: 0 0 1em;
	line-height: 1.3;
	border-bottom: #000 1px solid;
}
main section h2 span:first-child {
	display: block;
	font-weight: 300;
	font-size: 1.8em;
	letter-spacing: 0.1em;
}
main section h2 span:last-child {
	display: block;
	font-size: 1em;
	font-weight: normal;
}
@media (max-width: 768px) {
	main section h2 {
	}
	main section h2 span:first-child {
		font-size: 1.4em;
	}
	main section h2 span:last-child {
		font-size:0.9em;
	}
}

/* -------- 環境芸術事業と商品・賞牌企画事業 -------- */
.home-outline {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}
/* .home-outline h2 {
	border-bottom: #000 1px solid;
	padding: 1rem 0 1rem 0;
	line-height: 1.3;
}
.home-outline h2 span:first-child {
	font-size: var(--font36);
	display: block;
	letter-spacing: 0.1em;
	font-weight: 300;
}
.home-outline h2 span:last-child {
	font-size: var(--font18);
	display: block;
} */
.home-outline ul {
	list-style: disc;
	padding-left: 1.25rem;
}
@media (max-width: 900px) {
	.home-outline {
		grid-template-columns: 1fr;
	}
}

ul.planningtaglink {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1em;
	margin: 1em 0 0;
	padding: 0;
	list-style: none;
}
ul.planningtaglink li{
	margin: 0;
	padding: 0;
	display: flex;
}
ul.planningtaglink a{
	align-content: center;
	display: block;
	background-color: var(--buttonbgcolor);
	color: var(--buttontextcolor);
	text-align: center;
	text-decoration: none;
	padding: 0.4em 0.5em;
	border-radius: var(--standardbuttonradius);
	width: 100%;
	font-size: 0.95em;
	line-height: 1.3;
}
@media (max-width: 440px) {
	ul.planningtaglink {
		gap: 0.5em;
	}
}

/* -------- NEWS お知らせ -------- */
.home-news {
}
/* .home-news h2 {
	border-bottom: #000 1px solid;
	padding: 1rem 0 1rem 0;
	line-height: 1.3;
}
.home-news h2 span:first-child {
	font-size: var(--font36);
	display: block;
	letter-spacing: 0.1em;
	font-weight: 300;
	text-transform: uppercase;
}
.home-news h2 span:last-child {
	font-size: var(--font18);
	display: block;
} */
.home-news ul {
	margin: 0;
	padding: 0;
}
.home-news li {
	margin: 1em 0;
}
.home-news li a {
	display: grid;
	align-items: center;
	grid-template-columns: auto 1fr auto;
	gap: 1em;
}
.home-news li .label {
	padding: 0.25em 0.75em;
	background-color: var(--buttonbgcolor);
	color: var(--buttontextcolor);
	width: 8em;
	text-align: center;
	border-radius: var(--standardbuttonradius);
	font-size: 0.95em;
}
@media (max-width: 768px) {
	.home-news li {
		grid-template-columns: 1fr 1fr;
		margin: 0 auto;
	}
	.home-news li .label {
		grid-column: 1;
		grid-row: 1;
	}
	.home-news li .date {
		grid-column: 2;
		grid-row: 1;
	}
	.home-news li .text {
		grid-column: 1/3;
		grid-row: 2;
		margin-bottom: 1rem;
	}
	.home-news li:not(:last-child) {
		border-bottom: rgba(0, 0, 0, 0.2) 1px solid;
		margin: 1rem auto;
	}
}




/* -------- ABOUT US 公益財団法人 彫刻の森芸術文化財団とは -------- */
.home-about {
}
/* .home-about h2 {
	border-bottom: #000 1px solid;
	padding: 1rem 0 1rem 0;
	line-height: 1.3;
}
.home-about h2 span:first-child {
	font-size: var(--font36);
	display: block;
	letter-spacing: 0.1em;
	font-weight: 300;
	text-transform: uppercase;
}
.home-about h2 span:last-child {
	font-size: var(--font18);
	display: block;
} */
.home-about .base {
	grid-column: 2;
	grid-row: 1/3;
}
.home-about .bg {
	position: relative;
	grid-column: 1/span 3;
	grid-row: 2/4;
	z-index: -1;
	overflow-x: clip;
	align-self: flex-end;
}
.home-about .bg img {
	width: 100vw;
	height: 100vh;
	-o-object-fit: fill;
		 object-fit: fill;
	-o-object-position: 0 0;
		 object-position: 0 0;
	max-height: min(50vw, 676px);
}
.home-about p{
	margin: 1em 0;
}
.home-about p.morebutton{
	margin: 0;
	padding: 0.25em 0.75em;
	background-color: var(--buttonbgcolor);
	color: var(--buttontextcolor);
	width: 8em;
	text-align: center;
	border-radius: var(--standardbuttonradius);
	font-size: 0.95em;
}
@media (max-width: 640px) {
	.home-about .bg {
		display: none;
	}
}
