@charset "Utf-8";

/* ------------------------------
 .hero
------------------------------ */


#hero{
	margin-bottom: 3em;
	padding: 1%;
	position: relative
}
@media screen and (max-width: 767px) {
	#hero{
		padding: 3%}
}	


.memo{
	text-align: center;
	padding: 1em;}

/* キャッチコピー全体：配置のみ担当 */
.main-copy {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央固定 */
    z-index: 100;
    display: flex;
    gap: 30px;
    pointer-events: none;
    flex-direction: row-reverse;
    align-items: flex-start
}

/* 各テキストボックスの共通設定（アニメーションの初期状態） *
.main-copy span {
    background-color: #000;
    color: #fff;
    padding: 30px 18px;
    font-size: 2.2rem;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: "Yu Mincho", "YuMincho", serif;

    /* --- ここからがアニメーションの設定 --- */
    opacity: 0; /* 最初は透明 */
    transform: translateY(40px); /* 少し下に下げておく */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out; /* 変化の速度 */
}

/* 2つ目のボックスの段違い（既存の設定） */
.copy-2 {
    margin-top: 130px;
}

/* -------------------------------------------
   タイミングをずらすキモ：表示時の設定
------------------------------------------- */

/* 親にクラスがついたら両方表示開始 */
.main-copy.is-visible span {
    opacity: 1;
    transform: translateY(0);
}

/* 1つ目（手のひらの四季）：即座に開始 */
.main-copy.is-visible .copy-1 {
    transition-delay: 0s;
}

/* 2つ目（小さな盆栽）：0.5秒遅らせて開始 */
.main-copy.is-visible .copy-2 {
    transition-delay: 0.5s;
}



/* 親要素に相対配置を設定 */
.grid {
    position: relative;
    overflow: hidden; /* はみ出し防止 */
}

/* 下部にグラデーションを重ねる */
.grid::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px; /* グラデーションの高さ（お好みで調整） */
    
    /* 上から下に向かって 透明 → 白 へのグラデーション */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    
    /* 重なり順をアイテムより上にする */
    z-index: 10;
    pointer-events: none; 
}



/* PC: 5列設定 */
.grid-sizer,
.grid-item {
    width: 19.2%; /* (100% - (1% * 4)) / 5 = 19.2% */
}

.grid-gutter {
    width: 1%; /* 隙間 */
}

.grid-item{
	background: #f9f9f9;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
    margin-bottom: 1%;
}


.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}    

/* 初期状態：透明で少し下に下げておく */
.grid-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* クラスがついたら表示する */
.grid-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}



/* スマホ（768px以下）のとき、10枚目以降を消す */
@media screen and (max-width: 768px) {
    .grid-item.is-limited {
        display: none;
    }
}



/* スマホ: 3列 */
@media screen and (max-width: 600px) {
	
	/* PC: 4列設定 */
	.grid-sizer,.grid-item {
		width: 32.6%;
	}


  }

/*PC: 4列設定
  .grid-sizer, .grid-item {
        width: 24.25%;
    }
*/

/*PC: 3列設定
  .grid-sizer, .grid-item {
        width: 32.6%;
    }
*/



/* キャッチコピー全体：配置のみ担当 */
.main-copy {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央固定 */
    z-index: 100;
    display: flex;
    gap: 30px;
    pointer-events: none;
}

/* 各テキストボックスの共通設定（アニメーションの初期状態） */
.main-copy span {
    background-color: #000;
    color: #fff;
    padding: 30px 18px;
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: "Yu Mincho", "YuMincho", serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);

    /* --- ここからがアニメーションの設定 --- */
    opacity: 0; /* 最初は透明 */
    transform: translateY(40px); /* 少し下に下げておく */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out; /* 変化の速度 */
}

/* 2つ目のボックスの段違い（既存の設定） */
.copy-2 {
    margin-top: 130px;
}

/* -------------------------------------------
   タイミングをずらすキモ：表示時の設定
------------------------------------------- */

/* 親にクラスがついたら両方表示開始 */
.main-copy.is-visible span {
    opacity: 1;
    transform: translateY(0);
}

/* 1つ目（手のひらの四季）：即座に開始 */
.main-copy.is-visible .copy-1 {
    transition-delay: 0s;
}

/* 2つ目（小さな盆栽）：0.5秒遅らせて開始 */
.main-copy.is-visible .copy-2 {
    transition-delay: 0.5s; /* ここで「ト・トン」の間隔を調整 */
}





/* ------------------------------
 #news_hl
------------------------------ */

#newshl{
	padding: 10% 0;
	background: linear-gradient(180deg,rgba(185, 207, 171, 1) 0%, rgba(255, 255, 255, 0.88) 90%);
}

.newshl_wrap {
	width: 90%;
	margin: 0 auto;
	
}

.newshl_wrap h2{
		color: rgba(255, 255, 255, 0.7);
		font-size: 40px;
	}




@media screen and (max-width: 767px) {
	.newshl_wrap h2{
		margin-bottom: 10px;
		text-align: center
	}
}	

@media print, screen and (min-width: 768px) {
	#newshl{padding: 7% 0;}
	.newshl_wrap{
		max-width: 1100px;
		display: flex;
		flex-wrap: wrap
	}
	.newshl_wrap h2{
		-webkit-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
		font-size: 60px;
		width: 100px;
	}
	
	ul.newslist{
	width: calc(100% - 100px);
	}


}	


.more{
	margin: 0 auto;
	display: flex;
	justify-content: center
}

.more a{
	display: block;
	background: var(--color-point);
	color: #fff;
	border-radius: 50px;
	position: relative;
	padding: 1em 3em;
	width:90%;
	max-width: 400px;
	text-align: center;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.more a::after{
	font-family: icomoon;
	content: "\e977";
	padding: 0 0 0 1em;
}

.more a:hover{
	opacity: .8
}

/* ------------------------------
 #snsbox_wrap
------------------------------ */

#snsbox{
	background: var(--color-grbg);
	padding: 10% 6%;
	}

.snsbox_wrap{
	margin: 0 auto
}

.sns-fb{
	width: 100%;
}

.youtube_ban{margin: 0 0 1em;}

.youtube_ban img{
	width: 100%;
	height: auto
}

.youtube_ban a{
	text-decoration: underline}

.youtube_ban span{
	margin: .8em 0 0;
	display: block}

@media screen and (max-width: 767px) {}	

@media print, screen and (min-width: 768px) {}	

@media print, screen and (min-width: 1024px) {
	#snsbox{padding: 6%;}
	.snsbox_wrap{
	display: flex;
	max-width: 800px;
	justify-content: space-between;
	margin: 0 auto
	}
	
	.snsbox_wrap > *{
		width: 48%
	}

}	

/* ------------------------------
 #exhibition
------------------------------ */

#exhibition{
	padding: 5% 0;
	background: #fff
}


#exhibition h2{
	margin-bottom: 1em;
	color: var(--color-main-shade)
}

#exhibition h2 span{
	font-size: .9em;
    font-weight: normal;
    margin-left: .6em;
    letter-spacing: 2px;
    color: #d7d7d7;
}



ul#exList li{
	background: #fff;
	box-shadow: 0px 0px 10px rgba(204, 204, 204, 0.9);
	border-radius: 8px;
	position: relative;
}


ul#exList li figure{
	
}

ul#exList li figure img{
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	border-radius: 10px 10px 0px 0px;
}


ul#exList li{transition: all .3s;}

ul#exList li h3{color:#790000;font-size: 1.5em}
ul#exList li h3 span{display: block;margin: .3em 0;
	font-size: .8em;line-height: 1.3em
}
ul#exList li p{font-size: .9em;line-height: 1.4em}

ul#exList li div:nth-child(2){padding: 1em}


@media screen and (max-width: 667px) {
	#exhibition h2{text-align: center;}
	#exhibition h2 span{display: block}	
	
	
	
	#exhibition_wrap #pageheader{
		padding-top: 0;
	}
	
	
	ul#exList{
		
		justify-content: center;}
		
	ul#exList li{
		margin-bottom: 3em;}		
}	

@media print, screen and (min-width: 768px) {

	ul#exList{
		display: flex;
		flex-wrap:wrap;
		justify-content: space-between;
		max-width: 1000px;}
	
	ul#exList li{
		width: 48%;
		margin:0 0 50px 0;
		box-shadow: 0px 0px 10px rgba(204, 204, 204, 0.9);}

		
			
	ul#exList li div:nth-child(2){padding: 1.5em}

	ul#exList li:hover{
		transform: translate3d(0, 5px, 0);
		box-shadow: 5px 5px 0px rgba(204, 204, 204, 0);}
}







/* ------------------------------
 #member_shibu
------------------------------ */

#member{padding: 10% 0;
	background: #fff
}


#member h2{
	margin-bottom: 1em;
	color: var(--color-main-shade)
}

#member h2 span{
	font-size: .9em;
    font-weight: normal;
    margin-left: .6em;
    letter-spacing: 2px;
    color: #d7d7d7;
}

ul.areaList{
	display: grid;
	gap: 10px;
}



ul.areaList li a{
	display: block;
	background: #F2F2F2;
	position: relative;
	padding: .7em .8em;
	-webkit-transition: all .3s;
	transition: all .3s;
	font-size: 1.2em
}

ul.areaList li a:before{
	content: " ";
	width: 2px;
	height: 20px;
	background-color: var(--color-point);
	display: inline-block;
	position: absolute;
	left: 0;
	transition: all .3s;
}

ul.areaList li a:after{
	font-family: icomoon;
	content: "\e977";
	color: var(--color-point);
	position: absolute;
	right: 1em;
	transition: all .3s;
	opacity: 0
	}



ul.areaList li a:hover{
	background: rgba(var(--color-point-rgb), 0.2)
}



#menmber_link{
	overflow: hidden
}


@media screen and (max-width: 767px) {
	#member h2{text-align: center;}
	#member h2 span{display: block}	
	
	ul.areaList{
	grid-template-columns: repeat(2,1fr);
	}
	
	ul.areaList li:last-child{width: 100%;margin-right: 0;}
}

@media print, screen and (min-width: 768px) {
	#member{padding: 7% 0;}
	#member h2{margin-bottom: 1.5em;}
	

	ul.areaList{
		gap: 20px;
		grid-template-columns: repeat(4,1fr);
		margin-bottom: 4em;
	}
	
	ul.areaList li a{padding: 1em 1.5em;box-shadow: 3px 3px 0px #eee;font-size: 1.2em}
	#member_list .icon img{height: 180px;}
	
	ul.areaList li a:hover::before{width: 4px;}
	ul.areaList li a:hover::after{opacity: 1}

	
}	







/* ------------------------------
 #gafuten-cnts
------------------------------ */

#gafuten-cnts{
	background: var(--color-grbg);
	padding: 6%;
	}

#gafuten-cnts h3{
	margin-bottom: 1em;}

#gafuten-cnts p{
	margin-bottom: 1em;
}

#gafuten-cnts > div{
	max-width: 760px;
	margin: 0 auto}

#gafuten-cnts figure{}

#gafuten-cnts figcaption{
	font-size: .8em;
	text-align: right;
	padding: 1em 0 0;
	display: block
}




